diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2008-10-29 15:59:20 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2008-10-29 15:59:20 +0000 |
| commit | 3e4c9f760bb10865b1cf4d6ba942387d7843ec28 (patch) | |
| tree | 3232842d1d12269b6cf58b42ed4bfd3bea624371 /apps | |
| parent | 5fa5578284e007d5e95e8907d32b720462d2e51c (diff) | |
| download | rockbox-3e4c9f760bb10865b1cf4d6ba942387d7843ec28.zip rockbox-3e4c9f760bb10865b1cf4d6ba942387d7843ec28.tar.gz rockbox-3e4c9f760bb10865b1cf4d6ba942387d7843ec28.tar.bz2 rockbox-3e4c9f760bb10865b1cf4d6ba942387d7843ec28.tar.xz | |
Added an explicit bitmap dependency to icons.h to resolve issues with parallell builds (-j).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18922 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/Makefile b/apps/Makefile index 1e0be55..cc5594a 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -106,20 +106,20 @@ build-codecs: $(SILENT)$(MAKE) -C codecs/lib OBJDIR=$(OBJDIR)/codecs/lib $(SILENT)$(MAKE) -C codecs OBJDIR=$(OBJDIR)/codecs -build-bitmapsmono: +recorder/icons.h: $(BITMAPLIBS) + +$(BUILDDIR)/libbitmapsmono.a: $(call PRINTS,MAKE in bitmaps/mono)$(MAKE) -C bitmaps/mono OBJDIR=$(OBJDIR)/bitmaps/mono -build-bitmapsnative: +$(BUILDDIR)/libbitmapsnative.a: $(call PRINTS,MAKE in bitmaps/native)$(MAKE) -C bitmaps/native OBJDIR=$(OBJDIR)/bitmaps/native -build-bitmapsremotemono: +$(BUILDDIR)/libbitmapsremotemono.a: $(call PRINTS,MAKE in bitmaps/remote_mono)$(MAKE) -C bitmaps/remote_mono OBJDIR=$(OBJDIR)/bitmaps/remote_mono -build-bitmapsremotenative: +$(BUILDDIR)/libbitmapsremotenative.a: $(call PRINTS,MAKE in bitmaps/remote_native)$(MAKE) -C bitmaps/remote_native OBJDIR=$(OBJDIR)/bitmaps/remote_native -$(BITMAPLIBS): $(BUILDDIR)/lib%.a: build-% - rocks: build-codecs $(SILENT)$(MAKE) -C plugins/lib OBJDIR=$(OBJDIR)/plugins/lib $(SILENT)$(MAKE) -C plugins OBJDIR=$(OBJDIR)/plugins |