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: |
| 13 | # 1. Build lib/System and lib/Support, which are used by utils (tblgen). |
| 14 | # 2. Build utils, which is used by VMCore. |
| 15 | # 3. Build VMCore, which builds the Intrinsics.inc file used by libs. |
| 16 | # 4. Build libs, which are needed by llvm-config. |
| 17 | # 5. Build llvm-config, which determines inter-lib dependencies for tools. |
Reid Spencer | 8b2e141 | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 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. |
| 27 | ifneq ($(RC_ProjectName),llvmCore) # Normal build (not "Apple-style"). |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 28 | ifeq ($(BUILD_DIRS_ONLY),1) |
| 29 | DIRS := lib/System lib/Support utils |
| 30 | OPTIONAL_DIRS := |
| 31 | else |
| 32 | DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \ |
Daniel Dunbar | 7f068f4 | 2009-09-13 22:39:27 +0000 | [diff] [blame] | 33 | tools runtime docs unittests |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 34 | OPTIONAL_DIRS := examples projects bindings |
| 35 | endif |
David Greene | df93e57 | 2007-07-11 23:44:08 +0000 | [diff] [blame] | 36 | |
Misha Brukman | 8fb520e | 2009-01-01 02:24:48 +0000 | [diff] [blame] | 37 | EXTRA_DIST := test unittests llvm.spec include win32 Xcode |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 38 | |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 39 | include $(LEVEL)/Makefile.config |
Reid Spencer | 93bc3cd | 2006-04-06 22:15:51 +0000 | [diff] [blame] | 40 | |
Chris Lattner | c6b66eb | 2007-03-29 18:14:00 +0000 | [diff] [blame] | 41 | # llvm-gcc4 doesn't need runtime libs. llvm-gcc4 is the only supported one. |
| 42 | # FIXME: Remove runtime entirely once we have an understanding of where |
| 43 | # libprofile etc should go. |
| 44 | #ifeq ($(LLVMGCC_MAJVERS),4) |
Daniel Dunbar | 671a853 | 2009-08-19 21:09:45 +0000 | [diff] [blame] | 45 | # DIRS := $(filter-out runtime, $(DIRS)) |
Chris Lattner | c6b66eb | 2007-03-29 18:14:00 +0000 | [diff] [blame] | 46 | #endif |
Reid Spencer | 8b2e141 | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 47 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 48 | ifeq ($(MAKECMDGOALS),libs-only) |
Reid Spencer | 8b2e141 | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 49 | DIRS := $(filter-out tools runtime docs, $(DIRS)) |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 50 | OPTIONAL_DIRS := |
| 51 | endif |
| 52 | |
Nate Begeman | 544f83d | 2007-12-13 02:17:17 +0000 | [diff] [blame] | 53 | ifeq ($(MAKECMDGOALS),install-libs) |
| 54 | DIRS := $(filter-out tools runtime docs, $(DIRS)) |
| 55 | OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS)) |
| 56 | endif |
| 57 | |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 58 | ifeq ($(MAKECMDGOALS),tools-only) |
Reid Spencer | 8b2e141 | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 59 | DIRS := $(filter-out runtime docs, $(DIRS)) |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 60 | OPTIONAL_DIRS := |
| 61 | endif |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 62 | |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 63 | ifeq ($(MAKECMDGOALS),install-clang) |
Mike Stump | e568f64 | 2009-03-26 23:43:14 +0000 | [diff] [blame] | 64 | DIRS := tools/clang/tools/driver tools/clang/tools/clang-cc \ |
Mike Stump | 166c9e2 | 2009-05-01 01:47:55 +0000 | [diff] [blame] | 65 | tools/clang/lib/Headers tools/clang/docs |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 66 | OPTIONAL_DIRS := |
| 67 | NO_INSTALL = 1 |
| 68 | endif |
| 69 | |
| 70 | ifeq ($(MAKECMDGOALS),clang-only) |
Torok Edwin | 282098b | 2009-09-26 20:18:58 +0000 | [diff] [blame] | 71 | DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 72 | OPTIONAL_DIRS := |
| 73 | endif |
| 74 | |
Misha Brukman | 8fb520e | 2009-01-01 02:24:48 +0000 | [diff] [blame] | 75 | ifeq ($(MAKECMDGOALS),unittests) |
| 76 | DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests |
| 77 | OPTIONAL_DIRS := |
| 78 | endif |
| 79 | |
Chris Lattner | c891465 | 2009-05-08 17:32:47 +0000 | [diff] [blame] | 80 | # Use NO_INSTALL define of the Makefile of each directory for deciding |
| 81 | # if the directory is installed or not |
Chris Lattner | 122c055 | 2007-02-21 06:23:20 +0000 | [diff] [blame] | 82 | ifeq ($(MAKECMDGOALS),install) |
Gordon Henriksen | 8ef426b | 2007-09-18 12:49:39 +0000 | [diff] [blame] | 83 | OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS)) |
Chris Lattner | 122c055 | 2007-02-21 06:23:20 +0000 | [diff] [blame] | 84 | endif |
| 85 | |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 86 | # If we're cross-compiling, build the build-hosted tools first |
| 87 | ifeq ($(LLVM_CROSS_COMPILING),1) |
| 88 | all:: cross-compile-build-tools |
| 89 | |
| 90 | clean:: |
| 91 | $(Verb) rm -rf BuildTools |
| 92 | |
| 93 | cross-compile-build-tools: |
| 94 | $(Verb) if [ ! -f BuildTools/Makefile ]; then \ |
| 95 | $(MKDIR) BuildTools; \ |
| 96 | cd BuildTools ; \ |
Shantonu Sen | 5e869c3 | 2009-09-02 23:52:23 +0000 | [diff] [blame] | 97 | $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \ |
| 98 | --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \ |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 99 | cd .. ; \ |
| 100 | fi; \ |
Shantonu Sen | 5e869c3 | 2009-09-02 23:52:23 +0000 | [diff] [blame] | 101 | ($(MAKE) -C BuildTools \ |
| 102 | BUILD_DIRS_ONLY=1 \ |
| 103 | UNIVERSAL= \ |
| 104 | ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \ |
| 105 | ENABLE_PROFILING=$(ENABLE_PROFILING) \ |
| 106 | ENABLE_COVERAGE=$(ENABLE_COVERAGE) \ |
| 107 | DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \ |
| 108 | ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \ |
| 109 | ) || exit 1; |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 110 | endif |
| 111 | |
Chris Lattner | 22033b2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 112 | # Include the main makefile machinery. |
Reid Spencer | 06a801a | 2006-04-08 02:14:37 +0000 | [diff] [blame] | 113 | include $(LLVM_SRC_ROOT)/Makefile.rules |
| 114 | |
Reid Spencer | 45eeed9 | 2005-05-24 02:33:20 +0000 | [diff] [blame] | 115 | # Specify options to pass to configure script when we're |
| 116 | # running the dist-check target |
| 117 | DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR) |
| 118 | |
Reid Spencer | df561f4 | 2004-11-25 09:08:54 +0000 | [diff] [blame] | 119 | .PHONY: debug-opt-prof |
| 120 | debug-opt-prof: |
| 121 | $(Echo) Building Debug Version |
| 122 | $(Verb) $(MAKE) |
| 123 | $(Echo) |
| 124 | $(Echo) Building Optimized Version |
| 125 | $(Echo) |
| 126 | $(Verb) $(MAKE) ENABLE_OPTIMIZED=1 |
| 127 | $(Echo) |
| 128 | $(Echo) Building Profiling Version |
| 129 | $(Echo) |
| 130 | $(Verb) $(MAKE) ENABLE_PROFILING=1 |
| 131 | |
Reid Spencer | 151f8ba | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 132 | dist-hook:: |
Reid Spencer | cc2d1e2 | 2004-10-30 09:19:36 +0000 | [diff] [blame] | 133 | $(Echo) Eliminating files constructed by configure |
| 134 | $(Verb) $(RM) -f \ |
Reid Spencer | 90c2949 | 2004-10-26 07:05:09 +0000 | [diff] [blame] | 135 | $(TopDistDir)/include/llvm/Config/config.h \ |
| 136 | $(TopDistDir)/include/llvm/Support/DataTypes.h \ |
| 137 | $(TopDistDir)/include/llvm/Support/ThreadSupport.h |
Reid Spencer | 151f8ba | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 138 | |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 139 | clang-only: all |
Chris Lattner | 9cf662b | 2004-02-03 22:56:40 +0000 | [diff] [blame] | 140 | tools-only: all |
Reid Spencer | 8b1f767 | 2005-05-25 21:03:17 +0000 | [diff] [blame] | 141 | libs-only: all |
Mike Stump | b76ace3 | 2009-01-19 19:48:23 +0000 | [diff] [blame] | 142 | install-clang: install |
Nate Begeman | 544f83d | 2007-12-13 02:17:17 +0000 | [diff] [blame] | 143 | install-libs: install |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 144 | |
| 145 | #------------------------------------------------------------------------ |
| 146 | # Make sure the generated headers are up-to-date. This must be kept in |
| 147 | # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac |
| 148 | #------------------------------------------------------------------------ |
| 149 | FilesToConfig := \ |
| 150 | include/llvm/Config/config.h \ |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 151 | include/llvm/Config/Targets.def \ |
| 152 | include/llvm/Config/AsmPrinters.def \ |
Mikhail Glushenkov | bdd040f | 2009-10-09 02:40:01 +0000 | [diff] [blame] | 153 | include/llvm/Support/DataTypes.h \ |
| 154 | tools/llvmc/plugins/Base/Base.td |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 155 | FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig)) |
| 156 | |
| 157 | all-local:: $(FilesToConfigPATH) |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 158 | $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in |
Reid Spencer | ca739c6 | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 159 | $(Echo) Regenerating $* |
| 160 | $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $* |
| 161 | .PRECIOUS: $(FilesToConfigPATH) |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 162 | |
Chris Lattner | 38ab6d8 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 163 | # NOTE: This needs to remain as the last target definition in this file so |
| 164 | # that it gets executed last. |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 165 | ifneq ($(BUILD_DIRS_ONLY),1) |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 166 | all:: |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 167 | $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build |
| 168 | ifeq ($(BuildMode),Debug) |
| 169 | $(Echo) '*****' Note: Debug build can be 10 times slower than an |
| 170 | $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to |
Gabor Greif | 2ae1955 | 2008-02-28 11:48:14 +0000 | [diff] [blame] | 171 | $(Echo) '*****' make an optimized build. Alternatively you can |
| 172 | $(Echo) '*****' configure with --enable-optimized. |
Reid Spencer | e22f3c0 | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 173 | endif |
Anton Korobeynikov | 569c45c | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 174 | endif |
Chris Lattner | 38ab6d8 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 175 | |
Reid Spencer | 5b30ee1 | 2006-06-01 07:27:53 +0000 | [diff] [blame] | 176 | check-llvm2cpp: |
Reid Spencer | 42f98e5 | 2007-04-15 06:22:48 +0000 | [diff] [blame] | 177 | $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1 |
Chris Lattner | 5720be4 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 178 | |
Reid Spencer | 9df5561 | 2007-04-15 06:18:50 +0000 | [diff] [blame] | 179 | check-one: |
Reid Spencer | 42f98e5 | 2007-04-15 06:22:48 +0000 | [diff] [blame] | 180 | $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE) |
Reid Spencer | 9df5561 | 2007-04-15 06:18:50 +0000 | [diff] [blame] | 181 | |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 182 | srpm: $(LLVM_OBJ_ROOT)/llvm.spec |
Reid Spencer | f7c75a6 | 2006-08-16 00:43:50 +0000 | [diff] [blame] | 183 | rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec |
| 184 | |
Misha Brukman | ef5dc70 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 185 | rpm: $(LLVM_OBJ_ROOT)/llvm.spec |
Reid Spencer | f7c75a6 | 2006-08-16 00:43:50 +0000 | [diff] [blame] | 186 | rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec |
| 187 | |
Reid Spencer | 1e46ae4 | 2007-02-05 23:18:58 +0000 | [diff] [blame] | 188 | show-footprint: |
| 189 | $(Verb) du -sk $(LibDir) |
| 190 | $(Verb) du -sk $(ToolDir) |
| 191 | $(Verb) du -sk $(ExmplDir) |
| 192 | $(Verb) du -sk $(ObjDir) |
| 193 | |
Reid Spencer | 51cf642 | 2007-07-08 03:50:22 +0000 | [diff] [blame] | 194 | build-for-llvm-top: |
| 195 | $(Verb) if test ! -f ./config.status ; then \ |
| 196 | ./configure --prefix="$(LLVM_TOP)/install" \ |
| 197 | --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \ |
| 198 | fi |
| 199 | $(Verb) $(MAKE) tools-only |
| 200 | |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 201 | SVN = svn |
Gabor Greif | 9fa4226 | 2008-02-28 14:58:14 +0000 | [diff] [blame] | 202 | SVN-UPDATE-OPTIONS = |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 203 | AWK = awk |
Gabor Greif | a4a0323 | 2008-02-28 18:46:56 +0000 | [diff] [blame] | 204 | SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \ |
Gabor Greif | 95fc7aa | 2009-04-24 17:00:03 +0000 | [diff] [blame] | 205 | | LC_ALL=C xargs $(SVN) info 2>/dev/null \ |
Gabor Greif | a4a0323 | 2008-02-28 18:46:56 +0000 | [diff] [blame] | 206 | | $(AWK) '/Path:\ / {print $$2}' |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 207 | |
| 208 | update: |
Gabor Greif | 8e0c20b | 2008-03-21 22:17:07 +0000 | [diff] [blame] | 209 | $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT) |
| 210 | @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 211 | |
Bill Wendling | 4113bd1 | 2009-01-04 23:12:21 +0000 | [diff] [blame] | 212 | happiness: update all check unittests |
Gabor Greif | 1d7ca71 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 213 | |
| 214 | .PHONY: srpm rpm update happiness |
Reid Spencer | 51cf642 | 2007-07-08 03:50:22 +0000 | [diff] [blame] | 215 | |
Gabor Greif | 2ae1955 | 2008-02-28 11:48:14 +0000 | [diff] [blame] | 216 | # declare all targets at this level to be serial: |
| 217 | |
| 218 | .NOTPARALLEL: |
| 219 | |
Stuart Hastings | 4a53e1e | 2009-10-22 17:22:37 +0000 | [diff] [blame] | 220 | else # Building "Apple-style." |
| 221 | # In an Apple-style build, once configuration is done, lines marked |
| 222 | # "Apple-style" are removed with sed! Please don't remove these! |
| 223 | # Look for the string "Apple-style" in utils/buildit/build_llvm. |
| 224 | include $(shell find . -name GNUmakefile) # Building "Apple-style." |
| 225 | endif # Building "Apple-style." |