summaryrefslogtreecommitdiff
path: root/lib/skin_parser/skin_parser.make
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2010-06-17 11:04:32 +0000
committerBjörn Stenberg <bjorn@haxx.se>2010-06-17 11:04:32 +0000
commitf1a144a07772d5683d9e117c4639ad75235fd1bc (patch)
treea800b4b0133710df9c751c3f81df00fb71422388 /lib/skin_parser/skin_parser.make
parentdb658d98401d23957c8fe88b4bd96ab184f0ffef (diff)
downloadrockbox-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.make20
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#
8SKINP_DIR = $(ROOTDIR)/lib/skin_parser
9SKINP_SRC = $(call preprocess, $(SKINP_DIR)/SOURCES)
10SKINP_OBJ := $(call c2obj, $(SKINP_SRC))
11
12OTHER_SRC += $(SKINP_SRC)
13
14SKINLIB = $(BUILDDIR)/libskin_parser.a
15
16INCLUDES += -I$(SKINP_DIR)
17
18$(SKINLIB): $(SKINP_OBJ)
19 $(SILENT)$(shell rm -f $@)
20 $(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null