[cfe-commits] r105640 - in /cfe/trunk: examples/PrintFunctionNames/Makefile examples/clang-interpreter/Makefile examples/wpa/Makefile tools/c-index-test/Makefile tools/libclang/Makefile
Daniel Dunbar
daniel at zuster.org
Tue Jun 8 13:57:22 PDT 2010
Author: ddunbar
Date: Tue Jun 8 15:57:22 2010
New Revision: 105640
URL: http://llvm.org/viewvc/llvm-project?rev=105640&view=rev
Log:
Makefiles: Remove unnecessary early include of Makefile.config.
Modified:
cfe/trunk/examples/PrintFunctionNames/Makefile
cfe/trunk/examples/clang-interpreter/Makefile
cfe/trunk/examples/wpa/Makefile
cfe/trunk/tools/c-index-test/Makefile
cfe/trunk/tools/libclang/Makefile
Modified: cfe/trunk/examples/PrintFunctionNames/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/examples/PrintFunctionNames/Makefile?rev=105640&r1=105639&r2=105640&view=diff
==============================================================================
--- cfe/trunk/examples/PrintFunctionNames/Makefile (original)
+++ cfe/trunk/examples/PrintFunctionNames/Makefile Tue Jun 8 15:57:22 2010
@@ -10,11 +10,6 @@
CLANG_LEVEL := ../..
LIBRARYNAME = PrintFunctionNames
-# 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
-include $(CLANG_LEVEL)/../../Makefile.config
-
LINK_LIBS_IN_SHARED = 1
SHARED_LIBRARY = 1
Modified: cfe/trunk/examples/clang-interpreter/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/examples/clang-interpreter/Makefile?rev=105640&r1=105639&r2=105640&view=diff
==============================================================================
--- cfe/trunk/examples/clang-interpreter/Makefile (original)
+++ cfe/trunk/examples/clang-interpreter/Makefile Tue Jun 8 15:57:22 2010
@@ -15,11 +15,6 @@
# No plugins, optimize startup time.
TOOL_NO_EXPORTS = 1
-# 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
-include $(CLANG_LEVEL)/../../Makefile.config
-
LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \
selectiondag asmparser
USEDLIBS = clangFrontend.a clangDriver.a clangCodeGen.a clangSema.a \
Modified: cfe/trunk/examples/wpa/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/examples/wpa/Makefile?rev=105640&r1=105639&r2=105640&view=diff
==============================================================================
--- cfe/trunk/examples/wpa/Makefile (original)
+++ cfe/trunk/examples/wpa/Makefile Tue Jun 8 15:57:22 2010
@@ -15,11 +15,6 @@
# No plugins, optimize startup time.
TOOL_NO_EXPORTS = 1
-# 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
-include $(CLANG_LEVEL)/../../Makefile.config
-
LINK_COMPONENTS := asmparser bitreader mc core
USEDLIBS = clangIndex.a clangFrontend.a clangDriver.a clangSema.a \
clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
Modified: cfe/trunk/tools/c-index-test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/c-index-test/Makefile?rev=105640&r1=105639&r2=105640&view=diff
==============================================================================
--- cfe/trunk/tools/c-index-test/Makefile (original)
+++ cfe/trunk/tools/c-index-test/Makefile Tue Jun 8 15:57:22 2010
@@ -13,8 +13,6 @@
# No plugins, optimize startup time.
TOOL_NO_EXPORTS = 1
-include $(CLANG_LEVEL)/../../Makefile.config
-
LINK_COMPONENTS := bitreader mc core
USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a clangSema.a \
clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
Modified: cfe/trunk/tools/libclang/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/libclang/Makefile?rev=105640&r1=105639&r2=105640&view=diff
==============================================================================
--- cfe/trunk/tools/libclang/Makefile (original)
+++ cfe/trunk/tools/libclang/Makefile Tue Jun 8 15:57:22 2010
@@ -12,11 +12,6 @@
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/libclang.exports
-# 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
-include $(CLANG_LEVEL)/../../Makefile.config
-
LINK_LIBS_IN_SHARED = 1
SHARED_LIBRARY = 1
More information about the cfe-commits
mailing list