summaryrefslogtreecommitdiff
path: root/apps/plugins/Makefile
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-07-24 09:42:59 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-07-24 09:42:59 +0000
commit9b1b610bd012d2fc8b38b70953c273bed7ec221f (patch)
treeaf34df0f8981d5df4418ae831ec2aeef35f0a6fa /apps/plugins/Makefile
parent611e3592c71688e25c658b5178810bc6b0badb37 (diff)
downloadrockbox-9b1b610bd012d2fc8b38b70953c273bed7ec221f.tar.gz
rockbox-9b1b610bd012d2fc8b38b70953c273bed7ec221f.zip
Henrik Backe's patch that makes the .map files get created in the build
directory and not in the source directory. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3872 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/Makefile')
-rw-r--r--apps/plugins/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile
index c0b5f14687..558afacc10 100644
--- a/apps/plugins/Makefile
+++ b/apps/plugins/Makefile
@@ -31,7 +31,7 @@ no_configure:
31endif 31endif
32 32
33$(OBJDIR)/%.elf: $(OBJDIR)/%.o $(LINKFILE) 33$(OBJDIR)/%.elf: $(OBJDIR)/%.o $(LINKFILE)
34 $(CC) -O -nostdlib -o $@ $< -lgcc -T$(LINKFILE) -Wl,-Map,$*.map 34 $(CC) -O -nostdlib -o $@ $< -lgcc -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/$*.map
35 35
36$(OBJDIR)/%.rock : $(OBJDIR)/%.elf 36$(OBJDIR)/%.rock : $(OBJDIR)/%.elf
37 $(OC) -O binary $< $@ 37 $(OC) -O binary $< $@