diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-08 20:44:43 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-08 20:44:43 +0000 |
commit | c4dec1c58eeb2ef46cdb64120eb6b819c6927afb (patch) | |
tree | 5d8efb198f94c901cbafb87761d0b3cfdf3f1415 /examples | |
parent | afed099bd2e759efd4bb63fdc525d3445f94cc13 (diff) |
Makefiles: Set Clang CPP compiler flags in a single location, instead of scattered throughout the project Makefiles.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105638 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r-- | examples/PrintFunctionNames/Makefile | 2 | ||||
-rw-r--r-- | examples/clang-interpreter/Makefile | 1 | ||||
-rw-r--r-- | examples/wpa/Makefile | 1 |
3 files changed, 0 insertions, 4 deletions
diff --git a/examples/PrintFunctionNames/Makefile b/examples/PrintFunctionNames/Makefile index 4136a98c5c..fe9712f8f2 100644 --- a/examples/PrintFunctionNames/Makefile +++ b/examples/PrintFunctionNames/Makefile @@ -10,8 +10,6 @@ CLANG_LEVEL := ../.. LIBRARYNAME = PrintFunctionNames -CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include - # Include this here so we can get the configuration of the targets that have # been configured for construction. We have to do this early so we can set up # LINK_COMPONENTS before including Makefile.rules diff --git a/examples/clang-interpreter/Makefile b/examples/clang-interpreter/Makefile index 6683a57c3b..e46b2037b9 100644 --- a/examples/clang-interpreter/Makefile +++ b/examples/clang-interpreter/Makefile @@ -10,7 +10,6 @@ CLANG_LEVEL := ../.. TOOLNAME = clang-interpreter -CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include NO_INSTALL = 1 # No plugins, optimize startup time. diff --git a/examples/wpa/Makefile b/examples/wpa/Makefile index 16f92804ac..2c2154d8d3 100644 --- a/examples/wpa/Makefile +++ b/examples/wpa/Makefile @@ -10,7 +10,6 @@ CLANG_LEVEL := ../.. TOOLNAME = clang-wpa -CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include NO_INSTALL = 1 # No plugins, optimize startup time. |