summaryrefslogtreecommitdiff
path: root/tools/llvm-extract/Makefile
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-24 17:36:05 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-24 17:36:05 +0000
commitde03bc07ef7034936971dcc0117e4a9a9436fcee (patch)
tree8815fe4febd73d5f3d1addca0834104404a3597b /tools/llvm-extract/Makefile
parent55d2a1a54629b75a516b88165c8e48bdb2dea2c9 (diff)
downloadllvm-de03bc07ef7034936971dcc0117e4a9a9436fcee.tar.gz
llvm-de03bc07ef7034936971dcc0117e4a9a9436fcee.tar.bz2
llvm-de03bc07ef7034936971dcc0117e4a9a9436fcee.tar.xz
extract has been renamed to llvm-extract to avoid conflicting with another tool
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-extract/Makefile')
-rw-r--r--tools/llvm-extract/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/llvm-extract/Makefile b/tools/llvm-extract/Makefile
new file mode 100644
index 0000000000..80a90fa41a
--- /dev/null
+++ b/tools/llvm-extract/Makefile
@@ -0,0 +1,16 @@
+##===- tools/llvm-extract/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 = llvm-extract
+USEDLIBS = LLVMBCReader LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMTarget.a \
+ LLVMAnalysis.a LLVMTransformUtils.a LLVMipa.a \
+ LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a
+
+include $(LEVEL)/Makefile.common