blob: 2db0fc1ae5c3dbbe22586c95de75dc8b8498cd94 [file] [log] [blame]
Oliver Grautefe133eb2021-05-31 15:50:40 +02001#
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
Tom Rinib35316f2022-05-13 12:26:35 -040011ifndef CONFIG_TPL_BUILD
Oliver Grautefe133eb2021-05-31 15:50:40 +020012ifdef CONFIG_SPL_INIT_MINIMAL
13MINIMAL=y
14endif
15endif
Tom Rinib35316f2022-05-13 12:26:35 -040016endif
Oliver Grautefe133eb2021-05-31 15:50:40 +020017
18ifdef MINIMAL
19# necessary to create built-in.o
20obj- := __dummy__.o
21else
22
23obj-y += mmc.o
24
25endif