*** empty log message ***

llvm-svn: 3002
diff --git a/llvm/lib/Analysis/DataStructure/Makefile b/llvm/lib/Analysis/DataStructure/Makefile
index 6822b37..3c4c7e2 100644
--- a/llvm/lib/Analysis/DataStructure/Makefile
+++ b/llvm/lib/Analysis/DataStructure/Makefile
@@ -1,7 +1,6 @@
-
 LEVEL = ../../..
-
 LIBRARYNAME = datastructure
+BUILD_ARCHIVE = 1
 
 include $(LEVEL)/Makefile.common
 
diff --git a/llvm/lib/Analysis/IPA/Makefile b/llvm/lib/Analysis/IPA/Makefile
index 95ea15c..80ef418 100644
--- a/llvm/lib/Analysis/IPA/Makefile
+++ b/llvm/lib/Analysis/IPA/Makefile
@@ -1,7 +1,6 @@
-
 LEVEL = ../../..
-
 LIBRARYNAME = ipa
+BUILD_ARCHIVE = 1
 
 include $(LEVEL)/Makefile.common
 
diff --git a/llvm/lib/Analysis/LiveVar/Makefile b/llvm/lib/Analysis/LiveVar/Makefile
index 81d4948..7fdf34d 100644
--- a/llvm/lib/Analysis/LiveVar/Makefile
+++ b/llvm/lib/Analysis/LiveVar/Makefile
@@ -1,6 +1,4 @@
-
 LEVEL = ../../..
-
 LIBRARYNAME = livevar
 
 include $(LEVEL)/Makefile.common
diff --git a/llvm/lib/Bytecode/Reader/Makefile b/llvm/lib/Bytecode/Reader/Makefile
index 2c79d15..b48b4d3 100644
--- a/llvm/lib/Bytecode/Reader/Makefile
+++ b/llvm/lib/Bytecode/Reader/Makefile
@@ -1,6 +1,4 @@
-
 LEVEL = ../../..
-
 LIBRARYNAME = bcreader
 
 include $(LEVEL)/Makefile.common
diff --git a/llvm/lib/Bytecode/Writer/Makefile b/llvm/lib/Bytecode/Writer/Makefile
index c03db56..76c52f4 100644
--- a/llvm/lib/Bytecode/Writer/Makefile
+++ b/llvm/lib/Bytecode/Writer/Makefile
@@ -1,7 +1,4 @@
-
 LEVEL = ../../..
-
 LIBRARYNAME = bcwriter
 
 include $(LEVEL)/Makefile.common
-
diff --git a/llvm/lib/ExecutionEngine/Makefile b/llvm/lib/ExecutionEngine/Makefile
index 4a56411..4e47ee6 100644
--- a/llvm/lib/ExecutionEngine/Makefile
+++ b/llvm/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/llvm/lib/Support/Makefile b/llvm/lib/Support/Makefile
index c7eb8ad..7b263b7 100644
--- a/llvm/lib/Support/Makefile
+++ b/llvm/lib/Support/Makefile
@@ -1,7 +1,5 @@
 LEVEL = ../..
-
-DIRS  = 
-
 LIBRARYNAME = support
+BUILD_ARCHIVE = 1
 
 include $(LEVEL)/Makefile.common
diff --git a/llvm/lib/Target/Makefile b/llvm/lib/Target/Makefile
index 7fd02c6..3c5bf67 100644
--- a/llvm/lib/Target/Makefile
+++ b/llvm/lib/Target/Makefile
@@ -1,5 +1,6 @@
 LEVEL = ../..
 DIRS = Sparc
 LIBRARYNAME = target
+BUILD_ARCHIVE = 1
 
 include $(LEVEL)/Makefile.common
diff --git a/llvm/lib/Transforms/IPO/Makefile b/llvm/lib/Transforms/IPO/Makefile
index 778d2eb..0bc3f72 100644
--- a/llvm/lib/Transforms/IPO/Makefile
+++ b/llvm/lib/Transforms/IPO/Makefile
@@ -1,6 +1,6 @@
 LEVEL = ../../..
-
 LIBRARYNAME = ipo
+BUILD_ARCHIVE = 1
 
 include $(LEVEL)/Makefile.common
 
diff --git a/llvm/lib/Transforms/Instrumentation/Makefile b/llvm/lib/Transforms/Instrumentation/Makefile
index e0e7d7c..ca48b0b 100644
--- a/llvm/lib/Transforms/Instrumentation/Makefile
+++ b/llvm/lib/Transforms/Instrumentation/Makefile
@@ -1,6 +1,7 @@
 LEVEL = ../../..
-
 LIBRARYNAME = instrument
 DIRS = ProfilePaths 
+BUILD_ARCHIVE = 1
+
 include $(LEVEL)/Makefile.common
 
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/Makefile b/llvm/lib/Transforms/Instrumentation/ProfilePaths/Makefile
index ef2fc28..91e1c2f 100644
--- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/Makefile
+++ b/llvm/lib/Transforms/Instrumentation/ProfilePaths/Makefile
@@ -1,6 +1,5 @@
 LEVEL = ../../../..
