Makefile 389 B

123456789101112131415161718192021
  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. extra-y = start.o
  8. obj-y += cpu.o
  9. obj-$(CONFIG_USE_IRQ) += interrupts.o
  10. obj-$(CONFIG_EP93XX) += ep93xx/
  11. obj-$(CONFIG_IMX) += imx/
  12. obj-$(CONFIG_S3C24X0) += s3c24x0/
  13. # some files can only build in ARM mode
  14. ifdef CONFIG_SYS_THUMB_BUILD
  15. CFLAGS_cpu.o := -marm
  16. endif