]> git.ipfire.org Git - u-boot.git/blame - arch/powerpc/lib/Makefile
powerpc, 5xxx, 512x: remove support for mpc5xxx and mpc512x
[u-boot.git] / arch / powerpc / lib / Makefile
CommitLineData
0c8959d6 1#
f9328639 2# (C) Copyright 2000-2006
0c8959d6
WD
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
0c8959d6
WD
6#
7
01baa056 8## Build a couple of necessary functions into a private libgcc
06c14117 9## if the user asked for it
cd2e46cb 10lib-$(CONFIG_USE_PRIVATE_LIBGCC) += _ashldi3.o _ashrdi3.o _lshrdi3.o
01baa056 11
4b919725
SW
12MINIMAL=
13
14ifdef CONFIG_SPL_BUILD
15ifdef CONFIG_SPL_INIT_MINIMAL
16MINIMAL=y
17endif
18endif
19
e5fb573f 20obj-$(CONFIG_SYS_EXTBDINFO) += setup.o
4b919725 21ifdef MINIMAL
06c14117
MY
22obj-y += cache.o time.o
23obj-y += ticks.o
4b919725
SW
24else
25
06c14117 26obj-y += ppcstring.o
4b919725 27
06c14117
MY
28obj-y += ppccache.o
29obj-y += ticks.o
30obj-y += reloc.o
823afe7c 31
06c14117 32obj-$(CONFIG_BAT_RW) += bat_rw.o
06c14117
MY
33obj-$(CONFIG_CMD_BOOTM) += bootm.o
34obj-y += cache.o
35obj-y += extable.o
36obj-y += interrupts.o
37obj-$(CONFIG_CMD_KGDB) += kgdb.o
68145d4c 38obj-y += stack.o
06c14117 39obj-y += time.o
4b919725
SW
40endif # not minimal
41
ea8256f0 42ifdef CONFIG_SPL_BUILD
06c14117 43obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
ea8256f0 44endif