summaryrefslogtreecommitdiff
path: root/apps/bitmaps/bitmaps.make
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-11-20 11:27:31 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-11-20 11:27:31 +0000
commitc6b3d38a156dd624760a8eb1bb374affd43b4f2a (patch)
tree493eba929e2396d86cf4f077709aa09fe172cd35 /apps/bitmaps/bitmaps.make
parentf66c30346783a400a029bedcd60ab67c81c34a07 (diff)
downloadrockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.tar.gz
rockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.zip
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.make51
1 files changed, 51 insertions, 0 deletions
diff --git a/apps/bitmaps/bitmaps.make b/apps/bitmaps/bitmaps.make
new file mode 100644
index 0000000000..8d0054532e
--- /dev/null
+++ b/apps/bitmaps/bitmaps.make
@@ -0,0 +1,51 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id: Makefile 19082 2008-11-10 23:54:24Z zagor $
8#
9
10BITMAPDIR = $(ROOTDIR)/apps/bitmaps
11BMPINCDIR = $(BUILDDIR)/bitmaps
12
13INCLUDES += -I$(BMPINCDIR)
14
15ifneq ($(strip $(BMP2RB_MONO)),)
16BMP = $(call preprocess, $(BITMAPDIR)/mono/SOURCES)
17endif
18ifneq ($(strip $(BMP2RB_NATIVE)),)
19BMP += $(call preprocess, $(BITMAPDIR)/native/SOURCES)
20endif
21ifneq ($(strip $(BMP2RB_REMOTEMONO)),)
22BMP += $(call preprocess, $(BITMAPDIR)/remote_mono/SOURCES)
23endif
24ifneq ($(strip $(BMP2RB_REMOTENATIVE)),)
25BMP += $(call preprocess, $(BITMAPDIR)/remote_native/SOURCES)
26endif
27
28BMPOBJ = $(BMP:$(ROOTDIR)/%.bmp=$(BUILDDIR)/%.o)
29
30BMPHFILES = $(BMPINCDIR)/usblogo.h $(BMPINCDIR)/remote_usblogo.h \
31 $(BMPINCDIR)/default_icons.h $(BMPINCDIR)/remote_default_icons.h \
32 $(BMPINCDIR)/rockboxlogo.h $(BMPINCDIR)/remote_rockboxlogo.h
33
34$(BMPHFILES): $(BMPOBJ)
35
36# pattern rules to create .c files from .bmp, one for each subdir:
37$(BUILDDIR)/apps/bitmaps/mono/%.c: $(ROOTDIR)/apps/bitmaps/mono/%.bmp $(TOOLSDIR)/bmp2rb
38 $(SILENT)mkdir -p $(dir $@) $(BMPINCDIR)
39 $(call PRINTS,BMP2RB $(<F))$(BMP2RB_MONO) -h $(BMPINCDIR) $< > $@
40
41$(BUILDDIR)/apps/bitmaps/native/%.c: $(ROOTDIR)/apps/bitmaps/native/%.bmp $(TOOLSDIR)/bmp2rb
42 $(SILENT)mkdir -p $(dir $@) $(BMPINCDIR)
43 $(call PRINTS,BMP2RB $(<F))$(BMP2RB_NATIVE) -h $(BMPINCDIR) $< > $@
44
45$(BUILDDIR)/apps/bitmaps/remote_mono/%.c: $(ROOTDIR)/apps/bitmaps/remote_mono/%.bmp $(TOOLSDIR)/bmp2rb
46 $(SILENT)mkdir -p $(dir $@) $(BMPINCDIR)
47 $(call PRINTS,BMP2RB $(<F))$(BMP2RB_REMOTEMONO) -h $(BMPINCDIR) $< > $@
48
49$(BUILDDIR)/apps/bitmaps/remote_native/%.c: $(ROOTDIR)/apps/bitmaps/remote_native/%.bmp $(TOOLSDIR)/bmp2rb
50 $(SILENT)mkdir -p $(dir $@) $(BMPINCDIR)
51 $(call PRINTS,BMP2RB $(<F))$(BMP2RB_REMOTENATIVE) -h $(BMPINCDIR) $< > $@