diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2008-11-20 11:27:31 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2008-11-20 11:27:31 +0000 |
| commit | c6b3d38a156dd624760a8eb1bb374affd43b4f2a (patch) | |
| tree | 493eba929e2396d86cf4f077709aa09fe172cd35 /apps/bitmaps/bitmaps.make | |
| parent | f66c30346783a400a029bedcd60ab67c81c34a07 (diff) | |
| download | rockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.zip rockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.tar.gz rockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.tar.bz2 rockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.tar.xz | |
New makefile solution: A single invocation of 'make' to build the entire tree. Fully controlled dependencies give faster and more correct recompiles.
Many #include lines adjusted to conform to the new standards.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19146 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/bitmaps/bitmaps.make')
| -rw-r--r-- | apps/bitmaps/bitmaps.make | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/apps/bitmaps/bitmaps.make b/apps/bitmaps/bitmaps.make new file mode 100644 index 0000000..8d00545 --- /dev/null +++ b/apps/bitmaps/bitmaps.make @@ -0,0 +1,51 @@ +# __________ __ ___. +# Open \______ \ ____ ____ | | _\_ |__ _______ ___ +# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +# \/ \/ \/ \/ \/ +# $Id: Makefile 19082 2008-11-10 23:54:24Z zagor $ +# + +BITMAPDIR = $(ROOTDIR)/apps/bitmaps +BMPINCDIR = $(BUILDDIR)/bitmaps + +INCLUDES += -I$(BMPINCDIR) + +ifneq ($(strip $(BMP2RB_MONO)),) +BMP = $(call preprocess, $(BITMAPDIR)/mono/SOURCES) +endif +ifneq ($(strip $(BMP2RB_NATIVE)),) +BMP += $(call preprocess, $(BITMAPDIR)/native/SOURCES) +endif +ifneq ($(strip $(BMP2RB_REMOTEMONO)),) +BMP += $(call preprocess, $(BITMAPDIR)/remote_mono/SOURCES) +endif +ifneq ($(strip $(BMP2RB_REMOTENATIVE)),) +BMP += $(call preprocess, $(BITMAPDIR)/remote_native/SOURCES) +endif + +BMPOBJ = $(BMP:$(ROOTDIR)/%.bmp=$(BUILDDIR)/%.o) + +BMPHFILES = $(BMPINCDIR)/usblogo.h $(BMPINCDIR)/remote_usblogo.h \ + $(BMPINCDIR)/default_icons.h $(BMPINCDIR)/remote_default_icons.h \ + $(BMPINCDIR)/rockboxlogo.h $(BMPINCDIR)/remote_rockboxlogo.h + +$(BMPHFILES): $(BMPOBJ) + +# pattern rules to create .c files from .bmp, one for each subdir: +$(BUILDDIR)/apps/bitmaps/mono/%.c: $(ROOTDIR)/apps/bitmaps/mono/%.bmp $(TOOLSDIR)/bmp2rb + $(SILENT)mkdir -p $(dir $@) $(BMPINCDIR) + $(call PRINTS,BMP2RB $(<F))$(BMP2RB_MONO) -h $(BMPINCDIR) $< > $@ + +$(BUILDDIR)/apps/bitmaps/native/%.c: $(ROOTDIR)/apps/bitmaps/native/%.bmp $(TOOLSDIR)/bmp2rb + $(SILENT)mkdir -p $(dir $@) $(BMPINCDIR) + $(call PRINTS,BMP2RB $(<F))$(BMP2RB_NATIVE) -h $(BMPINCDIR) $< > $@ + +$(BUILDDIR)/apps/bitmaps/remote_mono/%.c: $(ROOTDIR)/apps/bitmaps/remote_mono/%.bmp $(TOOLSDIR)/bmp2rb + $(SILENT)mkdir -p $(dir $@) $(BMPINCDIR) + $(call PRINTS,BMP2RB $(<F))$(BMP2RB_REMOTEMONO) -h $(BMPINCDIR) $< > $@ + +$(BUILDDIR)/apps/bitmaps/remote_native/%.c: $(ROOTDIR)/apps/bitmaps/remote_native/%.bmp $(TOOLSDIR)/bmp2rb + $(SILENT)mkdir -p $(dir $@) $(BMPINCDIR) + $(call PRINTS,BMP2RB $(<F))$(BMP2RB_REMOTENATIVE) -h $(BMPINCDIR) $< > $@ |