summaryrefslogtreecommitdiff
path: root/firmware/asm
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-03-28 23:14:39 +0200
committerThomas Martitz <kugel@rockbox.org>2012-03-28 23:14:39 +0200
commita54c687300a53f2c6d6dab4b512ffa15c0ccce45 (patch)
treeb1cd7983bab137a1050cbb612751f02d232d29d5 /firmware/asm
parent7b1a369cf7801f98139189ade463f3a460f78d85 (diff)
Apparently make doesn't like inline comments
Change-Id: If604af9713cf95dafbeb1a601219ca1b3a8964fa
Diffstat (limited to 'firmware/asm')
-rw-r--r--firmware/asm/asm.make3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/asm/asm.make b/firmware/asm/asm.make
index 69147c506e..9cd134ec54 100644
--- a/firmware/asm/asm.make
+++ b/firmware/asm/asm.make
@@ -10,8 +10,9 @@
# Collect dummy C files in firmware/asm
ASM_DUMMY_SRC := $(notdir $(call preprocess, $(FIRMDIR)/asm/SOURCES))
-ASM_ARCH := $(subst arch_,,$(ARCH)) # strip arch_ prefix from $(ARCH)
# Get the corresponding real source files under firmware/asm/$ARCH (C or ASM)
+# strip arch_ prefix from $(ARCH)
+ASM_ARCH := $(subst arch_,,$(ARCH))
ASM_C_SRC := $(addprefix $(FIRMDIR)/asm/$(ASM_ARCH)/,$(ASM_DUMMY_SRC))
ASM_S_SRC := $(ASM_C_SRC:.c=.S)