summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-23 17:52:38 +0000
committerChris Lattner <sabre@nondot.org>2002-07-23 17:52:38 +0000
commit56d27019e6aebd7cfa5d031c832193eb66d75830 (patch)
tree1826962f81136719c70efeb5b598e02b3d7b8321 /tools
parentf78a824b3c155f78abbf646da486fda866b4cca6 (diff)
downloadllvm-56d27019e6aebd7cfa5d031c832193eb66d75830.tar.gz
llvm-56d27019e6aebd7cfa5d031c832193eb66d75830.tar.bz2
llvm-56d27019e6aebd7cfa5d031c832193eb66d75830.tar.xz
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3002 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/as/Makefile3
-rw-r--r--tools/dis/Makefile2
-rw-r--r--tools/extract/Makefile3
-rw-r--r--tools/gccas/Makefile3
-rw-r--r--tools/gccld/Makefile3
-rw-r--r--tools/link/Makefile2
-rw-r--r--tools/llc/Makefile4
-rw-r--r--tools/lli/Makefile2
-rw-r--r--tools/llvm-as/Makefile3
-rw-r--r--tools/llvm-dis/Makefile2
-rw-r--r--tools/llvm-link/Makefile2
-rw-r--r--tools/opt/Makefile4
12 files changed, 18 insertions, 15 deletions
diff --git a/tools/as/Makefile b/tools/as/Makefile
index 2a2ee1a388..7ac2c2432d 100644
--- a/tools/as/Makefile
+++ b/tools/as/Makefile
@@ -1,6 +1,5 @@
LEVEL = ../..
-
TOOLNAME = as
-USEDLIBS = asmparser bcwriter vmcore support
+USEDLIBS = asmparser bcwriter vmcore support.a
include $(LEVEL)/Makefile.common
diff --git a/tools/dis/Makefile b/tools/dis/Makefile
index 0bd888e955..5ee0021c8a 100644
--- a/tools/dis/Makefile
+++ b/tools/dis/Makefile
@@ -1,7 +1,7 @@
LEVEL = ../..
TOOLNAME = dis
-USEDLIBS = bcreader vmcore support cwriter
+USEDLIBS = bcreader vmcore support.a cwriter
include $(LEVEL)/Makefile.common
diff --git a/tools/extract/Makefile b/tools/extract/Makefile
index f9209d1445..c364bb2c69 100644
--- a/tools/extract/Makefile
+++ b/tools/extract/Makefile
@@ -1,6 +1,7 @@
LEVEL = ../..
TOOLNAME = extract
-USEDLIBS = bcreader bcwriter transforms ipo analysis transformutils ipa vmcore support
+USEDLIBS = bcreader bcwriter transforms.a ipo.a analysis.a transformutils.a \
+ ipa.a vmcore support.a
include $(LEVEL)/Makefile.common
diff --git a/tools/gccas/Makefile b/tools/gccas/Makefile
index 4bef2b1152..b268edc9c2 100644
--- a/tools/gccas/Makefile
+++ b/tools/gccas/Makefile
@@ -1,6 +1,7 @@
LEVEL = ../..
TOOLNAME = gccas
-USEDLIBS = asmparser bcwriter transforms scalaropts analysis target transformutils ipa vmcore support
+USEDLIBS = asmparser bcwriter transforms.a scalaropts.a analysis.a target.a \
+ transformutils.a ipa.a vmcore support.a
include $(LEVEL)/Makefile.common
diff --git a/tools/gccld/Makefile b/tools/gccld/Makefile
index f808aa798a..dba89b9eb9 100644
--- a/tools/gccld/Makefile
+++ b/tools/gccld/Makefile
@@ -1,6 +1,7 @@
LEVEL = ../..
TOOLNAME = gccld
-USEDLIBS = ipo analysis transforms ipa scalaropts transformutils target bcreader bcwriter vmcore support
+USEDLIBS = ipo.a analysis.a transforms.a ipa.a scalaropts.a transformutils.a \
+ target.a bcreader bcwriter vmcore support.a
include $(LEVEL)/Makefile.common
diff --git a/tools/link/Makefile b/tools/link/Makefile
index f4f08a0076..333236b568 100644
--- a/tools/link/Makefile
+++ b/tools/link/Makefile
@@ -1,6 +1,6 @@
LEVEL = ../..
TOOLNAME = link
-USEDLIBS = bcreader bcwriter transformutils vmcore support
+USEDLIBS = bcreader bcwriter transformutils.a vmcore support.a
include $(LEVEL)/Makefile.common
diff --git a/tools/llc/Makefile b/tools/llc/Makefile
index d6952d0792..ecd56631a4 100644
--- a/tools/llc/Makefile
+++ b/tools/llc/Makefile
@@ -1,8 +1,8 @@
LEVEL = ../..
TOOLNAME = llc
USEDLIBS = sparc regalloc sched select sparc target \
- instrument livevar bcreader bcwriter analysis transforms \
- scalaropts transformutils vmcore support
+ instrument.a livevar bcreader bcwriter analysis.a transforms.a \
+ scalaropts.a transformutils.a vmcore support.a
include $(LEVEL)/Makefile.common
diff --git a/tools/lli/Makefile b/tools/lli/Makefile
index 4a5641106d..4e47ee6a71 100644
--- a/tools/lli/Makefile
+++ b/tools/lli/Makefile
@@ -1,6 +1,6 @@
LEVEL = ../..
TOOLNAME = lli
-USEDLIBS = bcreader vmcore analysis support target transforms
+USEDLIBS = bcreader vmcore analysis.a support.a target.a transforms.a
TOOLLINKOPTS = -ldl
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-as/Makefile b/tools/llvm-as/Makefile
index 2a2ee1a388..7ac2c2432d 100644
--- a/tools/llvm-as/Makefile
+++ b/tools/llvm-as/Makefile
@@ -1,6 +1,5 @@
LEVEL = ../..
-
TOOLNAME = as
-USEDLIBS = asmparser bcwriter vmcore support
+USEDLIBS = asmparser bcwriter vmcore support.a
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-dis/Makefile b/tools/llvm-dis/Makefile
index 0bd888e955..5ee0021c8a 100644
--- a/tools/llvm-dis/Makefile
+++ b/tools/llvm-dis/Makefile
@@ -1,7 +1,7 @@
LEVEL = ../..
TOOLNAME = dis
-USEDLIBS = bcreader vmcore support cwriter
+USEDLIBS = bcreader vmcore support.a cwriter
include $(LEVEL)/Makefile.common
diff --git a/tools/llvm-link/Makefile b/tools/llvm-link/Makefile
index f4f08a0076..333236b568 100644
--- a/tools/llvm-link/Makefile
+++ b/tools/llvm-link/Makefile
@@ -1,6 +1,6 @@
LEVEL = ../..
TOOLNAME = link
-USEDLIBS = bcreader bcwriter transformutils vmcore support
+USEDLIBS = bcreader bcwriter transformutils.a vmcore support.a
include $(LEVEL)/Makefile.common
diff --git a/tools/opt/Makefile b/tools/opt/Makefile
index 9b1df54b85..869ba26c00 100644
--- a/tools/opt/Makefile
+++ b/tools/opt/Makefile
@@ -2,7 +2,9 @@ LEVEL = ../..
TOOLNAME = opt
USEDLIBS = bcreader bcwriter instrument profpaths scalaropts \
- ipo ipa datastructure transforms target analysis transformutils vmcore support
+ ipo ipa.a datastructure.a transforms target.a analysis.a \
+ transformutils vmcore support
+TOOLLINKOPTS = -ldl
include $(LEVEL)/Makefile.common