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
5MINIMAL=
6
7ifdef CONFIG_SPL_BUILD
8ifdef CONFIG_SPL_INIT_MINIMAL
9MINIMAL=y
10endif
11endif
12
13ifdef MINIMAL
14obj-y	+= spl_minimal.o
15else
16ifdef CONFIG_SPL_BUILD
17obj-y	+= spl.o
18endif
19obj-y	+= p1022ds.o
20obj-y	+= ddr.o
21obj-$(CONFIG_FSL_DIU_FB) += diu.o
22endif
23
24obj-y	+= law.o
25obj-y	+= tlb.o
26