Allow users to set CPPFLAGS and CXXFLAGS on the make command line.
Tested: make CPPFLAGS=-m64 CXXFLAGS=-m64 -j8 && (cd tools/clang;make test)
llvm-svn: 98399
diff --git a/clang/lib/Parse/Makefile b/clang/lib/Parse/Makefile
index de16e3e..6a5540f 100644
--- a/clang/lib/Parse/Makefile
+++ b/clang/lib/Parse/Makefile
@@ -15,7 +15,7 @@
LIBRARYNAME := clangParse
BUILD_ARCHIVE = 1
-CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
+CPP.Flags += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
include $(LEVEL)/Makefile.common