aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llvm-mc/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-06-18 23:04:45 +0000
committerChris Lattner <sabre@nondot.org>2009-06-18 23:04:45 +0000
commitf9f065e45500823cdeb25bde2154d871ab6e9125 (patch)
tree7e48ae8c91c40929a1da3241e67d6476f01e69db /tools/llvm-mc/Makefile
parent3ea4edce6a288579d190460135dc7255e9e1d294 (diff)
downloadexternal_llvm-f9f065e45500823cdeb25bde2154d871ab6e9125.zip
external_llvm-f9f065e45500823cdeb25bde2154d871ab6e9125.tar.gz
external_llvm-f9f065e45500823cdeb25bde2154d871ab6e9125.tar.bz2
Add a skeleton driver for new machine code level fun. llvm-mc is meant
to be a test driver of other components in the system, which will develop over time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73732 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-mc/Makefile')
-rw-r--r--tools/llvm-mc/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/llvm-mc/Makefile b/tools/llvm-mc/Makefile
new file mode 100644
index 0000000..7b4d944
--- /dev/null
+++ b/tools/llvm-mc/Makefile
@@ -0,0 +1,17 @@
+##===- tools/llvm-mc/Makefile ------------------------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LEVEL = ../..
+TOOLNAME = llvm-mc
+LINK_COMPONENTS := support
+
+# This tool has no plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
+include $(LEVEL)/Makefile.common