Skip to content
Snippets Groups Projects
Commit c9f362d7 authored by Daniel Dunbar's avatar Daniel Dunbar
Browse files

Makefiles: Remove unnecessary early include of Makefile.config.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105640 91177308-0d34-0410-b5e6-96231b3b80d8
parent f24f3d12
No related branches found
No related tags found
No related merge requests found
...@@ -10,11 +10,6 @@ ...@@ -10,11 +10,6 @@
CLANG_LEVEL := ../.. CLANG_LEVEL := ../..
LIBRARYNAME = PrintFunctionNames 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 LINK_LIBS_IN_SHARED = 1
SHARED_LIBRARY = 1 SHARED_LIBRARY = 1
......
...@@ -15,11 +15,6 @@ NO_INSTALL = 1 ...@@ -15,11 +15,6 @@ NO_INSTALL = 1
# No plugins, optimize startup time. # No plugins, optimize startup time.
TOOL_NO_EXPORTS = 1 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 \ LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \
selectiondag asmparser selectiondag asmparser
USEDLIBS = clangFrontend.a clangDriver.a clangCodeGen.a clangSema.a \ USEDLIBS = clangFrontend.a clangDriver.a clangCodeGen.a clangSema.a \
......
...@@ -15,11 +15,6 @@ NO_INSTALL = 1 ...@@ -15,11 +15,6 @@ NO_INSTALL = 1
# No plugins, optimize startup time. # No plugins, optimize startup time.
TOOL_NO_EXPORTS = 1 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 LINK_COMPONENTS := asmparser bitreader mc core
USEDLIBS = clangIndex.a clangFrontend.a clangDriver.a clangSema.a \ USEDLIBS = clangIndex.a clangFrontend.a clangDriver.a clangSema.a \
clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
......
...@@ -13,8 +13,6 @@ TOOLNAME = c-index-test ...@@ -13,8 +13,6 @@ TOOLNAME = c-index-test
# No plugins, optimize startup time. # No plugins, optimize startup time.
TOOL_NO_EXPORTS = 1 TOOL_NO_EXPORTS = 1
include $(CLANG_LEVEL)/../../Makefile.config
LINK_COMPONENTS := bitreader mc core LINK_COMPONENTS := bitreader mc core
USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a clangSema.a \ USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a clangSema.a \
clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
......
...@@ -12,11 +12,6 @@ LIBRARYNAME = clang ...@@ -12,11 +12,6 @@ LIBRARYNAME = clang
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/libclang.exports 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 LINK_LIBS_IN_SHARED = 1
SHARED_LIBRARY = 1 SHARED_LIBRARY = 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment