blob: e95539e0a3efce0a25d9e624438cb690ed85024d [file] [log] [blame]
Poonam Aggrwal18bacc22009-07-31 12:07:45 +05301#
Kim Phillips5d0c3b52010-05-28 08:00:14 +00002# Copyright 2009-2010 Freescale Semiconductor, Inc.
Poonam Aggrwal18bacc22009-07-31 12:07:45 +05303#
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
Scott Wood4b919722012-09-20 16:35:21 -05009MINIMAL=
10
11ifdef CONFIG_SPL_BUILD
12ifdef CONFIG_SPL_INIT_MINIMAL
13MINIMAL=y
14endif
15endif
16
17ifdef MINIMAL
18
Masahiro Yamada06c14112013-10-17 17:35:04 +090019obj-$(CONFIG_FSL_LAW) += law.o
Scott Wood4b919722012-09-20 16:35:21 -050020
21else
Masahiro Yamadae8a8b822013-11-28 12:09:59 +090022obj-$(CONFIG_MPC85xx) += cpu.o
23obj-$(CONFIG_MPC86xx) += cpu.o
Kim Phillips5d0c3b52010-05-28 08:00:14 +000024
Masahiro Yamada06c14112013-10-17 17:35:04 +090025obj-$(CONFIG_OF_LIBFDT) += fdt.o
Masahiro Yamada06c14112013-10-17 17:35:04 +090026obj-$(CONFIG_FSL_LBC) += fsl_lbc.o
27obj-$(CONFIG_SYS_SRIO) += srio.o
28obj-$(CONFIG_FSL_LAW) += law.o
Poonam Aggrwal18bacc22009-07-31 12:07:45 +053029
Scott Wood4b919722012-09-20 16:35:21 -050030endif