Added a bare-bones Makefile to build the enhanced disassembly
[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
12 # Build clang if present.
13 OPTIONAL_PARALLEL_DIRS := clang
14
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 DIRS := llvm-config
19 PARALLEL_DIRS := opt llvm-as llvm-dis \
20                  llc llvm-ranlib llvm-ar llvm-nm \
21                  llvm-ld llvm-prof llvm-link \
22                  lli llvm-extract \
23                  bugpoint llvm-bcanalyzer llvm-stub \
24                  llvm-mc llvmc \
25                  ed
26
27 # Let users override the set of tools to build from the command line.
28 ifdef ONLY_TOOLS
29   OPTIONAL_PARALLEL_DIRS :=
30   PARALLEL_DIRS := $(ONLY_TOOLS)
31 endif
32
33 include $(LEVEL)/Makefile.config
34
35 ifeq ($(ENABLE_PIC),1)
36   DIRS += lto
37   ifdef BINUTILS_INCDIR
38     DIRS += gold
39   endif
40 endif
41
42 # No support for lto / gold on windows targets
43 ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW))
44   DIRS := $(filter-out lto gold, $(DIRS))
45 endif
46
47 include $(LEVEL)/Makefile.common