summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-06-15 13:55:15 +0200
committerTor Andersson <tor@ghostscript.com>2010-06-15 13:55:15 +0200
commit4cf108389b0dbd1eae7a8555e5bddae964d5155d (patch)
tree30cc4c357acb2ec07211a873d3bbecfc14915e1c /Makefile
parent7ce4682fac372835bcc06a662c057132e8431a2a (diff)
downloadmupdf-4cf108389b0dbd1eae7a8555e5bddae964d5155d.tar.xz
Add THIRD_INCS to CFLAGS after it has been set, not before.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ff34b11c..3f82484e 100644
--- a/Makefile
+++ b/Makefile
@@ -36,6 +36,8 @@ endif
# Build commands
#
+CFLAGS += $(THIRD_INCS)
+
GENFILE_CMD = @ echo GENFILE $@ && $(firstword $^) $@ $(wordlist 2, 999, $^)
CC_CMD = @ echo CC $@ && $(CC) -o $@ -c $< $(CFLAGS)
LD_CMD = @ echo LD $@ && $(LD) -o $@ $^ $(LDFLAGS) $(LIBS)