summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-11-04 14:23:05 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-11-04 14:23:05 +0000
commitade338720875cf453a5b6709ffdff80a57ce0470 (patch)
tree980f151bea4a90dbff521741e4cb982285355d35
parent08ef046d5612ac4b090589b5a2053f86ad2f2bd2 (diff)
downloadrockbox-ade338720875cf453a5b6709ffdff80a57ce0470.tar.gz
rockbox-ade338720875cf453a5b6709ffdff80a57ce0470.zip
Removed the depfile dependency for the .elf target, so all plugins aren't relinked every time a plugin source file changes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5381 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 55068f08d0..843d3a5f88 100644
--- a/apps/plugins/Makefile
+++ b/apps/plugins/Makefile
@@ -30,7 +30,7 @@ DIRS = .
30 30
31all: $(OBJDIR)/libplugin.a $(ROCKS) $(DEPFILE) 31all: $(OBJDIR)/libplugin.a $(ROCKS) $(DEPFILE)
32 32
33$(OBJDIR)/%.elf: $(OBJDIR)/%.o $(LINKFILE) $(OBJDIR)/libplugin.a $(DEPFILE) 33$(OBJDIR)/%.elf: $(OBJDIR)/%.o $(LINKFILE) $(OBJDIR)/libplugin.a
34 @echo "LD $@" 34 @echo "LD $@"
35 @$(CC) -O -nostdlib -o $@ $< -L$(OBJDIR) -lplugin -lgcc -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/$*.map 35 @$(CC) -O -nostdlib -o $@ $< -L$(OBJDIR) -lplugin -lgcc -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/$*.map
36 36