1# 2# (C) Copyright 2000-2006 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4# 5# SPDX-License-Identifier: GPL-2.0+ 6# 7 8extra-y = start.o 9 10obj-y += cpu.o 11 12obj-$(CONFIG_EP93XX) += ep93xx/ 13obj-$(CONFIG_IMX) += imx/ 14obj-$(CONFIG_S3C24X0) += s3c24x0/ 15 16# some files can only build in ARM mode 17 18ifdef CONFIG_$(SPL_)SYS_THUMB_BUILD 19CFLAGS_cpu.o := -marm 20endif 21