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