summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2010-11-29 00:20:34 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2010-11-29 00:20:34 +0000
commitb4b544debac44da375d316e410ec447d967036a9 (patch)
tree98e7b44dcc24626799e6c25a4a9efe9dd6ac411f /tools
parentf5f6588304f803f09e36e7fc23c8f756b200b127 (diff)
downloadllvm-b4b544debac44da375d316e410ec447d967036a9.tar.gz
llvm-b4b544debac44da375d316e410ec447d967036a9.tar.bz2
llvm-b4b544debac44da375d316e410ec447d967036a9.tar.xz
tools/Makefile: Fix indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120276 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile24
1 files changed, 12 insertions, 12 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 012d8e6f88..8a6751ab87 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -35,23 +35,23 @@ include $(LEVEL)/Makefile.config
# These libraries build as dynamic libraries (.dylib /.so), they can only be
# built if ENABLE_PIC is set.
ifeq ($(ENABLE_PIC),1)
- # gold only builds if binutils is around. It requires "lto" to build before
- # it so it is added to DIRS.
- ifdef BINUTILS_INCDIR
- DIRS += lto gold
- else
- PARALLEL_DIRS += lto
- endif
+ # gold only builds if binutils is around. It requires "lto" to build before
+ # it so it is added to DIRS.
+ ifdef BINUTILS_INCDIR
+ DIRS += lto gold
+ else
+ PARALLEL_DIRS += lto
+ endif
- PARALLEL_DIRS += bugpoint-passes
+ PARALLEL_DIRS += bugpoint-passes
- # The edis library is only supported if ARM and/or X86 are enabled, and if
- # LLVM is being built PIC on platforms that support dylibs.
- ifneq ($(DISABLE_EDIS),1)
+ # The edis library is only supported if ARM and/or X86 are enabled, and if
+ # LLVM is being built PIC on platforms that support dylibs.
+ ifneq ($(DISABLE_EDIS),1)
ifneq ($(filter $(TARGETS_TO_BUILD), X86 ARM),)
PARALLEL_DIRS += edis
endif
- endif
+ endif
endif
ifdef LLVM_HAS_POLLY