]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/freescale/p1_p2_rdb/Makefile
powerpc: mpc83xx: remove MPC8360ERDK, EMPC8360EMDS support
[karo-tx-uboot.git] / board / freescale / p1_p2_rdb / Makefile
1 #
2 # Copyright 2009 Freescale Semiconductor, Inc.
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5 #
6
7 MINIMAL=
8
9 ifdef CONFIG_SPL_BUILD
10 ifdef CONFIG_SPL_INIT_MINIMAL
11 MINIMAL=y
12 endif
13 endif
14
15 ifdef MINIMAL
16
17 obj-y   += spl_minimal.o tlb.o law.o
18
19 else
20 ifdef CONFIG_SPL_BUILD
21 obj-y += spl.o
22 else
23 obj-y   += p1_p2_rdb.o
24 obj-$(CONFIG_PCI)  += pci.o
25 endif
26 obj-y   += ddr.o
27 obj-y   += law.o
28 obj-y   += tlb.o
29
30 endif