| 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 16 matching lines...) Expand all Loading... |
| 27 # large and three small executables. This is done to minimize memory load | 27 # large and three small executables. This is done to minimize memory load |
| 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 pnacl-freeze pnacl-thaw | 38 llvm-symbolizer pnacl-abicheck pnacl-bcanalyzer pnacl-freeze \ |
| 39 pnacl-thaw |
| 39 | 40 |
| 40 # If Intel JIT Events support is configured, build an extra tool to test it. | 41 # If Intel JIT Events support is configured, build an extra tool to test it. |
| 41 ifeq ($(USE_INTEL_JITEVENTS), 1) | 42 ifeq ($(USE_INTEL_JITEVENTS), 1) |
| 42 PARALLEL_DIRS += llvm-jitlistener | 43 PARALLEL_DIRS += llvm-jitlistener |
| 43 endif | 44 endif |
| 44 | 45 |
| 45 # Let users override the set of tools to build from the command line. | 46 # Let users override the set of tools to build from the command line. |
| 46 ifdef ONLY_TOOLS | 47 ifdef ONLY_TOOLS |
| 47 OPTIONAL_PARALLEL_DIRS := | 48 OPTIONAL_PARALLEL_DIRS := |
| 48 OPTIONAL_DIRS := $(findstring lldb,$(ONLY_TOOLS)) | 49 OPTIONAL_DIRS := $(findstring lldb,$(ONLY_TOOLS)) |
| (...skipping 22 matching lines...) Expand all Loading... |
| 71 | 72 |
| 72 # On Win32, loadable modules can be built with ENABLE_SHARED. | 73 # On Win32, loadable modules can be built with ENABLE_SHARED. |
| 73 ifneq ($(ENABLE_SHARED),1) | 74 ifneq ($(ENABLE_SHARED),1) |
| 74 ifneq (,$(filter $(HOST_OS), Cygwin MingW)) | 75 ifneq (,$(filter $(HOST_OS), Cygwin MingW)) |
| 75 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ | 76 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ |
| 76 $(PARALLEL_DIRS)) | 77 $(PARALLEL_DIRS)) |
| 77 endif | 78 endif |
| 78 endif | 79 endif |
| 79 | 80 |
| 80 include $(LEVEL)/Makefile.common | 81 include $(LEVEL)/Makefile.common |
| OLD | NEW |