diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-10-22 00:21:57 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-10-22 00:21:57 +0000 |
| commit | 0cc8b7113c9b33ee752c33d36a2cd593aae42705 (patch) | |
| tree | da870e699ac8ec9622d6362fea811257907cf438 /apps/plugins/databox/Makefile | |
| parent | 5db8081822baa446bd1c81ac68b75c04b0919112 (diff) | |
| download | rockbox-0cc8b7113c9b33ee752c33d36a2cd593aae42705.zip rockbox-0cc8b7113c9b33ee752c33d36a2cd593aae42705.tar.gz rockbox-0cc8b7113c9b33ee752c33d36a2cd593aae42705.tar.bz2 rockbox-0cc8b7113c9b33ee752c33d36a2cd593aae42705.tar.xz | |
Speed up build process in general by using internal functions of make instead of spawning sub-shells where possible.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11307 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/databox/Makefile')
| -rw-r--r-- | apps/plugins/databox/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/databox/Makefile b/apps/plugins/databox/Makefile index e47ae1e..451f341 100644 --- a/apps/plugins/databox/Makefile +++ b/apps/plugins/databox/Makefile @@ -31,12 +31,12 @@ all: $(OUTPUT) ifndef SIMVER $(OBJDIR)/databox.elf: $(OBJS) $(LINKFILE) - @echo "LD "`basename $@` + @echo "LD $(notdir $@)" @$(CC) $(GCCOPTS) -O -nostdlib -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc \ -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/databox.map $(OUTPUT): $(OBJDIR)/databox.elf - @echo "OBJCOPY "`basename $@` + @echo "OBJCOPY $(notdir $@)" @$(OC) -O binary $< $@ else @@ -78,7 +78,7 @@ DLLTOOLFLAGS = --export-all DLLWRAPFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin $(OUTPUT): $(OBJS) - @echo "DLL "`basename $@` + @echo "DLL $(notdir $@)" @$(DLLTOOL) $(DLLTOOLFLAGS) -z $(OBJDIR)/$*.def $(OBJS) @$(DLLWRAP) $(DLLWRAPFLAGS) --def $(OBJDIR)/$*.def $(OBJS) \ $(BUILDDIR)/libplugin.a -o $@ @@ -99,7 +99,7 @@ include $(TOOLSDIR)/make.inc # MEMORYSIZE should be passed on to this makefile with the chosen memory size # given in number of MB $(LINKFILE): $(LDS) - @echo "build "`basename $@` + @echo "build $(notdir $@)" @cat $< | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) \ $(DEFINES) -E -P - >$@ |