Vikram S. Adve | d60aede | 2002-07-09 12:04:21 +0000 | [diff] [blame] | 1 | #===-- Makefile.common - Common make rules for LLVM -------*- makefile -*--==== |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 2 | # |
| 3 | # This file is included by all of the LLVM makefiles. This file defines common |
| 4 | # rules to do things like compile a .cpp file or generate dependancy info. |
| 5 | # These are platform dependant, so this is the file used to specify these |
| 6 | # system dependant operations. |
| 7 | # |
Vikram S. Adve | c214e71 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 8 | # The following functionality can be set by setting incoming variables. |
| 9 | # The variable $(LEVEL) *must* be set: |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 10 | # |
| 11 | # 1. LEVEL - The level of the current subdirectory from the top of the |
| 12 | # MagicStats view. This level should be expressed as a path, for |
| 13 | # example, ../.. for two levels deep. |
| 14 | # |
| 15 | # 2. DIRS - A list of subdirectories to be built. Fake targets are set up |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 16 | # so that each of the targets "all", "install", and "clean" each build |
| 17 | # the subdirectories before the local target. DIRS are guaranteed to be |
| 18 | # built in order. |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 19 | # |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 20 | # 3. PARALLEL_DIRS - A list of subdirectories to be built, but that may be |
| 21 | # built in any order. All DIRS are built in order before PARALLEL_DIRS are |
| 22 | # built, which are then built in any order. |
| 23 | # |
| 24 | # 4. Source - If specified, this sets the source code filenames. If this |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 25 | # is not set, it defaults to be all of the .cpp, .c, .y, and .l files |
Chris Lattner | e001059 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 26 | # in the current directory. Also, if you want to build files in addition |
| 27 | # to the local files, you can use the ExtraSource variable |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 28 | # |
Vikram S. Adve | d60aede | 2002-07-09 12:04:21 +0000 | [diff] [blame] | 29 | #===-----------------------------------------------------------------------==== |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 30 | |
Vikram S. Adve | c214e71 | 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 | e62dbe9 | 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 | 9dd794e | 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 | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 41 | # |
| 42 | #ENABLE_PROFILING = 1 |
Chris Lattner | 9dd794e | 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 | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 47 | #ENABLE_PURIFY = 1 |
Chris Lattner | 9dd794e | 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 | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 52 | #ENABLE_OPTIMIZED = 1 |
| 53 | |
Chris Lattner | 4bb13b8 | 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 | edf1f23 | 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 | b19e59c | 2001-06-29 05:20:16 +0000 | [diff] [blame] | 67 | # Default Rule: Make sure it's also a :: rule |
Chris Lattner | 0095054 | 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 | e16b1b4 | 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 | c214e71 | 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 | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 81 | else |
| 82 | |
Vikram S. Adve | c214e71 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 83 | BUILD_ROOT := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(shell pwd)) |
Chris Lattner | 285af38 | 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 | c214e71 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 92 | BUILD_ROOT_TOP := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(TOP_DIRECTORY)) |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 93 | endif |
| 94 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 95 | #-------------------------------------------------------------------- |
Vikram S. Adve | c214e71 | 2002-08-29 23:28:46 +0000 | [diff] [blame] | 96 | # Variables derived from configuration options... |
Chris Lattner | 0095054 | 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 | dba59ef | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 103 | BURG_OPTS = -I |
| 104 | |
Vikram S. Adve | c214e71 | 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 | 6e39070 | 2001-10-30 20:24:08 +0000 | [diff] [blame] | 106 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 107 | # Shorthand for commonly accessed directories |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 108 | LIBDEBUG := $(BUILD_ROOT_TOP)/lib/Debug |
| 109 | LIBRELEASE := $(BUILD_ROOT_TOP)/lib/Release |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 110 | LIBPROFILE := $(BUILD_ROOT_TOP)/lib/Profile |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 111 | TOOLDEBUG := $(BUILD_ROOT_TOP)/tools/Debug |
| 112 | TOOLRELEASE := $(BUILD_ROOT_TOP)/tools/Release |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 113 | TOOLPROFILE := $(BUILD_ROOT_TOP)/tools/Profile |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 114 | |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 115 | # Verbosity levels |
| 116 | ifdef VERBOSE |
| 117 | VERB := |
| 118 | else |
| 119 | VERB := @ |
| 120 | endif |
| 121 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 122 | #--------------------------------------------------------- |
| 123 | # Compilation options... |
| 124 | #--------------------------------------------------------- |
| 125 | |
Chris Lattner | 9b94701 | 2002-09-19 19:42:24 +0000 | [diff] [blame] | 126 | # Special tools used while building the LLVM tree. Burg is built as part of the |
| 127 | # utils directory. |
| 128 | # |
Vikram S. Adve | 12520cd | 2002-09-20 16:15:57 +0000 | [diff] [blame^] | 129 | BURG := $(LEVEL)/utils/Burg/burg.$(UNAME) |
Chris Lattner | 9b94701 | 2002-09-19 19:42:24 +0000 | [diff] [blame] | 130 | RunBurg := $(BURG) $(BURG_OPTS) |
| 131 | |
Vikram S. Adve | dba59ef | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 132 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 133 | # Enable this for profiling support with 'gprof' |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 134 | # This automatically enables optimized builds. |
Chris Lattner | 18f4701 | 2002-05-10 18:51:54 +0000 | [diff] [blame] | 135 | ifdef ENABLE_PROFILING |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 136 | PROFILE = -pg |
| 137 | ENABLE_OPTIMIZED = 1 |
Chris Lattner | 18f4701 | 2002-05-10 18:51:54 +0000 | [diff] [blame] | 138 | else |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 139 | PROFILE = |
Chris Lattner | 18f4701 | 2002-05-10 18:51:54 +0000 | [diff] [blame] | 140 | endif |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 141 | |
Vikram S. Adve | feeae58 | 2002-09-18 11:55:13 +0000 | [diff] [blame] | 142 | # By default, strip symbol information from executable |
| 143 | ifdef KEEP_SYMBOLS |
| 144 | STRIP = |
| 145 | else |
| 146 | STRIP = -s |
| 147 | endif |
| 148 | |
Chris Lattner | 73e1d0f | 2002-09-13 16:02:26 +0000 | [diff] [blame] | 149 | # Allow gnu extensions... |
| 150 | CPPFLAGS += -D_GNU_SOURCE |
| 151 | |
Chris Lattner | c7acf81 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 152 | # -Wno-unused-parameter |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 153 | CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 154 | |
| 155 | # Compile a file, don't link... |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 156 | Compile := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) |
| 157 | CompileG := $(Compile) -g -D_DEBUG |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 158 | CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fshort-enums ## DISABLE -freg-struct-return because of gcc3.2 bug |
| 159 | CompileP := $(CompileO) $(PROFILE) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 160 | |
| 161 | # Link final executable |
Chris Lattner | 6e39070 | 2001-10-30 20:24:08 +0000 | [diff] [blame] | 162 | |
Chris Lattner | 1917e95 | 2002-07-31 21:32:05 +0000 | [diff] [blame] | 163 | ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1' |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 164 | Link := $(PURIFY) $(CXX) -static |
Chris Lattner | 12604ed | 2002-04-05 18:56:58 +0000 | [diff] [blame] | 165 | else |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 166 | Link := $(CXX) |
Chris Lattner | 12604ed | 2002-04-05 18:56:58 +0000 | [diff] [blame] | 167 | endif |
Vikram S. Adve | feeae58 | 2002-09-18 11:55:13 +0000 | [diff] [blame] | 168 | LinkG := $(Link) -g -L $(LIBDEBUG) $(STRIP) |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 169 | LinkO := $(Link) -O3 -L $(LIBRELEASE) |
Vikram S. Adve | 12520cd | 2002-09-20 16:15:57 +0000 | [diff] [blame^] | 170 | LinkP := $(Link) -O3 -L $(LIBPROFILE) $(PROFILE) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 171 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 172 | # Create one .o file from a bunch of .o files... |
| 173 | Relink = ld -r |
| 174 | |
Chris Lattner | 4bb13b8 | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 175 | # MakeSO - Create a .so file from a .o files... |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 176 | MakeSO := $(CXX) $(MakeSharedObjectOption) |
Chris Lattner | 4bb13b8 | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 177 | MakeSOO := $(MakeSO) -O3 |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 178 | MakeSOP := $(MakeSOO) $(PROFILE) |
Chris Lattner | 4bb13b8 | 2002-09-13 22:14:47 +0000 | [diff] [blame] | 179 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 180 | # Create dependancy file from CPP file, send to stdout. |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 181 | Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 182 | |
| 183 | # Archive a bunch of .o files into a .a file... |
| 184 | AR = ar cq |
| 185 | |
| 186 | #---------------------------------------------------------- |
| 187 | |
| 188 | # Source includes all of the cpp files, and objects are derived from the |
| 189 | # source files... |
Chris Lattner | e001059 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 190 | # The local Makefile can list other Source files via ExtraSource = ... |
Vikram S. Adve | c4bed34 | 2001-10-17 12:33:55 +0000 | [diff] [blame] | 191 | # |
Chris Lattner | e001059 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 192 | Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l) |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 193 | |
Chris Lattner | 4fa128c | 2002-07-25 15:01:19 +0000 | [diff] [blame] | 194 | Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source))))) |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 195 | ObjectsO := $(addprefix $(BUILD_ROOT)/Release/,$(Objs)) |
| 196 | ObjectsP := $(addprefix $(BUILD_ROOT)/Profile/,$(Objs)) |
Chris Lattner | 9b94701 | 2002-09-19 19:42:24 +0000 | [diff] [blame] | 197 | ObjectsG := $(addprefix $(BUILD_ROOT)/Debug/,$(Objs)) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 198 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 199 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 200 | #--------------------------------------------------------- |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 201 | # Handle the DIRS and PARALLEL_DIRS options |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 202 | #--------------------------------------------------------- |
| 203 | |
Anand Shukla | 7c7a07e | 2002-09-18 04:29:30 +0000 | [diff] [blame] | 204 | ifdef DIRS |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 205 | all install clean :: |
Chris Lattner | 16d1f73 | 2002-09-17 23:45:34 +0000 | [diff] [blame] | 206 | $(VERB) for dir in ${DIRS}; do \ |
Chris Lattner | f1ffd99 | 2002-09-17 23:35:02 +0000 | [diff] [blame] | 207 | (cd $$dir; $(MAKE) $@) || exit 1; \ |
| 208 | done |
Anand Shukla | 7c7a07e | 2002-09-18 04:29:30 +0000 | [diff] [blame] | 209 | endif |
Chris Lattner | a8abc22 | 2002-09-18 03:22:27 +0000 | [diff] [blame] | 210 | |
| 211 | # Handle PARALLEL_DIRS |
| 212 | ifdef PARALLEL_DIRS |
| 213 | all :: $(addsuffix /.makeall , $(PARALLEL_DIRS)) |
| 214 | install :: $(addsuffix /.makeinstall, $(PARALLEL_DIRS)) |
| 215 | clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS)) |
| 216 | |
| 217 | %/.makeall %/.makeinstall %/.makeclean: |
| 218 | $(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@) |
| 219 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 220 | endif |
| 221 | |
| 222 | #--------------------------------------------------------- |
| 223 | # Handle the LIBRARYNAME option - used when building libs... |
| 224 | #--------------------------------------------------------- |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 225 | # |
| 226 | # When libraries are built, they are allowed to optionally define the |
| 227 | # DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file |
| 228 | # from being built for the library. This .o files may then be linked to by a |
| 229 | # tool if the tool does not need (or want) the semantics a .a file provides |
| 230 | # (linking in only object files that are "needed"). If a library is never to |
| 231 | # be used in this way, it is better to define DONT_BUILD_RELINKED, and define |
| 232 | # BUILD_ARCHIVE instead. |
| 233 | # |
| 234 | # 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] | 235 | # 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] | 236 | # linked into tools (for example gccas) even if they only use one of the parts |
| 237 | # of it. For this reason, sometimes it's useful to use libraries as .a files. |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 238 | |
| 239 | ifdef LIBRARYNAME |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 240 | |
Chris Lattner | 2a548c5 | 2002-09-16 22:36:42 +0000 | [diff] [blame] | 241 | # Make sure there isn't any extranous whitespace on the LIBRARYNAME option |
Chris Lattner | ccb4ebd | 2002-09-16 22:34:56 +0000 | [diff] [blame] | 242 | LIBRARYNAME := $(strip $(LIBRARYNAME)) |
| 243 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 244 | LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 245 | LIBNAME_P := $(LIBPROFILE)/lib$(LIBRARYNAME).so |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 246 | LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so |
| 247 | LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 248 | LIBNAME_AP := $(LIBPROFILE)/lib$(LIBRARYNAME).a |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 249 | LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a |
| 250 | LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 251 | LIBNAME_OBJP := $(LIBPROFILE)/$(LIBRARYNAME).o |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 252 | LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 253 | |
Vikram S. Adve | 60f5606 | 2002-08-02 18:34:12 +0000 | [diff] [blame] | 254 | |
| 255 | ifndef ENABLE_OPTIMIZED |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 256 | BUILD_LIBNAME_G := $(LIBNAME_G) |
| 257 | ifndef DONT_BUILD_RELINKED |
| 258 | BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG) |
| 259 | endif |
| 260 | ifdef BUILD_ARCHIVE |
| 261 | BUILD_LIBNAME_AG := $(LIBNAME_AG) |
| 262 | endif |
Vikram S. Adve | 60f5606 | 2002-08-02 18:34:12 +0000 | [diff] [blame] | 263 | endif |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 264 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 265 | # If optimized builds are enabled... |
| 266 | ifdef ENABLE_OPTIMIZED |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 267 | ifdef ENABLE_PROFILING |
| 268 | BUILD_LIBNAME_O := $(LIBNAME_P) |
| 269 | ifndef DONT_BUILD_RELINKED |
| 270 | BUILD_LIBNAME_OBJO := $(LIBNAME_OBJP) |
| 271 | endif |
| 272 | ifdef BUILD_ARCHIVE |
| 273 | BUILD_LIBNAME_AO := $(LIBNAME_AP) |
| 274 | endif |
| 275 | else |
| 276 | BUILD_LIBNAME_O := $(LIBNAME_O) |
| 277 | ifndef DONT_BUILD_RELINKED |
| 278 | BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO) |
| 279 | endif |
| 280 | ifdef BUILD_ARCHIVE |
| 281 | BUILD_LIBNAME_AO := $(LIBNAME_AO) |
| 282 | endif |
| 283 | endif |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 284 | endif |
| 285 | |
| 286 | all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug |
| 287 | all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 288 | all:: $(BUILD_LIBNAME_AP) $(BUILD_LIBNAME_OBJP) # Profile |
| 289 | dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) $(BUILD_LIBNAME_P) # .so files |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 290 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 291 | $(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 292 | @echo ======= Linking $(LIBRARYNAME) release library ======= |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 293 | $(VERB) $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 294 | |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 295 | $(LIBNAME_P): $(ObjectsP) $(LibSubDirs) $(LIBPROFILE)/.dir |
| 296 | @echo ======= Linking $(LIBRARYNAME) profile library ======= |
| 297 | $(VERB) $(MakeSOP) -o $@ $(ObjectsP) $(LibSubDirs) $(LibLinkOpts) |
| 298 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 299 | $(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 300 | @echo ======= Linking $(LIBRARYNAME) debug library ======= |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 301 | $(VERB) $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 302 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 303 | $(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 304 | @echo ======= Linking $(LIBRARYNAME) release library ======= |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 305 | @rm -f $@ |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 306 | $(VERB) $(AR) $@ $(ObjectsO) $(LibSubDirs) |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 307 | |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 308 | $(LIBNAME_AP): $(ObjectsP) $(LibSubDirs) $(LIBPROFILE)/.dir |
| 309 | @echo ======= Linking $(LIBRARYNAME) profile library ======= |
| 310 | @rm -f $@ |
| 311 | $(VERB) $(AR) $@ $(ObjectsP) $(LibSubDirs) |
| 312 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 313 | $(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 314 | @echo ======= Linking $(LIBRARYNAME) debug library ======= |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 315 | @rm -f $@ |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 316 | $(VERB) $(AR) $@ $(ObjectsG) $(LibSubDirs) |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 317 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 318 | $(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 319 | @echo "Linking $@" |
| 320 | $(VERB) $(Relink) -o $@ $(ObjectsO) $(LibSubDirs) |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 321 | |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 322 | $(LIBNAME_OBJP): $(ObjectsP) $(LibSubDirs) $(LIBPROFILE)/.dir |
| 323 | @echo "Linking $@" |
| 324 | $(VERB) $(Relink) -o $@ $(ObjectsP) $(LibSubDirs) |
| 325 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 326 | $(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 327 | $(VERB) $(Relink) -o $@ $(ObjectsG) $(LibSubDirs) |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 328 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 329 | endif |
| 330 | |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 331 | #------------------------------------------------------------------------ |
Vikram S. Adve | 0193d5e | 2001-10-10 22:35:00 +0000 | [diff] [blame] | 332 | # Create a TAGS database for emacs |
| 333 | #------------------------------------------------------------------------ |
| 334 | |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 335 | ifeq ($(LEVEL), .) |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 336 | tags: |
Chris Lattner | 18f4701 | 2002-05-10 18:51:54 +0000 | [diff] [blame] | 337 | etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'` |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 338 | all:: tags |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 339 | endif |
Vikram S. Adve | 0193d5e | 2001-10-10 22:35:00 +0000 | [diff] [blame] | 340 | |
| 341 | #------------------------------------------------------------------------ |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 342 | # Handle the TOOLNAME option - used when building tool executables... |
| 343 | #------------------------------------------------------------------------ |
| 344 | # |
| 345 | # 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] | 346 | # libraries (and the order of the libs) that should be linked to the |
| 347 | # tool. USEDLIBS should contain a list of library names (some with .a extension) |
| 348 | # 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] | 349 | # |
| 350 | ifdef TOOLNAME |
| 351 | |
| 352 | # TOOLEXENAME* - These compute the output filenames to generate... |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 353 | TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME) |
| 354 | TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME) |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 355 | TOOLEXENAME_P := $(BUILD_ROOT_TOP)/tools/Profile/$(TOOLNAME) |
| 356 | |
| 357 | ifndef ENABLE_OPTIMIZED |
| 358 | TOOLEXENAMES := $(TOOLEXENAME_G) |
| 359 | else |
| 360 | ifdef ENABLE_PROFILING |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 361 | TOOLEXENAMES := $(TOOLEXENAME_P) |
Vikram S. Adve | 12520cd | 2002-09-20 16:15:57 +0000 | [diff] [blame^] | 362 | else |
| 363 | TOOLEXENAMES := $(TOOLEXENAME_O) |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 364 | endif |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 365 | endif |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 366 | |
| 367 | # USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc. |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 368 | USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS))) |
| 369 | USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS)) |
| 370 | USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS)) |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 371 | USED_LIBS_OPTIONS_P := $(patsubst %.o, $(LIBPROFILE)/%.o,$(USED_LIBS_OPTIONS)) |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 372 | |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 373 | |
| 374 | # 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] | 375 | # rebuilt if libraries change. This has to make sure to handle .a/.so and .o |
| 376 | # files seperately. |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 377 | # |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 378 | STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS))) |
| 379 | USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS)) |
| 380 | USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS)) |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 381 | USED_LIB_PATHS_P := $(addprefix $(LIBPROFILE)/, $(STATICUSEDLIBS)) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 382 | |
Chris Lattner | 669bd7c | 2001-10-13 05:10:29 +0000 | [diff] [blame] | 383 | all:: $(TOOLEXENAMES) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 384 | clean:: |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 385 | $(VERB) rm -f $(TOOLEXENAMES) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 386 | |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 387 | $(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir |
Chris Lattner | 287d443 | 2002-09-12 17:02:40 +0000 | [diff] [blame] | 388 | @echo ======= Linking $(TOOLNAME) debug executable ======= |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 389 | $(VERB) $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 390 | |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 391 | $(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir |
Chris Lattner | 287d443 | 2002-09-12 17:02:40 +0000 | [diff] [blame] | 392 | @echo ======= Linking $(TOOLNAME) release executable ======= |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 393 | $(VERB) $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 394 | |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 395 | $(TOOLEXENAME_P): $(ObjectsP) $(USED_LIB_PATHS_P) $(BUILD_ROOT_TOP)/tools/Profile/.dir |
| 396 | @echo ======= Linking $(TOOLNAME) profile executable ======= |
| 397 | $(VERB) $(LinkP) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_P) $(TOOLLINKOPTS) |
| 398 | |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 399 | endif |
| 400 | |
| 401 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 402 | |
| 403 | #--------------------------------------------------------- |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 404 | .PRECIOUS: $(BUILD_ROOT)/Depend/.dir |
| 405 | .PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 406 | |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 407 | # Create dependencies for the *.cpp files... |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 408 | $(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 409 | $(VERB) $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Profile/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@ |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 410 | |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 411 | # Create dependencies for the *.c files... |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 412 | $(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 413 | $(VERB) $(Depend) $< | sed 's|$*\.o *|Release/& Profile/& Debug/& Depend/$(@F)|g' > $@ |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 414 | |
| 415 | # Create .o files in the ObjectFiles directory from the .cpp and .c files... |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 416 | $(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 417 | @echo "Compiling $<" |
| 418 | $(VERB) $(CompileO) $< -o $@ |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 419 | |
Chris Lattner | c7acf81 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 420 | #Release/%.o: %.c Release/.dir Depend/.dir |
| 421 | # $(CompileOC) $< -o $@ |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 422 | |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 423 | $(BUILD_ROOT)/Profile/%.o: %.cpp $(BUILD_ROOT)/Profile/.dir |
| 424 | @echo "Compiling $<" |
| 425 | $(VERB) $(CompileP) $< -o $@ |
| 426 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 427 | $(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 428 | @echo "Compiling $<" |
| 429 | $(VERB) $(CompileG) $< -o $@ |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 430 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 431 | #Debug/%.o: %.c Debug/.dir |
Chris Lattner | c7acf81 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 432 | # $(CompileGC) $< -o $@ |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 433 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 434 | # Create a .cpp source file from a flex input file... this uses sed to cut down |
| 435 | # on the warnings emited by GCC... |
| 436 | %.cpp: %.l |
| 437 | flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@ |
| 438 | |
| 439 | # Rule for building the bison parsers... |
| 440 | |
| 441 | %.cpp %.h : %.y |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 442 | $(VERB) bison -v -d -p $(<:%Parser.y=%) $(basename $@).y |
| 443 | $(VERB) mv -f $(basename $@).tab.c $(basename $@).cpp |
| 444 | $(VERB) mv -f $(basename $@).tab.h $(basename $@).h |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 445 | |
| 446 | # To create the directories... |
| 447 | %/.dir: |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 448 | $(VERB) mkdir -p $(@D) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 449 | @date > $@ |
| 450 | |
Chris Lattner | 1917e95 | 2002-07-31 21:32:05 +0000 | [diff] [blame] | 451 | # Clean nukes the tree |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 452 | clean:: |
Vikram S. Adve | 41e7891 | 2002-09-20 14:03:13 +0000 | [diff] [blame] | 453 | $(VERB) rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Profile $(BUILD_ROOT)/Depend |
Misha Brukman | b5f096f | 2002-09-12 16:05:39 +0000 | [diff] [blame] | 454 | $(VERB) rm -f core *.o *.d *.so *~ *.flc |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 455 | |
| 456 | # If dependancies were generated for the file that included this file, |
| 457 | # include the dependancies now... |
| 458 | # |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 459 | SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source))))) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 460 | ifneq ($(SourceDepend),) |
| 461 | include $(SourceDepend) |
| 462 | endif |