forked from OERV-BSP/u-boot
Use the new symbol to refer to any 'SPL' build, including TPL and VPL Signed-off-by: Simon Glass <sjg@chromium.org>
16 lines
334 B
Makefile
16 lines
334 B
Makefile
#
|
|
# board/renesas/v3msk/Makefile
|
|
#
|
|
# Copyright (C) 2019 Renesas Electronics Corporation
|
|
# Copyright (C) 2019 Cogent Embedded, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_XPL_BUILD
|
|
obj-y := ../rcar-common/gen3-spl.o
|
|
else
|
|
obj-y := ../rcar-common/v3-common.o ../rcar-common/common.o
|
|
obj-$(CONFIG_SYSRESET) += cpld.o
|
|
endif
|