xref: /openbmc/u-boot/board/varisys/common/Makefile (revision 39665bee)
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
11ifdef CONFIG_SPL_INIT_MINIMAL
12MINIMAL=y
13endif
14endif
15
16ifdef MINIMAL
17# necessary to create built-in.o
18obj- := __dummy__.o
19else
20ifndef CONFIG_SPL_BUILD
21obj-$(CONFIG_ID_EEPROM)	+= sys_eeprom.o
22endif
23endif
24