summaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 294bc69976..6b3f999112 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -70,7 +70,7 @@ LIBROCKBOX = $(BUILDDIR)/librockbox.a
70ifdef SIMVER 70ifdef SIMVER
71# this is a sim build 71# this is a sim build
72 72
73all: build-bitmaps $(BUILDDIR)/$(BINARY) $(CODECS) $(ROCKS) 73all: $(BUILDDIR)/$(BINARY) $(CODECS) $(ROCKS)
74 74
75else 75else
76# regular target build 76# regular target build
@@ -82,7 +82,7 @@ else
82REALBIN = $(BUILDDIR)/$(BINARY) 82REALBIN = $(BUILDDIR)/$(BINARY)
83endif 83endif
84 84
85all: build-bitmaps $(REALBIN) $(FLASHFILE) $(CODECS) $(ROCKS) $(ARCHOSROM) 85all: $(REALBIN) $(FLASHFILE) $(CODECS) $(ROCKS) $(ARCHOSROM)
86endif 86endif
87 87
88dep: $(DEPFILE) 88dep: $(DEPFILE)
@@ -94,7 +94,9 @@ build-codecs:
94build-bitmaps: 94build-bitmaps:
95 @$(MAKE) -C bitmaps OBJDIR=$(OBJDIR)/bitmaps 95 @$(MAKE) -C bitmaps OBJDIR=$(OBJDIR)/bitmaps
96 96
97rocks: 97$(BITMAPLIBS): build-bitmaps
98
99rocks: build-codecs
98 @$(MAKE) -C plugins/lib OBJDIR=$(OBJDIR)/plugins/lib 100 @$(MAKE) -C plugins/lib OBJDIR=$(OBJDIR)/plugins/lib
99 @$(MAKE) -C plugins OBJDIR=$(OBJDIR)/plugins 101 @$(MAKE) -C plugins OBJDIR=$(OBJDIR)/plugins
100 102