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