blob: 74c865a67a968ded45873d97b7209052602cf8b5 [file] [log] [blame]
Vikram S. Adved60aede2002-07-09 12:04:21 +00001#===-- Makefile.common - Common make rules for LLVM -------*- makefile -*--====
Chris Lattner00950542001-06-06 20:29:01 +00002#
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 Lattnere0010592001-10-18 01:48:09 +000020# 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 Lattner00950542001-06-06 20:29:01 +000022#
Vikram S. Adved60aede2002-07-09 12:04:21 +000023#===-----------------------------------------------------------------------====
Chris Lattner00950542001-06-06 20:29:01 +000024
Chris Lattnere62dbe92002-07-23 17:56:16 +000025# 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
Chris Lattneredf1f232002-07-23 19:21:31 +000032ifdef SHARED_LIBRARY
33# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
34dynamic ::
35endif
36
Chris Lattnerb19e59c2001-06-29 05:20:16 +000037# Default Rule: Make sure it's also a :: rule
Chris Lattner00950542001-06-06 20:29:01 +000038all ::
39
40# Default for install is to at least build everything...
41install ::
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
Vikram S. Advedba59ef2001-08-06 19:01:20 +000051BURG = /home/vadve/vadve/Research/DynOpt/Burg/burg
52BURG_OPTS = -I
53
Chris Lattner6e390702001-10-30 20:24:08 +000054
Chris Lattnerec6bed22002-04-07 06:18:40 +000055PURIFY = /usr/dcs/applications/purify/bin/purify -cache-dir="$(HOME)/purifycache" -chain-length="30" -messages=all
Chris Lattner6e390702001-10-30 20:24:08 +000056
Chris Lattnere62dbe92002-07-23 17:56:16 +000057# Shorthand for commonly accessed directories
58LIBDEBUG = $(LEVEL)/lib/Debug
59LIBRELEASE = $(LEVEL)/lib/Release
60TOOLDEBUG = $(LEVEL)/tools/Debug
61TOOLRELEASE = $(LEVEL)/tools/Release
62
Chris Lattner00950542001-06-06 20:29:01 +000063#---------------------------------------------------------
64# Compilation options...
65#---------------------------------------------------------
66
Vikram S. Advedba59ef2001-08-06 19:01:20 +000067# Special tools used while building
68RunBurg = $(BURG) $(BURG_OPTS)
69
Chris Lattner00950542001-06-06 20:29:01 +000070# Enable this for profiling support with 'gprof'
Chris Lattner18f47012002-05-10 18:51:54 +000071ifdef ENABLE_PROFILING
72PROFILE = -pg
73else
74PROFILE =
75endif
Chris Lattner00950542001-06-06 20:29:01 +000076
Chris Lattnerc7acf812002-01-23 05:46:01 +000077# -Wno-unused-parameter
Chris Lattner18f47012002-05-10 18:51:54 +000078CompileCommonOpts = $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner00950542001-06-06 20:29:01 +000079
80# Compile a file, don't link...
Chris Lattner18f47012002-05-10 18:51:54 +000081Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +000082CompileG = $(Compile) -g -D_DEBUG
Chris Lattner00950542001-06-06 20:29:01 +000083CompileO = $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
84
85# Link final executable
Chris Lattner6e390702001-10-30 20:24:08 +000086
Chris Lattner1917e952002-07-31 21:32:05 +000087ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1'
88Link = $(PURIFY) $(CXX) $(PROFILE) -static
Chris Lattner12604ed2002-04-05 18:56:58 +000089else
Chris Lattner1917e952002-07-31 21:32:05 +000090Link = $(CXX) $(PROFILE)
Chris Lattner12604ed2002-04-05 18:56:58 +000091endif
Chris Lattnere62dbe92002-07-23 17:56:16 +000092LinkG = $(Link) -g -L $(LIBDEBUG)
93LinkO = $(Link) -O3 -L $(LIBRELEASE)
Chris Lattner00950542001-06-06 20:29:01 +000094
Chris Lattnere62dbe92002-07-23 17:56:16 +000095# Create a .so file from a .o files...
Chris Lattner1917e952002-07-31 21:32:05 +000096#MakeSO = $(CXX) -shared $(PROFILE)
97MakeSO = $(CXX) -G $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +000098MakeSOO = $(MakeSO) -O3
99
Chris Lattnere62dbe92002-07-23 17:56:16 +0000100# Create one .o file from a bunch of .o files...
101Relink = ld -r
102
Chris Lattner00950542001-06-06 20:29:01 +0000103# Create dependancy file from CPP file, send to stdout.
104Depend = $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
105
106# Archive a bunch of .o files into a .a file...
107AR = ar cq
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000108MakeLib = $(AR)
Chris Lattner00950542001-06-06 20:29:01 +0000109
110#----------------------------------------------------------
111
112# Source includes all of the cpp files, and objects are derived from the
113# source files...
Chris Lattnere0010592001-10-18 01:48:09 +0000114# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +0000115#
Chris Lattnere0010592001-10-18 01:48:09 +0000116Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000117
Chris Lattner4fa128c2002-07-25 15:01:19 +0000118Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
Chris Lattner00950542001-06-06 20:29:01 +0000119ObjectsO = $(addprefix Release/,$(Objs))
120ObjectsG = $(addprefix Debug/,$(Objs))
121
Chris Lattnere62dbe92002-07-23 17:56:16 +0000122
Chris Lattner00950542001-06-06 20:29:01 +0000123#---------------------------------------------------------
124# Handle the DIRS option
125#---------------------------------------------------------
126
127ifdef DIRS # Only do this if we're using DIRS!
128
129all :: $(addsuffix /.makeall , $(DIRS))
130install :: $(addsuffix /.makeinstall, $(DIRS))
131clean :: $(addsuffix /.makeclean , $(DIRS))
132
133%/.makeall %/.makeclean %/.makeinstall:
134 cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
135endif
136
137#---------------------------------------------------------
138# Handle the LIBRARYNAME option - used when building libs...
139#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000140#
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
Chris Lattner1917e952002-07-31 21:32:05 +0000150# it's built as a .o file, then all of the constituent .o files in it will be
Chris Lattnere62dbe92002-07-23 17:56:16 +0000151# 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.
Chris Lattner00950542001-06-06 20:29:01 +0000153
154ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000155
Chris Lattnere62dbe92002-07-23 17:56:16 +0000156LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so
157LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so
158LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a
159LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a
160LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
161LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner00950542001-06-06 20:29:01 +0000162
Chris Lattnere62dbe92002-07-23 17:56:16 +0000163BUILD_LIBNAME_G := $(LIBNAME_G)
164ifndef DONT_BUILD_RELINKED
165BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
166endif
167ifdef BUILD_ARCHIVE
168BUILD_LIBNAME_AG := $(LIBNAME_AG)
169endif
Chris Lattner00950542001-06-06 20:29:01 +0000170
Chris Lattnere62dbe92002-07-23 17:56:16 +0000171# If optimized builds are enabled...
172ifdef ENABLE_OPTIMIZED
173BUILD_LIBNAME_O := $(LIBNAME_O)
174ifndef DONT_BUILD_RELINKED
175BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
176endif
177ifdef BUILD_ARCHIVE
178BUILD_LIBNAME_AO := $(LIBNAME_AO)
179endif
180endif
181
182all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug
183all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release
184dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files
185
186$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir Depend/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000187 @echo ======= Linking $(LIBRARYNAME) release library =======
188 $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
189
Chris Lattnere62dbe92002-07-23 17:56:16 +0000190$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir Depend/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000191 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattnere62dbe92002-07-23 17:56:16 +0000192 $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner00950542001-06-06 20:29:01 +0000193
Chris Lattnere62dbe92002-07-23 17:56:16 +0000194$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000195 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000196 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000197 $(MakeLib) $@ $(ObjectsO) $(LibSubDirs)
198
Chris Lattnere62dbe92002-07-23 17:56:16 +0000199$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000200 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000201 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000202 $(MakeLib) $@ $(ObjectsG) $(LibSubDirs)
203
Chris Lattnere62dbe92002-07-23 17:56:16 +0000204$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir Depend/.dir
205 $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
206
207$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir Depend/.dir
208 $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
209
Chris Lattner00950542001-06-06 20:29:01 +0000210endif
211
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000212#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000213# Create a TAGS database for emacs
214#------------------------------------------------------------------------
215
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000216ifeq ($(LEVEL), .)
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000217tags:
Chris Lattner18f47012002-05-10 18:51:54 +0000218 etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000219all:: tags
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000220endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000221
222#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000223# Handle the TOOLNAME option - used when building tool executables...
224#------------------------------------------------------------------------
225#
226# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattnere62dbe92002-07-23 17:56:16 +0000227# libraries (and the order of the libs) that should be linked to the
228# tool. USEDLIBS should contain a list of library names (some with .a extension)
229# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000230#
231ifdef TOOLNAME
232
233# TOOLEXENAME* - These compute the output filenames to generate...
234TOOLEXENAME_G = $(LEVEL)/tools/Debug/$(TOOLNAME)
235TOOLEXENAME_O = $(LEVEL)/tools/Release/$(TOOLNAME)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000236TOOLEXENAMES := $(TOOLEXENAME_G)
237ifdef ENABLE_OPTIMIZED
238TOOLEXENAMES += $(TOOLEXENAME_O)
239endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000240
241# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Chris Lattnere62dbe92002-07-23 17:56:16 +0000242USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
243USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS))
244USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
245
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000246
247# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattnere62dbe92002-07-23 17:56:16 +0000248# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
249# files seperately.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000250#
Chris Lattnere62dbe92002-07-23 17:56:16 +0000251STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
252USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
253USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000254
Chris Lattner669bd7c2001-10-13 05:10:29 +0000255all:: $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000256clean::
257 rm -f $(TOOLEXENAMES)
258
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000259$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(LEVEL)/tools/Debug/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000260 $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000261
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000262$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(LEVEL)/tools/Release/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000263 $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000264
265endif
266
267
Chris Lattner00950542001-06-06 20:29:01 +0000268
269#---------------------------------------------------------
Chris Lattneraa6ec732001-11-07 14:50:58 +0000270.PRECIOUS: Depend/.dir Debug/.dir Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000271
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000272# Create dependencies for the *.cpp files...
Chris Lattner00950542001-06-06 20:29:01 +0000273Depend/%.d: %.cpp Depend/.dir
274 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
275
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000276# Create dependencies for the *.c files...
277Depend/%.d: %.c Depend/.dir
278 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
279
280# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattner00950542001-06-06 20:29:01 +0000281Release/%.o: %.cpp Release/.dir Depend/.dir
282 $(CompileO) $< -o $@
283
Chris Lattnerc7acf812002-01-23 05:46:01 +0000284#Release/%.o: %.c Release/.dir Depend/.dir
285# $(CompileOC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000286
Chris Lattner00950542001-06-06 20:29:01 +0000287Debug/%.o: %.cpp Debug/.dir Depend/.dir
288 $(CompileG) $< -o $@
289
Chris Lattnerc7acf812002-01-23 05:46:01 +0000290#Debug/%.o: %.c Debug/.dir Depend/.dir
291# $(CompileGC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000292
Chris Lattner00950542001-06-06 20:29:01 +0000293# Create a .cpp source file from a flex input file... this uses sed to cut down
294# on the warnings emited by GCC...
295%.cpp: %.l
296 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
297
298# Rule for building the bison parsers...
299
300%.cpp %.h : %.y
Chris Lattner18f47012002-05-10 18:51:54 +0000301 bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
Chris Lattner00950542001-06-06 20:29:01 +0000302 mv -f $(basename $@).tab.c $(basename $@).cpp
303 mv -f $(basename $@).tab.h $(basename $@).h
304
305# To create the directories...
306%/.dir:
307 mkdir -p $(@D)
308 @date > $@
309
Chris Lattner1917e952002-07-31 21:32:05 +0000310# Clean nukes the tree
Chris Lattner00950542001-06-06 20:29:01 +0000311clean::
312 rm -rf Debug Release Depend
313 rm -f core *.o *.d *.so *~ *.flc
314
315# If dependancies were generated for the file that included this file,
316# include the dependancies now...
317#
Chris Lattner4fa128c2002-07-25 15:01:19 +0000318SourceDepend = $(addsuffix .d,$(addprefix Depend/,$(basename $(filter-out Debug/%, $(Source)))))
Chris Lattner00950542001-06-06 20:29:01 +0000319ifneq ($(SourceDepend),)
320include $(SourceDepend)
321endif