-
-DIRS = 
 LIBRARYNAME = profpaths
+
 include $(LEVEL)/Makefile.common
 
diff --git a/llvm/lib/Transforms/Makefile b/llvm/lib/Transforms/Makefile
index b9f65b2..3143621 100644
--- a/llvm/lib/Transforms/Makefile
+++ b/llvm/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/llvm/lib/Transforms/Scalar/Makefile b/llvm/lib/Transforms/Scalar/Makefile
index fed3412..9f73623 100644
--- a/llvm/lib/Transforms/Scalar/Makefile
+++ b/llvm/lib/Transforms/Scalar/Makefile
@@ -1,6 +1,6 @@
 LEVEL = ../../..
-
 LIBRARYNAME = scalaropts
+BUILD_ARCHIVE = 1
 
 include $(LEVEL)/Makefile.common
 
diff --git a/llvm/lib/Transforms/Utils/Makefile b/llvm/lib/Transforms/Utils/Makefile
index f451df2..00e4170 100644
--- a/llvm/lib/Transforms/Utils/Makefile
+++ b/llvm/lib/Transforms/Utils/Makefile
@@ -1,6 +1,6 @@
 LEVEL = ../../..
-
 LIBRARYNAME = transformutils
+BUILD_ARCHIVE = 1
 
 include $(LEVEL)/Makefile.common
 
diff --git a/llvm/lib/VMCore/Makefile b/llvm/lib/VMCore/Makefile
index 7d1289c..b0c96e9 100644
--- a/llvm/lib/VMCore/Makefile
+++ b/llvm/lib/VMCore/Makefile
@@ -1,6 +1,4 @@
-
 LEVEL = ../..
-
 LIBRARYNAME = vmcore
 
 include $(LEVEL)/Makefile.common
diff --git a/llvm/support/lib/Support/Makefile b/llvm/support/lib/Support/Makefile
index c7eb8ad..7b263b7 100644
--- a/llvm/support/lib/Support/Makefile
+++ b/llvm/support/lib/Support/Makefile
@@ -1,7 +1,5 @@
 LEVEL = ../..
-
-DIRS  = 
-
 LIBRARYNAME = support
+BUILD_ARCHIVE = 1
 
 include $(LEVEL)/Makefile.common
diff --git a/llvm/tools/as/Makefile b/llvm/tools/as/Makefile
index 2a2ee1a..7ac2c24 100644
--- a/llvm/tools/as/Makefile
+++ b/llvm/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/llvm/tools/dis/Makefile b/llvm/tools/dis/Makefile
index 0bd888e..5ee0021 100644
--- a/llvm/tools/dis/Makefile
+++ b/llvm/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/llvm/tools/extract/Makefile b/llvm/tools/extract/Makefile
index f9209d1..c364bb2 100644
--- a/llvm/tools/extract/Makefile
+++ b/llvm/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/llvm/tools/gccas/Makefile b/llvm/tools/gccas/Makefile
index 4bef2b1..b268edc 100644
--- a/llvm/tools/gccas/Makefile
+++ b/llvm/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/llvm/tools/gccld/Makefile b/llvm/tools/gccld/Makefile
index f808aa7..dba89b9 100644
--- a/llvm/tools/gccld/Makefile
+++ b/llvm/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/llvm/tools/link/Makefile b/llvm/tools/link/Makefile
index f4f08a0..333236b 100644
--- a/llvm/tools/link/Makefile
+++ b/llvm/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/llvm/tools/llc/Makefile b/llvm/tools/llc/Makefile
index d6952d0..ecd5663 100644
--- a/llvm/tools/llc/Makefile
+++ b/llvm/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/llvm/tools/lli/Makefile b/llvm/tools/lli/Makefile
index 4a56411..4e47ee6 100644
--- a/llvm/tools/lli/Makefile
+++ b/llvm/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/llvm/tools/llvm-as/Makefile b/llvm/tools/llvm-as/Makefile
index 2a2ee1a..7ac2c24 100644
--- a/llvm/tools/llvm-as/Makefile
+++ b/llvm/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/llvm/tools/llvm-dis/Makefile b/llvm/tools/llvm-dis/Makefile
index 0bd888e..5ee0021 100644
--- a/llvm/tools/llvm-dis/Makefile
+++ b/llvm/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/llvm/tools/llvm-link/Makefile b/llvm/tools/llvm-link/Makefile
index f4f08a0..333236b 100644
--- a/llvm/tools/llvm-link/Makefile
+++ b/llvm/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/llvm/tools/opt/Makefile b/llvm/tools/opt/Makefile
index 9b1df54..869ba26 100644
--- a/llvm/tools/opt/Makefile
+++ b/llvm/tools/opt/Makefile
@@ -2,7 +2,9 @@
 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