diff options
| author | Dave Chapman <dave@dchapman.com> | 2006-02-21 01:23:30 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2006-02-21 01:23:30 +0000 |
| commit | 95538f694901263d7a5282901acb73958082ea82 (patch) | |
| tree | 78eeb5df5820216e2b61756b0e14cf92b1f94ae1 /apps/Makefile | |
| parent | d04dbca00b2f288aa02978623cf9f412fb09c56b (diff) | |
| download | rockbox-95538f694901263d7a5282901acb73958082ea82.zip rockbox-95538f694901263d7a5282901acb73958082ea82.tar.gz rockbox-95538f694901263d7a5282901acb73958082ea82.tar.bz2 rockbox-95538f694901263d7a5282901acb73958082ea82.tar.xz | |
First attempt at generating and using .h files from bitmaps using bmp2rb. The .h files are generated for both the core bitmaps and the plugins, but are only currently being used in the core.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8759 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/Makefile')
| -rw-r--r-- | apps/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile index 26f96a5..55386c9 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -8,7 +8,7 @@ # INCLUDES= -I$(FIRMDIR)/include -I$(FIRMDIR)/export -I. -I$(BUILDDIR) \ - -I$(OBJDIR) + -I$(BUILDDIR)/bitmaps -I$(OBJDIR) DEPFILE = $(OBJDIR)/dep-apps LDS := $(FIRMDIR)/app.lds @@ -85,6 +85,8 @@ endif all: $(REALBIN) $(FLASHFILE) $(CODECS) $(ROCKS) $(ARCHOSROM) endif +$(DEPFILE): $(BITMAPLIBS) + dep: $(DEPFILE) build-codecs: @@ -95,7 +97,7 @@ build-bitmaps: @$(MAKE) -C bitmaps OBJDIR=$(OBJDIR)/bitmaps $(BITMAPLIBS): build-bitmaps - + rocks: build-codecs @$(MAKE) -C plugins/lib OBJDIR=$(OBJDIR)/plugins/lib @$(MAKE) -C plugins OBJDIR=$(OBJDIR)/plugins @@ -212,6 +214,7 @@ clean: @$(MAKE) -C plugins clean OBJDIR=$(OBJDIR)/plugins @$(MAKE) -C codecs clean OBJDIR=$(OBJDIR)/codecs @rm -rf $(OBJDIR)/recorder $(OBJDIR)/player + @rm -rf $(BUILDDIR)/bitmaps ifdef SIMVER @$(MAKE) -C $(SIMDIR) clean endif |