summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-08-10 16:27:08 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-08-10 16:27:08 +0000
commit8fd3bca95762365fca12b9353567d99d2520684c (patch)
tree700164392a1890294b0889f5801c99620abb4f2a /tools
parent034a544401dce6cfa7a46d553600b385e23c522d (diff)
downloadllvm-8fd3bca95762365fca12b9353567d99d2520684c.tar.gz
llvm-8fd3bca95762365fca12b9353567d99d2520684c.tar.bz2
llvm-8fd3bca95762365fca12b9353567d99d2520684c.tar.xz
Initial makefile for the LLVM Compiler Driver.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15608 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvmc/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/llvmc/Makefile b/tools/llvmc/Makefile
new file mode 100644
index 0000000000..8708209424
--- /dev/null
+++ b/tools/llvmc/Makefile
@@ -0,0 +1,13 @@
+##===- tools/llvmc/Makefile --------------------------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+LEVEL = ../..
+TOOLNAME = llvmc
+USEDLIBS = asmparser bcreader bcwriter vmcore support.a
+
+include $(LEVEL)/Makefile.common