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