stop building llvmc.
[oota-llvm.git] / tools / Makefile
1 ##===- tools/Makefile --------------------------------------*- Makefile -*-===##
2
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7
8 ##===----------------------------------------------------------------------===##
9
10 LEVEL := ..
11 # NOTE: The tools are organized into five groups of four consisting of one 
12 # large and three small executables. This is done to minimize memory load 
13 # in parallel builds.  Please retain this ordering.
14 PARALLEL_DIRS := llvm-config  \
15                  opt llvm-as llvm-dis \
16                  llc llvm-ranlib llvm-ar llvm-nm \
17                  llvm-ld llvm-prof llvm-link \
18                  lli gccas gccld llvm-extract llvm-db llvm2cpp \
19                  bugpoint llvm-bcanalyzer llvm-stub llvmc2
20
21
22 include $(LEVEL)/Makefile.config
23
24 # Disable liblto as it is going away
25 #PARALLEL_DIRS += lto
26
27 # only build new lto project on Darwin for now
28 ifeq ($(OS),Darwin)
29 PARALLEL_DIRS += lto2
30 endif
31
32 include $(LEVEL)/Makefile.common