[llvm-commits] [llvm] r120276 - /llvm/trunk/tools/Makefile
NAKAMURA Takumi
geek4civic at gmail.com
Sun Nov 28 16:20:34 PST 2010
Author: chapuni
Date: Sun Nov 28 18:20:34 2010
New Revision: 120276
URL: http://llvm.org/viewvc/llvm-project?rev=120276&view=rev
Log:
tools/Makefile: Fix indentation.
Modified:
llvm/trunk/tools/Makefile
Modified: llvm/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/Makefile?rev=120276&r1=120275&r2=120276&view=diff
==============================================================================
--- llvm/trunk/tools/Makefile (original)
+++ llvm/trunk/tools/Makefile Sun Nov 28 18:20:34 2010
@@ -35,23 +35,23 @@
# 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
More information about the llvm-commits
mailing list