Enable stack slot coloring DCE. Evan's spiller fixes were needed before this could...
[llvm/msp430.git] / tools / Makefile
bloba296f8187024aabd6a6da33f959a0db91e7ff946
1 ##===- tools/Makefile --------------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
10 LEVEL := ..
12 # Build clang if present.
13 OPTIONAL_PARALLEL_DIRS := clang
15 # NOTE: The tools are organized into five groups of four consisting of one
16 # large and three small executables. This is done to minimize memory load
17 # in parallel builds. Please retain this ordering.
18 PARALLEL_DIRS := llvm-config \
19 opt llvm-as llvm-dis \
20 llc llvm-ranlib llvm-ar llvm-nm \
21 llvm-ld llvm-prof llvm-link \
22 lli gccas gccld llvm-extract llvm-db \
23 bugpoint llvm-bcanalyzer llvm-stub llvmc
26 include $(LEVEL)/Makefile.config
28 # only build new lto project on Darwin for now
29 ifeq ($(OS),Darwin)
30 PARALLEL_DIRS += lto
32 ifdef BINUTILS_INCDIR
33 PARALLEL_DIRS += gold
34 endif
35 endif
37 include $(LEVEL)/Makefile.common