xref: /openbmc/u-boot/board/varisys/common/Makefile (revision e8f80a5a)
1# SPDX-License-Identifier: GPL-2.0+
2#
3# (C) Copyright 2006
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5
6MINIMAL=
7
8ifdef CONFIG_SPL_BUILD
9ifdef CONFIG_SPL_INIT_MINIMAL
10MINIMAL=y
11endif
12endif
13
14ifdef MINIMAL
15# necessary to create built-in.o
16obj- := __dummy__.o
17else
18ifndef CONFIG_SPL_BUILD
19obj-$(CONFIG_ID_EEPROM)	+= sys_eeprom.o
20endif
21endif
22