summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 14:34:45 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 14:34:45 +0000
commit7acb975416b1f419be98f68c30cdd50b79e491c8 (patch)
tree34b1ef25f9b8bc34e1c6a4375019ffb2816caabd /Makefile
parent59e5b86699b30dddbe173dac2e896764b2a88e46 (diff)
downloadlibhubbub-7acb975416b1f419be98f68c30cdd50b79e491c8.tar.gz
libhubbub-7acb975416b1f419be98f68c30cdd50b79e491c8.tar.bz2
Add src directory to include path.
Sync makefiles external with the current revision. svn path=/trunk/hubbub/; revision=6840
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 53f1381..0e279f4 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,8 @@ LIBEXT := .a
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/ $(WARNFLAGS)
+CFLAGS := $(CFLAGS) -std=c99 -D_BSD_SOURCE -I$(CURDIR)/include/ \
+ -I$(CURDIR)/src $(WARNFLAGS)
include build/makefiles/Makefile.top