summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-23 17:50:41 +0000
committerChris Lattner <sabre@nondot.org>2002-07-23 17:50:41 +0000
commit40ac148c1d31ef156a9626eed5cff593bbc41490 (patch)
tree1864e302356e0c69daaea3eb37dff4cb38f1bc32
parentaa852bbb503571d1198856fa4c6e099d7625e3b3 (diff)
downloadllvm-40ac148c1d31ef156a9626eed5cff593bbc41490.tar.gz
llvm-40ac148c1d31ef156a9626eed5cff593bbc41490.tar.bz2
llvm-40ac148c1d31ef156a9626eed5cff593bbc41490.tar.xz
Convert over to new style of Makefile, where there is a difference between .o and .a libraries.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3000 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/analyze/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/analyze/Makefile b/tools/analyze/Makefile
index 1694f1bb8a..0889735e19 100644
--- a/tools/analyze/Makefile
+++ b/tools/analyze/Makefile
@@ -1,6 +1,8 @@
LEVEL = ../..
TOOLNAME = analyze
-USEDLIBS = asmparser bcreader scalaropts transforms analysis ipa datastructure transformutils vmcore support
+USEDLIBS = asmparser bcreader scalaropts.a transforms.a analysis ipa \
+ datastructure transformutils.a vmcore support
+TOOLLINKOPTS = -ldl
include $(LEVEL)/Makefile.common