From 7afd1de3f8358dfd0e533ca585313bd87464fe45 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 1 Aug 2009 22:50:14 +0000 Subject: Ensure our local include path overrides the buildsystem settings. This avoids build failures when our local headers have changed but the buildsystem settings point to an include path that includes headers from a previous version. svn path=/trunk/libcss/; revision=8958 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 908f339..c9b1342 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,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 -- cgit v1.2.3