summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-08-01 22:55:19 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-08-01 22:55:19 +0000
commit08e17e8940052536f5718810cfa88d3565687885 (patch)
tree92bb42648f5b0a170b19eefb63bf8ae271c58d64 /Makefile
parent5fe2a76158b91923a1e1ce3eca6115fc03bdd89e (diff)
downloadlibnsgif-08e17e8940052536f5718810cfa88d3565687885.tar.gz
libnsgif-08e17e8940052536f5718810cfa88d3565687885.tar.bz2
Ensure local include path overrides buildsystem settings.
svn path=/trunk/libnsgif/; revision=8964
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4e45fb8..3cbb7c1 100644
--- a/Makefile
+++ b/Makefile
@@ -14,8 +14,8 @@ WARNFLAGS := -Wall -Wundef -Wpointer-arith -Wcast-align \
ifneq ($(GCCVER),2)
WARNFLAGS := $(WARNFLAGS) -Wextra
endif
-CFLAGS := $(CFLAGS) -D_BSD_SOURCE -I$(CURDIR)/include/ \
- -I$(CURDIR)/src $(WARNFLAGS)
+CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
+ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
ifneq ($(GCCVER),2)
CFLAGS := $(CFLAGS) -std=c99
else