| Misha Brukman | 7426c89 | 2004-04-24 00:10:56 +0000 | [diff] [blame] | 1 | #===- ./Makefile -------------------------------------------*- Makefile -*--===# | 
| John Criswell | 4436c49 | 2003-10-20 22:26:57 +0000 | [diff] [blame] | 2 | # | 
|  | 3 | #                     The LLVM Compiler Infrastructure | 
|  | 4 | # | 
| Chris Lattner | 11cc8b3 | 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. | 
| John Criswell | 4436c49 | 2003-10-20 22:26:57 +0000 | [diff] [blame] | 7 | # | 
| Misha Brukman | 7426c89 | 2004-04-24 00:10:56 +0000 | [diff] [blame] | 8 | #===------------------------------------------------------------------------===# | 
| Chris Lattner | 2ad80c2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 9 |  | 
| Chris Lattner | b85c325 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 10 | LEVEL := . | 
| Chris Lattner | 31b4aa5 | 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 | 4b8067f | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 18 | #   6. Build tools, runtime, docs. | 
| Chris Lattner | 31b4aa5 | 2006-09-04 04:27:07 +0000 | [diff] [blame] | 19 | # | 
|  | 20 | DIRS := lib/System lib/Support utils lib/VMCore lib tools/llvm-config \ | 
| Reid Spencer | 4b8067f | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 21 | tools runtime docs | 
| David Greene | b2e2be4 | 2007-07-11 23:44:08 +0000 | [diff] [blame] | 22 |  | 
| Gordon Henriksen | 37582f7 | 2007-09-18 12:49:39 +0000 | [diff] [blame] | 23 | OPTIONAL_DIRS := examples projects bindings | 
| Chris Lattner | b85c325 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 24 | EXTRA_DIST := test llvm.spec include win32 Xcode | 
| Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 25 |  | 
| Reid Spencer | 8ac5062 | 2006-04-08 02:14:37 +0000 | [diff] [blame] | 26 | include $(LEVEL)/Makefile.config | 
| Reid Spencer | aed84e4 | 2006-04-06 22:15:51 +0000 | [diff] [blame] | 27 |  | 
| Chris Lattner | 323a513 | 2007-03-29 18:14:00 +0000 | [diff] [blame] | 28 | # llvm-gcc4 doesn't need runtime libs.  llvm-gcc4 is the only supported one. | 
|  | 29 | # FIXME: Remove runtime entirely once we have an understanding of where | 
|  | 30 | # libprofile etc should go. | 
|  | 31 | #ifeq ($(LLVMGCC_MAJVERS),4) | 
| Reid Spencer | 4b8067f | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 32 | DIRS := $(filter-out runtime, $(DIRS)) | 
| Chris Lattner | 323a513 | 2007-03-29 18:14:00 +0000 | [diff] [blame] | 33 | #endif | 
| Reid Spencer | 4b8067f | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 34 |  | 
| Chris Lattner | b85c325 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 35 | ifeq ($(MAKECMDGOALS),libs-only) | 
| Reid Spencer | 4b8067f | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 36 | DIRS := $(filter-out tools runtime docs, $(DIRS)) | 
| Chris Lattner | 2ad80c2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 37 | OPTIONAL_DIRS := | 
|  | 38 | endif | 
|  | 39 |  | 
| Nate Begeman | 938d8cb | 2007-12-13 02:17:17 +0000 | [diff] [blame] | 40 | ifeq ($(MAKECMDGOALS),install-libs) | 
|  | 41 | DIRS := $(filter-out tools runtime docs, $(DIRS)) | 
|  | 42 | OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS)) | 
|  | 43 | endif | 
|  | 44 |  | 
| Chris Lattner | b85c325 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 45 | ifeq ($(MAKECMDGOALS),tools-only) | 
| Reid Spencer | 4b8067f | 2006-11-17 03:32:33 +0000 | [diff] [blame] | 46 | DIRS := $(filter-out runtime docs, $(DIRS)) | 
| Chris Lattner | b85c325 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 47 | OPTIONAL_DIRS := | 
|  | 48 | endif | 
| Chris Lattner | 2ad80c2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 49 |  | 
| Chris Lattner | 31f99b9 | 2007-02-21 06:23:20 +0000 | [diff] [blame] | 50 | # Don't install utils, examples, or projects they are only used to | 
|  | 51 | # build LLVM. | 
|  | 52 | ifeq ($(MAKECMDGOALS),install) | 
|  | 53 | DIRS := $(filter-out utils, $(DIRS)) | 
| Gordon Henriksen | 37582f7 | 2007-09-18 12:49:39 +0000 | [diff] [blame] | 54 | OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS)) | 
| Chris Lattner | 31f99b9 | 2007-02-21 06:23:20 +0000 | [diff] [blame] | 55 | endif | 
|  | 56 |  | 
| Chris Lattner | 2ad80c2 | 2006-06-02 22:41:18 +0000 | [diff] [blame] | 57 | # Include the main makefile machinery. | 
| Reid Spencer | 8ac5062 | 2006-04-08 02:14:37 +0000 | [diff] [blame] | 58 | include $(LLVM_SRC_ROOT)/Makefile.rules | 
|  | 59 |  | 
| Reid Spencer | 13f5193 | 2005-05-24 02:33:20 +0000 | [diff] [blame] | 60 | # Specify options to pass to configure script when we're | 
|  | 61 | # running the dist-check target | 
|  | 62 | DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR) | 
|  | 63 |  | 
| Reid Spencer | 3347827 | 2004-11-25 09:08:54 +0000 | [diff] [blame] | 64 | .PHONY: debug-opt-prof | 
|  | 65 | debug-opt-prof: | 
|  | 66 | $(Echo) Building Debug Version | 
|  | 67 | $(Verb) $(MAKE) | 
|  | 68 | $(Echo) | 
|  | 69 | $(Echo) Building Optimized Version | 
|  | 70 | $(Echo) | 
|  | 71 | $(Verb) $(MAKE) ENABLE_OPTIMIZED=1 | 
|  | 72 | $(Echo) | 
|  | 73 | $(Echo) Building Profiling Version | 
|  | 74 | $(Echo) | 
|  | 75 | $(Verb) $(MAKE) ENABLE_PROFILING=1 | 
|  | 76 |  | 
| Reid Spencer | 100080c | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 77 | dist-hook:: | 
| Reid Spencer | f88808a | 2004-10-30 09:19:36 +0000 | [diff] [blame] | 78 | $(Echo) Eliminating files constructed by configure | 
|  | 79 | $(Verb) $(RM) -f \ | 
| Reid Spencer | 4a9b5ff | 2004-10-26 07:05:09 +0000 | [diff] [blame] | 80 | $(TopDistDir)/include/llvm/ADT/hash_map  \ | 
|  | 81 | $(TopDistDir)/include/llvm/ADT/hash_set  \ | 
|  | 82 | $(TopDistDir)/include/llvm/ADT/iterator  \ | 
|  | 83 | $(TopDistDir)/include/llvm/Config/config.h  \ | 
|  | 84 | $(TopDistDir)/include/llvm/Support/DataTypes.h  \ | 
|  | 85 | $(TopDistDir)/include/llvm/Support/ThreadSupport.h | 
| Reid Spencer | 100080c | 2004-10-25 08:27:37 +0000 | [diff] [blame] | 86 |  | 
| Chris Lattner | 6bd75a6 | 2004-02-03 22:56:40 +0000 | [diff] [blame] | 87 | tools-only: all | 
| Reid Spencer | fec4f80 | 2005-05-25 21:03:17 +0000 | [diff] [blame] | 88 | libs-only: all | 
| Nate Begeman | 938d8cb | 2007-12-13 02:17:17 +0000 | [diff] [blame] | 89 | install-libs: install | 
| Reid Spencer | 53846bc | 2005-08-25 04:59:49 +0000 | [diff] [blame] | 90 |  | 
|  | 91 | #------------------------------------------------------------------------ | 
|  | 92 | # Make sure the generated headers are up-to-date. This must be kept in | 
|  | 93 | # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac | 
|  | 94 | #------------------------------------------------------------------------ | 
|  | 95 | FilesToConfig := \ | 
|  | 96 | include/llvm/Config/config.h \ | 
|  | 97 | include/llvm/Support/DataTypes.h \ | 
|  | 98 | include/llvm/ADT/hash_map \ | 
|  | 99 | include/llvm/ADT/hash_set \ | 
|  | 100 | include/llvm/ADT/iterator | 
|  | 101 | FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig)) | 
|  | 102 |  | 
|  | 103 | all-local:: $(FilesToConfigPATH) | 
|  | 104 | $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in | 
|  | 105 | $(Echo) Regenerating $* | 
|  | 106 | $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $* | 
|  | 107 | .PRECIOUS: $(FilesToConfigPATH) | 
| Reid Spencer | 754cfec | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 108 |  | 
| Chris Lattner | e690a93 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 109 | # NOTE: This needs to remain as the last target definition in this file so | 
|  | 110 | # that it gets executed last. | 
| Reid Spencer | 754cfec | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 111 | all:: | 
|  | 112 | $(Echo) '*****' Completed $(BuildMode)$(AssertMode) Build | 
|  | 113 | ifeq ($(BuildMode),Debug) | 
|  | 114 | $(Echo) '*****' Note: Debug build can be 10 times slower than an | 
|  | 115 | $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to | 
| Gabor Greif | 76e7083 | 2008-02-28 11:48:14 +0000 | [diff] [blame] | 116 | $(Echo) '*****' make an optimized build. Alternatively you can | 
|  | 117 | $(Echo) '*****' configure with --enable-optimized. | 
| Reid Spencer | 754cfec | 2006-04-07 15:58:18 +0000 | [diff] [blame] | 118 | endif | 
| Chris Lattner | e690a93 | 2006-04-07 16:21:59 +0000 | [diff] [blame] | 119 |  | 
| Reid Spencer | 9c22620 | 2006-06-01 07:27:53 +0000 | [diff] [blame] | 120 | check-llvm2cpp: | 
| Reid Spencer | 6d4a417 | 2007-04-15 06:22:48 +0000 | [diff] [blame] | 121 | $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1 | 
| Chris Lattner | b85c325 | 2006-07-26 19:10:34 +0000 | [diff] [blame] | 122 |  | 
| Reid Spencer | a9482c8 | 2007-04-15 06:18:50 +0000 | [diff] [blame] | 123 | check-one: | 
| Reid Spencer | 6d4a417 | 2007-04-15 06:22:48 +0000 | [diff] [blame] | 124 | $(Verb)$(MAKE) -C test check-one TESTONE=$(TESTONE) | 
| Reid Spencer | a9482c8 | 2007-04-15 06:18:50 +0000 | [diff] [blame] | 125 |  | 
| Reid Spencer | d14c6ca | 2006-08-16 00:43:50 +0000 | [diff] [blame] | 126 | srpm: $(LLVM_OBJ_ROOT)/llvm.spec | 
|  | 127 | rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec | 
|  | 128 |  | 
|  | 129 | rpm: $(LLVM_OBJ_ROOT)/llvm.spec | 
|  | 130 | rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec | 
|  | 131 |  | 
| Reid Spencer | 99a1e6b | 2007-02-05 23:18:58 +0000 | [diff] [blame] | 132 | show-footprint: | 
|  | 133 | $(Verb) du -sk $(LibDir) | 
|  | 134 | $(Verb) du -sk $(ToolDir) | 
|  | 135 | $(Verb) du -sk $(ExmplDir) | 
|  | 136 | $(Verb) du -sk $(ObjDir) | 
|  | 137 |  | 
| Reid Spencer | 64a2622 | 2007-07-08 03:50:22 +0000 | [diff] [blame] | 138 | build-for-llvm-top: | 
|  | 139 | $(Verb) if test ! -f ./config.status ; then \ | 
|  | 140 | ./configure --prefix="$(LLVM_TOP)/install" \ | 
|  | 141 | --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \ | 
|  | 142 | fi | 
|  | 143 | $(Verb) $(MAKE) tools-only | 
|  | 144 |  | 
| Gabor Greif | d71b410 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 145 | SVN = svn | 
| Gabor Greif | 376d2ce | 2008-02-28 14:58:14 +0000 | [diff] [blame] | 146 | SVN-UPDATE-OPTIONS = | 
| Gabor Greif | d71b410 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 147 | AWK = awk | 
| Gabor Greif | a6e293a | 2008-02-28 18:46:56 +0000 | [diff] [blame] | 148 | SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}'   \ | 
|  | 149 | | LANG=C xargs $(SVN) info 2>/dev/null \ | 
|  | 150 | | $(AWK) '/Path:\ / {print $$2}' | 
| Gabor Greif | d71b410 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 151 |  | 
|  | 152 | update: | 
| Gabor Greif | a6c5b38 | 2008-03-21 22:17:07 +0000 | [diff] [blame] | 153 | $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT) | 
|  | 154 | @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update | 
| Gabor Greif | d71b410 | 2008-02-28 13:06:50 +0000 | [diff] [blame] | 155 |  | 
|  | 156 | happiness: update all check | 
|  | 157 |  | 
|  | 158 | .PHONY: srpm rpm update happiness | 
| Reid Spencer | 64a2622 | 2007-07-08 03:50:22 +0000 | [diff] [blame] | 159 |  | 
| Gabor Greif | 76e7083 | 2008-02-28 11:48:14 +0000 | [diff] [blame] | 160 | # declare all targets at this level to be serial: | 
|  | 161 |  | 
|  | 162 | .NOTPARALLEL: | 
|  | 163 |  |