blob: a376a113cabe18a74d64a95364a3ccafcf040088 [file] [log] [blame]
Chris Lattner00950542001-06-06 20:29:01 +00001# Makefile.common
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
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#
23
Chris Lattnerb19e59c2001-06-29 05:20:16 +000024# Default Rule: Make sure it's also a :: rule
Chris Lattner00950542001-06-06 20:29:01 +000025all ::
26
27# Default for install is to at least build everything...
28install ::
29
30#--------------------------------------------------------------------
31# Installation configuration options...
32#--------------------------------------------------------------------
33
34#BinInstDir=/usr/local/bin
35#LibInstDir=/usrl/local/lib/xxx
36#DocInstDir=/usr/doc/xxx
37
Vikram S. Advedba59ef2001-08-06 19:01:20 +000038BURG = /home/vadve/vadve/Research/DynOpt/Burg/burg
39BURG_OPTS = -I
40
Chris Lattner6e390702001-10-30 20:24:08 +000041
Chris Lattnerec6bed22002-04-07 06:18:40 +000042PURIFY = /usr/dcs/applications/purify/bin/purify -cache-dir="$(HOME)/purifycache" -chain-length="30" -messages=all
Chris Lattner6e390702001-10-30 20:24:08 +000043
Chris Lattner00950542001-06-06 20:29:01 +000044#---------------------------------------------------------
45# Compilation options...
46#---------------------------------------------------------
47
Vikram S. Advedba59ef2001-08-06 19:01:20 +000048# Special tools used while building
49RunBurg = $(BURG) $(BURG_OPTS)
50
Chris Lattner00950542001-06-06 20:29:01 +000051# Enable this for profiling support with 'gprof'
52#Prof = -pg
53
54# TODO: Get rid of exceptions! : -fno-exceptions -fno-rtti
Chris Lattnerc7acf812002-01-23 05:46:01 +000055# -Wno-unused-parameter
56CompileCommonOpts = $(Prof) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner00950542001-06-06 20:29:01 +000057
58# Compile a file, don't link...
59Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
60CompileG = $(Compile) -g -D_DEBUG
Chris Lattner00950542001-06-06 20:29:01 +000061CompileO = $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
62
63# Link final executable
Chris Lattner6e390702001-10-30 20:24:08 +000064
65# To enable purify, do it here:
Chris Lattner12604ed2002-04-05 18:56:58 +000066ifdef ENABLE_PURIFY
67Link = $(PURIFY) $(CXX) $(Prof) -static
68else
69Link = LD_RUN_PATH=/usr/dcs/software/evaluation/encap/gcc-3.0.4/lib $(CXX) $(Prof)
70endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +000071LinkG = $(Link) -g -L $(LEVEL)/lib/Debug
72LinkO = $(Link) -O3 -L $(LEVEL)/lib/Release
Chris Lattner00950542001-06-06 20:29:01 +000073
74# Create a .so file from a .cpp file...
75#MakeSO = $(CXX) -shared $(Prof)
76MakeSO = $(CXX) -G $(Prof)
77MakeSOG = $(MakeSO) -g
78MakeSOO = $(MakeSO) -O3
79
80# Create dependancy file from CPP file, send to stdout.
81Depend = $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
82
83# Archive a bunch of .o files into a .a file...
84AR = ar cq
Vikram S. Adve112a72c2001-07-15 13:16:47 +000085MakeLib = $(AR)
Chris Lattner00950542001-06-06 20:29:01 +000086
87#----------------------------------------------------------
88
89# Source includes all of the cpp files, and objects are derived from the
90# source files...
Chris Lattnere0010592001-10-18 01:48:09 +000091# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +000092#
Chris Lattnere0010592001-10-18 01:48:09 +000093Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Adve112a72c2001-07-15 13:16:47 +000094
Chris Lattnerc7acf812002-01-23 05:46:01 +000095Objs := $(sort $(addsuffix .o,$(basename $(Source))))
Chris Lattner00950542001-06-06 20:29:01 +000096ObjectsO = $(addprefix Release/,$(Objs))
97ObjectsG = $(addprefix Debug/,$(Objs))
98
99#---------------------------------------------------------
100# Handle the DIRS option
101#---------------------------------------------------------
102
103ifdef DIRS # Only do this if we're using DIRS!
104
105all :: $(addsuffix /.makeall , $(DIRS))
106install :: $(addsuffix /.makeinstall, $(DIRS))
107clean :: $(addsuffix /.makeclean , $(DIRS))
108
109%/.makeall %/.makeclean %/.makeinstall:
110 cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
111endif
112
113#---------------------------------------------------------
114# Handle the LIBRARYNAME option - used when building libs...
115#---------------------------------------------------------
116
117ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000118
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000119LIBNAME_O := $(LEVEL)/lib/Release/lib$(LIBRARYNAME).so
120LIBNAME_G := $(LEVEL)/lib/Debug/lib$(LIBRARYNAME).so
121LIBNAME_AO := $(LEVEL)/lib/Release/lib$(LIBRARYNAME).a
122LIBNAME_AG := $(LEVEL)/lib/Debug/lib$(LIBRARYNAME).a
Chris Lattner00950542001-06-06 20:29:01 +0000123
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000124all:: $(LIBNAME_AG)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000125dynamic:: $(LIBNAME_G)
Chris Lattner00950542001-06-06 20:29:01 +0000126# TODO: Enable optimized builds
127
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000128$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LEVEL)/lib/Release/.dir Depend/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000129 @echo ======= Linking $(LIBRARYNAME) release library =======
130 $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
131
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000132$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LEVEL)/lib/Debug/.dir Depend/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000133 @echo ======= Linking $(LIBRARYNAME) debug library =======
134 $(MakeSOG) -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
135
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000136$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LEVEL)/lib/Release/.dir Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000137 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000138 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000139 $(MakeLib) $@ $(ObjectsO) $(LibSubDirs)
140
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000141$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LEVEL)/lib/Debug/.dir Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000142 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000143 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000144 $(MakeLib) $@ $(ObjectsG) $(LibSubDirs)
145
Chris Lattner00950542001-06-06 20:29:01 +0000146endif
147
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000148#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000149# Create a TAGS database for emacs
150#------------------------------------------------------------------------
151
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000152ifeq ($(LEVEL), .)
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000153
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000154tags:
Vikram S. Adve27dc7b62001-10-22 13:58:22 +0000155 etags -l c++ `find . -name '*.cpp' -o -name '*.h'`
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000156
157all:: tags
158
159endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000160
161#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000162# Handle the TOOLNAME option - used when building tool executables...
163#------------------------------------------------------------------------
164#
165# The TOOLNAME option should be used with a USEDLIBS variable that tells the
166# libraries (and the order of the libs) that should be linked to the tool.
167#
168ifdef TOOLNAME
169
170# TOOLEXENAME* - These compute the output filenames to generate...
171TOOLEXENAME_G = $(LEVEL)/tools/Debug/$(TOOLNAME)
172TOOLEXENAME_O = $(LEVEL)/tools/Release/$(TOOLNAME)
Chris Lattnerc7acf812002-01-23 05:46:01 +0000173TOOLEXENAMES := $(TOOLEXENAME_G) ###$(TOOLEXENAME_O)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000174
175# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
176USED_LIBS_OPTIONS = $(addprefix -l, $(USEDLIBS))
177
178# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
179# rebuilt if libraries change
180#
Chris Lattnerc7acf812002-01-23 05:46:01 +0000181STATICUSEDLIBS := $(addsuffix .a, $(USEDLIBS))
182USED_LIB_PATHS_G := $(addprefix $(LEVEL)/lib/Debug/lib, $(STATICUSEDLIBS))
183USED_LIB_PATHS_O := $(addprefix $(LEVEL)/lib/Release/lib, $(STATICUSEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000184
Chris Lattner669bd7c2001-10-13 05:10:29 +0000185all:: $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000186clean::
187 rm -f $(TOOLEXENAMES)
188
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000189$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(LEVEL)/tools/Debug/.dir
Chris Lattner49f2b942001-09-10 04:49:26 +0000190 $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000191
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000192$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(LEVEL)/tools/Release/.dir
Chris Lattner49f2b942001-09-10 04:49:26 +0000193 $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000194
195endif
196
197
Chris Lattner00950542001-06-06 20:29:01 +0000198
199#---------------------------------------------------------
Chris Lattneraa6ec732001-11-07 14:50:58 +0000200.PRECIOUS: Depend/.dir Debug/.dir Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000201
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000202# Create dependencies for the *.cpp files...
Chris Lattner00950542001-06-06 20:29:01 +0000203Depend/%.d: %.cpp Depend/.dir
204 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
205
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000206# Create dependencies for the *.c files...
207Depend/%.d: %.c Depend/.dir
208 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
209
210# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattner00950542001-06-06 20:29:01 +0000211Release/%.o: %.cpp Release/.dir Depend/.dir
212 $(CompileO) $< -o $@
213
Chris Lattnerc7acf812002-01-23 05:46:01 +0000214#Release/%.o: %.c Release/.dir Depend/.dir
215# $(CompileOC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000216
Chris Lattner00950542001-06-06 20:29:01 +0000217Debug/%.o: %.cpp Debug/.dir Depend/.dir
218 $(CompileG) $< -o $@
219
Chris Lattnerc7acf812002-01-23 05:46:01 +0000220#Debug/%.o: %.c Debug/.dir Depend/.dir
221# $(CompileGC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000222
Vikram S. Advebedbcf62001-08-06 19:06:43 +0000223# Create a .cpp source file from a burg input file
Chris Lattner0cac4b82002-02-11 17:12:03 +0000224%.burm.cpp: Debug/%.burg Debug/.dir
Vikram S. Advebedbcf62001-08-06 19:06:43 +0000225 $(RunBurg) $< -o $@
226
Chris Lattner00950542001-06-06 20:29:01 +0000227# Create a .cpp source file from a flex input file... this uses sed to cut down
228# on the warnings emited by GCC...
229%.cpp: %.l
230 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
231
232# Rule for building the bison parsers...
233
234%.cpp %.h : %.y
235 bison -d -p $(<:%Parser.y=%) $(basename $@).y
236 mv -f $(basename $@).tab.c $(basename $@).cpp
237 mv -f $(basename $@).tab.h $(basename $@).h
238
239# To create the directories...
240%/.dir:
241 mkdir -p $(@D)
242 @date > $@
243
244# Clean does not remove the output files... just the temporaries
245clean::
246 rm -rf Debug Release Depend
247 rm -f core *.o *.d *.so *~ *.flc
248
249# If dependancies were generated for the file that included this file,
250# include the dependancies now...
251#
252SourceDepend = $(addsuffix .d,$(addprefix Depend/,$(basename $(Source))))
253ifneq ($(SourceDepend),)
254include $(SourceDepend)
255endif