Skip to content
Makefile 1.01 KiB
Newer Older
Chris Lattner's avatar
Chris Lattner committed
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
#                     The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
##===----------------------------------------------------------------------===##
Chris Lattner's avatar
Chris Lattner committed

LEVEL := ..

# 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.
DIRS := llvm-config
PARALLEL_DIRS := opt llvm-as llvm-dis \
Chris Lattner's avatar
Chris Lattner committed
                 llvm-ld llvm-prof llvm-link \
                 lli gccas gccld llvm-extract llvm-db \
                 bugpoint llvm-bcanalyzer llvm-stub llvmc
Chris Lattner's avatar
Chris Lattner committed
include $(LEVEL)/Makefile.config
ifdef ENABLE_PIC
  DIRS += lto
  ifdef BINUTILS_INCDIR
    DIRS += gold
  endif
Chris Lattner's avatar
Chris Lattner committed
include $(LEVEL)/Makefile.common