From: Reid Spencer Date: Tue, 10 Aug 2004 16:27:08 +0000 (+0000) Subject: Initial makefile for the LLVM Compiler Driver. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8fd3bca95762365fca12b9353567d99d2520684c;p=oota-llvm.git Initial makefile for the LLVM Compiler Driver. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15608 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvmc/Makefile b/tools/llvmc/Makefile new file mode 100644 index 00000000000..8708209424d --- /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