Vikram S. Adve | 24132e8 | 2002-07-09 12:04:21 +0000 | [diff] [blame] | 1 | #===-- Makefile.common - Common make rules for LLVM -------*- makefile -*--==== |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2 | # |
| 3 | # This file is included by all of the LLVM makefiles. This file defines common |
| 4 | # rules to do things like compile a .cpp file or generate dependancy info. |
| 5 | # These are platform dependant, so this is the file used to specify these |
| 6 | # system dependant operations. |
| 7 | # |
Vikram S. Adve | 728de92 | 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 | 2f7c963 | 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 | f3dd5f5 | 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 | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 19 | # |
Chris Lattner | f3dd5f5 | 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 | 2f7c963 | 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 | ee6e199 | 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 | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 28 | # |
Vikram S. Adve | 24132e8 | 2002-07-09 12:04:21 +0000 | [diff] [blame] | 29 | #===-----------------------------------------------------------------------==== |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 30 | |
Vikram S. Adve | 728de92 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 31 | # Configuration file to set paths specific to local installation of LLVM |
| 32 | # |
| 33 | include $(LEVEL)/Makefile.config |
| 34 | |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 35 | # These are options that can either be enabled here, or can be enabled on the |
Chris Lattner | ead864f | 2002-08-03 20:19:30 +0000 | [diff] [blame] | 36 | # make command line (ie, make ENABLE_PROFILING=1) |
| 37 | # |
| 38 | |
| 39 | # When ENABLE_PROFILING is enabled, the llvm source base is built with profile |
| 40 | # information to allow gprof to be used to get execution frequencies. |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 41 | # |
| 42 | #ENABLE_PROFILING = 1 |
Chris Lattner | ead864f | 2002-08-03 20:19:30 +0000 | [diff] [blame] | 43 | |
| 44 | # When ENABLE_PURIFY is enabled, the LLVM tools are linked with purify (which |
| 45 | # must be locally installed) to allow for some automated memory error debugging. |
| 46 | # |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 47 | #ENABLE_PURIFY = 1 |
Chris Lattner | ead864f | 2002-08-03 20:19:30 +0000 | [diff] [blame] | 48 | |
| 49 | # When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are |
| 50 | # turned on, and Debug builds are turned off. |
| 51 | # |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 52 | #ENABLE_OPTIMIZED = 1 |
| 53 | |
Chris Lattner | e5ad7bd | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 54 | |
| 55 | # Figure out how to do platform specific stuff on this platform. This is really |
| 56 | # gross and should be autoconfiscated (automake actually), but should hopefully |
| 57 | # work on Linux and solaris (SunOS). |
| 58 | # |
| 59 | UNAME := $(shell uname) |
| 60 | include $(LEVEL)/Makefile.$(UNAME) |
| 61 | |
Chris Lattner | 570c6a6 | 2002-07-23 19:21:31 +0000 | [diff] [blame] | 62 | ifdef SHARED_LIBRARY |
| 63 | # if SHARED_LIBRARY is specified, the default is to build the dynamic lib |
| 64 | dynamic :: |
| 65 | endif |
| 66 | |
Chris Lattner | 44601ba | 2001-06-29 05:20:16 +0000 | [diff] [blame] | 67 | # Default Rule: Make sure it's also a :: rule |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 68 | all :: |
| 69 | |
| 70 | # Default for install is to at least build everything... |
| 71 | install :: |
| 72 | |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 73 | |
| 74 | # Figure out which directory to build stuff into. We want to build into the |
| 75 | # /shared directory by default because it is guaranteed to be local to the |
| 76 | # current machine. |
| 77 | # |
Vikram S. Adve | 728de92 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 78 | ifeq ($(LLVM_OBJ_DIR),.) |
| 79 | BUILD_ROOT = $(LLVM_OBJ_DIR) |
| 80 | BUILD_ROOT_TOP = $(LEVEL) |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 81 | else |
| 82 | |
Vikram S. Adve | 728de92 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 83 | BUILD_ROOT := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(shell pwd)) |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 84 | |
| 85 | # Calculate the BUILD_ROOT_TOP variable, which is the top of the llvm/ tree. |
| 86 | # Note that although this is just equal to $(BUILD_ROOT)/$(LEVEL), we cannot use |
| 87 | # this expression because some of the directories on the source tree may not |
| 88 | # exist in the build tree (for example the test/ heirarchy). Thus we evaluate |
| 89 | # the directory to eliminate the ../'s |
| 90 | # |
| 91 | TOP_DIRECTORY := $(shell cd $(LEVEL); pwd) |
Vikram S. Adve | 728de92 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 92 | BUILD_ROOT_TOP := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(TOP_DIRECTORY)) |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 93 | endif |
| 94 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 95 | #-------------------------------------------------------------------- |
Vikram S. Adve | 728de92 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 96 | # Variables derived from configuration options... |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 97 | #-------------------------------------------------------------------- |
| 98 | |
| 99 | #BinInstDir=/usr/local/bin |
| 100 | #LibInstDir=/usrl/local/lib/xxx |
| 101 | #DocInstDir=/usr/doc/xxx |
| 102 | |
Vikram S. Adve | ca4a382 | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 103 | BURG_OPTS = -I |
| 104 | |
Vikram S. Adve | 728de92 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 105 | PURIFY := $(PURIFY) -cache-dir="$(BUILD_ROOT_TOP)/../purifycache" -chain-length="30" -messages=all |
Chris Lattner | b20b290c | 2001-10-30 20:24:08 +0000 | [diff] [blame] | 106 | |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 107 | # Shorthand for commonly accessed directories |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 108 | LIBDEBUG := $(BUILD_ROOT_TOP)/lib/Debug |
| 109 | LIBRELEASE := $(BUILD_ROOT_TOP)/lib/Release |
| 110 | TOOLDEBUG := $(BUILD_ROOT_TOP)/tools/Debug |
| 111 | TOOLRELEASE := $(BUILD_ROOT_TOP)/tools/Release |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 112 | |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 113 | # Verbosity levels |
| 114 | ifdef VERBOSE |
| 115 | VERB := |
| 116 | else |
| 117 | VERB := @ |
| 118 | endif |
| 119 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 120 | #--------------------------------------------------------- |
| 121 | # Compilation options... |
| 122 | #--------------------------------------------------------- |
| 123 | |
Vikram S. Adve | ca4a382 | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 124 | # Special tools used while building |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 125 | RunBurg := $(BURG) $(BURG_OPTS) |
Vikram S. Adve | ca4a382 | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 126 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 127 | # Enable this for profiling support with 'gprof' |
Chris Lattner | 198d5eb | 2002-05-10 18:51:54 +0000 | [diff] [blame] | 128 | ifdef ENABLE_PROFILING |
| 129 | PROFILE = -pg |
| 130 | else |
| 131 | PROFILE = |
| 132 | endif |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 133 | |
Vikram S. Adve | d141c28 | 2002-09-18 11:55:13 +0000 | [diff] [blame^] | 134 | # By default, strip symbol information from executable |
| 135 | ifdef KEEP_SYMBOLS |
| 136 | STRIP = |
| 137 | else |
| 138 | STRIP = -s |
| 139 | endif |
| 140 | |
Chris Lattner | 2efcf43 | 2002-09-13 16:02:26 +0000 | [diff] [blame] | 141 | # Allow gnu extensions... |
| 142 | CPPFLAGS += -D_GNU_SOURCE |
| 143 | |
Chris Lattner | 068f822 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 144 | # -Wno-unused-parameter |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 145 | CompileCommonOpts := $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 146 | |
| 147 | # Compile a file, don't link... |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 148 | Compile := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) |
| 149 | CompileG := $(Compile) -g -D_DEBUG |
| 150 | CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 151 | |
| 152 | # Link final executable |
Chris Lattner | b20b290c | 2001-10-30 20:24:08 +0000 | [diff] [blame] | 153 | |
Chris Lattner | d711a5e | 2002-07-31 21:32:05 +0000 | [diff] [blame] | 154 | ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1' |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 155 | Link := $(PURIFY) $(CXX) $(PROFILE) -static |
Chris Lattner | f0a88d1 | 2002-04-05 18:56:58 +0000 | [diff] [blame] | 156 | else |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 157 | Link := $(CXX) $(PROFILE) |
Chris Lattner | f0a88d1 | 2002-04-05 18:56:58 +0000 | [diff] [blame] | 158 | endif |
Vikram S. Adve | d141c28 | 2002-09-18 11:55:13 +0000 | [diff] [blame^] | 159 | LinkG := $(Link) -g -L $(LIBDEBUG) $(STRIP) |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 160 | LinkO := $(Link) -O3 -L $(LIBRELEASE) |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 161 | |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 162 | # Create one .o file from a bunch of .o files... |
| 163 | Relink = ld -r |
| 164 | |
Chris Lattner | e5ad7bd | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 165 | # MakeSO - Create a .so file from a .o files... |
| 166 | MakeSO := $(CXX) $(MakeSharedObjectOption) $(PROFILE) |
| 167 | MakeSOO := $(MakeSO) -O3 |
| 168 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 169 | # Create dependancy file from CPP file, send to stdout. |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 170 | Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS) |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 171 | |
| 172 | # Archive a bunch of .o files into a .a file... |
| 173 | AR = ar cq |
| 174 | |
| 175 | #---------------------------------------------------------- |
| 176 | |
| 177 | # Source includes all of the cpp files, and objects are derived from the |
| 178 | # source files... |
Chris Lattner | ee6e199 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 179 | # The local Makefile can list other Source files via ExtraSource = ... |
Vikram S. Adve | bd9cae2 | 2001-10-17 12:33:55 +0000 | [diff] [blame] | 180 | # |
Chris Lattner | ee6e199 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 181 | Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l) |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 182 | |
Chris Lattner | d1a7229 | 2002-07-25 15:01:19 +0000 | [diff] [blame] | 183 | Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source))))) |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 184 | ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs))) |
| 185 | ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs)) |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 186 | |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 187 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 188 | #--------------------------------------------------------- |
Chris Lattner | f3dd5f5 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 189 | # Handle the DIRS and PARALLEL_DIRS options |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 190 | #--------------------------------------------------------- |
| 191 | |
Anand Shukla | 8c2a0ee | 2002-09-18 04:29:30 +0000 | [diff] [blame] | 192 | ifdef DIRS |
Chris Lattner | f3dd5f5 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 193 | all install clean :: |
Chris Lattner | 59ded8e | 2002-09-17 23:45:34 +0000 | [diff] [blame] | 194 | $(VERB) for dir in ${DIRS}; do \ |
Chris Lattner | 539a23c | 2002-09-17 23:35:02 +0000 | [diff] [blame] | 195 | (cd $$dir; $(MAKE) $@) || exit 1; \ |
| 196 | done |
Anand Shukla | 8c2a0ee | 2002-09-18 04:29:30 +0000 | [diff] [blame] | 197 | endif |
Chris Lattner | f3dd5f5 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 198 | |
| 199 | # Handle PARALLEL_DIRS |
| 200 | ifdef PARALLEL_DIRS |
| 201 | all :: $(addsuffix /.makeall , $(PARALLEL_DIRS)) |
| 202 | install :: $(addsuffix /.makeinstall, $(PARALLEL_DIRS)) |
| 203 | clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS)) |
| 204 | |
| 205 | %/.makeall %/.makeinstall %/.makeclean: |
| 206 | $(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@) |
| 207 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 208 | endif |
| 209 | |
| 210 | #--------------------------------------------------------- |
| 211 | # Handle the LIBRARYNAME option - used when building libs... |
| 212 | #--------------------------------------------------------- |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 213 | # |
| 214 | # When libraries are built, they are allowed to optionally define the |
| 215 | # DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file |
| 216 | # from being built for the library. This .o files may then be linked to by a |
| 217 | # tool if the tool does not need (or want) the semantics a .a file provides |
| 218 | # (linking in only object files that are "needed"). If a library is never to |
| 219 | # be used in this way, it is better to define DONT_BUILD_RELINKED, and define |
| 220 | # BUILD_ARCHIVE instead. |
| 221 | # |
| 222 | # Some libraries must be built as .a files (libscalar for example) because if |
Chris Lattner | d711a5e | 2002-07-31 21:32:05 +0000 | [diff] [blame] | 223 | # it's built as a .o file, then all of the constituent .o files in it will be |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 224 | # linked into tools (for example gccas) even if they only use one of the parts |
| 225 | # of it. For this reason, sometimes it's useful to use libraries as .a files. |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 226 | |
| 227 | ifdef LIBRARYNAME |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 228 | |
Chris Lattner | 0100eab | 2002-09-16 22:36:42 +0000 | [diff] [blame] | 229 | # Make sure there isn't any extranous whitespace on the LIBRARYNAME option |
Chris Lattner | e6e193ca | 2002-09-16 22:34:56 +0000 | [diff] [blame] | 230 | LIBRARYNAME := $(strip $(LIBRARYNAME)) |
| 231 | |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 232 | LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so |
| 233 | LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so |
| 234 | LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a |
| 235 | LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a |
| 236 | LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o |
| 237 | LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 238 | |
Vikram S. Adve | 15bd3ad | 2002-08-02 18:34:12 +0000 | [diff] [blame] | 239 | |
| 240 | ifndef ENABLE_OPTIMIZED |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 241 | BUILD_LIBNAME_G := $(LIBNAME_G) |
| 242 | ifndef DONT_BUILD_RELINKED |
| 243 | BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG) |
| 244 | endif |
| 245 | ifdef BUILD_ARCHIVE |
| 246 | BUILD_LIBNAME_AG := $(LIBNAME_AG) |
| 247 | endif |
Vikram S. Adve | 15bd3ad | 2002-08-02 18:34:12 +0000 | [diff] [blame] | 248 | endif |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 249 | |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 250 | # If optimized builds are enabled... |
| 251 | ifdef ENABLE_OPTIMIZED |
| 252 | BUILD_LIBNAME_O := $(LIBNAME_O) |
| 253 | ifndef DONT_BUILD_RELINKED |
| 254 | BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO) |
| 255 | endif |
| 256 | ifdef BUILD_ARCHIVE |
| 257 | BUILD_LIBNAME_AO := $(LIBNAME_AO) |
| 258 | endif |
| 259 | endif |
| 260 | |
| 261 | all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug |
| 262 | all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release |
| 263 | dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files |
| 264 | |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 265 | $(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 266 | @echo ======= Linking $(LIBRARYNAME) release library ======= |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 267 | $(VERB) $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts) |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 268 | |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 269 | $(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 270 | @echo ======= Linking $(LIBRARYNAME) debug library ======= |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 271 | $(VERB) $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts) |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 272 | |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 273 | $(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 274 | @echo ======= Linking $(LIBRARYNAME) release library ======= |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 275 | @rm -f $@ |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 276 | $(VERB) $(AR) $@ $(ObjectsO) $(LibSubDirs) |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 277 | |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 278 | $(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 279 | @echo ======= Linking $(LIBRARYNAME) debug library ======= |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 280 | @rm -f $@ |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 281 | $(VERB) $(AR) $@ $(ObjectsG) $(LibSubDirs) |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 282 | |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 283 | $(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 284 | @echo "Linking $@" |
| 285 | $(VERB) $(Relink) -o $@ $(ObjectsO) $(LibSubDirs) |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 286 | |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 287 | $(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 288 | $(VERB) $(Relink) -o $@ $(ObjectsG) $(LibSubDirs) |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 289 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 290 | endif |
| 291 | |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 292 | #------------------------------------------------------------------------ |
Vikram S. Adve | fa9dc58 | 2001-10-10 22:35:00 +0000 | [diff] [blame] | 293 | # Create a TAGS database for emacs |
| 294 | #------------------------------------------------------------------------ |
| 295 | |
Vikram S. Adve | a0e9908 | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 296 | ifeq ($(LEVEL), .) |
Vikram S. Adve | a0e9908 | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 297 | tags: |
Chris Lattner | 198d5eb | 2002-05-10 18:51:54 +0000 | [diff] [blame] | 298 | etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'` |
Vikram S. Adve | a0e9908 | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 299 | all:: tags |
Vikram S. Adve | a0e9908 | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 300 | endif |
Vikram S. Adve | fa9dc58 | 2001-10-10 22:35:00 +0000 | [diff] [blame] | 301 | |
| 302 | #------------------------------------------------------------------------ |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 303 | # Handle the TOOLNAME option - used when building tool executables... |
| 304 | #------------------------------------------------------------------------ |
| 305 | # |
| 306 | # The TOOLNAME option should be used with a USEDLIBS variable that tells the |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 307 | # libraries (and the order of the libs) that should be linked to the |
| 308 | # tool. USEDLIBS should contain a list of library names (some with .a extension) |
| 309 | # that are automatically linked in as .o files unless the .a suffix is added. |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 310 | # |
| 311 | ifdef TOOLNAME |
| 312 | |
| 313 | # TOOLEXENAME* - These compute the output filenames to generate... |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 314 | TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME) |
| 315 | TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME) |
| 316 | TOOLEXENAMES := $(TOOLEXENAME_G) |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 317 | ifdef ENABLE_OPTIMIZED |
| 318 | TOOLEXENAMES += $(TOOLEXENAME_O) |
| 319 | endif |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 320 | |
| 321 | # USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc. |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 322 | USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS))) |
| 323 | USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS)) |
| 324 | USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS)) |
| 325 | |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 326 | |
| 327 | # USED_LIB_PATHS - Compute the path of the libraries used so that tools are |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 328 | # rebuilt if libraries change. This has to make sure to handle .a/.so and .o |
| 329 | # files seperately. |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 330 | # |
Chris Lattner | 76d98ba | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 331 | STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS))) |
| 332 | USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS)) |
| 333 | USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS)) |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 334 | |
Chris Lattner | 1fd501f | 2001-10-13 05:10:29 +0000 | [diff] [blame] | 335 | all:: $(TOOLEXENAMES) |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 336 | clean:: |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 337 | $(VERB) rm -f $(TOOLEXENAMES) |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 338 | |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 339 | $(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir |
Chris Lattner | 500f064 | 2002-09-12 17:02:40 +0000 | [diff] [blame] | 340 | @echo ======= Linking $(TOOLNAME) debug executable ======= |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 341 | $(VERB) $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS) |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 342 | |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 343 | $(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir |
Chris Lattner | 500f064 | 2002-09-12 17:02:40 +0000 | [diff] [blame] | 344 | @echo ======= Linking $(TOOLNAME) release executable ======= |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 345 | $(VERB) $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS) |
Chris Lattner | 07c7c19 | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 346 | |
| 347 | endif |
| 348 | |
| 349 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 350 | |
| 351 | #--------------------------------------------------------- |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 352 | .PRECIOUS: $(BUILD_ROOT)/Depend/.dir |
| 353 | .PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 354 | |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 355 | # Create dependencies for the *.cpp files... |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 356 | $(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 357 | $(VERB) $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@ |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 358 | |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 359 | # Create dependencies for the *.c files... |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 360 | $(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 361 | $(VERB) $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@ |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 362 | |
| 363 | # Create .o files in the ObjectFiles directory from the .cpp and .c files... |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 364 | $(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 365 | @echo "Compiling $<" |
| 366 | $(VERB) $(CompileO) $< -o $@ |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 367 | |
Chris Lattner | 068f822 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 368 | #Release/%.o: %.c Release/.dir Depend/.dir |
| 369 | # $(CompileOC) $< -o $@ |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 370 | |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 371 | $(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 372 | @echo "Compiling $<" |
| 373 | $(VERB) $(CompileG) $< -o $@ |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 374 | |
Chris Lattner | 77330fa | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 375 | #Debug/%.o: %.c Debug/.dir |
Chris Lattner | 068f822 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 376 | # $(CompileGC) $< -o $@ |
Vikram S. Adve | fe34689 | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 377 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 378 | # Create a .cpp source file from a flex input file... this uses sed to cut down |
| 379 | # on the warnings emited by GCC... |
| 380 | %.cpp: %.l |
| 381 | flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@ |
| 382 | |
| 383 | # Rule for building the bison parsers... |
| 384 | |
| 385 | %.cpp %.h : %.y |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 386 | $(VERB) bison -v -d -p $(<:%Parser.y=%) $(basename $@).y |
| 387 | $(VERB) mv -f $(basename $@).tab.c $(basename $@).cpp |
| 388 | $(VERB) mv -f $(basename $@).tab.h $(basename $@).h |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 389 | |
| 390 | # To create the directories... |
| 391 | %/.dir: |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 392 | $(VERB) mkdir -p $(@D) |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 393 | @date > $@ |
| 394 | |
Chris Lattner | d711a5e | 2002-07-31 21:32:05 +0000 | [diff] [blame] | 395 | # Clean nukes the tree |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 396 | clean:: |
Misha Brukman | 1326a7c | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 397 | $(VERB) rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Depend |
| 398 | $(VERB) rm -f core *.o *.d *.so *~ *.flc |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 399 | |
| 400 | # If dependancies were generated for the file that included this file, |
| 401 | # include the dependancies now... |
| 402 | # |
Chris Lattner | 01f68c6 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 403 | SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source))))) |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 404 | ifneq ($(SourceDepend),) |
| 405 | include $(SourceDepend) |
| 406 | endif |