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