diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-28 12:09:17 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-28 12:09:17 +0000 |
commit | 00dd42a7135e4cadf49158e97ded8f9357941044 (patch) | |
tree | c6cfdd93a42ee279a690e31996362512734bdff9 /apps | |
parent | 06ded52f3c202314411d019d06c0b942fb7e412e (diff) |
Correct libcomsim.a dependencies
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6083 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile index 4f80e045b7..d943d2a855 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -42,8 +42,12 @@ MAXOUTFILE = $(OBJDIR)/romstart ifdef SIMVER # this is a sim build -all: $(OBJDIR)/$(BINARY) $(CODECS) $(ROCKS) +COMMONLIB = $(ROOTDIR)/uisimulator/common/libcomsim.a + +all: $(COMMONLIB) $(OBJDIR)/$(BINARY) $(CODECS) $(ROCKS) @$(MAKE) -C $(SIMDIR) + +$(COMMONLIB): @$(MAKE) -C $(ROOTDIR)/uisimulator/common else # regular target build |