summaryrefslogtreecommitdiffstats
path: root/arch/arm/Makefile
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2016-08-23 18:47:02 -0700
committerSascha Hauer <s.hauer@pengutronix.de>2016-08-24 14:02:14 +0200
commitb65b13745381101cd9e5d34e3663c919502f10e2 (patch)
treee85d024a87126c371bfe71254ecd95e03ac4d494 /arch/arm/Makefile
parent1dff49274b823379c5a06e8fcd337c73c0e4e24b (diff)
downloadbarebox-b65b13745381101cd9e5d34e3663c919502f10e2.tar.gz
barebox-b65b13745381101cd9e5d34e3663c919502f10e2.tar.xz
arm: Add both .lds files to CLEAN_FILES unconditionally
'clean' target is listed on 'no-dot-config-targets' list in main Makefile so that conditional statement would yeild the same result every time. Given how CLEAN_FILES are rm'ed with -f there should be no harm in specifying them both unconditionally. Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/Makefile')
-rw-r--r--arch/arm/Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index 55f72484c9..96ec588da0 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -314,9 +314,5 @@ endif
common- += $(patsubst %,arch/arm/boards/%/,$(board-))
CLEAN_FILES += include/generated/mach-types.h barebox-flash-image
-
-ifeq ($(CONFIG_CPU_V8), y)
CLEAN_FILES += arch/arm/lib64/barebox.lds
-else
CLEAN_FILES += arch/arm/lib32/barebox.lds
-endif