diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-10-12 18:35:57 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-10-12 18:35:57 +0000 |
commit | 2c9039eb1a2c6878603def7db148135958ac5c8d (patch) | |
tree | 91ec6ad6b65b4aeec73a75769327b3b90e72756b | |
parent | e004fd005d3db3caf535d273418c4427b0428ab5 (diff) |
Wrap lines at 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16939 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/analyze/Makefile | 7 | ||||
-rw-r--r-- | tools/bugpoint/Makefile | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/tools/analyze/Makefile b/tools/analyze/Makefile index 074f26b158..ec94fe6a3e 100644 --- a/tools/analyze/Makefile +++ b/tools/analyze/Makefile @@ -8,9 +8,10 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. TOOLNAME = analyze -USEDLIBS = asmparser bcreader analysis ipa datastructure scalaropts.a transforms.a \ - target.a scalaropts.a transformutils.a vmcore support LLVMsystem.a +USEDLIBS = asmparser bcreader analysis ipa datastructure scalaropts.a \ + transforms.a target.a scalaropts.a transformutils.a vmcore support \ + LLVMsystem.a + TOOLLINKOPTS = $(PLATFORMLIBDL) include $(LEVEL)/Makefile.common - diff --git a/tools/bugpoint/Makefile b/tools/bugpoint/Makefile index 5377d3d7d0..8387006cdb 100644 --- a/tools/bugpoint/Makefile +++ b/tools/bugpoint/Makefile @@ -13,8 +13,8 @@ TOOLNAME = bugpoint OPTLIBS = transforms instrument profpaths ANALIBS = datastructure ipa target.a -USEDLIBS = ipo scalaropts analysis $(OPTLIBS) $(ANALIBS) \ - transformutils asmparser bcreader bcwriter vmcore support LLVMsystem.a +USEDLIBS = ipo scalaropts analysis $(OPTLIBS) $(ANALIBS) transformutils \ + asmparser bcreader bcwriter vmcore support LLVMsystem.a TOOLLINKOPTS = $(PLATFORMLIBDL) |