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 | # |
| 8 | # The following functionality may be set by setting incoming variables: |
| 9 | # |
| 10 | # 1. LEVEL - The level of the current subdirectory from the top of the |
| 11 | # MagicStats view. This level should be expressed as a path, for |
| 12 | # example, ../.. for two levels deep. |
| 13 | # |
| 14 | # 2. DIRS - A list of subdirectories to be built. Fake targets are set up |
| 15 | # so that each of the targets "all", "install", and "clean" each build. |
| 16 | # the subdirectories before the local target. |
| 17 | # |
| 18 | # 3. Source - If specified, this sets the source code filenames. If this |
| 19 | # 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] | 20 | # in the current directory. Also, if you want to build files in addition |
| 21 | # to the local files, you can use the ExtraSource variable |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 22 | # |
Vikram S. Adve | d60aede | 2002-07-09 12:04:21 +0000 | [diff] [blame] | 23 | #===-----------------------------------------------------------------------==== |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 24 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 25 | # 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] | 26 | # make command line (ie, make ENABLE_PROFILING=1) |
| 27 | # |
| 28 | |
| 29 | # When ENABLE_PROFILING is enabled, the llvm source base is built with profile |
| 30 | # information to allow gprof to be used to get execution frequencies. |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 31 | # |
| 32 | #ENABLE_PROFILING = 1 |
Chris Lattner | 9dd794e | 2002-08-03 20:19:30 +0000 | [diff] [blame] | 33 | |
| 34 | # When ENABLE_PURIFY is enabled, the LLVM tools are linked with purify (which |
| 35 | # must be locally installed) to allow for some automated memory error debugging. |
| 36 | # |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 37 | #ENABLE_PURIFY = 1 |
Chris Lattner | 9dd794e | 2002-08-03 20:19:30 +0000 | [diff] [blame] | 38 | |
| 39 | # When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are |
| 40 | # turned on, and Debug builds are turned off. |
| 41 | # |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 42 | #ENABLE_OPTIMIZED = 1 |
| 43 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 44 | # If you do not want to build into /shared, uncomment this |
| 45 | # |
| 46 | #BUILD_ROOT = . |
| 47 | |
Chris Lattner | edf1f23 | 2002-07-23 19:21:31 +0000 | [diff] [blame] | 48 | ifdef SHARED_LIBRARY |
| 49 | # if SHARED_LIBRARY is specified, the default is to build the dynamic lib |
| 50 | dynamic :: |
| 51 | endif |
| 52 | |
Chris Lattner | b19e59c | 2001-06-29 05:20:16 +0000 | [diff] [blame] | 53 | # Default Rule: Make sure it's also a :: rule |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 54 | all :: |
| 55 | |
| 56 | # Default for install is to at least build everything... |
| 57 | install :: |
| 58 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 59 | |
| 60 | # Figure out which directory to build stuff into. We want to build into the |
| 61 | # /shared directory by default because it is guaranteed to be local to the |
| 62 | # current machine. |
| 63 | # |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 64 | ifdef BUILD_ROOT |
| 65 | BUILD_ROOT_TOP := $(LEVEL) |
| 66 | else |
| 67 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 68 | LOGIN_NAME := $(shell whoami) |
| 69 | CUR_DIRECTORY := $(shell pwd) |
| 70 | BUILD_ROOT := /shared/$(LOGIN_NAME)$(patsubst $(HOME)%,%,$(CUR_DIRECTORY)) |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 71 | |
| 72 | # Calculate the BUILD_ROOT_TOP variable, which is the top of the llvm/ tree. |
| 73 | # Note that although this is just equal to $(BUILD_ROOT)/$(LEVEL), we cannot use |
| 74 | # this expression because some of the directories on the source tree may not |
| 75 | # exist in the build tree (for example the test/ heirarchy). Thus we evaluate |
| 76 | # the directory to eliminate the ../'s |
| 77 | # |
| 78 | TOP_DIRECTORY := $(shell cd $(LEVEL); pwd) |
| 79 | BUILD_ROOT_TOP := /shared/$(LOGIN_NAME)$(patsubst $(HOME)%,%,$(TOP_DIRECTORY)) |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 80 | endif |
| 81 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 82 | #-------------------------------------------------------------------- |
| 83 | # Installation configuration options... |
| 84 | #-------------------------------------------------------------------- |
| 85 | |
| 86 | #BinInstDir=/usr/local/bin |
| 87 | #LibInstDir=/usrl/local/lib/xxx |
| 88 | #DocInstDir=/usr/doc/xxx |
| 89 | |
Vikram S. Adve | dba59ef | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 90 | BURG = /home/vadve/vadve/Research/DynOpt/Burg/burg |
| 91 | BURG_OPTS = -I |
| 92 | |
Chris Lattner | 6e39070 | 2001-10-30 20:24:08 +0000 | [diff] [blame] | 93 | |
Chris Lattner | ec6bed2 | 2002-04-07 06:18:40 +0000 | [diff] [blame] | 94 | PURIFY = /usr/dcs/applications/purify/bin/purify -cache-dir="$(HOME)/purifycache" -chain-length="30" -messages=all |
Chris Lattner | 6e39070 | 2001-10-30 20:24:08 +0000 | [diff] [blame] | 95 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 96 | # Shorthand for commonly accessed directories |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 97 | LIBDEBUG := $(BUILD_ROOT_TOP)/lib/Debug |
| 98 | LIBRELEASE := $(BUILD_ROOT_TOP)/lib/Release |
| 99 | TOOLDEBUG := $(BUILD_ROOT_TOP)/tools/Debug |
| 100 | TOOLRELEASE := $(BUILD_ROOT_TOP)/tools/Release |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 101 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 102 | #--------------------------------------------------------- |
| 103 | # Compilation options... |
| 104 | #--------------------------------------------------------- |
| 105 | |
Vikram S. Adve | dba59ef | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 106 | # Special tools used while building |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 107 | RunBurg := $(BURG) $(BURG_OPTS) |
Vikram S. Adve | dba59ef | 2001-08-06 19:01:20 +0000 | [diff] [blame] | 108 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 109 | # Enable this for profiling support with 'gprof' |
Chris Lattner | 18f4701 | 2002-05-10 18:51:54 +0000 | [diff] [blame] | 110 | ifdef ENABLE_PROFILING |
| 111 | PROFILE = -pg |
| 112 | else |
| 113 | PROFILE = |
| 114 | endif |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 115 | |
Chris Lattner | c7acf81 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 116 | # -Wno-unused-parameter |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 117 | CompileCommonOpts := $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 118 | |
| 119 | # Compile a file, don't link... |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 120 | Compile := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) |
| 121 | CompileG := $(Compile) -g -D_DEBUG |
| 122 | CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 123 | |
| 124 | # Link final executable |
Chris Lattner | 6e39070 | 2001-10-30 20:24:08 +0000 | [diff] [blame] | 125 | |
Chris Lattner | 1917e95 | 2002-07-31 21:32:05 +0000 | [diff] [blame] | 126 | ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1' |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 127 | Link := $(PURIFY) $(CXX) $(PROFILE) -static |
Chris Lattner | 12604ed | 2002-04-05 18:56:58 +0000 | [diff] [blame] | 128 | else |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 129 | Link := $(CXX) $(PROFILE) |
Chris Lattner | 12604ed | 2002-04-05 18:56:58 +0000 | [diff] [blame] | 130 | endif |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 131 | LinkG := $(Link) -g -L $(LIBDEBUG) |
| 132 | LinkO := $(Link) -O3 -L $(LIBRELEASE) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 133 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 134 | # Create a .so file from a .o files... |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 135 | #MakeSO := $(CXX) -shared $(PROFILE) |
| 136 | MakeSO := $(CXX) -G $(PROFILE) |
| 137 | MakeSOO := $(MakeSO) -O3 |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 138 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 139 | # Create one .o file from a bunch of .o files... |
| 140 | Relink = ld -r |
| 141 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 142 | # Create dependancy file from CPP file, send to stdout. |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 143 | Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 144 | |
| 145 | # Archive a bunch of .o files into a .a file... |
| 146 | AR = ar cq |
| 147 | |
| 148 | #---------------------------------------------------------- |
| 149 | |
| 150 | # Source includes all of the cpp files, and objects are derived from the |
| 151 | # source files... |
Chris Lattner | e001059 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 152 | # The local Makefile can list other Source files via ExtraSource = ... |
Vikram S. Adve | c4bed34 | 2001-10-17 12:33:55 +0000 | [diff] [blame] | 153 | # |
Chris Lattner | e001059 | 2001-10-18 01:48:09 +0000 | [diff] [blame] | 154 | Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l) |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 155 | |
Chris Lattner | 4fa128c | 2002-07-25 15:01:19 +0000 | [diff] [blame] | 156 | Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source))))) |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 157 | ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs))) |
| 158 | ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs)) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 159 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 160 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 161 | #--------------------------------------------------------- |
| 162 | # Handle the DIRS option |
| 163 | #--------------------------------------------------------- |
| 164 | |
| 165 | ifdef DIRS # Only do this if we're using DIRS! |
| 166 | |
| 167 | all :: $(addsuffix /.makeall , $(DIRS)) |
| 168 | install :: $(addsuffix /.makeinstall, $(DIRS)) |
| 169 | clean :: $(addsuffix /.makeclean , $(DIRS)) |
| 170 | |
| 171 | %/.makeall %/.makeclean %/.makeinstall: |
| 172 | cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@) |
| 173 | endif |
| 174 | |
| 175 | #--------------------------------------------------------- |
| 176 | # Handle the LIBRARYNAME option - used when building libs... |
| 177 | #--------------------------------------------------------- |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 178 | # |
| 179 | # When libraries are built, they are allowed to optionally define the |
| 180 | # DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file |
| 181 | # from being built for the library. This .o files may then be linked to by a |
| 182 | # tool if the tool does not need (or want) the semantics a .a file provides |
| 183 | # (linking in only object files that are "needed"). If a library is never to |
| 184 | # be used in this way, it is better to define DONT_BUILD_RELINKED, and define |
| 185 | # BUILD_ARCHIVE instead. |
| 186 | # |
| 187 | # 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] | 188 | # 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] | 189 | # linked into tools (for example gccas) even if they only use one of the parts |
| 190 | # 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] | 191 | |
| 192 | ifdef LIBRARYNAME |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 193 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 194 | LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so |
| 195 | LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so |
| 196 | LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a |
| 197 | LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a |
| 198 | LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o |
| 199 | LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 200 | |
Vikram S. Adve | 60f5606 | 2002-08-02 18:34:12 +0000 | [diff] [blame] | 201 | |
| 202 | ifndef ENABLE_OPTIMIZED |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 203 | BUILD_LIBNAME_G := $(LIBNAME_G) |
| 204 | ifndef DONT_BUILD_RELINKED |
| 205 | BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG) |
| 206 | endif |
| 207 | ifdef BUILD_ARCHIVE |
| 208 | BUILD_LIBNAME_AG := $(LIBNAME_AG) |
| 209 | endif |
Vikram S. Adve | 60f5606 | 2002-08-02 18:34:12 +0000 | [diff] [blame] | 210 | endif |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 211 | |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 212 | # If optimized builds are enabled... |
| 213 | ifdef ENABLE_OPTIMIZED |
| 214 | BUILD_LIBNAME_O := $(LIBNAME_O) |
| 215 | ifndef DONT_BUILD_RELINKED |
| 216 | BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO) |
| 217 | endif |
| 218 | ifdef BUILD_ARCHIVE |
| 219 | BUILD_LIBNAME_AO := $(LIBNAME_AO) |
| 220 | endif |
| 221 | endif |
| 222 | |
| 223 | all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug |
| 224 | all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release |
| 225 | dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files |
| 226 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 227 | $(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 228 | @echo ======= Linking $(LIBRARYNAME) release library ======= |
| 229 | $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts) |
| 230 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 231 | $(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 232 | @echo ======= Linking $(LIBRARYNAME) debug library ======= |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 233 | $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 234 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 235 | $(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 236 | @echo ======= Linking $(LIBRARYNAME) release library ======= |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 237 | @rm -f $@ |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 238 | $(AR) $@ $(ObjectsO) $(LibSubDirs) |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 239 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 240 | $(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 241 | @echo ======= Linking $(LIBRARYNAME) debug library ======= |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 242 | @rm -f $@ |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 243 | $(AR) $@ $(ObjectsG) $(LibSubDirs) |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 244 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 245 | $(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 246 | $(Relink) -o $@ $(ObjectsO) $(LibSubDirs) |
| 247 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 248 | $(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 249 | $(Relink) -o $@ $(ObjectsG) $(LibSubDirs) |
| 250 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 251 | endif |
| 252 | |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 253 | #------------------------------------------------------------------------ |
Vikram S. Adve | 0193d5e | 2001-10-10 22:35:00 +0000 | [diff] [blame] | 254 | # Create a TAGS database for emacs |
| 255 | #------------------------------------------------------------------------ |
| 256 | |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 257 | ifeq ($(LEVEL), .) |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 258 | tags: |
Chris Lattner | 18f4701 | 2002-05-10 18:51:54 +0000 | [diff] [blame] | 259 | 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] | 260 | all:: tags |
Vikram S. Adve | 022d06c | 2001-10-13 12:26:59 +0000 | [diff] [blame] | 261 | endif |
Vikram S. Adve | 0193d5e | 2001-10-10 22:35:00 +0000 | [diff] [blame] | 262 | |
| 263 | #------------------------------------------------------------------------ |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 264 | # Handle the TOOLNAME option - used when building tool executables... |
| 265 | #------------------------------------------------------------------------ |
| 266 | # |
| 267 | # 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] | 268 | # libraries (and the order of the libs) that should be linked to the |
| 269 | # tool. USEDLIBS should contain a list of library names (some with .a extension) |
| 270 | # 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] | 271 | # |
| 272 | ifdef TOOLNAME |
| 273 | |
| 274 | # TOOLEXENAME* - These compute the output filenames to generate... |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 275 | TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME) |
| 276 | TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME) |
| 277 | TOOLEXENAMES := $(TOOLEXENAME_G) |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 278 | ifdef ENABLE_OPTIMIZED |
| 279 | TOOLEXENAMES += $(TOOLEXENAME_O) |
| 280 | endif |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 281 | |
| 282 | # USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc. |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 283 | USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS))) |
| 284 | USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS)) |
| 285 | USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS)) |
| 286 | |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 287 | |
| 288 | # 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] | 289 | # rebuilt if libraries change. This has to make sure to handle .a/.so and .o |
| 290 | # files seperately. |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 291 | # |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 292 | STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS))) |
| 293 | USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS)) |
| 294 | USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS)) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 295 | |
Chris Lattner | 669bd7c | 2001-10-13 05:10:29 +0000 | [diff] [blame] | 296 | all:: $(TOOLEXENAMES) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 297 | clean:: |
| 298 | rm -f $(TOOLEXENAMES) |
| 299 | |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 300 | $(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 301 | $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 302 | |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 303 | $(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir |
Chris Lattner | e62dbe9 | 2002-07-23 17:56:16 +0000 | [diff] [blame] | 304 | $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS) |
Chris Lattner | 1cbc29f | 2001-09-07 22:57:58 +0000 | [diff] [blame] | 305 | |
| 306 | endif |
| 307 | |
| 308 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 309 | |
| 310 | #--------------------------------------------------------- |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 311 | .PRECIOUS: $(BUILD_ROOT)/Depend/.dir |
| 312 | .PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 313 | |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 314 | # Create dependencies for the *.cpp files... |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 315 | $(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir |
Chris Lattner | 43db05a | 2002-08-09 19:18:12 +0000 | [diff] [blame] | 316 | $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@ |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 317 | |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 318 | # Create dependencies for the *.c files... |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 319 | $(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 320 | $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@ |
| 321 | |
| 322 | # 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] | 323 | $(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 324 | $(CompileO) $< -o $@ |
| 325 | |
Chris Lattner | c7acf81 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 326 | #Release/%.o: %.c Release/.dir Depend/.dir |
| 327 | # $(CompileOC) $< -o $@ |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 328 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 329 | $(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 330 | $(CompileG) $< -o $@ |
| 331 | |
Chris Lattner | e16b1b4 | 2002-08-09 15:41:55 +0000 | [diff] [blame] | 332 | #Debug/%.o: %.c Debug/.dir |
Chris Lattner | c7acf81 | 2002-01-23 05:46:01 +0000 | [diff] [blame] | 333 | # $(CompileGC) $< -o $@ |
Vikram S. Adve | 112a72c | 2001-07-15 13:16:47 +0000 | [diff] [blame] | 334 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 335 | # Create a .cpp source file from a flex input file... this uses sed to cut down |
| 336 | # on the warnings emited by GCC... |
| 337 | %.cpp: %.l |
| 338 | flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@ |
| 339 | |
| 340 | # Rule for building the bison parsers... |
| 341 | |
| 342 | %.cpp %.h : %.y |
Chris Lattner | 18f4701 | 2002-05-10 18:51:54 +0000 | [diff] [blame] | 343 | bison -v -d -p $(<:%Parser.y=%) $(basename $@).y |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 344 | mv -f $(basename $@).tab.c $(basename $@).cpp |
| 345 | mv -f $(basename $@).tab.h $(basename $@).h |
| 346 | |
| 347 | # To create the directories... |
| 348 | %/.dir: |
| 349 | mkdir -p $(@D) |
| 350 | @date > $@ |
| 351 | |
Chris Lattner | 1917e95 | 2002-07-31 21:32:05 +0000 | [diff] [blame] | 352 | # Clean nukes the tree |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 353 | clean:: |
| 354 | rm -rf Debug Release Depend |
| 355 | rm -f core *.o *.d *.so *~ *.flc |
| 356 | |
| 357 | # If dependancies were generated for the file that included this file, |
| 358 | # include the dependancies now... |
| 359 | # |
Chris Lattner | 285af38 | 2002-08-12 21:19:28 +0000 | [diff] [blame] | 360 | SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source))))) |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 361 | ifneq ($(SourceDepend),) |
| 362 | include $(SourceDepend) |
| 363 | endif |