Makefile: Select objects by CONFIG_ rather than $(ARCH) or $(CPU)
[oweals/u-boot.git] / arch / powerpc / cpu / mpc8xxx / Makefile
1 #
2 # Copyright 2009-2010 Freescale Semiconductor, Inc.
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # Version 2 as published by the Free Software Foundation.
7 #
8
9 MINIMAL=
10
11 ifdef CONFIG_SPL_BUILD
12 ifdef CONFIG_SPL_INIT_MINIMAL
13 MINIMAL=y
14 endif
15 endif
16
17 ifdef MINIMAL
18
19 obj-$(CONFIG_FSL_LAW) += law.o
20
21 else
22 obj-$(CONFIG_MPC85xx) += cpu.o
23 obj-$(CONFIG_MPC86xx) += cpu.o
24
25 obj-$(CONFIG_OF_LIBFDT) += fdt.o
26 obj-$(CONFIG_FSL_LBC) += fsl_lbc.o
27 obj-$(CONFIG_SYS_SRIO) += srio.o
28 obj-$(CONFIG_FSL_LAW) += law.o
29
30 endif