summaryrefslogtreecommitdiff
path: root/lib/skin_parser/skin_parser.make
diff options
context:
space:
mode:
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