Misha Brukman | 6d5ab86 | 2004-04-24 00:10:56 +0000 | [diff] [blame] | 1 | #===- ./Makefile -------------------------------------------*- Makefile -*--===# |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 2 | # |
John Criswell | e488e93 | 2003-10-20 22:26:57 +0000 | [diff] [blame] | 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
Chris Lattner | 57360d1 | 2007-12-29 20:11:13 +0000 | [diff] [blame] | 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 7 | # |
Misha Brukman | 6d5ab86 | 2004-04-24 00:10:56 +0000 | [diff] [blame] | 8 | #===------------------------------------------------------------------------===# |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 9 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 10 | LEVEL := . |
Chris Lattner | 87b5101 | 2006-09-04 04:27:07 +0000 | [diff] [blame] | 11 | |
| 12 | # Top-Level LLVM Build Stages: |
Peter Collingbourne | 7c78888 | 2011-10-01 16:41:13 +0000 | [diff] [blame] | 13 | # 1. Build lib/Support and lib/TableGen, which are used by utils (tblgen). |
Chandler Carruth | fe4c10c | 2013-01-02 09:27:25 +0000 | [diff] [blame] | 14 | # 2. Build utils, which is used by IR. |
| 15 | # 3. Build IR, which builds the Intrinsics.inc file used by libs. |
Daniel Dunbar | 1ad9213 | 2011-11-10 19:59:35 +0000 | [diff] [blame] | 16 | # 4. Build libs, which are needed by llvm-config. |
| 17 | # 5. Build llvm-config, which determines inter-lib dependencies for tools. |
| 18 | # 6. Build tools, runtime, docs. |
Chris Lattner | 87b5101 | 2006-09-04 04:27:07 +0000 | [diff] [blame] | 19 | # |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 20 | # When cross-compiling, there are some things (tablegen) that need to |
| 21 | # be build for the build system first. |
Stuart Hastings | 4a53e1e | 2009-10-22 17:22:37 +0000 | [diff] [blame] | 22 | |
| 23 | # If "RC_ProjectName" exists in the environment, and its value is |
| 24 | # "llvmCore", then this is an "Apple-style" build; search for |
| 25 | # "Apple-style" in the comments for more info. Anything else is a |
| 26 | # normal build. |
Jim Grosbach | 2cdc80c | 2009-10-30 19:51:32 +0000 | [diff] [blame] | 27 | ifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore) # Normal build (not "Apple-style"). |
| 28 | |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 29 | ifeq ($(BUILD_DIRS_ONLY),1) |
Daniel Dunbar | cb497b8 | 2011-12-01 20:18:09 +0000 | [diff] [blame] | 30 | DIRS := lib/Support lib/TableGen utils tools/llvm-config |
Peter Collingbourne | 0be07d3 | 2011-10-08 00:27:38 +0000 | [diff] [blame] | 31 | OPTIONAL_DIRS := tools/clang/utils/TableGen |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 32 | else |
Chandler Carruth | fe4c10c | 2013-01-02 09:27:25 +0000 | [diff] [blame] | 33 | DIRS := lib/Support lib/TableGen utils lib/IR lib tools/llvm-shlib \ |
Daniel Dunbar | cb497b8 | 2011-12-01 20:18:09 +0000 | [diff] [blame] | 34 | tools/llvm-config tools runtime docs unittests |
Daniel Dunbar | da589a3 | 2009-11-16 22:38:00 +0000 | [diff] [blame] | 35 | OPTIONAL_DIRS := projects bindings |
| 36 | endif |
| 37 | |
| 38 | ifeq ($(BUILD_EXAMPLES),1) |
| 39 | OPTIONAL_DIRS += examples |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 40 | endif |
David Greene | df93e57 | 2007-07-11 23:44:08 +0000 | [diff] [blame] | 41 | |
Misha Brukman | 8fb520e | 2009-01-01 02:24:48 +0000 | [diff] [blame] | 42 | EXTRA_DIST := test unittests llvm.spec include win32 Xcode |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 43 | |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 44 | include $(LEVEL)/Makefile.config |
Reid Spencer | 93bc3cd | 2006-04-06 22:15:51 +0000 | [diff] [blame] | 45 | |
Jeffrey Yasskin | c901719 | 2010-02-25 06:34:33 +0000 | [diff] [blame] | 46 | ifneq ($(ENABLE_SHARED),1) |
| 47 | DIRS := $(filter-out tools/llvm-shlib, $(DIRS)) |
| 48 | endif |
| 49 | |
Rafael Espindola | 9d9ae9f | 2010-11-12 19:24:06 +0000 | [diff] [blame] | 50 | ifneq ($(ENABLE_DOCS),1) |
| 51 | DIRS := $(filter-out docs, $(DIRS)) |
| 52 | endif |
| 53 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 54 | ifeq ($(MAKECMDGOALS),libs-only) |
Reid Spencer | 8b2e141 | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 55 | DIRS := $(filter-out tools runtime docs, $(DIRS)) |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 56 | OPTIONAL_DIRS := |
| 57 | endif |
| 58 | |
Nate Begeman | 544f83d | 2007-12-13 02:17:17 +0000 | [diff] [blame] | 59 | ifeq ($(MAKECMDGOALS),install-libs) |
| 60 | DIRS := $(filter-out tools runtime docs, $(DIRS)) |
| 61 | OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS)) |
| 62 | endif |
| 63 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 64 | ifeq ($(MAKECMDGOALS),tools-only) |
Reid Spencer | 8b2e141 | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 65 | DIRS := $(filter-out runtime docs, $(DIRS)) |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 66 | OPTIONAL_DIRS := |
| 67 | endif |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 68 | |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 69 | ifeq ($(MAKECMDGOALS),install-clang) |
Daniel Dunbar | 6b8dfed | 2010-01-20 00:43:07 +0000 | [diff] [blame] | 70 | DIRS := tools/clang/tools/driver tools/clang/lib/Headers \ |
Bob Wilson | 4e33d94 | 2012-10-24 22:56:32 +0000 | [diff] [blame] | 71 | tools/clang/tools/libclang \ |
Argyrios Kyrtzidis | 9d8c678 | 2012-11-06 19:54:46 +0000 | [diff] [blame] | 72 | tools/clang/tools/c-index-test \ |
Bob Wilson | 9fbf617 | 2011-11-27 00:26:22 +0000 | [diff] [blame] | 73 | tools/clang/include/clang-c \ |
Daniel Dunbar | e160a52 | 2010-07-16 01:29:50 +0000 | [diff] [blame] | 74 | tools/clang/runtime tools/clang/docs \ |
Bill Wendling | a1f21e6 | 2011-06-10 21:47:14 +0000 | [diff] [blame] | 75 | tools/lto runtime |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 76 | OPTIONAL_DIRS := |
| 77 | NO_INSTALL = 1 |
| 78 | endif |
| 79 | |
| 80 | ifeq ($(MAKECMDGOALS),clang-only) |
Bill Wendling | a1f21e6 | 2011-06-10 21:47:14 +0000 | [diff] [blame] | 81 | DIRS := $(filter-out tools docs unittests, $(DIRS)) \ |
Daniel Dunbar | e160a52 | 2010-07-16 01:29:50 +0000 | [diff] [blame] | 82 | tools/clang tools/lto |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 83 | OPTIONAL_DIRS := |
| 84 | endif |
| 85 | |
Misha Brukman | 8fb520e | 2009-01-01 02:24:48 +0000 | [diff] [blame] | 86 | ifeq ($(MAKECMDGOALS),unittests) |
| 87 | DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests |
| 88 | OPTIONAL_DIRS := |
| 89 | endif |
| 90 | |
Chris Lattner | c891465 | 2009-05-08 17:32:47 +0000 | [diff] [blame] | 91 | # Use NO_INSTALL define of the Makefile of each directory for deciding |
| 92 | # if the directory is installed or not |
Chris Lattner | 122c055 | 2007-02-21 06:23:20 +0000 | [diff] [blame] | 93 | ifeq ($(MAKECMDGOALS),install) |
Gordon Henriksen | 8ef426b | 2007-09-18 12:49:39 +0000 | [diff] [blame] | 94 | OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS)) |
Chris Lattner | 122c055 | 2007-02-21 06:23:20 +0000 | [diff] [blame] | 95 | endif |
| 96 | |
Daniel Dunbar | a1e1319 | 2010-11-27 06:59:16 +0000 | [diff] [blame] | 97 | # Don't build unittests when ONLY_TOOLS is set. |
| 98 | ifneq ($(ONLY_TOOLS),) |
| 99 | DIRS := $(filter-out unittests, $(DIRS)) |
| 100 | endif |
| 101 | |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 102 | # If we're cross-compiling, build the build-hosted tools first |
| 103 | ifeq ($(LLVM_CROSS_COMPILING),1) |
| 104 | all:: cross-compile-build-tools |
| 105 | |
| 106 | clean:: |
| 107 | $(Verb) rm -rf BuildTools |
| 108 | |
| 109 | cross-compile-build-tools: |
| 110 | $(Verb) if [ ! -f BuildTools/Makefile ]; then \ |
| 111 | $(MKDIR) BuildTools; \ |
| 112 | cd BuildTools ; \ |
Jim Grosbach | 1f22d6f | 2009-10-30 19:53:38 +0000 | [diff] [blame] | 113 | unset CFLAGS ; \ |
| 114 | unset CXXFLAGS ; \ |
Daniel Dunbar | de65947 | 2012-08-22 22:01:01 +0000 | [diff] [blame] | 115 | unset SDKROOT ; \ |
Bob Wilson | c9d0c70 | 2012-09-24 22:51:19 +0000 | [diff] [blame] | 116 | unset UNIVERSAL_SDK_PATH ; \ |
Shantonu Sen | 5e869c3 | 2009-09-02 23:52:23 +0000 | [diff] [blame] | 117 | $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \ |
Peter Collingbourne | 0be07d3 | 2011-10-08 00:27:38 +0000 | [diff] [blame] | 118 | --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE) \ |
| 119 | --disable-polly ; \ |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 120 | cd .. ; \ |
| 121 | fi; \ |
Bob Wilson | c9d0c70 | 2012-09-24 22:51:19 +0000 | [diff] [blame] | 122 | ($(MAKE) -C BuildTools \ |
Shantonu Sen | 5e869c3 | 2009-09-02 23:52:23 +0000 | [diff] [blame] | 123 | BUILD_DIRS_ONLY=1 \ |
| 124 | UNIVERSAL= \ |
Bob Wilson | c9d0c70 | 2012-09-24 22:51:19 +0000 | [diff] [blame] | 125 | UNIVERSAL_SDK_PATH= \ |
| 126 | SDKROOT= \ |
Daniel Dunbar | a7de1d6 | 2011-11-12 00:18:02 +0000 | [diff] [blame] | 127 | TARGET_NATIVE_ARCH="$(TARGET_NATIVE_ARCH)" \ |
Daniel Dunbar | 01b825d | 2011-11-11 22:59:45 +0000 | [diff] [blame] | 128 | TARGETS_TO_BUILD="$(TARGETS_TO_BUILD)" \ |
Shantonu Sen | 5e869c3 | 2009-09-02 23:52:23 +0000 | [diff] [blame] | 129 | ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \ |
| 130 | ENABLE_PROFILING=$(ENABLE_PROFILING) \ |
| 131 | ENABLE_COVERAGE=$(ENABLE_COVERAGE) \ |
| 132 | DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \ |
| 133 | ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \ |
Eric Christopher | bee515f | 2011-11-11 22:51:42 +0000 | [diff] [blame] | 134 | ENABLE_LIBCPP=$(ENABLE_LIBCPP) \ |
Jim Grosbach | 37ff5c6 | 2010-04-24 00:46:14 +0000 | [diff] [blame] | 135 | CFLAGS= \ |
| 136 | CXXFLAGS= \ |
Shantonu Sen | 5e869c3 | 2009-09-02 23:52:23 +0000 | [diff] [blame] | 137 | ) || exit 1; |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 138 | endif |
| 139 | |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 140 | # Include the main makefile machinery. |
Reid Spencer | 06a801a | 2006-04-08 02:14:37 +0000 | [diff] [blame] | 141 | include $(LLVM_SRC_ROOT)/Makefile.rules |
| 142 | |
Reid Spencer | 45eeed9 | 2005-05-24 02:33:20 +0000 | [diff] [blame] | 143 | # Specify options to pass to configure script when we're |
| 144 | # running the dist-check target |
| 145 | DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR) |
| 146 | |
Reid Spencer | df561f4 | 2004-11-25 09:08:54 +0000 | [diff] [blame] | 147 | .PHONY: debug-opt-prof |
| 148 | debug-opt-prof: |
| 149 | $(Echo) Building Debug Version |
| 150 | $(Verb) $(MAKE) |
| 151 | $(Echo) |
| 152 | $(Echo) Building Optimized Version |
| 153 | $(Echo) |
| 154 | $(Verb) $(MAKE) ENABLE_OPTIMIZED=1 |
| 155 | $(Echo) |
| 156 | $(Echo) Building Profiling Version |
| 157 | $(Echo) |
| 158 | $(Verb) $(MAKE) ENABLE_PROFILING=1 |
| 159 | |
Reid Spencer | 151f8ba | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 160 | dist-hook:: |
Reid Spencer | cc2d1e2 | 2004-10-30 09:19:36 +0000 | [diff] [blame] | 161 | $(Echo) Eliminating files constructed by configure |
| 162 | $(Verb) $(RM) -f \ |
Reid Spencer | 90c2949 | 2004-10-26 07:05:09 +0000 | [diff] [blame] | 163 | $(TopDistDir)/include/llvm/Config/config.h \ |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 164 | $(TopDistDir)/include/llvm/Support/DataTypes.h |
Reid Spencer | 151f8ba | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 165 | |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 166 | clang-only: all |
Chris Lattner | 9cf662b | 2004-02-03 22:56:40 +0000 | [diff] [blame] | 167 | tools-only: all |
Reid Spencer | 8b1f767 | 2005-05-25 21:03:17 +0000 | [diff] [blame] | 168 | libs-only: all |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 169 | install-clang: install |
Nate Begeman | 544f83d | 2007-12-13 02:17:17 +0000 | [diff] [blame] | 170 | install-libs: install |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 171 | |
Daniel Dunbar | 5819430 | 2011-04-11 22:37:39 +0000 | [diff] [blame] | 172 | # If SHOW_DIAGNOSTICS is enabled, clear the diagnostics file first. |
| 173 | ifeq ($(SHOW_DIAGNOSTICS),1) |
| 174 | clean-diagnostics: |
| 175 | $(Verb) rm -f $(LLVM_OBJ_ROOT)/$(BuildMode)/diags |
| 176 | .PHONY: clean-diagnostics |
| 177 | |
| 178 | all-local:: clean-diagnostics |
| 179 | endif |
| 180 | |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 181 | #------------------------------------------------------------------------ |
Dylan Noblesmith | f214b80 | 2012-01-17 02:56:49 +0000 | [diff] [blame] | 182 | # Make sure the generated files are up-to-date. This must be kept in |
| 183 | # sync with the AC_CONFIG_HEADER and AC_CONFIG_FILE invocations in |
| 184 | # autoconf/configure.ac. |
| 185 | # Note that Makefile.config is covered by its own separate rule |
| 186 | # in Makefile.rules where it can be reused by sub-projects. |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 187 | #------------------------------------------------------------------------ |
| 188 | FilesToConfig := \ |
Dylan Noblesmith | f214b80 | 2012-01-17 02:56:49 +0000 | [diff] [blame] | 189 | bindings/ocaml/llvm/META.llvm \ |
| 190 | docs/doxygen.cfg \ |
| 191 | llvm.spec \ |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 192 | include/llvm/Config/config.h \ |
Dylan Noblesmith | f214b80 | 2012-01-17 02:56:49 +0000 | [diff] [blame] | 193 | include/llvm/Config/llvm-config.h \ |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 194 | include/llvm/Config/Targets.def \ |
Daniel Dunbar | f87ea4d | 2009-11-25 04:46:58 +0000 | [diff] [blame] | 195 | include/llvm/Config/AsmPrinters.def \ |
| 196 | include/llvm/Config/AsmParsers.def \ |
| 197 | include/llvm/Config/Disassemblers.def \ |
Eric Christopher | f117506 | 2011-09-19 23:22:41 +0000 | [diff] [blame] | 198 | include/llvm/Support/DataTypes.h |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 199 | FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig)) |
| 200 | |
| 201 | all-local:: $(FilesToConfigPATH) |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 202 | $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 203 | $(Echo) Regenerating $* |
| 204 | $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $* |
| 205 | .PRECIOUS: $(FilesToConfigPATH) |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 206 | |
Chris Lattner | 38ab6d8 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 207 | # NOTE: This needs to remain as the last target definition in this file so |
| 208 | # that it gets executed last. |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 209 | ifneq ($(BUILD_DIRS_ONLY),1) |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 210 | all:: |
Duncan Sands | 8246adc | 2010-07-07 07:48:00 +0000 | [diff] [blame] | 211 | $(Echo) '*****' Completed $(BuildMode) Build |
Duncan Sands | 2b48c33 | 2010-07-07 16:48:16 +0000 | [diff] [blame] | 212 | ifneq ($(ENABLE_OPTIMIZED),1) |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 213 | $(Echo) '*****' Note: Debug build can be 10 times slower than an |
| 214 | $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to |
Gabor Greif | 2ae1955 | 2008-02-28 11:48:14 +0000 | [diff] [blame] | 215 | $(Echo) '*****' make an optimized build. Alternatively you can |
| 216 | $(Echo) '*****' configure with --enable-optimized. |
Daniel Dunbar | 5819430 | 2011-04-11 22:37:39 +0000 | [diff] [blame] | 217 | ifeq ($(SHOW_DIAGNOSTICS),1) |
| 218 | $(Verb) if test -s $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; then \ |
Daniel Dunbar | b16ec68 | 2011-11-02 19:48:19 +0000 | [diff] [blame] | 219 | $(LLVM_SRC_ROOT)/utils/clang-parse-diagnostics-file -a \ |
Daniel Dunbar | 5819430 | 2011-04-11 22:37:39 +0000 | [diff] [blame] | 220 | $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; \ |
| 221 | fi |
| 222 | endif |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 223 | endif |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 224 | endif |
Chris Lattner | 38ab6d8 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 225 | |
Reid Spencer | 5b30ee1 | 2006-06-01 07:27:53 +0000 | [diff] [blame] | 226 | check-llvm2cpp: |
Reid Spencer | 42f98e5 | 2007-04-15 06:22:48 +0000 | [diff] [blame] | 227 | $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1 |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 228 | |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 229 | srpm: $(LLVM_OBJ_ROOT)/llvm.spec |
Reid Spencer | f7c75a6 | 2006-08-16 00:43:50 +0000 | [diff] [blame] | 230 | rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec |
| 231 | |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 232 | rpm: $(LLVM_OBJ_ROOT)/llvm.spec |
Reid Spencer | f7c75a6 | 2006-08-16 00:43:50 +0000 | [diff] [blame] | 233 | rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec |
| 234 | |
Reid Spencer | 1e46ae4 | 2007-02-05 23:18:58 +0000 | [diff] [blame] | 235 | show-footprint: |
| 236 | $(Verb) du -sk $(LibDir) |
| 237 | $(Verb) du -sk $(ToolDir) |
| 238 | $(Verb) du -sk $(ExmplDir) |
| 239 | $(Verb) du -sk $(ObjDir) |
| 240 | |
Reid Spencer | 51cf642 | 2007-07-08 03:50:22 +0000 | [diff] [blame] | 241 | build-for-llvm-top: |
| 242 | $(Verb) if test ! -f ./config.status ; then \ |
| 243 | ./configure --prefix="$(LLVM_TOP)/install" \ |
| 244 | --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \ |
| 245 | fi |
| 246 | $(Verb) $(MAKE) tools-only |
| 247 | |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 248 | SVN = svn |
Gabor Greif | 9fa4226 | 2008-02-28 14:58:14 +0000 | [diff] [blame] | 249 | SVN-UPDATE-OPTIONS = |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 250 | AWK = awk |
Edwin Vane | 410b46a | 2013-01-28 03:19:57 +0000 | [diff] [blame] | 251 | |
| 252 | # Multiline variable defining a recursive function for finding svn repos rooted at |
| 253 | # a given path. svnup() requires one argument: the root to search from. |
| 254 | define SUB_SVN_DIRS |
| 255 | svnup() { |
Craig Topper | bf361f5 | 2013-07-03 14:48:37 +0000 | [diff] [blame] | 256 | dirs=`svn status --no-ignore $$1 | awk '/^(I|\?) / {print $$2}' | LC_ALL=C xargs svn info 2>/dev/null | awk '/^Path:\ / {print $$2}'`; |
Edwin Vane | 410b46a | 2013-01-28 03:19:57 +0000 | [diff] [blame] | 257 | if [ "$$dirs" = "" ]; then |
| 258 | return; |
| 259 | fi; |
| 260 | for f in $$dirs; do |
| 261 | echo $$f; |
| 262 | svnup $$f; |
| 263 | done |
| 264 | } |
| 265 | endef |
| 266 | export SUB_SVN_DIRS |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 267 | |
| 268 | update: |
Gabor Greif | 8e0c20b | 2008-03-21 22:17:07 +0000 | [diff] [blame] | 269 | $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT) |
Edwin Vane | 410b46a | 2013-01-28 03:19:57 +0000 | [diff] [blame] | 270 | @eval $$SUB_SVN_DIRS; $(SVN) status --no-ignore $(LLVM_SRC_ROOT) | svnup $(LLVM_SRC_ROOT) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 271 | |
Gabor Greif | 312fa75 | 2010-03-21 22:23:02 +0000 | [diff] [blame] | 272 | happiness: update all check-all |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 273 | |
| 274 | .PHONY: srpm rpm update happiness |
Reid Spencer | 51cf642 | 2007-07-08 03:50:22 +0000 | [diff] [blame] | 275 | |
Gabor Greif | 2ae1955 | 2008-02-28 11:48:14 +0000 | [diff] [blame] | 276 | # declare all targets at this level to be serial: |
| 277 | |
| 278 | .NOTPARALLEL: |
| 279 | |
Stuart Hastings | 4a53e1e | 2009-10-22 17:22:37 +0000 | [diff] [blame] | 280 | else # Building "Apple-style." |
| 281 | # In an Apple-style build, once configuration is done, lines marked |
| 282 | # "Apple-style" are removed with sed! Please don't remove these! |
| 283 | # Look for the string "Apple-style" in utils/buildit/build_llvm. |
| 284 | include $(shell find . -name GNUmakefile) # Building "Apple-style." |
| 285 | endif # Building "Apple-style." |