diff options
author | Brandon Low <lostlogic@rockbox.org> | 2006-02-13 13:45:10 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@rockbox.org> | 2006-02-13 13:45:10 +0000 |
commit | b55f20a12d6b68d0f4f53ab19db76e8b5388d8bb (patch) | |
tree | b10c38aa9d91e631708f5915169a04430f627b28 /firmware/decompressor | |
parent | e4d039972734f59711be64ec3b4f83658f631412 (diff) |
Hopefully fix highly parallel build of recorder 8mb
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8675 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/decompressor')
-rw-r--r-- | firmware/decompressor/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/decompressor/Makefile b/firmware/decompressor/Makefile index 5e4e73912e..263c3111a2 100644 --- a/firmware/decompressor/Makefile +++ b/firmware/decompressor/Makefile @@ -22,10 +22,13 @@ $(OBJDIR)/compressed.bin : $(OBJDIR)/compressed.elf @echo "OBJCOPY "`basename $@` $(SILENT)$(OC) -O binary $< $@ -$(OBJDIR)/compressed.elf : $(OBJS) $(LINKFILE) +$(OBJDIR)/compressed.elf : $(LINKFILE) @echo "LD `basename $@`" $(SILENT)$(CC) $(GCCOPTS) -Os -nostdlib -o $@ $(OBJS) -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/compressed.map +$(LDS): $(OBJS) + + $(LINKFILE): $(LDS) @echo "Build LDS file" $(SILENT)cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) $(DEFINES) -E -P $(ROMBUILD) - >$@ |