xref: /openbmc/u-boot/board/freescale/p1022ds/Makefile (revision 83d290c56fab2d38cd1ab4c4cc7099559c1d5046)
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # Copyright 2010 Freescale Semiconductor, Inc.
4 
5 MINIMAL=
6 
7 ifdef CONFIG_SPL_BUILD
8 ifdef CONFIG_SPL_INIT_MINIMAL
9 MINIMAL=y
10 endif
11 endif
12 
13 ifdef MINIMAL
14 obj-y	+= spl_minimal.o
15 else
16 ifdef CONFIG_SPL_BUILD
17 obj-y	+= spl.o
18 endif
19 obj-y	+= p1022ds.o
20 obj-y	+= ddr.o
21 obj-$(CONFIG_FSL_DIU_FB) += diu.o
22 endif
23 
24 obj-y	+= law.o
25 obj-y	+= tlb.o
26