summaryrefslogtreecommitdiff
path: root/lib/skin_parser/Makefile
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-06-17 07:56:51 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-06-17 07:56:51 +0000
commitb2ea95e8d27d8d9fdc5a5422c45218026ad01476 (patch)
tree989b602a000da22145de727f0766e0ed5e8859f9 /lib/skin_parser/Makefile
parent1dc2c5ebcbdf2046c2aad6314018796fe3d0d06e (diff)
downloadrockbox-b2ea95e8d27d8d9fdc5a5422c45218026ad01476.tar.gz
rockbox-b2ea95e8d27d8d9fdc5a5422c45218026ad01476.zip
make the parser slightly more usable for rockbox, move the buffer allocation into the lib (maybe not the best spot?)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26880 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'lib/skin_parser/Makefile')
-rw-r--r--lib/skin_parser/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/skin_parser/Makefile b/lib/skin_parser/Makefile
index 5c1be67578..4026f9e9a9 100644
--- a/lib/skin_parser/Makefile
+++ b/lib/skin_parser/Makefile
@@ -9,7 +9,7 @@
9 9
10BUILDDIR ?= . 10BUILDDIR ?= .
11 11
12SRC = skin_parser.c skin_debug.c skin_scan.c tag_table.c 12SRC = skin_buffer.c skin_parser.c skin_debug.c skin_scan.c tag_table.c
13OBJ := $(patsubst %.c,$(BUILDDIR)/%.o,$(SRC)) 13OBJ := $(patsubst %.c,$(BUILDDIR)/%.o,$(SRC))
14OUT = $(BUILDDIR)/libskin_parser.a 14OUT = $(BUILDDIR)/libskin_parser.a
15CC = gcc 15CC = gcc