mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
0d8c939414
This is not used anymore. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
19 lines
324 B
Makefile
19 lines
324 B
Makefile
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
extra-y = start.o
|
|
|
|
obj-y += cpu.o
|
|
|
|
obj-$(CONFIG_EP93XX) += ep93xx/
|
|
obj-$(CONFIG_IMX) += imx/
|
|
|
|
# some files can only build in ARM mode
|
|
|
|
ifdef CONFIG_$(SPL_)SYS_THUMB_BUILD
|
|
CFLAGS_cpu.o := -marm
|
|
endif
|