Newer
Older
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
##===----------------------------------------------------------------------===##
# Build clang if present.
OPTIONAL_PARALLEL_DIRS := clang
# NOTE: The tools are organized into five groups of four consisting of one
# large and three small executables. This is done to minimize memory load
# in parallel builds. Please retain this ordering.
Nick Lewycky
committed
DIRS := llvm-config
PARALLEL_DIRS := opt llvm-as llvm-dis \
llc llvm-ranlib llvm-ar llvm-nm \
lli gccas gccld llvm-extract llvm-db \
bugpoint llvm-bcanalyzer llvm-stub llvmc
Nick Lewycky
committed
ifdef ENABLE_PIC
DIRS += lto
ifdef BINUTILS_INCDIR
DIRS += gold
endif
Anton Korobeynikov
committed
endif