20a991c4cb9322034b7f961a5fca1b6d576932e0
[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 #---------------------------------------------------------
101 # Compilation options...
102 #---------------------------------------------------------
103
104 # Special tools used while building
105 RunBurg  := $(BURG) $(BURG_OPTS)
106
107 # Enable this for profiling support with 'gprof'
108 ifdef ENABLE_PROFILING
109 PROFILE = -pg
110 else
111 PROFILE =
112 endif
113
114 # -Wno-unused-parameter
115 CompileCommonOpts := $(PROFILE) -Wall -W  -Wwrite-strings -Wno-unused -I$(LEVEL)/include
116
117 # Compile a file, don't link...
118 Compile  := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
119 CompileG := $(Compile) -g  -D_DEBUG
120 CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
121
122 # Link final executable
123
124 ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1'
125 Link     := $(PURIFY) $(CXX) $(PROFILE) -static
126 else
127 Link     := $(CXX) $(PROFILE)
128 endif
129 LinkG    := $(Link) -g  -L $(LIBDEBUG)
130 LinkO    := $(Link) -O3 -L $(LIBRELEASE)
131
132 # Create a .so file from a .o files...
133 #MakeSO   := $(CXX) -shared $(PROFILE)
134 MakeSO   := $(CXX) -G $(PROFILE)
135 MakeSOO  := $(MakeSO) -O3
136
137 # Create one .o file from a bunch of .o files...
138 Relink = ld -r
139
140 # Create dependancy file from CPP file, send to stdout.
141 Depend   := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS) 
142
143 # Archive a bunch of .o files into a .a file...
144 AR       = ar cq 
145
146 #----------------------------------------------------------
147
148 # Source includes all of the cpp files, and objects are derived from the
149 # source files...
150 # The local Makefile can list other Source files via ExtraSource = ...
151
152 Source  := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
153
154 Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
155 ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs)))
156 ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
157
158
159 #---------------------------------------------------------
160 # Handle the DIRS option
161 #---------------------------------------------------------
162
163 ifdef DIRS  # Only do this if we're using DIRS!
164
165 all     :: $(addsuffix /.makeall    , $(DIRS))
166 install :: $(addsuffix /.makeinstall, $(DIRS))
167 clean   :: $(addsuffix /.makeclean  , $(DIRS))
168
169 %/.makeall %/.makeclean %/.makeinstall:
170         cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
171 endif
172
173 #---------------------------------------------------------
174 # Handle the LIBRARYNAME option - used when building libs...
175 #---------------------------------------------------------
176 #
177 #  When libraries are built, they are allowed to optionally define the
178 #  DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
179 #  from being built for the library. This .o files may then be linked to by a
180 #  tool if the tool does not need (or want) the semantics a .a file provides
181 #  (linking in only object files that are "needed").  If a library is never to
182 #  be used in this way, it is better to define DONT_BUILD_RELINKED, and define
183 #  BUILD_ARCHIVE instead.
184 #
185 #  Some libraries must be built as .a files (libscalar for example) because if
186 #  it's built as a .o file, then all of the constituent .o files in it will be
187 #  linked into tools (for example gccas) even if they only use one of the parts
188 #  of it.  For this reason, sometimes it's useful to use libraries as .a files.
189
190 ifdef LIBRARYNAME
191
192 LIBNAME_O    := $(LIBRELEASE)/lib$(LIBRARYNAME).so
193 LIBNAME_G    := $(LIBDEBUG)/lib$(LIBRARYNAME).so
194 LIBNAME_AO   := $(LIBRELEASE)/lib$(LIBRARYNAME).a
195 LIBNAME_AG   := $(LIBDEBUG)/lib$(LIBRARYNAME).a
196 LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
197 LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
198
199
200 ifndef ENABLE_OPTIMIZED
201 BUILD_LIBNAME_G := $(LIBNAME_G)
202 ifndef DONT_BUILD_RELINKED
203 BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
204 endif
205 ifdef BUILD_ARCHIVE
206 BUILD_LIBNAME_AG := $(LIBNAME_AG)
207 endif
208 endif
209
210 # If optimized builds are enabled...
211 ifdef ENABLE_OPTIMIZED
212 BUILD_LIBNAME_O  := $(LIBNAME_O)
213 ifndef DONT_BUILD_RELINKED
214 BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
215 endif
216 ifdef BUILD_ARCHIVE
217 BUILD_LIBNAME_AO := $(LIBNAME_AO)
218 endif
219 endif
220
221 all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG)      # Debug
222 all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO)      # Release
223 dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O)      # .so files
224
225 $(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
226         @echo ======= Linking $(LIBRARYNAME) release library =======
227         $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
228
229 $(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
230         @echo ======= Linking $(LIBRARYNAME) debug library =======
231         $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
232
233 $(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
234         @echo ======= Linking $(LIBRARYNAME) release library =======
235         @rm -f $@
236         $(AR) $@ $(ObjectsO) $(LibSubDirs)
237
238 $(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
239         @echo ======= Linking $(LIBRARYNAME) debug library =======
240         @rm -f $@
241         $(AR) $@ $(ObjectsG) $(LibSubDirs)
242
243 $(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
244         $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
245
246 $(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
247         $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
248
249 endif
250
251 #------------------------------------------------------------------------
252 # Create a TAGS database for emacs
253 #------------------------------------------------------------------------
254
255 ifeq ($(LEVEL), .)
256 tags:
257         etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
258 all:: tags
259 endif
260
261 #------------------------------------------------------------------------
262 # Handle the TOOLNAME option - used when building tool executables...
263 #------------------------------------------------------------------------
264 #
265 # The TOOLNAME option should be used with a USEDLIBS variable that tells the
266 # libraries (and the order of the libs) that should be linked to the
267 # tool. USEDLIBS should contain a list of library names (some with .a extension)
268 # that are automatically linked in as .o files unless the .a suffix is added.
269 #
270 ifdef TOOLNAME
271
272 # TOOLEXENAME* - These compute the output filenames to generate...
273 TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME)
274 TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME)
275 TOOLEXENAMES  := $(TOOLEXENAME_G)
276 ifdef ENABLE_OPTIMIZED
277 TOOLEXENAMES += $(TOOLEXENAME_O)
278 endif
279
280 # USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
281 USED_LIBS_OPTIONS   := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
282 USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o,  $(USED_LIBS_OPTIONS))
283 USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
284
285
286 # USED_LIB_PATHS - Compute the path of the libraries used so that tools are
287 # rebuilt if libraries change.  This has to make sure to handle .a/.so and .o
288 # files seperately.
289 #
290 STATICUSEDLIBS   := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
291 USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
292 USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
293
294 all::   $(TOOLEXENAMES)
295 clean::
296         rm -f $(TOOLEXENAMES)
297
298 $(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir
299         $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
300
301 $(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir
302         $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
303
304 endif
305
306
307
308 #---------------------------------------------------------
309 .PRECIOUS: $(BUILD_ROOT)/Depend/.dir
310 .PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir
311
312 # Create dependencies for the *.cpp files...
313 $(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir
314         $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@
315
316 # Create dependencies for the *.c files...
317 $(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir
318         $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
319
320 # Create .o files in the ObjectFiles directory from the .cpp and .c files...
321 $(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir
322         $(CompileO) $< -o $@
323
324 #Release/%.o: %.c Release/.dir Depend/.dir
325 #       $(CompileOC) $< -o $@
326
327 $(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir
328         $(CompileG) $< -o $@
329
330 #Debug/%.o: %.c Debug/.dir 
331 #       $(CompileGC) $< -o $@
332
333 # Create a .cpp source file from a flex input file... this uses sed to cut down
334 # on the warnings emited by GCC...
335 %.cpp: %.l
336         flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
337
338 # Rule for building the bison parsers...
339
340 %.cpp %.h : %.y
341         bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
342         mv -f $(basename $@).tab.c $(basename $@).cpp
343         mv -f $(basename $@).tab.h $(basename $@).h
344
345 # To create the directories...
346 %/.dir:
347         mkdir -p $(@D)
348         @date > $@
349
350 # Clean nukes the tree
351 clean::
352         rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Depend
353         rm -f core *.o *.d *.so *~ *.flc
354
355 # If dependancies were generated for the file that included this file,
356 # include the dependancies now...
357 #
358 SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source)))))
359 ifneq ($(SourceDepend),)
360 include $(SourceDepend)
361 endif