summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-08-24 09:14:08 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-08-24 09:14:08 +0000
commit40556ff303ad567a4232e37f70519055978dd94b (patch)
tree3fbd44ae7436e74c3f0edb43f3dbff42ee6cd90d /src/Makefile
parent1e4fbffc36f3c7dc959936e3049b0ad8d5dde4d1 (diff)
downloadlibsvgtiny-40556ff303ad567a4232e37f70519055978dd94b.tar.gz
libsvgtiny-40556ff303ad567a4232e37f70519055978dd94b.tar.bz2
gperf -> .c rule. This isn't in the core buildsystem as nothing else requires this. We can migrate it when needed.
svn path=/trunk/libsvgtiny/; revision=9425
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 2f2d276..a52041a 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,4 +1,12 @@
# Sources
DIR_SOURCES := svgtiny.c svgtiny_gradient.c svgtiny_list.c
+SOURCES := $(SOURCES) $(BUILDDIR)/src_colors.c
+
+$(BUILDDIR)/src_colors.c: src/colors.gperf
+ $(VQ)$(ECHO) " GPERF: $<"
+ $(Q)gperf --output-file=$@ $<
+# Hack for GCC 4.2 compatibility (gperf 3.0.4 solves this properly)
+ $(Q)$(SED) -i -e 's/#ifdef __GNUC_STDC_INLINE__/#if defined __GNUC_STDC_INLINE__ || defined __GNUC_GNU_INLINE__/' $@
+
include build/makefiles/Makefile.subdir