mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-11 07:24:46 +00:00

Use XPL_ as the symbol to indicate an SPL build. This means that SPL_ is no-longer set. Signed-off-by: Simon Glass <sjg@chromium.org>
14 lines
261 B
Makefile
14 lines
261 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
extra-y = start.o
|
|
|
|
obj-y += cpu.o
|
|
|
|
# some files can only build in ARM mode
|
|
|
|
ifdef CONFIG_$(XPL_)SYS_THUMB_BUILD
|
|
CFLAGS_cpu.o := -marm
|
|
endif
|