1# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright 2010-2011 Freescale Semiconductor, Inc.
4
5MINIMAL=
6
7ifdef CONFIG_SPL_BUILD
8ifndef CONFIG_TPL_BUILD
9ifdef CONFIG_SPL_INIT_MINIMAL
10MINIMAL=y
11endif
12endif
13endif
14
15ifdef MINIMAL
16obj-y	+= spl_minimal.o
17else
18ifdef CONFIG_SPL_BUILD
19obj-y	+= spl.o
20endif
21obj-y	+= p1010rdb.o
22obj-y	+= ddr.o
23endif
24
25obj-y	+= law.o
26obj-y	+= tlb.o
27