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
commit4a8212d783b6d848ac5e23b2a5151caf19ce0a4f (patch)
tree876ca6887779b7cc3373e448193f87841e579e40 /Makefile
parentbb0bf3763647fbdc63509f065db473fe7bd8a60c (diff)
downloadlibdom-4a8212d783b6d848ac5e23b2a5151caf19ce0a4f.tar.gz
libdom-4a8212d783b6d848ac5e23b2a5151caf19ce0a4f.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)