diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2010-03-12 22:55:16 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2010-03-12 22:55:16 +0000 |
commit | 3352406820d133c78161e8d710f95b8ac152a1e7 (patch) | |
tree | 7b4fbf629fd6ffaebfc4836ea2bca2a7f48af5c5 /lib/AST/Makefile | |
parent | 4c9f709fc9ea7a7d8c8a85e29730c2365c2cad18 (diff) |
Allow users to set CPPFLAGS and CXXFLAGS on the make command line.
Tested: make CPPFLAGS=-m64 CXXFLAGS=-m64 -j8 && (cd tools/clang;make test)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@98399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Makefile')
-rw-r--r-- | lib/AST/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/Makefile b/lib/AST/Makefile index 8afc629d6b..ede25777c9 100644 --- a/lib/AST/Makefile +++ b/lib/AST/Makefile @@ -15,7 +15,7 @@ LEVEL = ../../../.. LIBRARYNAME := clangAST 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 |