1#
2# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# SPDX-License-Identifier:	GPL-2.0+
6#
7
8MINIMAL=
9
10ifdef CONFIG_SPL_BUILD
11ifndef CONFIG_TPL_BUILD
12ifdef CONFIG_SPL_INIT_MINIMAL
13MINIMAL=y
14endif
15endif
16endif
17
18ifdef MINIMAL
19# necessary to create built-in.o
20obj- := __dummy__.o
21else
22
23obj-y				+= mmc.o
24
25endif
26