summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-04 08:33:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-04 08:33:46 +0000
commit3edc65b137cf7f17d4412ac018afa6731a466b74 (patch)
tree10c7940fbacd5b96955aec3eee26ea80c3bdc786
parent16df4e08188c9c3f7a0ffbcdc2ae07939e68a47d (diff)
downloadrockbox-3edc65b137cf7f17d4412ac018afa6731a466b74.tar.gz
rockbox-3edc65b137cf7f17d4412ac018afa6731a466b74.zip
preprocess the linker file with more info
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5770 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile
index 843d3a5f88..802ff04675 100644
--- a/apps/plugins/Makefile
+++ b/apps/plugins/Makefile
@@ -48,7 +48,7 @@ $(OBJDIR)/libplugin.a:
48# in number of MB 48# in number of MB
49$(LINKFILE): $(LDS) 49$(LINKFILE): $(LDS)
50 @echo "build $@" 50 @echo "build $@"
51 @$(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(DEFINES) -x c -E -P $< >$@ 51 @cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) $(DEFINES) -E -P - >$@
52 52
53clean: 53clean:
54 @echo "cleaning plugins" 54 @echo "cleaning plugins"