diff options
author | Björn Stenberg <bjorn@haxx.se> | 2010-06-17 11:04:32 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2010-06-17 11:04:32 +0000 |
commit | f1a144a07772d5683d9e117c4639ad75235fd1bc (patch) | |
tree | a800b4b0133710df9c751c3f81df00fb71422388 /lib/skin_parser/skin_parser.make | |
parent | db658d98401d23957c8fe88b4bd96ab184f0ffef (diff) | |
download | rockbox-f1a144a07772d5683d9e117c4639ad75235fd1bc.tar.gz rockbox-f1a144a07772d5683d9e117c4639ad75235fd1bc.zip |
Added skin_parser library to build system. Fixed some warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26884 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'lib/skin_parser/skin_parser.make')
-rw-r--r-- | lib/skin_parser/skin_parser.make | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/skin_parser/skin_parser.make b/lib/skin_parser/skin_parser.make new file mode 100644 index 0000000000..c73fc6ef00 --- /dev/null +++ b/lib/skin_parser/skin_parser.make | |||
@@ -0,0 +1,20 @@ | |||
1 | # __________ __ ___. | ||
2 | # Open \______ \ ____ ____ | | _\_ |__ _______ ___ | ||
3 | # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / | ||
4 | # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < | ||
5 | # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ | ||
6 | # \/ \/ \/ \/ \/ | ||
7 | # | ||
8 | SKINP_DIR = $(ROOTDIR)/lib/skin_parser | ||
9 | SKINP_SRC = $(call preprocess, $(SKINP_DIR)/SOURCES) | ||
10 | SKINP_OBJ := $(call c2obj, $(SKINP_SRC)) | ||
11 | |||
12 | OTHER_SRC += $(SKINP_SRC) | ||
13 | |||
14 | SKINLIB = $(BUILDDIR)/libskin_parser.a | ||
15 | |||
16 | INCLUDES += -I$(SKINP_DIR) | ||
17 | |||
18 | $(SKINLIB): $(SKINP_OBJ) | ||
19 | $(SILENT)$(shell rm -f $@) | ||
20 | $(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null | ||