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 11obj-$(CONFIG_USE_IRQ) += interrupts.o 12 13obj-$(CONFIG_EP93XX) += ep93xx/ 14obj-$(CONFIG_IMX) += imx/ 15obj-$(CONFIG_S3C24X0) += s3c24x0/ 16 17# some files can only build in ARM mode 18 19ifdef CONFIG_SYS_THUMB_BUILD 20CFLAGS_cpu.o := -marm 21endif 22