blob: e56b668e52703386f3f620d375d266bba3cdd4f8 [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 Lattner00950542001-06-06 20:29:01 +000041#---------------------------------------------------------
42# Compilation options...
43#---------------------------------------------------------
44
Vikram S. Advedba59ef2001-08-06 19:01:20 +000045# Special tools used while building
46RunBurg = $(BURG) $(BURG_OPTS)
47
Chris Lattner00950542001-06-06 20:29:01 +000048# Enable this for profiling support with 'gprof'
49#Prof = -pg
50
51# TODO: Get rid of exceptions! : -fno-exceptions -fno-rtti
52CompileCommonOpts = $(Prof) -Wall -Winline -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
53
54# Compile a file, don't link...
55Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
56CompileG = $(Compile) -g -D_DEBUG
57# Add This for DebugMalloc: -fno-defer-pop
58CompileO = $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
59
60# Link final executable
61Link = $(CXX) $(Prof)
Chris Lattner1cbc29f2001-09-07 22:57:58 +000062LinkG = $(Link) -g -L $(LEVEL)/lib/Debug
63LinkO = $(Link) -O3 -L $(LEVEL)/lib/Release
Chris Lattner00950542001-06-06 20:29:01 +000064
65# Create a .so file from a .cpp file...
66#MakeSO = $(CXX) -shared $(Prof)
67MakeSO = $(CXX) -G $(Prof)
68MakeSOG = $(MakeSO) -g
69MakeSOO = $(MakeSO) -O3
70
71# Create dependancy file from CPP file, send to stdout.
72Depend = $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
73
74# Archive a bunch of .o files into a .a file...
75AR = ar cq
Vikram S. Adve112a72c2001-07-15 13:16:47 +000076MakeLib = $(AR)
Chris Lattner00950542001-06-06 20:29:01 +000077
78#----------------------------------------------------------
79
80# Source includes all of the cpp files, and objects are derived from the
81# source files...
Chris Lattnere0010592001-10-18 01:48:09 +000082# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +000083#
Chris Lattnere0010592001-10-18 01:48:09 +000084Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Adve112a72c2001-07-15 13:16:47 +000085
Chris Lattnerfebb11f2001-07-18 23:43:37 +000086Objs = $(sort $(addsuffix .o,$(basename $(Source))))
Chris Lattner00950542001-06-06 20:29:01 +000087ObjectsO = $(addprefix Release/,$(Objs))
88ObjectsG = $(addprefix Debug/,$(Objs))
89
90#---------------------------------------------------------
91# Handle the DIRS option
92#---------------------------------------------------------
93
94ifdef DIRS # Only do this if we're using DIRS!
95
96all :: $(addsuffix /.makeall , $(DIRS))
97install :: $(addsuffix /.makeinstall, $(DIRS))
98clean :: $(addsuffix /.makeclean , $(DIRS))
99
100%/.makeall %/.makeclean %/.makeinstall:
101 cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
102endif
103
104#---------------------------------------------------------
105# Handle the LIBRARYNAME option - used when building libs...
106#---------------------------------------------------------
107
108ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000109
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000110LIBNAME_O := $(LEVEL)/lib/Release/lib$(LIBRARYNAME).so
111LIBNAME_G := $(LEVEL)/lib/Debug/lib$(LIBRARYNAME).so
112LIBNAME_AO := $(LEVEL)/lib/Release/lib$(LIBRARYNAME).a
113LIBNAME_AG := $(LEVEL)/lib/Debug/lib$(LIBRARYNAME).a
Chris Lattner00950542001-06-06 20:29:01 +0000114
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000115all:: $(LIBNAME_AG)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000116dynamic:: $(LIBNAME_G)
Chris Lattner00950542001-06-06 20:29:01 +0000117# TODO: Enable optimized builds
118
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000119$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LEVEL)/lib/Release/.dir Depend/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000120 @echo ======= Linking $(LIBRARYNAME) release library =======
121 $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
122
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000123$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LEVEL)/lib/Debug/.dir Depend/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000124 @echo ======= Linking $(LIBRARYNAME) debug library =======
125 $(MakeSOG) -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
126
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000127$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LEVEL)/lib/Release/.dir Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000128 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000129 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000130 $(MakeLib) $@ $(ObjectsO) $(LibSubDirs)
131
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000132$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LEVEL)/lib/Debug/.dir Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000133 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000134 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000135 $(MakeLib) $@ $(ObjectsG) $(LibSubDirs)
136
Chris Lattner00950542001-06-06 20:29:01 +0000137endif
138
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000139#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000140# Create a TAGS database for emacs
141#------------------------------------------------------------------------
142
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000143ifeq ($(LEVEL), .)
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000144
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000145tags:
146 etags -l c++ `find . -name '*.cpp'` `find . -name '*.h'`
147
148all:: tags
149
150endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000151
152#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000153# Handle the TOOLNAME option - used when building tool executables...
154#------------------------------------------------------------------------
155#
156# The TOOLNAME option should be used with a USEDLIBS variable that tells the
157# libraries (and the order of the libs) that should be linked to the tool.
158#
159ifdef TOOLNAME
160
161# TOOLEXENAME* - These compute the output filenames to generate...
162TOOLEXENAME_G = $(LEVEL)/tools/Debug/$(TOOLNAME)
163TOOLEXENAME_O = $(LEVEL)/tools/Release/$(TOOLNAME)
164TOOLEXENAMES = $(TOOLEXENAME_G) ###$(TOOLEXENAME_O)
165
166# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
167USED_LIBS_OPTIONS = $(addprefix -l, $(USEDLIBS))
168
169# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
170# rebuilt if libraries change
171#
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000172STATICUSEDLIBS = $(addsuffix .a, $(USEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000173USED_LIB_PATHS_G = $(addprefix $(LEVEL)/lib/Debug/lib, $(STATICUSEDLIBS))
174USED_LIB_PATHS_O = $(addprefix $(LEVEL)/lib/Release/lib, $(STATICUSEDLIBS))
175
Chris Lattner669bd7c2001-10-13 05:10:29 +0000176all:: $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000177clean::
178 rm -f $(TOOLEXENAMES)
179
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000180$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(LEVEL)/tools/Debug/.dir
Chris Lattner49f2b942001-09-10 04:49:26 +0000181 $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000182
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000183$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(LEVEL)/tools/Release/.dir
Chris Lattner49f2b942001-09-10 04:49:26 +0000184 $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000185
186endif
187
188
Chris Lattner00950542001-06-06 20:29:01 +0000189
190#---------------------------------------------------------
191
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000192# Create dependencies for the *.cpp files...
Chris Lattner00950542001-06-06 20:29:01 +0000193Depend/%.d: %.cpp Depend/.dir
194 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
195
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000196# Create dependencies for the *.c files...
197Depend/%.d: %.c Depend/.dir
198 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
199
200# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattner00950542001-06-06 20:29:01 +0000201Release/%.o: %.cpp Release/.dir Depend/.dir
202 $(CompileO) $< -o $@
203
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000204Release/%.o: %.c Release/.dir Depend/.dir
205 $(CompileO) $< -o $@
206
Chris Lattner00950542001-06-06 20:29:01 +0000207Debug/%.o: %.cpp Debug/.dir Depend/.dir
208 $(CompileG) $< -o $@
209
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000210Debug/%.o: %.c Debug/.dir Depend/.dir
211 $(CompileG) $< -o $@
212
Vikram S. Advebedbcf62001-08-06 19:06:43 +0000213# Create a .cpp source file from a burg input file
Chris Lattnerdb008772001-10-14 17:23:55 +0000214%.burm.cpp: Debug/%.burg
Vikram S. Advebedbcf62001-08-06 19:06:43 +0000215 $(RunBurg) $< -o $@
216
Chris Lattner00950542001-06-06 20:29:01 +0000217# Create a .cpp source file from a flex input file... this uses sed to cut down
218# on the warnings emited by GCC...
219%.cpp: %.l
220 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
221
222# Rule for building the bison parsers...
223
224%.cpp %.h : %.y
225 bison -d -p $(<:%Parser.y=%) $(basename $@).y
226 mv -f $(basename $@).tab.c $(basename $@).cpp
227 mv -f $(basename $@).tab.h $(basename $@).h
228
229# To create the directories...
230%/.dir:
231 mkdir -p $(@D)
232 @date > $@
233
234# Clean does not remove the output files... just the temporaries
235clean::
236 rm -rf Debug Release Depend
237 rm -f core *.o *.d *.so *~ *.flc
238
239# If dependancies were generated for the file that included this file,
240# include the dependancies now...
241#
242SourceDepend = $(addsuffix .d,$(addprefix Depend/,$(basename $(Source))))
243ifneq ($(SourceDepend),)
244include $(SourceDepend)
245endif