aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llvm-mc/Makefile
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-17 22:38:58 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-17 22:38:58 +0000
commitb4b53e5c13167925d6315a6f57c7b863e4e2b704 (patch)
tree798dca05cc66cf81e982d211b009becd5d69df10 /tools/llvm-mc/Makefile
parentcbdf0e2455d78b047aec4141ec84cf96095bee16 (diff)
downloadexternal_llvm-b4b53e5c13167925d6315a6f57c7b863e4e2b704.zip
external_llvm-b4b53e5c13167925d6315a6f57c7b863e4e2b704.tar.gz
external_llvm-b4b53e5c13167925d6315a6f57c7b863e4e2b704.tar.bz2
llvm-mc: Add -triple, and start fetching the target asm printer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76257 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-mc/Makefile')
-rw-r--r--tools/llvm-mc/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/llvm-mc/Makefile b/tools/llvm-mc/Makefile
index 3c327da..ab9c5b6 100644
--- a/tools/llvm-mc/Makefile
+++ b/tools/llvm-mc/Makefile
@@ -9,9 +9,15 @@
LEVEL = ../..
TOOLNAME = llvm-mc
-LINK_COMPONENTS := support MC
# This tool has no plugins, optimize startup time.
TOOL_NO_EXPORTS = 1
-include $(LEVEL)/Makefile.common
+# 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 $(LEVEL)/Makefile.config
+
+LINK_COMPONENTS := $(TARGETS_TO_BUILD) MC support
+
+include $(LLVM_SRC_ROOT)/Makefile.rules