summaryrefslogtreecommitdiff
path: root/apps/plugins
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 /apps/plugins
parent08ef046d5612ac4b090589b5a2053f86ad2f2bd2 (diff)
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
Diffstat (limited to 'apps/plugins')
-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 = .
all: $(OBJDIR)/libplugin.a $(ROCKS) $(DEPFILE)
-$(OBJDIR)/%.elf: $(OBJDIR)/%.o $(LINKFILE) $(OBJDIR)/libplugin.a $(DEPFILE)
+$(OBJDIR)/%.elf: $(OBJDIR)/%.o $(LINKFILE) $(OBJDIR)/libplugin.a
@echo "LD $@"
@$(CC) -O -nostdlib -o $@ $< -L$(OBJDIR) -lplugin -lgcc -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/$*.map