From 8fd3bca95762365fca12b9353567d99d2520684c Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 10 Aug 2004 16:27:08 +0000 Subject: [PATCH] Initial makefile for the LLVM Compiler Driver. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15608 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvmc/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/llvmc/Makefile 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