diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-24 17:43:41 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-24 17:43:41 +0000 |
commit | ca1e0c6ae0c9936732920edd0deadd73dc39ad69 (patch) | |
tree | 12a9a603aa623d3328ad83e00c95b549abdda44c | |
parent | e22594f3d76b6ed313b44a99f67ae149e116c42b (diff) | |
download | bcm5719-llvm-ca1e0c6ae0c9936732920edd0deadd73dc39ad69.tar.gz bcm5719-llvm-ca1e0c6ae0c9936732920edd0deadd73dc39ad69.zip |
There are still uses for spaces in Makefiles -- to make text line up together,
regardless of the tab size/stop settings on the developer side
llvm-svn: 21499
-rw-r--r-- | llvm/tools/gccas/Makefile | 4 | ||||
-rw-r--r-- | llvm/tools/gccld/Makefile | 6 | ||||
-rw-r--r-- | llvm/tools/llvm-as/Makefile | 4 | ||||
-rw-r--r-- | llvm/tools/llvm-prof/Makefile | 3 |
4 files changed, 9 insertions, 8 deletions
diff --git a/llvm/tools/gccas/Makefile b/llvm/tools/gccas/Makefile index d81a5c8d029..c66fb4fe497 100644 --- a/llvm/tools/gccas/Makefile +++ b/llvm/tools/gccas/Makefile @@ -10,7 +10,7 @@ LEVEL = ../.. TOOLNAME = gccas USEDLIBS = LLVMAsmParser LLVMBCWriter LLVMTransforms LLVMipo.a LLVMipa.a \ - LLVMScalarOpts LLVMAnalysis.a LLVMTarget.a LLVMTransformUtils \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a + LLVMScalarOpts LLVMAnalysis.a LLVMTarget.a LLVMTransformUtils \ + LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/gccld/Makefile b/llvm/tools/gccld/Makefile index c13e4f51d90..96e73d68713 100644 --- a/llvm/tools/gccld/Makefile +++ b/llvm/tools/gccld/Makefile @@ -11,8 +11,8 @@ 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 + LLVMipa.a LLVMTransformUtils.a LLVMTarget.a LLVMLinker.a \ + LLVMArchive.a LLVMBCReader LLVMBCWriter \ + LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-as/Makefile b/llvm/tools/llvm-as/Makefile index ed44577cee1..91de6d2490b 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 LLVMBCWriter LLVMCore \ + LLVMSupport.a LLVMbzip2 LLVMSystem.a include $(LEVEL)/Makefile.common diff --git a/llvm/tools/llvm-prof/Makefile b/llvm/tools/llvm-prof/Makefile index dabac6c4b14..b0d4b3e5796 100644 --- a/llvm/tools/llvm-prof/Makefile +++ b/llvm/tools/llvm-prof/Makefile @@ -10,5 +10,6 @@ LEVEL = ../.. TOOLNAME = llvm-prof USEDLIBS = LLVMAnalysis.a LLVMBCReader \ - LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a + LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a + include $(LEVEL)/Makefile.common |