]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/cpu/arm926ejs/Makefile
SPDX: Convert all of our single license tags to Linux Kernel style
[u-boot] / arch / arm / cpu / arm926ejs / Makefile
index ac23116955ed42af3422bfc92c94eba10630d8c5..fdb0c926fb2ced72fbc7511707573ed336de5741 100644 (file)
@@ -1,9 +1,7 @@
+# SPDX-License-Identifier: GPL-2.0+
 #
 # (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 cache.o
@@ -19,5 +17,15 @@ obj-$(if $(filter lpc32xx,$(SOC)),y) += lpc32xx/
 obj-$(CONFIG_MX25) += mx25/
 obj-$(CONFIG_MX27) += mx27/
 obj-$(if $(filter mxs,$(SOC)),y) += mxs/
-obj-$(CONFIG_PANTHEON) += pantheon/
 obj-$(if $(filter spear,$(SOC)),y) += spear/
+
+# some files can only build in ARM or THUMB2, not THUMB1
+
+ifdef CONFIG_$(SPL_)SYS_THUMB_BUILD
+ifndef CONFIG_HAS_THUMB2
+
+CFLAGS_cpu.o := -marm
+CFLAGS_cache.o := -marm
+
+endif
+endif