diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-09-16 18:13:12 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-09-16 18:13:12 +0000 |
commit | 055451f0110c2ebf2b4d27b1a0973b8b12bbc8a3 (patch) | |
tree | 5fe8b6f66f2796dbfef4a3ef406b4d9fc47108ef /tools/opt/Makefile | |
parent | fecaf56ef2dbe206c0d4cc0340996824a5e21a18 (diff) | |
download | external_llvm-055451f0110c2ebf2b4d27b1a0973b8b12bbc8a3.zip external_llvm-055451f0110c2ebf2b4d27b1a0973b8b12bbc8a3.tar.gz external_llvm-055451f0110c2ebf2b4d27b1a0973b8b12bbc8a3.tar.bz2 |
Use .o files instead of .a files for several cases (that don't actually
need them) until other Makefiles can be updated to build archives.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3761 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt/Makefile')
-rw-r--r-- | tools/opt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/opt/Makefile b/tools/opt/Makefile index aea04ac..2406887 100644 --- a/tools/opt/Makefile +++ b/tools/opt/Makefile @@ -2,8 +2,8 @@ LEVEL = ../.. TOOLNAME = opt USEDLIBS = bcreader bcwriter instrument profpaths \ - sparc.a target.a mapping.a regalloc.a sched.a select.a preselect \ - livevar.a sparc.a scalaropts \ + sparc target.a mapping regalloc.a sched select preselect \ + livevar sparc scalaropts \ ipo ipa.a datastructure.a transforms target.a analysis \ transformutils vmcore support TOOLLINKOPTS = -ldl |