Codegen support (stripped out) for the annotate attribute.
[llvm-complete.git] / tools / Makefile
blob3d2c1f052e7dc9f10b318b46e4c126bf4f2a7642
1 ##===- tools/Makefile --------------------------------------*- Makefile -*-===##
2 #
3 # The LLVM Compiler Infrastructure
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
7 #
8 ##===----------------------------------------------------------------------===##
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 llvm-upgrade \
16 llc llvm-ranlib llvm-ar llvm-nm \
17 llvm-ld llvmc llvm-prof llvm-link \
18 lli gccas gccld llvm-extract llvm-db llvm2cpp \
19 bugpoint llvm-stub llvm-bcanalyzer llvm-stub
22 include $(LEVEL)/Makefile.config
24 # Disable liblto on Windows until compatability is determined.
25 ifneq ($(OS), MingW)
26 PARALLEL_DIRS += lto
27 endif
29 include $(LEVEL)/Makefile.common