summaryrefslogtreecommitdiff
path: root/tools/make.inc
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-12-27 17:27:59 +0000
committerThomas Martitz <kugel@rockbox.org>2010-12-27 17:27:59 +0000
commit0bf1bd1d51750bf9eb0b3e149452dc1c3a89166c (patch)
treeddc94b863dda316e420f72673e3a86a3732965c8 /tools/make.inc
parent6cbacb1b3eef1ea9c2f1c9ef58795421912cfb90 (diff)
downloadrockbox-0bf1bd1d51750bf9eb0b3e149452dc1c3a89166c.tar.gz
rockbox-0bf1bd1d51750bf9eb0b3e149452dc1c3a89166c.zip
Redo r28026 so that all .S files get the __ASSEMBLER__ define.
Patch by Thomas Jarosch. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28913 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/make.inc')
-rw-r--r--tools/make.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make.inc b/tools/make.inc
index 5521612f62..d03898b2e1 100644
--- a/tools/make.inc
+++ b/tools/make.inc
@@ -11,7 +11,7 @@ $(OBJDIR)/%.o: %.c
11 11
12$(OBJDIR)/%.o: %.S 12$(OBJDIR)/%.o: %.S
13 $(SILENT)mkdir -p $(dir $@) 13 $(SILENT)mkdir -p $(dir $@)
14 $(call PRINTS,CC $<)$(CC) $(CFLAGS) -c $< -o $@ 14 $(call PRINTS,CC $<)$(CC) $(CFLAGS) $(ASMFLAGS) -c $< -o $@
15 15
16# The echo stuff last in the dep update shell magic is to prevent any compiler 16# The echo stuff last in the dep update shell magic is to prevent any compiler
17# errors/warnings to cause an error code to get returned and thus stop the 17# errors/warnings to cause an error code to get returned and thus stop the