Vikram S. Adve | d60aede | 2002-07-09 12:04:21 +0000 | [diff] [blame] | 1 | #===-- Makefile.common - Common make rules for LLVM -------*- makefile -*--==== |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2 | # |
| 3 | # This file is included by all of the LLVM makefiles. This file defines common |
| 4 | # rules to do things like compile a .cpp file or generate dependancy info. |
| 5 | # These are platform dependant, so this is the file used to specify these |
| 6 | # system dependant operations. |
| 7 | # |
Vikram S. Adve | c214e71 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 8 | # The following functionality can be set by setting incoming variables. |
| 9 | # The variable $(LEVEL) *must* be set: |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 10 | # |
| 11 | # 1. LEVEL - The level of the current subdirectory from the top of the |
| 12 | # MagicStats view. This level should be expressed as a path, for |
| 13 | # example, ../.. for two levels deep. |
| 14 | # |
| 15 | # 2. DIRS - A list of subdirectories to be built. Fake targets are set up |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 16 | # so that each of the targets "all", "install", and "clean" each build |
| 17 | # the subdirectories before the local target. DIRS are guaranteed to be |
| 18 | # built in order. |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 19 | # |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 20 | # 3. PARALLEL_DIRS - A list of subdirectories to be built, but that may be |
| 21 | # built in any order. All DIRS are built in order before PARALLEL_DIRS are |
| 22 | # built, which are then built in any order. |
| 23 | # |
| 24 | # 4. Source - If specified, this sets the source code filenames. If this |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 25 | # is not set, it defaults to be all of the .cpp, .c, .y, and .l files |
Chris Lattner | e001059 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 26 | # in the current directory. Also, if you want to build files in addition |
| 27 | # to the local files, you can use the ExtraSource variable |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 28 | # |
Chris Lattner | 694c5df | 2003-05-15 21:28:55 +0000 | [diff] [blame] | 29 | # 5. SourceDir - If specified, this specifies a directory that the source files |
| 30 | # are in, if they are not in the current directory. This should include a |
| 31 | # trailing / character. |
| 32 | # |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 33 | # 6. LLVM_SRC_ROOT - If specified, points to the top of the LLVM source tree. |
Dinakar Dhurjati | 584dd18 | 2003-05-29 21:49:00 +0000 | [diff] [blame] | 34 | # |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 35 | # 7. LLVM_OBJ_ROOT - If specified, points to the top directory where LLVM |
| 36 | # object files are placed. |
| 37 | # |
| 38 | # 8. BUILD_SRC_DIR - The directory which contains the current set of Makefiles |
| 39 | # and usually the source code too (unless SourceDir is set). |
| 40 | # |
| 41 | # 9. BUILD_SRC_ROOT - The root directory of the source code being compiled. |
| 42 | # |
| 43 | # 10. BUILD_OBJ_DIR - The directory where object code should be placed. |
| 44 | # |
| 45 | # 11. BUILD_OBJ_ROOT - The root directory for where object code should be |
| 46 | # placed. |
| 47 | # |
| 48 | # For building, |
| 49 | # LLVM, LLVM_SRC_ROOT = BUILD_SRC_ROOT, and |
| 50 | # LLVM_OBJ_ROOT = BUILD_OBJ_ROOT. |
Vikram S. Adve | d60aede | 2002-07-09 12:04:21 +0000 | [diff] [blame] | 51 | #===-----------------------------------------------------------------------==== |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 52 | |
John Criswell | 2a6530f | 2003-06-27 16:58:44 +0000 | [diff] [blame] | 53 | # |
Vikram S. Adve | c214e71 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 54 | # Configuration file to set paths specific to local installation of LLVM |
| 55 | # |
| 56 | include $(LEVEL)/Makefile.config |
| 57 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 58 | ########################################################################### |
| 59 | # Directory Configuration |
| 60 | # This section of the Makefile determines what is where. To be |
| 61 | # specific, there are several locations that need to be defined: |
| 62 | # |
| 63 | # o LLVM_SRC_ROOT : The root directory of the LLVM source code. |
| 64 | # o LLVM_OBJ_ROOT : The root directory containing the built LLVM code. |
| 65 | # |
| 66 | # o BUILD_SRC_DIR : The directory containing the code to build. |
| 67 | # o BUILD_SRC_ROOT : The root directory of the code to build. |
| 68 | # |
| 69 | # o BUILD_OBJ_DIR : The directory in which compiled code will be placed. |
| 70 | # o BUILD_OBJ_ROOT : The root directory in which compiled code is placed. |
| 71 | # |
| 72 | ########################################################################### |
| 73 | |
| 74 | # |
| 75 | # Set the source build directory. That is almost always the current directory. |
| 76 | # |
| 77 | ifndef BUILD_SRC_DIR |
| 78 | BUILD_SRC_DIR = $(shell pwd) |
| 79 | endif |
| 80 | |
| 81 | # |
| 82 | # Set the source root directory. |
| 83 | # |
| 84 | ifndef BUILD_SRC_ROOT |
John Criswell | 890d5bd | 2003-06-16 19:14:31 +0000 | [diff] [blame] | 85 | BUILD_SRC_ROOT = $(shell cd $(BUILD_SRC_DIR)/$(LEVEL); pwd) |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 86 | endif |
| 87 | |
| 88 | # |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 89 | # Determine the path of the source tree relative from $HOME (the mythical |
| 90 | # home directory). |
| 91 | # |
Misha Brukman | f8873ed | 2003-07-07 22:27:05 +0000 | [diff] [blame] | 92 | HOME_OBJ_ROOT := $(OBJ_ROOT)$(patsubst $(HOME)%,%,$(BUILD_SRC_ROOT)) |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 93 | |
| 94 | # |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 95 | # Set the object build directory. Its location depends upon the source path |
| 96 | # and where object files should go. |
| 97 | # |
| 98 | ifndef BUILD_OBJ_DIR |
| 99 | ifeq ($(OBJ_ROOT),.) |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 100 | BUILD_OBJ_DIR = $(BUILD_SRC_DIR) |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 101 | else |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 102 | BUILD_OBJ_DIR := $(HOME_OBJ_ROOT)$(patsubst $(BUILD_SRC_ROOT)%,%,$(BUILD_SRC_DIR)) |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 103 | endif |
| 104 | endif |
| 105 | |
| 106 | # |
| 107 | # Set the root of the object directory. |
| 108 | # |
| 109 | ifndef BUILD_OBJ_ROOT |
| 110 | ifeq ($(OBJ_ROOT),.) |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 111 | BUILD_OBJ_ROOT = $(BUILD_SRC_ROOT) |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 112 | else |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 113 | BUILD_OBJ_ROOT := $(HOME_OBJ_ROOT) |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 114 | endif |
| 115 | endif |
| 116 | |
| 117 | # |
| 118 | # Set the LLVM source directory. |
| 119 | # It is typically the root directory of what we're compiling now. |
| 120 | # |
| 121 | ifndef LLVM_SRC_ROOT |
| 122 | LLVM_SRC_ROOT = $(BUILD_SRC_ROOT) |
| 123 | endif |
| 124 | |
| 125 | # |
| 126 | # Set the LLVM object directory. |
| 127 | # |
| 128 | ifndef LLVM_OBJ_ROOT |
| 129 | LLVM_OBJ_ROOT = $(BUILD_OBJ_ROOT) |
| 130 | endif |
| 131 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 132 | ########################################################################### |
| 133 | # Default Targets: |
| 134 | # The following targets are the standard top level targets for |
| 135 | # building. |
| 136 | ########################################################################### |
Chris Lattner | 4bb13b8 | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 137 | |
Chris Lattner | edf1f23 | 2002-07-23 19:21:31 +0000 | [diff] [blame] | 138 | ifdef SHARED_LIBRARY |
| 139 | # if SHARED_LIBRARY is specified, the default is to build the dynamic lib |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 140 | all:: dynamic |
Chris Lattner | edf1f23 | 2002-07-23 19:21:31 +0000 | [diff] [blame] | 141 | endif |
| 142 | |
Chris Lattner | b19e59c | 2001-06-29 05:20:16 +0000 | [diff] [blame] | 143 | # Default Rule: Make sure it's also a :: rule |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 144 | all :: |
| 145 | |
| 146 | # Default for install is to at least build everything... |
| 147 | install :: |
| 148 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 149 | # Default rule for test. It ensures everything has a test rule |
| 150 | test:: |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 151 | |
Vikram S. Adve | 6edfe27 | 2003-07-10 19:25:29 +0000 | [diff] [blame] | 152 | # Default rule for building only bytecode. |
| 153 | bytecode:: |
| 154 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 155 | # Print out the directories used for building |
| 156 | prdirs:: |
| 157 | echo "Home Offset : " $(HOME_OBJ_ROOT); |
| 158 | echo "Build Source Root: " $(BUILD_SRC_ROOT); |
| 159 | echo "Build Source Dir : " $(BUILD_SRC_DIR); |
| 160 | echo "Build Object Root: " $(BUILD_OBJ_ROOT); |
| 161 | echo "Build Object Dir : " $(BUILD_OBJ_DIR); |
| 162 | echo "LLVM Source Root: " $(LLVM_SRC_ROOT); |
| 163 | echo "LLVM Object Root: " $(LLVM_OBJ_ROOT); |
| 164 | |
John Criswell | 9691439 | 2003-07-16 20:26:06 +0000 | [diff] [blame] | 165 | # |
| 166 | # Mark all of these targets as phony. This will hopefully speed up builds |
| 167 | # slightly since GNU Make will not try to find implicit rules for targets |
| 168 | # which are marked as Phony. |
| 169 | # |
| 170 | .PHONY: all dynamic clean distclean install test bytecode prdirs |
| 171 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 172 | ########################################################################### |
| 173 | # Miscellaneous paths and commands: |
| 174 | # This section defines various configuration macros, such as where |
| 175 | # to find burg, tblgen, and libtool. |
| 176 | ########################################################################### |
| 177 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 178 | #-------------------------------------------------------------------- |
Vikram S. Adve | c214e71 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 179 | # Variables derived from configuration options... |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 180 | #-------------------------------------------------------------------- |
| 181 | |
| 182 | #BinInstDir=/usr/local/bin |
John Criswell | 65aa5934 | 2003-05-29 18:52:10 +0000 | [diff] [blame] | 183 | #LibInstDir=/usr/local/lib/xxx |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 184 | #DocInstDir=/usr/doc/xxx |
| 185 | |
Vikram S. Adve | dba59ef | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 186 | BURG_OPTS = -I |
| 187 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 188 | PURIFY := $(PURIFY) -cache-dir="$(BUILD_OBJ_ROOT)/../purifycache" -chain-length="30" -messages=all |
Chris Lattner | 6e39070 | 2001-10-30 20:24:08 +0000 | [diff] [blame] | 189 | |
Chris Lattner | 760da06 | 2003-03-14 20:25:22 +0000 | [diff] [blame] | 190 | ifdef ENABLE_PROFILING |
| 191 | ENABLE_OPTIMIZED = 1 |
| 192 | CONFIGURATION := Profile |
| 193 | else |
| 194 | ifdef ENABLE_OPTIMIZED |
| 195 | CONFIGURATION := Release |
| 196 | else |
| 197 | CONFIGURATION := Debug |
| 198 | endif |
| 199 | endif |
| 200 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 201 | # |
| 202 | # Enable this for profiling support with 'gprof' |
| 203 | # This automatically enables optimized builds. |
| 204 | # |
| 205 | ifdef ENABLE_PROFILING |
| 206 | PROFILE = -pg |
| 207 | endif |
| 208 | |
| 209 | # |
| 210 | # Suffixes for library compilation rules |
| 211 | # |
| 212 | .SUFFIXES: .so |
| 213 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 214 | ########################################################################### |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 215 | # Library Locations: |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 216 | # These variables describe various library locations: |
| 217 | # |
| 218 | # DEST* = Location of where libraries that are built will be placed. |
| 219 | # LLVM* = Location of LLVM libraries used for linking. |
| 220 | # PROJ* = Location of previously built libraries used for linking. |
| 221 | ########################################################################### |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 222 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 223 | # Libraries that are being built |
| 224 | DESTLIBDEBUG := $(BUILD_OBJ_ROOT)/lib/Debug |
| 225 | DESTLIBRELEASE := $(BUILD_OBJ_ROOT)/lib/Release |
| 226 | DESTLIBPROFILE := $(BUILD_OBJ_ROOT)/lib/Profile |
| 227 | DESTLIBCURRENT := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION) |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 228 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 229 | # LLVM libraries used for linking |
| 230 | LLVMLIBDEBUGSOURCE := $(LLVM_OBJ_ROOT)/lib/Debug |
| 231 | LLVMLIBRELEASESOURCE := $(LLVM_OBJ_ROOT)/lib/Release |
| 232 | LLVMLIBPROFILESOURCE := $(LLVM_OBJ_ROOT)/lib/Profile |
| 233 | LLVMLIBCURRENTSOURCE := $(LLVM_OBJ_ROOT)/lib/$(CONFIGURATION) |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 234 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 235 | # Libraries that were built that will now be used for linking |
| 236 | PROJLIBDEBUGSOURCE := $(BUILD_OBJ_ROOT)/lib/Debug |
| 237 | PROJLIBRELEASESOURCE := $(BUILD_OBJ_ROOT)/lib/Release |
| 238 | PROJLIBPROFILESOURCE := $(BUILD_OBJ_ROOT)/lib/Profile |
| 239 | PROJLIBCURRENTSOURCE := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION) |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 240 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 241 | ########################################################################### |
| 242 | # Tool Locations |
| 243 | # These variables describe various tool locations: |
| 244 | # |
| 245 | # DEST* = Location of where tools that are built will be placed. |
| 246 | # LLVM* = Location of LLVM tools used for building. |
| 247 | # PROJ* = Location of previously built tools used for linking. |
| 248 | ########################################################################### |
Chris Lattner | 760da06 | 2003-03-14 20:25:22 +0000 | [diff] [blame] | 249 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 250 | DESTTOOLDEBUG := $(BUILD_OBJ_ROOT)/tools/Debug |
| 251 | DESTTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release |
| 252 | DESTTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile |
| 253 | DESTTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION) |
| 254 | |
| 255 | LLVMTOOLDEBUG := $(LLVM_OBJ_ROOT)/tools/Debug |
| 256 | LLVMTOOLRELEASE := $(LLVM_OBJ_ROOT)/tools/Release |
| 257 | LLVMTOOLPROFILE := $(LLVM_OBJ_ROOT)/tools/Profile |
| 258 | LLVMTOOLCURRENT := $(LLVM_OBJ_ROOT)/tools/$(CONFIGURATION) |
| 259 | |
| 260 | PROJTOOLDEBUG := $(BUILD_OBJ_ROOT)/tools/Debug |
| 261 | PROJTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release |
| 262 | PROJTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile |
| 263 | PROJTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION) |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 264 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 265 | # |
| 266 | # Libtool is found in the current directory. |
| 267 | # |
| 268 | ifdef VERBOSE |
John Criswell | 8d4221e | 2003-07-23 16:52:50 +0000 | [diff] [blame] | 269 | LIBTOOL=$(LLVM_SRC_ROOT)/mklib |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 270 | else |
John Criswell | 8d4221e | 2003-07-23 16:52:50 +0000 | [diff] [blame] | 271 | LIBTOOL=$(LLVM_SRC_ROOT)/mklib --silent |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 272 | endif |
| 273 | |
| 274 | # |
John Criswell | 82f4a5a | 2003-07-31 20:58:51 +0000 | [diff] [blame] | 275 | # If we're not building a shared library, use the disable-shared tag with |
| 276 | # libtool. This will disable the building of objects for shared libraries and |
| 277 | # only generate static library objects. |
| 278 | # |
| 279 | # For dynamic libraries, we'll take the performance hit for now, since we |
| 280 | # almost never build them. |
| 281 | # |
| 282 | # This should speed up compilation and require no modifications to future |
| 283 | # versions of libtool. |
| 284 | # |
| 285 | ifndef SHARED_LIBRARY |
| 286 | LIBTOOL := $(LIBTOOL) --tag=disable-shared |
| 287 | endif |
| 288 | |
| 289 | # |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 290 | # Verbosity levels |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 291 | # |
Chris Lattner | 760da06 | 2003-03-14 20:25:22 +0000 | [diff] [blame] | 292 | ifndef VERBOSE |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 293 | VERB := @ |
| 294 | endif |
| 295 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 296 | ########################################################################### |
| 297 | # Miscellaneous paths and commands (part deux): |
| 298 | # This section defines various configuration macros, such as where |
| 299 | # to find burg, tblgen, and libtool. |
| 300 | ########################################################################### |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 301 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 302 | #-------------------------------------------------------------------------- |
| 303 | # Special tools used while building the LLVM tree. Burg is built as part |
| 304 | # of the utils directory. |
| 305 | #-------------------------------------------------------------------------- |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 306 | BURG := $(LLVMTOOLCURRENT)/burg |
Chris Lattner | 9b94701 | 2002-09-19 19:42:24 +0000 | [diff] [blame] | 307 | RunBurg := $(BURG) $(BURG_OPTS) |
| 308 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 309 | TBLGEN := $(LLVMTOOLCURRENT)/tblgen |
Vikram S. Adve | dba59ef | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 310 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 311 | |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 312 | ########################################################################### |
| 313 | # Compile Time Flags |
| 314 | ########################################################################### |
| 315 | |
| 316 | # |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 317 | # Include both the project headers and the LLVM headers for compilation and |
| 318 | # dependency computation. |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 319 | # |
| 320 | CPPFLAGS += -I$(BUILD_SRC_ROOT)/include -I$(LLVM_SRC_ROOT)/include |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 321 | |
Vikram S. Adve | feeae58 | 2002-09-18 11:55:13 +0000 | [diff] [blame] | 322 | # By default, strip symbol information from executable |
Chris Lattner | 760da06 | 2003-03-14 20:25:22 +0000 | [diff] [blame] | 323 | ifndef KEEP_SYMBOLS |
Chris Lattner | 527002c | 2003-01-31 19:00:26 +0000 | [diff] [blame] | 324 | STRIP = $(PLATFORMSTRIPOPTS) |
Misha Brukman | 9b51b6f | 2003-07-10 16:52:41 +0000 | [diff] [blame] | 325 | STRIP_WARN_MSG = "(without symbols)" |
Vikram S. Adve | feeae58 | 2002-09-18 11:55:13 +0000 | [diff] [blame] | 326 | endif |
| 327 | |
Chris Lattner | 73e1d0f | 2002-09-13 16:02:26 +0000 | [diff] [blame] | 328 | # Allow gnu extensions... |
| 329 | CPPFLAGS += -D_GNU_SOURCE |
| 330 | |
Chris Lattner | c7acf81 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 331 | # -Wno-unused-parameter |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 332 | CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include |
Chris Lattner | 1d1e5b5 | 2003-02-13 16:56:30 +0000 | [diff] [blame] | 333 | CompileOptimizeOpts := -O3 -DNDEBUG -finline-functions -fshort-enums |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 334 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 335 | # |
| 336 | # Compile commands with libtool. |
| 337 | # |
| 338 | Compile := $(LIBTOOL) --mode=compile $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) |
| 339 | CompileC := $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CCFLAGS) $(CompileCommonOpts) |
| 340 | |
Chris Lattner | 172b648 | 2002-09-22 02:47:15 +0000 | [diff] [blame] | 341 | # Compile a cpp file, don't link... |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 342 | CompileG := $(Compile) -g -D_DEBUG |
Chris Lattner | 1d1e5b5 | 2003-02-13 16:56:30 +0000 | [diff] [blame] | 343 | CompileO := $(Compile) $(CompileOptimizeOpts) -felide-constructors -fomit-frame-pointer |
| 344 | CompileP := $(Compile) $(CompileOptimizeOpts) -felide-constructors $(PROFILE) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 345 | |
Chris Lattner | 172b648 | 2002-09-22 02:47:15 +0000 | [diff] [blame] | 346 | # Compile a c file, don't link... |
Chris Lattner | 172b648 | 2002-09-22 02:47:15 +0000 | [diff] [blame] | 347 | CompileCG := $(CompileC) -g -D_DEBUG |
Chris Lattner | fe95dae | 2003-02-19 22:12:20 +0000 | [diff] [blame] | 348 | CompileCO := $(CompileC) $(CompileOptimizeOpts) -fomit-frame-pointer |
| 349 | CompileCP := $(CompileC) $(CompileOptimizeOpts) $(PROFILE) |
Chris Lattner | 172b648 | 2002-09-22 02:47:15 +0000 | [diff] [blame] | 350 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 351 | ########################################################################### |
| 352 | # Link Time Options |
| 353 | ########################################################################### |
Chris Lattner | 172b648 | 2002-09-22 02:47:15 +0000 | [diff] [blame] | 354 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 355 | # |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 356 | # Link final executable |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 357 | # (Note that we always link with the C++ compiler). |
| 358 | # |
Chris Lattner | 1917e95 | 2002-07-31 21:32:05 +0000 | [diff] [blame] | 359 | ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1' |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 360 | Link := $(PURIFY) $(LIBTOOL) --mode=link $(CXX) -static |
Chris Lattner | 12604ed | 2002-04-05 18:56:58 +0000 | [diff] [blame] | 361 | else |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 362 | Link := $(LIBTOOL) --mode=link $(CXX) |
Chris Lattner | 12604ed | 2002-04-05 18:56:58 +0000 | [diff] [blame] | 363 | endif |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 364 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 365 | # link both projlib and llvmlib libraries |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 366 | LinkG := $(Link) -g -L$(PROJLIBDEBUGSOURCE) -L$(LLVMLIBDEBUGSOURCE) $(STRIP) |
| 367 | LinkO := $(Link) -O3 -L$(PROJLIBRELEASESOURCE) -L$(LLVMLIBRELEASESOURCE) |
| 368 | LinkP := $(Link) -O3 -L$(PROJLIBPROFILESOURCE) -L$(LLVMLIBPROFILESOURCE) $(PROFILE) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 369 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 370 | # Create one .o file from a bunch of .o files... |
John Criswell | 82f4a5a | 2003-07-31 20:58:51 +0000 | [diff] [blame] | 371 | #ifdef SHARED_LIBRARY |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 372 | Relink = ${LIBTOOL} --mode=link $(CXX) |
John Criswell | 82f4a5a | 2003-07-31 20:58:51 +0000 | [diff] [blame] | 373 | #else |
| 374 | Relink = ${LIBTOOL} --mode=link $(CXX) -only-static |
| 375 | #endif |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 376 | |
Chris Lattner | 4bb13b8 | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 377 | # MakeSO - Create a .so file from a .o files... |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 378 | #MakeSO := $(LIBTOOL) --mode=link $(CXX) $(MakeSharedObjectOption) |
| 379 | #MakeSOO := $(MakeSO) -O3 |
| 380 | #MakeSOP := $(MakeSOO) $(PROFILE) |
| 381 | |
| 382 | # |
| 383 | # Configure where the item being compiled should go. |
| 384 | # |
| 385 | ifdef SHARED_LIBRARY |
| 386 | Link := $(Link) -rpath $(DESTLIBCURRENT) |
| 387 | endif |
| 388 | |
| 389 | ifdef TOOLNAME |
| 390 | Link := $(Link) -rpath $(DESTTOOLCURRENT) |
| 391 | endif |
Chris Lattner | 4bb13b8 | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 392 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 393 | # Create dependancy file from CPP file, send to stdout. |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 394 | Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS) |
| 395 | DependC := $(CC) -MM -I$(LEVEL)/include $(CPPFLAGS) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 396 | |
| 397 | # Archive a bunch of .o files into a .a file... |
John Criswell | 794fcd2 | 2003-05-30 15:50:31 +0000 | [diff] [blame] | 398 | AR = ${AR_PATH} cq |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 399 | |
| 400 | #---------------------------------------------------------- |
| 401 | |
| 402 | # Source includes all of the cpp files, and objects are derived from the |
| 403 | # source files... |
Chris Lattner | e001059 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 404 | # The local Makefile can list other Source files via ExtraSource = ... |
Vikram S. Adve | c4bed34 | 2001-10-17 12:33:55 +0000 | [diff] [blame] | 405 | # |
Vikram S. Adve | ad9ea7e | 2002-10-14 16:40:04 +0000 | [diff] [blame] | 406 | ifndef Source |
Chris Lattner | e001059 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 407 | Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l) |
Vikram S. Adve | ad9ea7e | 2002-10-14 16:40:04 +0000 | [diff] [blame] | 408 | endif |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 409 | |
John Criswell | 82f4a5a | 2003-07-31 20:58:51 +0000 | [diff] [blame] | 410 | # |
| 411 | # Libtool Objects |
| 412 | # |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 413 | Objs := $(sort $(patsubst Debug/%.lo, %.lo, $(addsuffix .lo,$(notdir $(basename $(Source)))))) |
| 414 | ObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(Objs)) |
| 415 | ObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(Objs)) |
| 416 | ObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(Objs)) |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 417 | |
John Criswell | 82f4a5a | 2003-07-31 20:58:51 +0000 | [diff] [blame] | 418 | # |
| 419 | # The real objects underlying the libtool objects |
| 420 | # |
| 421 | RObjs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(notdir $(basename $(Source)))))) |
| 422 | RObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(RObjs)) |
| 423 | RObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(RObjs)) |
| 424 | RObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(RObjs)) |
| 425 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 426 | #--------------------------------------------------------- |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 427 | # Handle the DIRS and PARALLEL_DIRS options |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 428 | #--------------------------------------------------------- |
| 429 | |
Anand Shukla | 7c7a07e | 2002-09-18 04:29:30 +0000 | [diff] [blame] | 430 | ifdef DIRS |
Vikram S. Adve | 6edfe27 | 2003-07-10 19:25:29 +0000 | [diff] [blame] | 431 | all install clean test bytecode :: |
Chris Lattner | 16d1f73 | 2002-09-17 23:45:34 +0000 | [diff] [blame] | 432 | $(VERB) for dir in ${DIRS}; do \ |
Chris Lattner | f1ffd99 | 2002-09-17 23:35:02 +0000 | [diff] [blame] | 433 | (cd $$dir; $(MAKE) $@) || exit 1; \ |
| 434 | done |
Anand Shukla | 7c7a07e | 2002-09-18 04:29:30 +0000 | [diff] [blame] | 435 | endif |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 436 | |
| 437 | # Handle PARALLEL_DIRS |
| 438 | ifdef PARALLEL_DIRS |
Vikram S. Adve | 6edfe27 | 2003-07-10 19:25:29 +0000 | [diff] [blame] | 439 | all :: $(addsuffix /.makeall , $(PARALLEL_DIRS)) |
| 440 | install :: $(addsuffix /.makeinstall , $(PARALLEL_DIRS)) |
| 441 | clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS)) |
| 442 | test :: $(addsuffix /.maketest , $(PARALLEL_DIRS)) |
| 443 | bytecode :: $(addsuffix /.makebytecode, $(PARALLEL_DIRS)) |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 444 | |
Vikram S. Adve | 6edfe27 | 2003-07-10 19:25:29 +0000 | [diff] [blame] | 445 | %/.makeall %/.makeinstall %/.makeclean %/.maketest %/.makebytecode: |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 446 | $(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 447 | endif |
| 448 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 449 | # Handle directories that may or may not exist |
John Criswell | 2a6530f | 2003-06-27 16:58:44 +0000 | [diff] [blame] | 450 | ifdef OPTIONAL_DIRS |
Vikram S. Adve | 6edfe27 | 2003-07-10 19:25:29 +0000 | [diff] [blame] | 451 | all install clean test bytecode :: |
John Criswell | 2a6530f | 2003-06-27 16:58:44 +0000 | [diff] [blame] | 452 | $(VERB) for dir in ${OPTIONAL_DIRS}; do \ |
| 453 | if [ -d $$dir ]; \ |
| 454 | then\ |
| 455 | (cd $$dir; $(MAKE) $@) || exit 1; \ |
| 456 | fi \ |
| 457 | done |
| 458 | endif |
| 459 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 460 | ########################################################################### |
| 461 | # Library Build Rules: |
| 462 | # |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 463 | #--------------------------------------------------------- |
| 464 | # Handle the LIBRARYNAME option - used when building libs... |
| 465 | #--------------------------------------------------------- |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 466 | # |
| 467 | # When libraries are built, they are allowed to optionally define the |
| 468 | # DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file |
| 469 | # from being built for the library. This .o files may then be linked to by a |
| 470 | # tool if the tool does not need (or want) the semantics a .a file provides |
| 471 | # (linking in only object files that are "needed"). If a library is never to |
| 472 | # be used in this way, it is better to define DONT_BUILD_RELINKED, and define |
| 473 | # BUILD_ARCHIVE instead. |
| 474 | # |
| 475 | # Some libraries must be built as .a files (libscalar for example) because if |
Chris Lattner | 1917e95 | 2002-07-31 21:32:05 +0000 | [diff] [blame] | 476 | # it's built as a .o file, then all of the constituent .o files in it will be |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 477 | # linked into tools (for example gccas) even if they only use one of the parts |
| 478 | # of it. For this reason, sometimes it's useful to use libraries as .a files. |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 479 | ########################################################################### |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 480 | |
| 481 | ifdef LIBRARYNAME |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 482 | |
Chris Lattner | 2a548c5 | 2002-09-16 22:36:42 +0000 | [diff] [blame] | 483 | # Make sure there isn't any extranous whitespace on the LIBRARYNAME option |
Chris Lattner | ccb4ebd | 2002-09-16 22:34:56 +0000 | [diff] [blame] | 484 | LIBRARYNAME := $(strip $(LIBRARYNAME)) |
| 485 | |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 486 | LIBNAME_O := $(DESTLIBRELEASE)/lib$(LIBRARYNAME).so |
| 487 | LIBNAME_P := $(DESTLIBPROFILE)/lib$(LIBRARYNAME).so |
| 488 | LIBNAME_G := $(DESTLIBDEBUG)/lib$(LIBRARYNAME).so |
| 489 | LIBNAME_AO := $(DESTLIBRELEASE)/lib$(LIBRARYNAME).a |
| 490 | LIBNAME_AP := $(DESTLIBPROFILE)/lib$(LIBRARYNAME).a |
| 491 | LIBNAME_AG := $(DESTLIBDEBUG)/lib$(LIBRARYNAME).a |
| 492 | LIBNAME_OBJO := $(DESTLIBRELEASE)/$(LIBRARYNAME).o |
| 493 | LIBNAME_OBJP := $(DESTLIBPROFILE)/$(LIBRARYNAME).o |
| 494 | LIBNAME_OBJG := $(DESTLIBDEBUG)/$(LIBRARYNAME).o |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 495 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 496 | #-------------------------------------------------------------------- |
| 497 | # Library Targets |
| 498 | # Modify the top level targets to build the desired libraries. |
| 499 | #-------------------------------------------------------------------- |
| 500 | |
Chris Lattner | 760da06 | 2003-03-14 20:25:22 +0000 | [diff] [blame] | 501 | # dynamic target builds a shared object version of the library... |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 502 | dynamic:: $(DESTLIBCURRENT)/lib$(LIBRARYNAME).so |
Vikram S. Adve | 60f5606 | 2002-08-02 18:34:12 +0000 | [diff] [blame] | 503 | |
Chris Lattner | 760da06 | 2003-03-14 20:25:22 +0000 | [diff] [blame] | 504 | # Does the library want a .o version built? |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 505 | ifndef DONT_BUILD_RELINKED |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 506 | all:: $(DESTLIBCURRENT)/$(LIBRARYNAME).o |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 507 | endif |
Chris Lattner | 760da06 | 2003-03-14 20:25:22 +0000 | [diff] [blame] | 508 | |
| 509 | # Does the library want an archive version built? |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 510 | ifdef BUILD_ARCHIVE |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 511 | all:: $(DESTLIBCURRENT)/lib$(LIBRARYNAME).a |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 512 | endif |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 513 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 514 | #-------------------------------------------------------------------- |
| 515 | # Rules for building libraries |
| 516 | #-------------------------------------------------------------------- |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 517 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 518 | # |
| 519 | # Rules for building dynamically linked libraries. |
| 520 | # |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 521 | $(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 522 | @echo ======= Linking $(LIBRARYNAME) dynamic release library ======= |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 523 | $(VERB) $(Link) -o $*.la $(ObjectsO) $(LibSubDirs) $(LibLinkOpts); |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 524 | $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT); |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 525 | |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 526 | $(LIBNAME_P): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 527 | @echo ======= Linking $(LIBRARYNAME) dynamic profile library ======= |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 528 | $(VERB) $(Link) -o $*.la $(ObjectsP) $(LibSubDirs) $(LibLinkOpts); |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 529 | $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT); |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 530 | |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 531 | $(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 532 | @echo ======= Linking $(LIBRARYNAME) dynamic debug library ======= |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 533 | $(VERB) $(Link) -o $*.la $(ObjectsG) $(LibSubDirs) $(LibLinkOpts); |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 534 | $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT); |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 535 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 536 | # |
| 537 | # Rules for building static archive libraries. |
| 538 | # |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 539 | $(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 540 | @echo ======= Linking $(LIBRARYNAME) archive release library ======= |
| 541 | @$(RM) -f $@ |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 542 | $(VERB) $(Link) -03 -o $@ $(ObjectsO) $(LibSubDirs) -static |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 543 | |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 544 | $(LIBNAME_AP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 545 | @echo ======= Linking $(LIBRARYNAME) archive profile library ======= |
| 546 | @$(RM) -f $@ |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 547 | $(VERB) $(Link) -03 $(PROFILE) -o $@ $(ObjectsP) $(LibSubDirs) -static |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 548 | |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 549 | $(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 550 | @echo ======= Linking $(LIBRARYNAME) archive debug library ======= |
| 551 | @$(RM) -f $@ |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 552 | $(VERB) $(Link) -g $(STRIP) -o $@ $(ObjectsG) $(LibSubDirs) -static |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 553 | |
| 554 | # |
| 555 | # Rules for building .o libraries. |
| 556 | # |
John Criswell | 82f4a5a | 2003-07-31 20:58:51 +0000 | [diff] [blame] | 557 | # JTC: |
| 558 | # Note that for this special case, we specify the actual object files |
| 559 | # instead of their libtool counterparts. This is because libtool |
| 560 | # doesn't want to generate a reloadable object file unless it is given |
| 561 | # .o files explicitly. |
| 562 | # |
| 563 | # Note that we're making an assumption here: If we build a .lo file, |
| 564 | # it's corresponding .o file will be placed in the same directory. |
| 565 | # |
| 566 | # I think that is safe. |
| 567 | # |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 568 | $(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 569 | @echo "Linking $@" |
John Criswell | 82f4a5a | 2003-07-31 20:58:51 +0000 | [diff] [blame] | 570 | $(VERB) $(Relink) -o $@ $(RObjectsO) $(LibSubDirs) |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 571 | |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 572 | $(LIBNAME_OBJP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 573 | @echo "Linking $@" |
John Criswell | 82f4a5a | 2003-07-31 20:58:51 +0000 | [diff] [blame] | 574 | $(VERB) $(Relink) -o $@ $(RObjectsP) $(LibSubDirs) |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 575 | |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 576 | $(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir |
Chris Lattner | 9e39816 | 2002-09-25 17:15:22 +0000 | [diff] [blame] | 577 | @echo "Linking $@" |
John Criswell | 82f4a5a | 2003-07-31 20:58:51 +0000 | [diff] [blame] | 578 | $(VERB) $(Relink) -o $@ $(RObjectsG) $(LibSubDirs) |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 579 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 580 | endif |
| 581 | |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 582 | #------------------------------------------------------------------------ |
Vikram S. Adve | 0193d5e | 2001-10-10 22:35:00 +0000 | [diff] [blame] | 583 | # Create a TAGS database for emacs |
| 584 | #------------------------------------------------------------------------ |
| 585 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 586 | ifdef ETAGS |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 587 | ifeq ($(LEVEL), .) |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 588 | tags: |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 589 | $(ETAGS) -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'` |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 590 | all:: tags |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 591 | endif |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 592 | else |
| 593 | tags: |
| 594 | ${ECHO} "Cannot build $@: The program etags is not installed" |
| 595 | endif |
Vikram S. Adve | 0193d5e | 2001-10-10 22:35:00 +0000 | [diff] [blame] | 596 | |
| 597 | #------------------------------------------------------------------------ |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 598 | # Handle the TOOLNAME option - used when building tool executables... |
| 599 | #------------------------------------------------------------------------ |
| 600 | # |
| 601 | # The TOOLNAME option should be used with a USEDLIBS variable that tells the |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 602 | # libraries (and the order of the libs) that should be linked to the |
| 603 | # tool. USEDLIBS should contain a list of library names (some with .a extension) |
| 604 | # that are automatically linked in as .o files unless the .a suffix is added. |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 605 | # |
| 606 | ifdef TOOLNAME |
| 607 | |
| 608 | # TOOLEXENAME* - These compute the output filenames to generate... |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 609 | TOOLEXENAME_G := $(DESTTOOLDEBUG)/$(TOOLNAME) |
| 610 | TOOLEXENAME_O := $(DESTTOOLRELEASE)/$(TOOLNAME) |
| 611 | TOOLEXENAME_P := $(DESTTOOLPROFILE)/$(TOOLNAME) |
| 612 | TOOLEXENAMES := $(DESTTOOLCURRENT)/$(TOOLNAME) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 613 | |
| 614 | # USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc. |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 615 | PROJ_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS))) |
| 616 | PROJ_LIBS_OPTIONS_G := $(patsubst %.o, $(PROJLIBDEBUGSOURCE)/%.o, $(PROJ_LIBS_OPTIONS)) |
| 617 | PROJ_LIBS_OPTIONS_O := $(patsubst %.o, $(PROJLIBRELEASESOURCE)/%.o,$(PROJ_LIBS_OPTIONS)) |
| 618 | PROJ_LIBS_OPTIONS_P := $(patsubst %.o, $(PROJLIBPROFILESOURCE)/%.o,$(PROJ_LIBS_OPTIONS)) |
| 619 | |
| 620 | LLVM_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS))) |
| 621 | LLVM_LIBS_OPTIONS_G := $(patsubst %.o, $(LLVMLIBDEBUGSOURCE)/%.o, $(LLVM_LIBS_OPTIONS)) |
| 622 | LLVM_LIBS_OPTIONS_O := $(patsubst %.o, $(LLVMLIBRELEASESOURCE)/%.o,$(LLVM_LIBS_OPTIONS)) |
| 623 | LLVM_LIBS_OPTIONS_P := $(patsubst %.o, $(LLVMLIBPROFILESOURCE)/%.o,$(LLVM_LIBS_OPTIONS)) |
| 624 | |
| 625 | LIB_OPTS_G := $(LLVM_LIBS_OPTIONS_G) $(PROJ_LIBS_OPTIONS_G) |
Chris Lattner | e3ba95e | 2003-06-20 15:41:57 +0000 | [diff] [blame] | 626 | LIB_OPTS_O := $(LLVM_LIBS_OPTIONS_O) $(PROJ_LIBS_OPTIONS_O) |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 627 | LIB_OPTS_P := $(LLVM_LIBS_OPTIONS_P) $(PROJ_LIBS_OPTIONS_P) |
| 628 | |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 629 | # USED_LIB_PATHS - Compute the path of the libraries used so that tools are |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 630 | # rebuilt if libraries change. This has to make sure to handle .a/.so and .o |
Misha Brukman | 1ba3138 | 2003-07-14 17:26:34 +0000 | [diff] [blame] | 631 | # files separately. |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 632 | # |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 633 | STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS))) |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 634 | USED_LIB_PATHS_G := $(addprefix $(DESTLIBDEBUG)/, $(STATICUSEDLIBS)) |
| 635 | USED_LIB_PATHS_O := $(addprefix $(DESTLIBRELEASE)/, $(STATICUSEDLIBS)) |
| 636 | USED_LIB_PATHS_P := $(addprefix $(DESTLIBPROFILE)/, $(STATICUSEDLIBS)) |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 637 | #LINK_OPTS := $(TOOLLINKOPTS) $(PLATFORMLINKOPTS) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 638 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 639 | # |
| 640 | # Libtool link options: |
| 641 | # Ensure that all binaries have their symbols exported so that they can |
| 642 | # by dlsym'ed. |
| 643 | # |
| 644 | LINK_OPTS := -export-dynamic $(TOOLLINKOPTS) |
Chris Lattner | 8d7dfb3 | 2003-01-22 16:13:31 +0000 | [diff] [blame] | 645 | |
Dinakar Dhurjati | ffb55cd | 2003-05-29 16:18:20 +0000 | [diff] [blame] | 646 | |
| 647 | |
| 648 | |
| 649 | |
Chris Lattner | 8d7dfb3 | 2003-01-22 16:13:31 +0000 | [diff] [blame] | 650 | # Tell make that we need to rebuild subdirectories before we can link the tool. |
| 651 | # This affects things like LLI which has library subdirectories. |
| 652 | $(USED_LIB_PATHS_G) $(USED_LIB_PATHS_O) $(USED_LIB_PATHS_P): \ |
| 653 | $(addsuffix /.makeall, $(PARALLEL_DIRS)) |
| 654 | |
Chris Lattner | 669bd7c | 2001-10-13 05:10:29 +0000 | [diff] [blame] | 655 | all:: $(TOOLEXENAMES) |
John Criswell | 2a6530f | 2003-06-27 16:58:44 +0000 | [diff] [blame] | 656 | |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 657 | clean:: |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 658 | $(VERB) $(RM) -f $(TOOLEXENAMES) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 659 | |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 660 | $(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(DESTTOOLDEBUG)/.dir |
Misha Brukman | 9b51b6f | 2003-07-10 16:52:41 +0000 | [diff] [blame] | 661 | @echo ======= Linking $(TOOLNAME) debug executable $(STRIP_WARN_MSG) ======= |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 662 | $(VERB) $(LinkG) -o $@ $(ObjectsG) $(LIB_OPTS_G) $(LINK_OPTS) $(LIBS) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 663 | |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 664 | $(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(DESTTOOLRELEASE)/.dir |
Chris Lattner | 287d443 | 2002-09-12 17:02:40 +0000 | [diff] [blame] | 665 | @echo ======= Linking $(TOOLNAME) release executable ======= |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 666 | $(VERB) $(LinkO) -o $@ $(ObjectsO) $(LIB_OPTS_O) $(LINK_OPTS) $(LIBS) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 667 | |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 668 | $(TOOLEXENAME_P): $(ObjectsP) $(USED_LIB_PATHS_P) $(DESTTOOLPROFILE)/.dir |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 669 | @echo ======= Linking $(TOOLNAME) profile executable ======= |
John Criswell | f4ccd99 | 2003-07-01 14:52:28 +0000 | [diff] [blame] | 670 | $(VERB) $(LinkP) -o $@ $(ObjectsP) $(LIB_OPTS_P) $(LINK_OPTS) $(LIBS) |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 671 | |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 672 | endif |
| 673 | |
| 674 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 675 | |
| 676 | #--------------------------------------------------------- |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 677 | .PRECIOUS: $(BUILD_OBJ_DIR)/Depend/.dir |
| 678 | .PRECIOUS: $(BUILD_OBJ_DIR)/Debug/.dir $(BUILD_OBJ_DIR)/Release/.dir |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 679 | |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 680 | # Create .o files in the ObjectFiles directory from the .cpp and .c files... |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 681 | #$(BUILD_OBJ_DIR)/Release/%.o: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Release/.dir |
| 682 | #@echo "Compiling $<" |
| 683 | #$(VERB) $(CompileO) $< -o $@ |
| 684 | |
| 685 | #$(BUILD_OBJ_DIR)/Release/%.o: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Release/.dir |
| 686 | #$(VERB) $(CompileCO) $< -o $@ |
| 687 | |
| 688 | #$(BUILD_OBJ_DIR)/Profile/%.o: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Profile/.dir |
| 689 | #@echo "Compiling $<" |
| 690 | #$(VERB) $(CompileP) $< -o $@ |
| 691 | |
| 692 | #$(BUILD_OBJ_DIR)/Profile/%.o: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Profile/.dir |
| 693 | #@echo "Compiling $<" |
| 694 | #$(VERB) $(CompileCP) $< -o $@ |
| 695 | |
| 696 | #$(BUILD_OBJ_DIR)/Debug/%.o: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Debug/.dir |
| 697 | #@echo "Compiling $<" |
| 698 | #$(VERB) $(CompileG) $< -o $@ |
| 699 | |
| 700 | #$(BUILD_OBJ_DIR)/Debug/%.o: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Debug/.dir |
| 701 | #$(VERB) $(CompileCG) $< -o $@ |
| 702 | |
| 703 | # Create .lo files in the ObjectFiles directory from the .cpp and .c files... |
| 704 | $(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Release/.dir |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 705 | @echo "Compiling $<" |
| 706 | $(VERB) $(CompileO) $< -o $@ |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 707 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 708 | $(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Release/.dir |
| 709 | @echo "Compiling $<" |
Chris Lattner | 1eeac66 | 2002-10-22 23:28:23 +0000 | [diff] [blame] | 710 | $(VERB) $(CompileCO) $< -o $@ |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 711 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 712 | $(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Profile/.dir |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 713 | @echo "Compiling $<" |
| 714 | $(VERB) $(CompileP) $< -o $@ |
| 715 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 716 | $(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Profile/.dir |
Chris Lattner | 172b648 | 2002-09-22 02:47:15 +0000 | [diff] [blame] | 717 | @echo "Compiling $<" |
| 718 | $(VERB) $(CompileCP) $< -o $@ |
| 719 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 720 | $(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Debug/.dir |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 721 | @echo "Compiling $<" |
| 722 | $(VERB) $(CompileG) $< -o $@ |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 723 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 724 | $(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Debug/.dir |
| 725 | @echo "Compiling $<" |
| 726 | $(VERB) $(CompileCG) $< -o $@ |
| 727 | |
| 728 | # Create .lo files in the ObjectFiles directory from the .cpp and .c files... |
| 729 | $(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Release/.dir |
| 730 | @echo "Compiling $<" |
| 731 | $(VERB) $(CompileO) $< -o $@ |
| 732 | |
| 733 | $(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Release/.dir |
| 734 | $(VERB) $(CompileCO) $< -o $@ |
| 735 | |
| 736 | $(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Profile/.dir |
| 737 | @echo "Compiling $<" |
| 738 | $(VERB) $(CompileP) $< -o $@ |
| 739 | |
| 740 | $(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Profile/.dir |
| 741 | @echo "Compiling $<" |
| 742 | $(VERB) $(CompileCP) $< -o $@ |
| 743 | |
| 744 | $(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Debug/.dir |
| 745 | @echo "Compiling $<" |
| 746 | $(VERB) $(CompileG) $< -o $@ |
| 747 | |
| 748 | $(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Debug/.dir |
Chris Lattner | 172b648 | 2002-09-22 02:47:15 +0000 | [diff] [blame] | 749 | $(VERB) $(CompileCG) $< -o $@ |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 750 | |
Chris Lattner | e899678 | 2003-01-16 22:44:19 +0000 | [diff] [blame] | 751 | # |
| 752 | # Rules for building lex/yacc files |
| 753 | # |
| 754 | LEX_FILES = $(filter %.l, $(Source)) |
| 755 | LEX_OUTPUT = $(LEX_FILES:%.l=%.cpp) |
| 756 | YACC_FILES = $(filter %.y, $(Source)) |
| 757 | YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output) |
| 758 | .PRECIOUS: $(LEX_OUTPUT) $(YACC_OUTPUT) |
| 759 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 760 | # Create a .cpp source file from a flex input file... this uses sed to cut down |
| 761 | # on the warnings emited by GCC... |
Chris Lattner | 6d131b4 | 2003-01-23 16:33:10 +0000 | [diff] [blame] | 762 | # |
| 763 | # The last line is a gross hack to work around flex aparently not being able to |
| 764 | # resize the buffer on a large token input. Currently, for uninitialized string |
| 765 | # buffers in LLVM we can generate very long tokens, so this is a hack around it. |
| 766 | # FIXME. (f.e. char Buffer[10000]; ) |
| 767 | # |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 768 | %.cpp: %.l |
Chris Lattner | a328f88 | 2003-08-04 19:47:06 +0000 | [diff] [blame] | 769 | @echo Flex\'ing $<... |
Chris Lattner | 7bb107d | 2003-08-04 19:48:10 +0000 | [diff] [blame] | 770 | $(VERB) $(FLEX) -t $< | \ |
| 771 | $(SED) '/^find_rule/d' | \ |
| 772 | $(SED) 's/void yyunput/inline void yyunput/' | \ |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 773 | $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \ |
Chris Lattner | a328f88 | 2003-08-04 19:47:06 +0000 | [diff] [blame] | 774 | $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \ |
| 775 | > $@.tmp |
John Criswell | cb04809 | 2003-08-05 21:38:28 +0000 | [diff] [blame] | 776 | $(VERB) cmp $@ $@.tmp > /dev/null || ${MV} -f $@.tmp $@ |
Chris Lattner | a328f88 | 2003-08-04 19:47:06 +0000 | [diff] [blame] | 777 | @# remove the output of flex if it didn't get moved over... |
| 778 | @rm -f $@.tmp |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 779 | |
| 780 | # Rule for building the bison parsers... |
Chris Lattner | 694c5df | 2003-05-15 21:28:55 +0000 | [diff] [blame] | 781 | %.c: %.y # Cancel built-in rules for yacc |
| 782 | %.h: %.y # Cancel built-in rules for yacc |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 783 | %.cpp %.h : %.y |
Chris Lattner | 694c5df | 2003-05-15 21:28:55 +0000 | [diff] [blame] | 784 | @echo Bison\'ing $<... |
Chris Lattner | e899678 | 2003-01-16 22:44:19 +0000 | [diff] [blame] | 785 | $(VERB) $(BISON) -v -d -p $(<:%Parser.y=%) $*.y |
John Criswell | cb04809 | 2003-08-05 21:38:28 +0000 | [diff] [blame] | 786 | $(VERB) cmp $*.tab.c $*.cpp > /dev/null || ${MV} -f $*.tab.c $*.cpp |
| 787 | $(VERB) cmp $*.tab.h $*.h > /dev/null || ${MV} -f $*.tab.h $*.h |
Chris Lattner | a328f88 | 2003-08-04 19:47:06 +0000 | [diff] [blame] | 788 | @# If the files were not updated, don't leave them lying around... |
| 789 | @rm -f $*.tab.c $*.tab.h |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 790 | |
| 791 | # To create the directories... |
| 792 | %/.dir: |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 793 | $(VERB) ${MKDIR} $* > /dev/null |
| 794 | @$(DATE) > $@ |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 795 | |
Chris Lattner | 30440c6 | 2003-01-16 21:06:18 +0000 | [diff] [blame] | 796 | # To create postscript files from dot files... |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 797 | ifdef DOT |
Chris Lattner | 30440c6 | 2003-01-16 21:06:18 +0000 | [diff] [blame] | 798 | %.ps: %.dot |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 799 | ${DOT} -Tps < $< > $@ |
| 800 | else |
| 801 | %.ps: %.dot |
| 802 | ${ECHO} "Cannot build $@: The program dot is not installed" |
| 803 | endif |
Chris Lattner | 30440c6 | 2003-01-16 21:06:18 +0000 | [diff] [blame] | 804 | |
Chris Lattner | 172b648 | 2002-09-22 02:47:15 +0000 | [diff] [blame] | 805 | # 'make clean' nukes the tree |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 806 | clean:: |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 807 | $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Debug $(BUILD_OBJ_DIR)/Release $(BUILD_OBJ_DIR)/Profile $(BUILD_OBJ_DIR)/Depend |
| 808 | $(VERB) $(RM) -f core core.[0-9][0-9]* *.o *.d *.so *~ *.flc |
| 809 | $(VERB) $(RM) -f $(LEX_OUTPUT) $(YACC_OUTPUT) |
| 810 | |
| 811 | distclean:: clean |
| 812 | $(VERB) (cd $(LLVM_SRC_ROOT); $(RM) -rf $(LEVEL)/Makefile.config \ |
| 813 | $(LEVEL)/include/Config/config.h \ |
| 814 | $(LEVEL)/autom4te.cache \ |
| 815 | $(LEVEL)/config.log) |
| 816 | |
| 817 | ########################################################################### |
| 818 | # C/C++ Dependencies |
| 819 | # Define variables and rules that generate header file dependencies |
| 820 | # from C/C++ source files. |
| 821 | ########################################################################### |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 822 | |
Chris Lattner | 694c5df | 2003-05-15 21:28:55 +0000 | [diff] [blame] | 823 | # If dependencies were generated for the file that included this file, |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 824 | # include the dependancies now... |
| 825 | # |
Chris Lattner | 694c5df | 2003-05-15 21:28:55 +0000 | [diff] [blame] | 826 | SourceBaseNames := $(basename $(notdir $(filter-out Debug/%, $(Source)))) |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 827 | SourceDepend := $(SourceBaseNames:%=$(BUILD_OBJ_DIR)/Depend/%.d) |
Chris Lattner | 694c5df | 2003-05-15 21:28:55 +0000 | [diff] [blame] | 828 | |
| 829 | # Create dependencies for the *.cpp files... |
| 830 | #$(SourceDepend): \x |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 831 | $(BUILD_OBJ_DIR)/Depend/%.d: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Depend/.dir |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 832 | $(VERB) $(Depend) $< | $(SED) 's|\.o|\.lo|' | $(SED) 's|$*\.lo *|$(BUILD_OBJ_DIR)/Release/& $(BUILD_OBJ_DIR)/Profile/& $(BUILD_OBJ_DIR)/Debug/& $(BUILD_OBJ_DIR)/Depend/$(@F)|g' > $@ |
Chris Lattner | 694c5df | 2003-05-15 21:28:55 +0000 | [diff] [blame] | 833 | |
| 834 | # Create dependencies for the *.c files... |
| 835 | #$(SourceDepend): \x |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 836 | $(BUILD_OBJ_DIR)/Depend/%.d: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Depend/.dir |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 837 | $(VERB) $(DependC) -o $@ $< | $(SED) 's|\.o|\.lo|' | $(SED) 's|$*\.lo *|$(BUILD_OBJ_DIR)/Release/& $(BUILD_OBJ_DIR)/Profile/& $(BUILD_OBJ_DIR)/Debug/& $(BUILD_OBJ_DIR)/Depend/$(@F)|g' > $@ |
Chris Lattner | 694c5df | 2003-05-15 21:28:55 +0000 | [diff] [blame] | 838 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 839 | # |
| 840 | # Include dependencies generated from C/C++ source files, but not if we |
| 841 | # are cleaning (this example taken from the GNU Make Manual). |
| 842 | # |
| 843 | ifneq ($(MAKECMDGOALS),clean) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 844 | ifneq ($(SourceDepend),) |
Chris Lattner | ed03bc9 | 2002-10-25 14:32:42 +0000 | [diff] [blame] | 845 | -include $(SourceDepend) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 846 | endif |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 847 | endif |