diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-10 16:27:08 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-10 16:27:08 +0000 |
commit | 8fd3bca95762365fca12b9353567d99d2520684c (patch) | |
tree | 700164392a1890294b0889f5801c99620abb4f2a | |
parent | 034a544401dce6cfa7a46d553600b385e23c522d (diff) |
Initial makefile for the LLVM Compiler Driver.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15608 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvmc/Makefile | 13 |
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 |