summaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-04 13:30:16 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-04 13:30:16 +0000
commit2fa3ea313dd6b7c04702f9756329a15ce169a731 (patch)
treeb6b15ce9522f109e54e93f78ecaa65ee3ef0c5ae /apps/Makefile
parent187b8ed9dfba6ee5699b7e47a12bb698e293c214 (diff)
downloadrockbox-2fa3ea313dd6b7c04702f9756329a15ce169a731.tar.gz
rockbox-2fa3ea313dd6b7c04702f9756329a15ce169a731.zip
bring back the cat for the preprocessing of the app.lds file, since
Jörg got problems on cygwin with the previous "< file" approach. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4190 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 2fc9d97adb..aaf31479f4 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -101,7 +101,7 @@ $(OBJDIR)/librockbox.a:
101# MEM should be passed on to this makefile with the chosen memory size given 101# MEM should be passed on to this makefile with the chosen memory size given
102# in number of MB 102# in number of MB
103$(LINKFILE): $(LDS) 103$(LINKFILE): $(LDS)
104 $(CC) -DMEMORYSIZE=$(MEM) $(INCLUDES) $(TARGET) $(DEFINES) -E -P - < $< >$@ 104 cat $< | $(CC) -DMEMORYSIZE=$(MEM) $(INCLUDES) $(TARGET) $(DEFINES) -E -P - >$@
105 105
106$(OBJDIR)/rockbox.elf : $(OBJS) $(LINKFILE) $(OBJDIR)/librockbox.a 106$(OBJDIR)/rockbox.elf : $(OBJS) $(LINKFILE) $(OBJDIR)/librockbox.a
107 $(CC) -Os -nostdlib -o $@ $(OBJS) -L$(OBJDIR) -lrockbox -lgcc -L$(FIRMWARE) -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/rockbox.map 107 $(CC) -Os -nostdlib -o $@ $(OBJS) -L$(OBJDIR) -lrockbox -lgcc -L$(FIRMWARE) -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/rockbox.map