diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-05-24 14:25:53 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-05-24 14:25:53 +0000 |
| commit | 38404c0fe00092a171b3cc4c13ee5575415338d6 (patch) | |
| tree | 9220d213b1cd84c5e63a535826a8466c346e2e1a | |
| parent | 056effc9457aa103c4833d5196d97f7232cd392c (diff) | |
| download | rockbox-38404c0fe00092a171b3cc4c13ee5575415338d6.zip rockbox-38404c0fe00092a171b3cc4c13ee5575415338d6.tar.gz rockbox-38404c0fe00092a171b3cc4c13ee5575415338d6.tar.bz2 rockbox-38404c0fe00092a171b3cc4c13ee5575415338d6.tar.xz | |
re-link the output if librockbox.a is newer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6518 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile index 38b213f..6287f49 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -112,7 +112,7 @@ endif $(BUILDDIR)/$(BINARY) : $(OBJS) $(DEPFILE) $(BUILDDIR)/libsim.a \ - $(BUILDDIR)/libcomsim.a + $(BUILDDIR)/libcomsim.a $(LIBROCKBOX) @echo "LD $(BINARY)" @$(CC) $(GCCOPTS) -o $@ $(OBJS) -L$(BUILDDIR) -lrockbox -lsim -lcomsim $(LDOPTS) $(EXTRAOBJ) -Wl,-Map,$(OBJDIR)/rockbox.map |