OLD | NEW |
1 ##===- tools/Makefile --------------------------------------*- Makefile -*-===## | 1 ##===- tools/Makefile --------------------------------------*- Makefile -*-===## |
2 # | 2 # |
3 # The LLVM Compiler Infrastructure | 3 # The LLVM Compiler Infrastructure |
4 # | 4 # |
5 # This file is distributed under the University of Illinois Open Source | 5 # This file is distributed under the University of Illinois Open Source |
6 # License. See LICENSE.TXT for details. | 6 # License. See LICENSE.TXT for details. |
7 # | 7 # |
8 ##===----------------------------------------------------------------------===## | 8 ##===----------------------------------------------------------------------===## |
9 | 9 |
10 LEVEL := .. | 10 LEVEL := .. |
(...skipping 17 matching lines...) Expand all Loading... |
28 # in parallel builds. Please retain this ordering. | 28 # in parallel builds. Please retain this ordering. |
29 DIRS := llvm-config | 29 DIRS := llvm-config |
30 PARALLEL_DIRS := opt llvm-as llvm-dis \ | 30 PARALLEL_DIRS := opt llvm-as llvm-dis \ |
31 llc llvm-ranlib llvm-ar llvm-nm \ | 31 llc llvm-ranlib llvm-ar llvm-nm \ |
32 llvm-prof llvm-link \ | 32 llvm-prof llvm-link \ |
33 lli llvm-extract llvm-mc \ | 33 lli llvm-extract llvm-mc \ |
34 bugpoint llvm-bcanalyzer \ | 34 bugpoint llvm-bcanalyzer \ |
35 llvm-diff macho-dump llvm-objdump llvm-readobj \ | 35 llvm-diff macho-dump llvm-objdump llvm-readobj \ |
36 llvm-rtdyld llvm-dwarfdump llvm-cov \ | 36 llvm-rtdyld llvm-dwarfdump llvm-cov \ |
37 llvm-size llvm-stress llvm-mcmarkup bc-wrap pso-stub \ | 37 llvm-size llvm-stress llvm-mcmarkup bc-wrap pso-stub \ |
38 » llvm-symbolizer pnacl-abicheck | 38 » llvm-symbolizer pnacl-abicheck pnacl-freeze |
39 | 39 |
40 # If Intel JIT Events support is configured, build an extra tool to test it. | 40 # If Intel JIT Events support is configured, build an extra tool to test it. |
41 ifeq ($(USE_INTEL_JITEVENTS), 1) | 41 ifeq ($(USE_INTEL_JITEVENTS), 1) |
42 PARALLEL_DIRS += llvm-jitlistener | 42 PARALLEL_DIRS += llvm-jitlistener |
43 endif | 43 endif |
44 | 44 |
45 # Let users override the set of tools to build from the command line. | 45 # Let users override the set of tools to build from the command line. |
46 ifdef ONLY_TOOLS | 46 ifdef ONLY_TOOLS |
47 OPTIONAL_PARALLEL_DIRS := | 47 OPTIONAL_PARALLEL_DIRS := |
48 OPTIONAL_DIRS := $(findstring lldb,$(ONLY_TOOLS)) | 48 OPTIONAL_DIRS := $(findstring lldb,$(ONLY_TOOLS)) |
(...skipping 22 matching lines...) Expand all Loading... |
71 | 71 |
72 # On Win32, loadable modules can be built with ENABLE_SHARED. | 72 # On Win32, loadable modules can be built with ENABLE_SHARED. |
73 ifneq ($(ENABLE_SHARED),1) | 73 ifneq ($(ENABLE_SHARED),1) |
74 ifneq (,$(filter $(HOST_OS), Cygwin MingW)) | 74 ifneq (,$(filter $(HOST_OS), Cygwin MingW)) |
75 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ | 75 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ |
76 $(PARALLEL_DIRS)) | 76 $(PARALLEL_DIRS)) |
77 endif | 77 endif |
78 endif | 78 endif |
79 | 79 |
80 include $(LEVEL)/Makefile.common | 80 include $(LEVEL)/Makefile.common |
OLD | NEW |