mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 06:26:07 +01:00
Use the new symbol to refer to any 'SPL' build, including TPL and VPL Signed-off-by: Simon Glass <sjg@chromium.org>
13 lines
289 B
Makefile
13 lines
289 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
# Copyright (c) 2016 Toradex, Inc.
|
|
|
|
# Common for all Toradex modules
|
|
ifeq ($(CONFIG_XPL_BUILD),y)
|
|
# Necessary to create built-in.o
|
|
obj- := __dummy__.o
|
|
else
|
|
obj-$(CONFIG_TDX_CFG_BLOCK) += tdx-cfg-block.o
|
|
obj-y += tdx-common.o
|
|
obj-y += tdx-eeprom.o
|
|
endif
|