blob: aef05750ace06161b4253359c4695211256b5419 [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
77# TODO: Get rid of exceptions! : -fno-exceptions -fno-rtti
Chris Lattnerc7acf812002-01-23 05:46:01 +000078# -Wno-unused-parameter
Chris Lattner18f47012002-05-10 18:51:54 +000079CompileCommonOpts = $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner00950542001-06-06 20:29:01 +000080
81# Compile a file, don't link...
Chris Lattner18f47012002-05-10 18:51:54 +000082Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +000083CompileG = $(Compile) -g -D_DEBUG
Chris Lattner00950542001-06-06 20:29:01 +000084CompileO = $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
85
86# Link final executable
Chris Lattner6e390702001-10-30 20:24:08 +000087
88# To enable purify, do it here:
Chris Lattner12604ed2002-04-05 18:56:58 +000089ifdef ENABLE_PURIFY
90Link = $(PURIFY) $(CXX) $(Prof) -static
91else
Chris Lattner18f47012002-05-10 18:51:54 +000092Link = LD_RUN_PATH=/usr/dcs/software/evaluation/encap/gcc-3.0.4/lib $(CXX) $(PROFILE)
Chris Lattner12604ed2002-04-05 18:56:58 +000093endif
Chris Lattnere62dbe92002-07-23 17:56:16 +000094LinkG = $(Link) -g -L $(LIBDEBUG)
95LinkO = $(Link) -O3 -L $(LIBRELEASE)
Chris Lattner00950542001-06-06 20:29:01 +000096
Chris Lattnere62dbe92002-07-23 17:56:16 +000097# Create a .so file from a .o files...
Chris Lattner00950542001-06-06 20:29:01 +000098#MakeSO = $(CXX) -shared $(Prof)
99MakeSO = $(CXX) -G $(Prof)
Chris Lattner00950542001-06-06 20:29:01 +0000100MakeSOO = $(MakeSO) -O3
101
Chris Lattnere62dbe92002-07-23 17:56:16 +0000102# Create one .o file from a bunch of .o files...
103Relink = ld -r
104
Chris Lattner00950542001-06-06 20:29:01 +0000105# Create dependancy file from CPP file, send to stdout.
106Depend = $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
107
108# Archive a bunch of .o files into a .a file...
109AR = ar cq
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000110MakeLib = $(AR)
Chris Lattner00950542001-06-06 20:29:01 +0000111
112#----------------------------------------------------------
113
114# Source includes all of the cpp files, and objects are derived from the
115# source files...
Chris Lattnere0010592001-10-18 01:48:09 +0000116# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +0000117#
Chris Lattnere0010592001-10-18 01:48:09 +0000118Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000119
Chris Lattnerc7acf812002-01-23 05:46:01 +0000120Objs := $(sort $(addsuffix .o,$(basename $(Source))))
Chris Lattner00950542001-06-06 20:29:01 +0000121ObjectsO = $(addprefix Release/,$(Objs))
122ObjectsG = $(addprefix Debug/,$(Objs))
123
Chris Lattnere62dbe92002-07-23 17:56:16 +0000124
Chris Lattner00950542001-06-06 20:29:01 +0000125#---------------------------------------------------------
126# Handle the DIRS option
127#---------------------------------------------------------
128
129ifdef DIRS # Only do this if we're using DIRS!
130
131all :: $(addsuffix /.makeall , $(DIRS))
132install :: $(addsuffix /.makeinstall, $(DIRS))
133clean :: $(addsuffix /.makeclean , $(DIRS))
134
135%/.makeall %/.makeclean %/.makeinstall:
136 cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
137endif
138
139#---------------------------------------------------------
140# Handle the LIBRARYNAME option - used when building libs...
141#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000142#
143# When libraries are built, they are allowed to optionally define the
144# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
145# from being built for the library. This .o files may then be linked to by a
146# tool if the tool does not need (or want) the semantics a .a file provides
147# (linking in only object files that are "needed"). If a library is never to
148# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
149# BUILD_ARCHIVE instead.
150#
151# Some libraries must be built as .a files (libscalar for example) because if
152# it's built as a .o file, then all of the constitent .o files in it will be
153# linked into tools (for example gccas) even if they only use one of the parts
154# of it. For this reason, sometimes it's useful to use libraries as .a files.
Chris Lattner00950542001-06-06 20:29:01 +0000155
156ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000157
Chris Lattnere62dbe92002-07-23 17:56:16 +0000158LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so
159LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so
160LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a
161LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a
162LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
163LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner00950542001-06-06 20:29:01 +0000164
Chris Lattnere62dbe92002-07-23 17:56:16 +0000165BUILD_LIBNAME_G := $(LIBNAME_G)
166ifndef DONT_BUILD_RELINKED
167BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
168endif
169ifdef BUILD_ARCHIVE
170BUILD_LIBNAME_AG := $(LIBNAME_AG)
171endif
Chris Lattner00950542001-06-06 20:29:01 +0000172
Chris Lattnere62dbe92002-07-23 17:56:16 +0000173# If optimized builds are enabled...
174ifdef ENABLE_OPTIMIZED
175BUILD_LIBNAME_O := $(LIBNAME_O)
176ifndef DONT_BUILD_RELINKED
177BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
178endif
179ifdef BUILD_ARCHIVE
180BUILD_LIBNAME_AO := $(LIBNAME_AO)
181endif
182endif
183
184all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug
185all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release
186dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files
187
188$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir Depend/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000189 @echo ======= Linking $(LIBRARYNAME) release library =======
190 $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
191
Chris Lattnere62dbe92002-07-23 17:56:16 +0000192$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir Depend/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000193 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattnere62dbe92002-07-23 17:56:16 +0000194 $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner00950542001-06-06 20:29:01 +0000195
Chris Lattnere62dbe92002-07-23 17:56:16 +0000196$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000197 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000198 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000199 $(MakeLib) $@ $(ObjectsO) $(LibSubDirs)
200
Chris Lattnere62dbe92002-07-23 17:56:16 +0000201$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000202 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000203 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000204 $(MakeLib) $@ $(ObjectsG) $(LibSubDirs)
205
Chris Lattnere62dbe92002-07-23 17:56:16 +0000206$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir Depend/.dir
207 $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
208
209$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir Depend/.dir
210 $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
211
Chris Lattner00950542001-06-06 20:29:01 +0000212endif
213
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000214#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000215# Create a TAGS database for emacs
216#------------------------------------------------------------------------
217
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000218ifeq ($(LEVEL), .)
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000219
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000220tags:
Chris Lattner18f47012002-05-10 18:51:54 +0000221 etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000222
223all:: tags
224
225endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000226
227#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000228# Handle the TOOLNAME option - used when building tool executables...
229#------------------------------------------------------------------------
230#
231# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattnere62dbe92002-07-23 17:56:16 +0000232# libraries (and the order of the libs) that should be linked to the
233# tool. USEDLIBS should contain a list of library names (some with .a extension)
234# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000235#
236ifdef TOOLNAME
237
238# TOOLEXENAME* - These compute the output filenames to generate...
239TOOLEXENAME_G = $(LEVEL)/tools/Debug/$(TOOLNAME)
240TOOLEXENAME_O = $(LEVEL)/tools/Release/$(TOOLNAME)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000241TOOLEXENAMES := $(TOOLEXENAME_G)
242ifdef ENABLE_OPTIMIZED
243TOOLEXENAMES += $(TOOLEXENAME_O)
244endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000245
246# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Chris Lattnere62dbe92002-07-23 17:56:16 +0000247USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
248USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS))
249USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
250
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000251
252# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattnere62dbe92002-07-23 17:56:16 +0000253# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
254# files seperately.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000255#
Chris Lattnere62dbe92002-07-23 17:56:16 +0000256STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
257USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
258USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000259
Chris Lattner669bd7c2001-10-13 05:10:29 +0000260all:: $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000261clean::
262 rm -f $(TOOLEXENAMES)
263
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000264$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(LEVEL)/tools/Debug/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000265 $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000266
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000267$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(LEVEL)/tools/Release/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000268 $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000269
270endif
271
272
Chris Lattner00950542001-06-06 20:29:01 +0000273
274#---------------------------------------------------------
Chris Lattneraa6ec732001-11-07 14:50:58 +0000275.PRECIOUS: Depend/.dir Debug/.dir Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000276
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000277# Create dependencies for the *.cpp files...
Chris Lattner00950542001-06-06 20:29:01 +0000278Depend/%.d: %.cpp Depend/.dir
279 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
280
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000281# Create dependencies for the *.c files...
282Depend/%.d: %.c Depend/.dir
283 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
284
285# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattner00950542001-06-06 20:29:01 +0000286Release/%.o: %.cpp Release/.dir Depend/.dir
287 $(CompileO) $< -o $@
288
Chris Lattnerc7acf812002-01-23 05:46:01 +0000289#Release/%.o: %.c Release/.dir Depend/.dir
290# $(CompileOC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000291
Chris Lattner00950542001-06-06 20:29:01 +0000292Debug/%.o: %.cpp Debug/.dir Depend/.dir
293 $(CompileG) $< -o $@
294
Chris Lattnerc7acf812002-01-23 05:46:01 +0000295#Debug/%.o: %.c Debug/.dir Depend/.dir
296# $(CompileGC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000297
Vikram S. Advebedbcf62001-08-06 19:06:43 +0000298# Create a .cpp source file from a burg input file
Chris Lattner0cac4b82002-02-11 17:12:03 +0000299%.burm.cpp: Debug/%.burg Debug/.dir
Vikram S. Advebedbcf62001-08-06 19:06:43 +0000300 $(RunBurg) $< -o $@
301
Chris Lattner00950542001-06-06 20:29:01 +0000302# Create a .cpp source file from a flex input file... this uses sed to cut down
303# on the warnings emited by GCC...
304%.cpp: %.l
305 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
306
307# Rule for building the bison parsers...
308
309%.cpp %.h : %.y
Chris Lattner18f47012002-05-10 18:51:54 +0000310 bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
Chris Lattner00950542001-06-06 20:29:01 +0000311 mv -f $(basename $@).tab.c $(basename $@).cpp
312 mv -f $(basename $@).tab.h $(basename $@).h
313
314# To create the directories...
315%/.dir:
316 mkdir -p $(@D)
317 @date > $@
318
319# Clean does not remove the output files... just the temporaries
320clean::
321 rm -rf Debug Release Depend
322 rm -f core *.o *.d *.so *~ *.flc
323
324# If dependancies were generated for the file that included this file,
325# include the dependancies now...
326#
327SourceDepend = $(addsuffix .d,$(addprefix Depend/,$(basename $(Source))))
328ifneq ($(SourceDepend),)
329include $(SourceDepend)
330endif