Initial makefile for the LLVM Compiler Driver.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 10 Aug 2004 16:27:08 +0000 (16:27 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 10 Aug 2004 16:27:08 +0000 (16:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15608 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvmc/Makefile [new file with mode: 0644]

diff --git a/tools/llvmc/Makefile b/tools/llvmc/Makefile
new file mode 100644 (file)
index 0000000..8708209
--- /dev/null
@@ -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