diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-07-24 09:42:59 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-07-24 09:42:59 +0000 |
| commit | 9b1b610bd012d2fc8b38b70953c273bed7ec221f (patch) | |
| tree | af34df0f8981d5df4418ae831ec2aeef35f0a6fa /apps/plugins/Makefile | |
| parent | 611e3592c71688e25c658b5178810bc6b0badb37 (diff) | |
| download | rockbox-9b1b610bd012d2fc8b38b70953c273bed7ec221f.zip rockbox-9b1b610bd012d2fc8b38b70953c273bed7ec221f.tar.gz rockbox-9b1b610bd012d2fc8b38b70953c273bed7ec221f.tar.bz2 rockbox-9b1b610bd012d2fc8b38b70953c273bed7ec221f.tar.xz | |
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/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/Makefile b/apps/plugins/Makefile index c0b5f14..558afac 100644 --- a/apps/plugins/Makefile +++ b/apps/plugins/Makefile @@ -31,7 +31,7 @@ no_configure: endif $(OBJDIR)/%.elf: $(OBJDIR)/%.o $(LINKFILE) - $(CC) -O -nostdlib -o $@ $< -lgcc -T$(LINKFILE) -Wl,-Map,$*.map + $(CC) -O -nostdlib -o $@ $< -lgcc -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/$*.map $(OBJDIR)/%.rock : $(OBJDIR)/%.elf $(OC) -O binary $< $@ |