diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-23 17:52:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-23 17:52:38 +0000 |
commit | a896b08b5c8c1386bd010248524e5d0951c51972 (patch) | |
tree | c520f86dffda4fe4d844513e64d08fc74c409e8b /llvm/tools | |
parent | 2a77d8a7aa79ac4dd2ccda43c655a28c374be7c5 (diff) | |
download | bcm5719-llvm-a896b08b5c8c1386bd010248524e5d0951c51972.tar.gz bcm5719-llvm-a896b08b5c8c1386bd010248524e5d0951c51972.zip |
*** empty log message ***
llvm-svn: 3002
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/as/Makefile | 3 | ||||
-rw-r--r-- | llvm/tools/dis/Makefile | 2 | ||||
-rw-r--r-- | llvm/tools/extract/Makefile | 3 | ||||
-rw-r--r-- | llvm/tools/gccas/Makefile | 3 | ||||
-rw-r--r-- | llvm/tools/gccld/Makefile | 3 | ||||
-rw-r--r-- | llvm/tools/link/Makefile | 2 | ||||
-rw-r--r-- | llvm/tools/llc/Makefile | 4 | ||||
-rw-r--r-- | llvm/tools/lli/Makefile | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-as/Makefile | 3 | ||||
-rw-r--r-- | llvm/tools/llvm-dis/Makefile | 2 | ||||
-rw-r--r-- | llvm/tools/llvm-link/Makefile | 2 | ||||
-rw-r--r-- | llvm/tools/opt/Makefile | 4 |
12 files changed, 18 insertions, 15 deletions
diff --git a/llvm/tools/as/Makefile b/llvm/tools/as/Makefile index 2a2ee1a3880..7ac2c2432d8 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 0bd888e9553..5ee0021c8a4 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 f9209d14457..c364bb2c69f 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 4bef2b1152f..b268edc9c2c 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 f808aa798a2..dba89b9eb95 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 f4f08a0076e..333236b5685 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 d6952d07927..ecd56631a40 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 4a5641106d0..4e47ee6a718 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 2a2ee1a3880..7ac2c2432d8 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 0bd888e9553..5ee0021c8a4 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 f4f08a0076e..333236b5685 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 9b1df54b851..869ba26c004 100644 --- a/llvm/tools/opt/Makefile +++ b/llvm/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 |