]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/powerpc/lib/Makefile
powerpc: remove 4xx support
[people/ms/u-boot.git] / arch / powerpc / lib / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier: GPL-2.0+
6 #
7
8 ## Build a couple of necessary functions into a private libgcc
9 ## if the user asked for it
10 lib-$(CONFIG_USE_PRIVATE_LIBGCC) += _ashldi3.o _ashrdi3.o _lshrdi3.o
11
12 MINIMAL=
13
14 ifdef CONFIG_SPL_BUILD
15 ifdef CONFIG_SPL_INIT_MINIMAL
16 MINIMAL=y
17 endif
18 endif
19
20 ifdef MINIMAL
21 obj-y += cache.o time.o
22 obj-y += ticks.o
23 else
24
25 obj-y += ppcstring.o
26
27 obj-y += ppccache.o
28 obj-y += ticks.o
29 obj-y += reloc.o
30
31 obj-$(CONFIG_BAT_RW) += bat_rw.o
32 obj-$(CONFIG_CMD_BOOTM) += bootm.o
33 obj-y += cache.o
34 obj-y += extable.o
35 obj-y += interrupts.o
36 obj-$(CONFIG_CMD_KGDB) += kgdb.o
37 obj-y += stack.o
38 obj-y += time.o
39 endif # not minimal
40
41 ifdef CONFIG_SPL_BUILD
42 obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
43 endif