xref: /openbmc/u-boot/arch/powerpc/cpu/mpc8xxx/Makefile (revision 1ace4022)
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
9MINIMAL=
10
11ifdef CONFIG_SPL_BUILD
12ifdef CONFIG_SPL_INIT_MINIMAL
13MINIMAL=y
14endif
15endif
16
17ifdef MINIMAL
18
19obj-$(CONFIG_FSL_LAW) += law.o
20
21else
22obj-$(CONFIG_MPC85xx) += cpu.o
23obj-$(CONFIG_MPC86xx) += cpu.o
24
25obj-$(CONFIG_OF_LIBFDT) += fdt.o
26obj-$(CONFIG_FSL_LBC) += fsl_lbc.o
27obj-$(CONFIG_SYS_SRIO) += srio.o
28obj-$(CONFIG_FSL_LAW) += law.o
29
30endif
31