| 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 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 # Build LLDB if present. Note LLDB must be built last as it depends on the | 22 # Build LLDB if present. Note LLDB must be built last as it depends on the |
| 23 # wider LLVM infrastructure (including Clang). | 23 # wider LLVM infrastructure (including Clang). |
| 24 OPTIONAL_DIRS := lldb | 24 OPTIONAL_DIRS := lldb |
| 25 | 25 |
| 26 # NOTE: The tools are organized into five groups of four consisting of one | 26 # NOTE: The tools are organized into five groups of four consisting of one |
| 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 pnacl-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-bcanalyzer pnacl-freeze \ | 38 llvm-symbolizer pnacl-abicheck pnacl-bcanalyzer pnacl-freeze \ |
| 39 pnacl-thaw | 39 pnacl-thaw |
| 40 | 40 |
| 41 # 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. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 72 | 72 |
| 73 # On Win32, loadable modules can be built with ENABLE_SHARED. | 73 # On Win32, loadable modules can be built with ENABLE_SHARED. |
| 74 ifneq ($(ENABLE_SHARED),1) | 74 ifneq ($(ENABLE_SHARED),1) |
| 75 ifneq (,$(filter $(HOST_OS), Cygwin MingW)) | 75 ifneq (,$(filter $(HOST_OS), Cygwin MingW)) |
| 76 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ | 76 PARALLEL_DIRS := $(filter-out bugpoint-passes, \ |
| 77 $(PARALLEL_DIRS)) | 77 $(PARALLEL_DIRS)) |
| 78 endif | 78 endif |
| 79 endif | 79 endif |
| 80 | 80 |
| 81 include $(LEVEL)/Makefile.common | 81 include $(LEVEL)/Makefile.common |
| OLD | NEW |