diff options
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/analyze/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/bugpoint/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/gccas/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/gccld/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/llc/Makefile | 10 | ||||
| -rw-r--r-- | llvm/tools/llvm-ar/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/llvm-as/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/llvm-bcanalyzer/Makefile | 2 | ||||
| -rw-r--r-- | llvm/tools/llvm-db/Makefile | 3 | ||||
| -rw-r--r-- | llvm/tools/llvm-dis/Makefile | 2 | ||||
| -rw-r--r-- | llvm/tools/llvm-extract/Makefile | 6 | ||||
| -rw-r--r-- | llvm/tools/llvm-ld/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/llvm-link/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/llvm-nm/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/llvm-prof/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/llvm-ranlib/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/llvm2cpp/Makefile | 4 | ||||
| -rw-r--r-- | llvm/tools/llvmc/Makefile | 2 | ||||
| -rw-r--r-- | llvm/tools/opt/Makefile | 6 |
19 files changed, 40 insertions, 39 deletions
diff --git a/llvm/tools/analyze/Makefile b/llvm/tools/analyze/Makefile index 06def88d01a..0f0eb72628e 100644 --- a/llvm/tools/analyze/Makefile +++ b/llvm/tools/analyze/Makefile @@ -8,9 +8,9 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. TOOLNAME = analyze -USEDLIBS = LLVMAsmParser LLVMBCReader LLVMAnalysis.a LLVMipa.a \ +USEDLIBS = LLVMAsmParser.a LLVMBCReader.a LLVMAnalysis.a LLVMipa.a \ LLVMDataStructure \ LLVMScalarOpts.a LLVMTransforms.a LLVMTarget.a LLVMScalarOpts.a \ - LLVMTransformUtils.a LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a + LLVMTransformUtils.a LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/bugpoint/Makefile b/llvm/tools/bugpoint/Makefile index 6460aa82aa2..338122ac148 100644 --- a/llvm/tools/bugpoint/Makefile +++ b/llvm/tools/bugpoint/Makefile @@ -15,7 +15,7 @@ ANALIBS = LLVMDataStructure LLVMipa.a LLVMTarget.a USEDLIBS = LLVMipo.a LLVMScalarOpts.a $(OPTLIBS) $(ANALIBS) LLVMAnalysis.a \ LLVMTransformUtils.a \ - LLVMAsmParser LLVMLinker.a LLVMBCReader LLVMBCWriter \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a + LLVMAsmParser.a LLVMLinker.a LLVMBCReader.a LLVMBCWriter.a \ + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/gccas/Makefile b/llvm/tools/gccas/Makefile index 32c10c88658..55b0379941a 100644 --- a/llvm/tools/gccas/Makefile +++ b/llvm/tools/gccas/Makefile @@ -9,8 +9,8 @@ LEVEL = ../.. TOOLNAME = gccas -USEDLIBS = LLVMAsmParser LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMipa.a \ +USEDLIBS = LLVMAsmParser.a LLVMBCWriter.a LLVMTransforms.a LLVMipo.a LLVMipa.a \ LLVMScalarOpts.a LLVMAnalysis.a LLVMTarget.a LLVMTransformUtils.a \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/gccld/Makefile b/llvm/tools/gccld/Makefile index 96e73d68713..44c6be9834b 100644 --- a/llvm/tools/gccld/Makefile +++ b/llvm/tools/gccld/Makefile @@ -12,7 +12,7 @@ LEVEL = ../.. TOOLNAME = gccld USEDLIBS = LLVMipo.a LLVMTransforms.a LLVMScalarOpts.a LLVMAnalysis.a \ LLVMipa.a LLVMTransformUtils.a LLVMTarget.a LLVMLinker.a \ - LLVMArchive.a LLVMBCReader LLVMBCWriter \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a + LLVMArchive.a LLVMBCReader.a LLVMBCWriter.a \ + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llc/Makefile b/llvm/tools/llc/Makefile index ed48accf2be..fe744039636 100644 --- a/llvm/tools/llc/Makefile +++ b/llvm/tools/llc/Makefile @@ -56,17 +56,17 @@ endif USEDLIBS += \ LLVMSelectionDAG \ LLVMCodeGen \ - LLVMTarget.a \ + LLVMTarget \ LLVMipa.a \ LLVMTransforms.a \ LLVMScalarOpts.a \ LLVMTransformUtils.a \ LLVMAnalysis.a \ - LLVMBCReader \ - LLVMBCWriter \ - LLVMCore \ + LLVMBCReader.a \ + LLVMBCWriter.a \ + LLVMCore.a \ LLVMSupport.a \ - LLVMbzip2 \ + LLVMbzip2.a \ LLVMSystem.a include $(LLVM_SRC_ROOT)/Makefile.rules diff --git a/llvm/tools/llvm-ar/Makefile b/llvm/tools/llvm-ar/Makefile index 3375f9ee365..fbc2bcf3530 100644 --- a/llvm/tools/llvm-ar/Makefile +++ b/llvm/tools/llvm-ar/Makefile @@ -9,8 +9,8 @@ LEVEL = ../.. TOOLNAME = llvm-ar -USEDLIBS = LLVMArchive.a LLVMBCReader \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMArchive.a LLVMBCReader.a \ + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-as/Makefile b/llvm/tools/llvm-as/Makefile index 91de6d2490b..73dcb06aff4 100644 --- a/llvm/tools/llvm-as/Makefile +++ b/llvm/tools/llvm-as/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. TOOLNAME = llvm-as -USEDLIBS = LLVMAsmParser LLVMBCWriter LLVMCore \ - LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMAsmParser.a LLVMBCWriter.a LLVMCore.a \ + LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-bcanalyzer/Makefile b/llvm/tools/llvm-bcanalyzer/Makefile index 3793cfbfd65..79146463142 100644 --- a/llvm/tools/llvm-bcanalyzer/Makefile +++ b/llvm/tools/llvm-bcanalyzer/Makefile @@ -9,5 +9,5 @@ LEVEL = ../.. TOOLNAME = llvm-bcanalyzer -USEDLIBS = LLVMBCReader LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMBCReader.a LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-db/Makefile b/llvm/tools/llvm-db/Makefile index e5b0d2916b6..31ebbba59cd 100644 --- a/llvm/tools/llvm-db/Makefile +++ b/llvm/tools/llvm-db/Makefile @@ -9,6 +9,7 @@ LEVEL = ../.. TOOLNAME = llvm-db -USEDLIBS = LLVMDebugger LLVMBCReader LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMDebugger LLVMBCReader.a LLVMCore.a LLVMSupport.a \ + LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-dis/Makefile b/llvm/tools/llvm-dis/Makefile index ebf21c461f3..8e54fb347c8 100644 --- a/llvm/tools/llvm-dis/Makefile +++ b/llvm/tools/llvm-dis/Makefile @@ -9,5 +9,5 @@ LEVEL = ../.. TOOLNAME = llvm-dis -USEDLIBS = LLVMBCReader LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMBCReader.a LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-extract/Makefile b/llvm/tools/llvm-extract/Makefile index 80a90fa41a8..73d5883403a 100644 --- a/llvm/tools/llvm-extract/Makefile +++ b/llvm/tools/llvm-extract/Makefile @@ -9,8 +9,8 @@ LEVEL = ../.. TOOLNAME = llvm-extract -USEDLIBS = LLVMBCReader LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMTarget.a \ - LLVMAnalysis.a LLVMTransformUtils.a LLVMipa.a \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMBCReader.a LLVMBCWriter.a LLVMTransforms.a LLVMipo.a \ + LLVMTarget.a LLVMAnalysis.a LLVMTransformUtils.a LLVMipa.a \ + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-ld/Makefile b/llvm/tools/llvm-ld/Makefile index 34d6dc69ca4..eb2158a252a 100644 --- a/llvm/tools/llvm-ld/Makefile +++ b/llvm/tools/llvm-ld/Makefile @@ -12,7 +12,7 @@ LEVEL = ../.. TOOLNAME = llvm-ld USEDLIBS = LLVMipo.a LLVMTransforms.a LLVMScalarOpts.a LLVMAnalysis.a \ LLVMipa.a LLVMTransformUtils.a LLVMTarget.a LLVMLinker.a \ - LLVMArchive.a LLVMBCReader LLVMBCWriter \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a + LLVMArchive.a LLVMBCReader.a LLVMBCWriter.a \ + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-link/Makefile b/llvm/tools/llvm-link/Makefile index 9c3fa53113d..41594f2c51e 100644 --- a/llvm/tools/llvm-link/Makefile +++ b/llvm/tools/llvm-link/Makefile @@ -9,7 +9,7 @@ LEVEL = ../.. TOOLNAME = llvm-link -USEDLIBS = LLVMLinker.a LLVMBCReader LLVMBCWriter \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMLinker.a LLVMBCReader.a LLVMBCWriter.a \ + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-nm/Makefile b/llvm/tools/llvm-nm/Makefile index 9868b2ab9ae..996b3494de9 100644 --- a/llvm/tools/llvm-nm/Makefile +++ b/llvm/tools/llvm-nm/Makefile @@ -9,6 +9,6 @@ LEVEL = ../.. TOOLNAME = llvm-nm -USEDLIBS = LLVMArchive.a LLVMBCReader \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMArchive.a LLVMBCReader.a \ + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-prof/Makefile b/llvm/tools/llvm-prof/Makefile index b0d4b3e5796..029297a5711 100644 --- a/llvm/tools/llvm-prof/Makefile +++ b/llvm/tools/llvm-prof/Makefile @@ -9,7 +9,7 @@ LEVEL = ../.. TOOLNAME = llvm-prof -USEDLIBS = LLVMAnalysis.a LLVMBCReader \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMAnalysis.a LLVMBCReader.a \ + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-ranlib/Makefile b/llvm/tools/llvm-ranlib/Makefile index b7e47715433..b97c17c79a2 100644 --- a/llvm/tools/llvm-ranlib/Makefile +++ b/llvm/tools/llvm-ranlib/Makefile @@ -9,7 +9,7 @@ LEVEL = ../.. TOOLNAME = llvm-ranlib -USEDLIBS = LLVMArchive.a LLVMBCReader \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMArchive.a LLVMBCReader.a \ + LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm2cpp/Makefile b/llvm/tools/llvm2cpp/Makefile index a15b609b9e4..7e778d723d2 100644 --- a/llvm/tools/llvm2cpp/Makefile +++ b/llvm/tools/llvm2cpp/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. TOOLNAME = llvm2cpp -USEDLIBS = LLVMAsmParser LLVMBCWriter LLVMCore \ - LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMAsmParser.a LLVMBCWriter.a LLVMCore.a \ + LLVMSupport.a LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvmc/Makefile b/llvm/tools/llvmc/Makefile index 6034f87fe4f..79292baa539 100644 --- a/llvm/tools/llvmc/Makefile +++ b/llvm/tools/llvmc/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. TOOLNAME = llvmc -USEDLIBS = LLVMBCReader LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a +USEDLIBS = LLVMBCReader.a LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a CONFIG_FILES = c cpp ll EXTRA_DIST = c cpp ll ConfigLexer.cpp.cvs ConfigLexer.l.cvs diff --git a/llvm/tools/opt/Makefile b/llvm/tools/opt/Makefile index 9ffaa3d4b94..c262040ea88 100644 --- a/llvm/tools/opt/Makefile +++ b/llvm/tools/opt/Makefile @@ -9,9 +9,9 @@ LEVEL = ../.. TOOLNAME = opt -USEDLIBS = LLVMBCReader LLVMBCWriter LLVMInstrumentation.a \ +USEDLIBS = LLVMBCReader.a LLVMBCWriter.a LLVMInstrumentation.a \ LLVMScalarOpts.a LLVMipo.a LLVMipa.a LLVMDataStructure LLVMTransforms.a \ - LLVMTarget.a LLVMTransformUtils.a LLVMAnalysis.a LLVMCore LLVMSupport.a \ - LLVMbzip2 LLVMSystem.a + LLVMTarget.a LLVMTransformUtils.a LLVMAnalysis.a LLVMCore.a LLVMSupport.a \ + LLVMbzip2.a LLVMSystem.a include $(LEVEL)/Makefile.common |

