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