summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-08-01 22:52:48 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-08-01 22:52:48 +0000
commiteec057c7437e19b59ca1e698ce548cb56ce37240 (patch)
tree876ca6887779b7cc3373e448193f87841e579e40 /Makefile
parent8f547c7bd349e0dc905e0dc5f32edbf1e01061ce (diff)
downloadlibdom-eec057c7437e19b59ca1e698ce548cb56ce37240.tar.gz
libdom-eec057c7437e19b59ca1e698ce548cb56ce37240.tar.bz2
Ensure local include path overrides buildsystem settings.
svn path=/trunk/dom/; revision=8959
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c22c62e..7f7fe87 100644
--- a/Makefile
+++ b/Makefile
@@ -13,8 +13,8 @@ TESTRUNNER := $(PERL) build/testtools/testrunner.pl
WARNFLAGS := -Wall -Wextra -Wundef -Wpointer-arith -Wcast-align \
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
-Wmissing-declarations -Wnested-externs -Werror -pedantic
-CFLAGS := $(CFLAGS) -std=c99 -D_BSD_SOURCE -I$(CURDIR)/include/ \
- -I$(CURDIR)/src $(WARNFLAGS)
+CFLAGS := -std=c99 -D_BSD_SOURCE -I$(CURDIR)/include/ \
+ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
# Parserutils
ifneq ($(findstring clean,$(MAKECMDGOALS)),clean)