summaryrefslogtreecommitdiff
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
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
-rw-r--r--lib/Analysis/DataStructure/Makefile3
-rw-r--r--lib/Analysis/IPA/Makefile3
-rw-r--r--lib/Analysis/LiveVar/Makefile2
-rw-r--r--lib/Bytecode/Reader/Makefile2
-rw-r--r--lib/Bytecode/Writer/Makefile3
-rw-r--r--lib/ExecutionEngine/Makefile2
-rw-r--r--lib/Support/Makefile4
-rw-r--r--lib/Target/Makefile1
-rw-r--r--lib/Target/SparcV9/LiveVar/Makefile2
-rw-r--r--lib/Transforms/IPO/Makefile2
-rw-r--r--lib/Transforms/Instrumentation/Makefile3
-rw-r--r--lib/Transforms/Instrumentation/ProfilePaths/Makefile3
-rw-r--r--lib/Transforms/Makefile2
-rw-r--r--lib/Transforms/Scalar/Makefile2
-rw-r--r--lib/Transforms/Utils/Makefile2
-rw-r--r--lib/VMCore/Makefile2
-rw-r--r--support/lib/Support/Makefile4
-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
29 files changed, 31 insertions, 44 deletions
diff --git a/lib/Analysis/DataStructure/Makefile b/lib/Analysis/DataStructure/Makefile
index 6822b3742d..3c4c7e2322 100644
--- a/lib/Analysis/DataStructure/Makefile
+++ b/lib/Analysis/DataStructure/Makefile
@@ -1,7 +1,6 @@
-
LEVEL = ../../..
-
LIBRARYNAME = datastructure
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
diff --git a/lib/Analysis/IPA/Makefile b/lib/Analysis/IPA/Makefile
index 95ea15c8eb..80ef418edb 100644
--- a/lib/Analysis/IPA/Makefile
+++ b/lib/Analysis/IPA/Makefile
@@ -1,7 +1,6 @@
-
LEVEL = ../../..
-
LIBRARYNAME = ipa
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
diff --git a/lib/Analysis/LiveVar/Makefile b/lib/Analysis/LiveVar/Makefile
index 81d4948080..7fdf34d50e 100644
--- a/lib/Analysis/LiveVar/Makefile
+++ b/lib/Analysis/LiveVar/Makefile
@@ -1,6 +1,4 @@
-
LEVEL = ../../..
-
LIBRARYNAME = livevar
include $(LEVEL)/Makefile.common
diff --git a/lib/Bytecode/Reader/Makefile b/lib/Bytecode/Reader/Makefile
index 2c79d15104..b48b4d329d 100644
--- a/lib/Bytecode/Reader/Makefile
+++ b/lib/Bytecode/Reader/Makefile
@@ -1,6 +1,4 @@
-
LEVEL = ../../..
-
LIBRARYNAME = bcreader
include $(LEVEL)/Makefile.common
diff --git a/lib/Bytecode/Writer/Makefile b/lib/Bytecode/Writer/Makefile
index c03db56154..76c52f465d 100644
--- a/lib/Bytecode/Writer/Makefile
+++ b/lib/Bytecode/Writer/Makefile
@@ -1,7 +1,4 @@
-
LEVEL = ../../..
-
LIBRARYNAME = bcwriter
include $(LEVEL)/Makefile.common
-
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile
index 4a5641106d..4e47ee6a71 100644
--- a/lib/ExecutionEngine/Makefile
+++ b/lib/ExecutionEngine/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/lib/Support/Makefile b/lib/Support/Makefile
index c7eb8adcb1..7b263b79c8 100644
--- a/lib/Support/Makefile
+++ b/lib/Support/Makefile
@@ -1,7 +1,5 @@
LEVEL = ../..
-
-DIRS =
-
LIBRARYNAME = support
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
diff --git a/lib/Target/Makefile b/lib/Target/Makefile
index 7fd02c6672..3c5bf67464 100644
--- a/lib/Target/Makefile
+++ b/lib/Target/Makefile
@@ -1,5 +1,6 @@
LEVEL = ../..
DIRS = Sparc
LIBRARYNAME = target
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
diff --git a/lib/Target/SparcV9/LiveVar/Makefile b/lib/Target/SparcV9/LiveVar/Makefile
index 81d4948080..7fdf34d50e 100644
--- a/lib/Target/SparcV9/LiveVar/Makefile
+++ b/lib/Target/SparcV9/LiveVar/Makefile
@@ -1,6 +1,4 @@
-
LEVEL = ../../..
-
LIBRARYNAME = livevar
include $(LEVEL)/Makefile.common
diff --git a/lib/Transforms/IPO/Makefile b/lib/Transforms/IPO/Makefile
index 778d2eba02..0bc3f72bcf 100644
--- a/lib/Transforms/IPO/Makefile
+++ b/lib/Transforms/IPO/Makefile
@@ -1,6 +1,6 @@
LEVEL = ../../..
-
LIBRARYNAME = ipo
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
diff --git a/lib/Transforms/Instrumentation/Makefile b/lib/Transforms/Instrumentation/Makefile
index e0e7d7cfb4..ca48b0b254 100644
--- a/lib/Transforms/Instrumentation/Makefile
+++ b/lib/Transforms/Instrumentation/Makefile
@@ -1,6 +1,7 @@
LEVEL = ../../..
-
LIBRARYNAME = instrument
DIRS = ProfilePaths
+BUILD_ARCHIVE = 1
+
include $(LEVEL)/Makefile.common
diff --git a/lib/Transforms/Instrumentation/ProfilePaths/Makefile b/lib/Transforms/Instrumentation/ProfilePaths/Makefile
index ef2fc28406..91e1c2f8a6 100644
--- a/lib/Transforms/Instrumentation/ProfilePaths/Makefile
+++ b/lib/Transforms/Instrumentation/ProfilePaths/Makefile
@@ -1,6 +1,5 @@
LEVEL = ../../../..
-
-DIRS =
LIBRARYNAME = profpaths
+
include $(LEVEL)/Makefile.common
diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile
index b9f65b2e7f..31436216db 100644
--- a/lib/Transforms/Makefile
+++ b/lib/Transforms/Makefile
@@ -1,7 +1,7 @@
LEVEL = ../..
DIRS = Utils Instrumentation Scalar IPO
-
LIBRARYNAME = transforms
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
diff --git a/lib/Transforms/Scalar/Makefile b/lib/Transforms/Scalar/Makefile
index fed3412dfd..9f73623cbd 100644
--- a/lib/Transforms/Scalar/Makefile
+++ b/lib/Transforms/Scalar/Makefile
@@ -1,6 +1,6 @@
LEVEL = ../../..
-
LIBRARYNAME = scalaropts
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
diff --git a/lib/Transforms/Utils/Makefile b/lib/Transforms/Utils/Makefile
index f451df2d5c..00e4170184 100644
--- a/lib/Transforms/Utils/Makefile
+++ b/lib/Transforms/Utils/Makefile
@@ -1,6 +1,6 @@
LEVEL = ../../..
-
LIBRARYNAME = transformutils
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
diff --git a/lib/VMCore/Makefile b/lib/VMCore/Makefile
index 7d1289c452..b0c96e90f3 100644
--- a/lib/VMCore/Makefile
+++ b/lib/VMCore/Makefile
@@ -1,6 +1,4 @@
-
LEVEL = ../..
-
LIBRARYNAME = vmcore
include $(LEVEL)/Makefile.common
diff --git a/support/lib/Support/Makefile b/support/lib/Support/Makefile
index c7eb8adcb1..7b263b79c8 100644
--- a/support/lib/Support/Makefile
+++ b/support/lib/Support/Makefile
@@ -1,7 +1,5 @@
LEVEL = ../..
-
-DIRS =
-
LIBRARYNAME = support
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
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