blob: 4d61ad7024d3b81d9b74bab5919b269e6cc1c1ac [file] [log] [blame]
Vikram S. Adve24132e82002-07-09 12:04:21 +00001#===-- Makefile.common - Common make rules for LLVM -------*- makefile -*--====
Chris Lattner2f7c9632001-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#
Vikram S. Adve728de922002-08-29 23:28:46 +00008# The following functionality can be set by setting incoming variables.
9# The variable $(LEVEL) *must* be set:
Chris Lattner2f7c9632001-06-06 20:29:01 +000010#
11# 1. LEVEL - The level of the current subdirectory from the top of the
12# MagicStats view. This level should be expressed as a path, for
13# example, ../.. for two levels deep.
14#
15# 2. DIRS - A list of subdirectories to be built. Fake targets are set up
Chris Lattnerf3dd5f52002-09-18 03:22:27 +000016# so that each of the targets "all", "install", and "clean" each build
17# the subdirectories before the local target. DIRS are guaranteed to be
18# built in order.
Chris Lattner2f7c9632001-06-06 20:29:01 +000019#
Chris Lattnerf3dd5f52002-09-18 03:22:27 +000020# 3. PARALLEL_DIRS - A list of subdirectories to be built, but that may be
21# built in any order. All DIRS are built in order before PARALLEL_DIRS are
22# built, which are then built in any order.
23#
24# 4. Source - If specified, this sets the source code filenames. If this
Chris Lattner2f7c9632001-06-06 20:29:01 +000025# is not set, it defaults to be all of the .cpp, .c, .y, and .l files
Chris Lattneree6e1992001-10-18 01:48:09 +000026# in the current directory. Also, if you want to build files in addition
27# to the local files, you can use the ExtraSource variable
Chris Lattner2f7c9632001-06-06 20:29:01 +000028#
Vikram S. Adve24132e82002-07-09 12:04:21 +000029#===-----------------------------------------------------------------------====
Chris Lattner2f7c9632001-06-06 20:29:01 +000030
Vikram S. Adve728de922002-08-29 23:28:46 +000031# Configuration file to set paths specific to local installation of LLVM
32#
33include $(LEVEL)/Makefile.config
34
Chris Lattner76d98ba2002-07-23 17:56:16 +000035# These are options that can either be enabled here, or can be enabled on the
Chris Lattneread864f2002-08-03 20:19:30 +000036# make command line (ie, make ENABLE_PROFILING=1)
37#
38
39# When ENABLE_PROFILING is enabled, the llvm source base is built with profile
40# information to allow gprof to be used to get execution frequencies.
Chris Lattner76d98ba2002-07-23 17:56:16 +000041#
42#ENABLE_PROFILING = 1
Chris Lattneread864f2002-08-03 20:19:30 +000043
44# When ENABLE_PURIFY is enabled, the LLVM tools are linked with purify (which
45# must be locally installed) to allow for some automated memory error debugging.
46#
Chris Lattner76d98ba2002-07-23 17:56:16 +000047#ENABLE_PURIFY = 1
Chris Lattneread864f2002-08-03 20:19:30 +000048
49# When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
50# turned on, and Debug builds are turned off.
51#
Chris Lattner76d98ba2002-07-23 17:56:16 +000052#ENABLE_OPTIMIZED = 1
53
Chris Lattnere5ad7bd2002-09-13 22:14:47 +000054
55# Figure out how to do platform specific stuff on this platform. This is really
56# gross and should be autoconfiscated (automake actually), but should hopefully
57# work on Linux and solaris (SunOS).
58#
59UNAME := $(shell uname)
60include $(LEVEL)/Makefile.$(UNAME)
61
Chris Lattner570c6a62002-07-23 19:21:31 +000062ifdef SHARED_LIBRARY
63# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
64dynamic ::
65endif
66
Chris Lattner44601ba2001-06-29 05:20:16 +000067# Default Rule: Make sure it's also a :: rule
Chris Lattner2f7c9632001-06-06 20:29:01 +000068all ::
69
70# Default for install is to at least build everything...
71install ::
72
Chris Lattner77330fa2002-08-09 15:41:55 +000073
74# Figure out which directory to build stuff into. We want to build into the
75# /shared directory by default because it is guaranteed to be local to the
76# current machine.
77#
Vikram S. Adve728de922002-08-29 23:28:46 +000078ifeq ($(LLVM_OBJ_DIR),.)
79BUILD_ROOT = $(LLVM_OBJ_DIR)
80BUILD_ROOT_TOP = $(LEVEL)
Chris Lattner01f68c62002-08-12 21:19:28 +000081else
82
Vikram S. Adve728de922002-08-29 23:28:46 +000083BUILD_ROOT := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(shell pwd))
Chris Lattner01f68c62002-08-12 21:19:28 +000084
85# Calculate the BUILD_ROOT_TOP variable, which is the top of the llvm/ tree.
86# Note that although this is just equal to $(BUILD_ROOT)/$(LEVEL), we cannot use
87# this expression because some of the directories on the source tree may not
88# exist in the build tree (for example the test/ heirarchy). Thus we evaluate
89# the directory to eliminate the ../'s
90#
91TOP_DIRECTORY := $(shell cd $(LEVEL); pwd)
Vikram S. Adve728de922002-08-29 23:28:46 +000092BUILD_ROOT_TOP := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(TOP_DIRECTORY))
Chris Lattner77330fa2002-08-09 15:41:55 +000093endif
94
Chris Lattner2f7c9632001-06-06 20:29:01 +000095#--------------------------------------------------------------------
Vikram S. Adve728de922002-08-29 23:28:46 +000096# Variables derived from configuration options...
Chris Lattner2f7c9632001-06-06 20:29:01 +000097#--------------------------------------------------------------------
98
99#BinInstDir=/usr/local/bin
100#LibInstDir=/usrl/local/lib/xxx
101#DocInstDir=/usr/doc/xxx
102
Vikram S. Adveca4a3822001-08-06 19:01:20 +0000103BURG_OPTS = -I
104
Vikram S. Adve728de922002-08-29 23:28:46 +0000105PURIFY := $(PURIFY) -cache-dir="$(BUILD_ROOT_TOP)/../purifycache" -chain-length="30" -messages=all
Chris Lattnerb20b290c2001-10-30 20:24:08 +0000106
Chris Lattner76d98ba2002-07-23 17:56:16 +0000107# Shorthand for commonly accessed directories
Chris Lattner01f68c62002-08-12 21:19:28 +0000108LIBDEBUG := $(BUILD_ROOT_TOP)/lib/Debug
109LIBRELEASE := $(BUILD_ROOT_TOP)/lib/Release
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000110LIBPROFILE := $(BUILD_ROOT_TOP)/lib/Profile
Chris Lattner01f68c62002-08-12 21:19:28 +0000111TOOLDEBUG := $(BUILD_ROOT_TOP)/tools/Debug
112TOOLRELEASE := $(BUILD_ROOT_TOP)/tools/Release
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000113TOOLPROFILE := $(BUILD_ROOT_TOP)/tools/Profile
Chris Lattner76d98ba2002-07-23 17:56:16 +0000114
Misha Brukman1326a7c2002-09-12 16:05:39 +0000115# Verbosity levels
116ifdef VERBOSE
117VERB :=
118else
119VERB := @
120endif
121
Chris Lattner2f7c9632001-06-06 20:29:01 +0000122#---------------------------------------------------------
123# Compilation options...
124#---------------------------------------------------------
125
Chris Lattnerc58930c2002-09-19 19:42:24 +0000126# Special tools used while building the LLVM tree. Burg is built as part of the
127# utils directory.
128#
Vikram S. Adve7fc4b5c2002-10-15 01:59:45 +0000129BURG := $(TOOLDEBUG)/burg
Chris Lattnerc58930c2002-09-19 19:42:24 +0000130RunBurg := $(BURG) $(BURG_OPTS)
131
Vikram S. Adveca4a3822001-08-06 19:01:20 +0000132
Chris Lattner2f7c9632001-06-06 20:29:01 +0000133# Enable this for profiling support with 'gprof'
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000134# This automatically enables optimized builds.
Chris Lattner198d5eb2002-05-10 18:51:54 +0000135ifdef ENABLE_PROFILING
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000136 PROFILE = -pg
137 ENABLE_OPTIMIZED = 1
Chris Lattner198d5eb2002-05-10 18:51:54 +0000138else
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000139 PROFILE =
Chris Lattner198d5eb2002-05-10 18:51:54 +0000140endif
Chris Lattner2f7c9632001-06-06 20:29:01 +0000141
Vikram S. Adved141c282002-09-18 11:55:13 +0000142# By default, strip symbol information from executable
143ifdef KEEP_SYMBOLS
144STRIP =
Vikram S. Advea12d4c02002-10-20 21:45:49 +0000145WARN_MSG =
Vikram S. Adved141c282002-09-18 11:55:13 +0000146else
Vikram S. Adve879874e2002-12-16 01:31:18 +0000147STRIP = -Wl,-x
Vikram S. Advea12d4c02002-10-20 21:45:49 +0000148WARN_MSG = "(without symbols) "
Vikram S. Adved141c282002-09-18 11:55:13 +0000149endif
150
Chris Lattner2efcf432002-09-13 16:02:26 +0000151# Allow gnu extensions...
152CPPFLAGS += -D_GNU_SOURCE
153
Chris Lattner068f8222002-01-23 05:46:01 +0000154# -Wno-unused-parameter
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000155CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner2f7c9632001-06-06 20:29:01 +0000156
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000157# Compile a cpp file, don't link...
Chris Lattner01f68c62002-08-12 21:19:28 +0000158Compile := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
159CompileG := $(Compile) -g -D_DEBUG
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000160CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fshort-enums ## DISABLE -freg-struct-return because of gcc3.2 bug
161CompileP := $(CompileO) $(PROFILE)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000162
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000163# Compile a c file, don't link...
164CompileC := $(CC) -c $(CPPFLAGS) $(CCFLAGS) $(CompileCommonOpts)
165CompileCG := $(CompileC) -g -D_DEBUG
Chris Lattnercf388bb2002-10-22 23:35:28 +0000166CompileCO := $(CompileC) -O3 -DNDEBUG -finline-functions -fshort-enums ## DISABLE -freg-struct-return because of gcc3.2 bug
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000167CompileCP := $(CompileCO) $(PROFILE)
168
169
Chris Lattner2f7c9632001-06-06 20:29:01 +0000170# Link final executable
Chris Lattnerb20b290c2001-10-30 20:24:08 +0000171
Chris Lattnerd711a5e2002-07-31 21:32:05 +0000172ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1'
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000173Link := $(PURIFY) $(CXX) -static
Chris Lattnerf0a88d12002-04-05 18:56:58 +0000174else
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000175Link := $(CXX)
Chris Lattnerf0a88d12002-04-05 18:56:58 +0000176endif
Vikram S. Adve879874e2002-12-16 01:31:18 +0000177LinkG := $(Link) -g -L$(LIBDEBUG) $(STRIP)
178LinkO := $(Link) -O3 -L$(LIBRELEASE)
179LinkP := $(Link) -O3 -L$(LIBPROFILE) $(PROFILE)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000180
Chris Lattner76d98ba2002-07-23 17:56:16 +0000181# Create one .o file from a bunch of .o files...
182Relink = ld -r
183
Chris Lattnere5ad7bd2002-09-13 22:14:47 +0000184# MakeSO - Create a .so file from a .o files...
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000185MakeSO := $(CXX) $(MakeSharedObjectOption)
Chris Lattnere5ad7bd2002-09-13 22:14:47 +0000186MakeSOO := $(MakeSO) -O3
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000187MakeSOP := $(MakeSOO) $(PROFILE)
Chris Lattnere5ad7bd2002-09-13 22:14:47 +0000188
Chris Lattner2f7c9632001-06-06 20:29:01 +0000189# Create dependancy file from CPP file, send to stdout.
Chris Lattner01f68c62002-08-12 21:19:28 +0000190Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000191DependC := $(CC) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000192
193# Archive a bunch of .o files into a .a file...
194AR = ar cq
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000195BISON = bison
Chris Lattner2f7c9632001-06-06 20:29:01 +0000196
197#----------------------------------------------------------
198
199# Source includes all of the cpp files, and objects are derived from the
200# source files...
Chris Lattneree6e1992001-10-18 01:48:09 +0000201# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advebd9cae22001-10-17 12:33:55 +0000202#
Vikram S. Adve53738842002-10-14 16:40:04 +0000203ifndef Source
Chris Lattneree6e1992001-10-18 01:48:09 +0000204Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Adve53738842002-10-14 16:40:04 +0000205endif
Vikram S. Advefe346892001-07-15 13:16:47 +0000206
Chris Lattnerd1a72292002-07-25 15:01:19 +0000207Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000208ObjectsO := $(addprefix $(BUILD_ROOT)/Release/,$(Objs))
209ObjectsP := $(addprefix $(BUILD_ROOT)/Profile/,$(Objs))
Chris Lattnerc58930c2002-09-19 19:42:24 +0000210ObjectsG := $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
Chris Lattner2f7c9632001-06-06 20:29:01 +0000211
Chris Lattner76d98ba2002-07-23 17:56:16 +0000212
Chris Lattner2f7c9632001-06-06 20:29:01 +0000213#---------------------------------------------------------
Chris Lattnerf3dd5f52002-09-18 03:22:27 +0000214# Handle the DIRS and PARALLEL_DIRS options
Chris Lattner2f7c9632001-06-06 20:29:01 +0000215#---------------------------------------------------------
216
Anand Shukla8c2a0ee2002-09-18 04:29:30 +0000217ifdef DIRS
Chris Lattnere48c528442003-01-16 20:02:30 +0000218all install clean test ::
Chris Lattner59ded8e2002-09-17 23:45:34 +0000219 $(VERB) for dir in ${DIRS}; do \
Chris Lattner539a23c2002-09-17 23:35:02 +0000220 (cd $$dir; $(MAKE) $@) || exit 1; \
221 done
Anand Shukla8c2a0ee2002-09-18 04:29:30 +0000222endif
Chris Lattnerf3dd5f52002-09-18 03:22:27 +0000223
224# Handle PARALLEL_DIRS
225ifdef PARALLEL_DIRS
226all :: $(addsuffix /.makeall , $(PARALLEL_DIRS))
227install :: $(addsuffix /.makeinstall, $(PARALLEL_DIRS))
228clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS))
Chris Lattnere48c528442003-01-16 20:02:30 +0000229test :: $(addsuffix /.maketest , $(PARALLEL_DIRS))
Chris Lattnerf3dd5f52002-09-18 03:22:27 +0000230
Chris Lattnere48c528442003-01-16 20:02:30 +0000231%/.makeall %/.makeinstall %/.makeclean %/.maketest:
Chris Lattnerf3dd5f52002-09-18 03:22:27 +0000232 $(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000233endif
234
235#---------------------------------------------------------
236# Handle the LIBRARYNAME option - used when building libs...
237#---------------------------------------------------------
Chris Lattner76d98ba2002-07-23 17:56:16 +0000238#
239# When libraries are built, they are allowed to optionally define the
240# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
241# from being built for the library. This .o files may then be linked to by a
242# tool if the tool does not need (or want) the semantics a .a file provides
243# (linking in only object files that are "needed"). If a library is never to
244# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
245# BUILD_ARCHIVE instead.
246#
247# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattnerd711a5e2002-07-31 21:32:05 +0000248# it's built as a .o file, then all of the constituent .o files in it will be
Chris Lattner76d98ba2002-07-23 17:56:16 +0000249# linked into tools (for example gccas) even if they only use one of the parts
250# of it. For this reason, sometimes it's useful to use libraries as .a files.
Chris Lattner2f7c9632001-06-06 20:29:01 +0000251
252ifdef LIBRARYNAME
Vikram S. Advefe346892001-07-15 13:16:47 +0000253
Chris Lattner0100eab2002-09-16 22:36:42 +0000254# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnere6e193ca2002-09-16 22:34:56 +0000255LIBRARYNAME := $(strip $(LIBRARYNAME))
256
Chris Lattner76d98ba2002-07-23 17:56:16 +0000257LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000258LIBNAME_P := $(LIBPROFILE)/lib$(LIBRARYNAME).so
Chris Lattner76d98ba2002-07-23 17:56:16 +0000259LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so
260LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000261LIBNAME_AP := $(LIBPROFILE)/lib$(LIBRARYNAME).a
Chris Lattner76d98ba2002-07-23 17:56:16 +0000262LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a
263LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000264LIBNAME_OBJP := $(LIBPROFILE)/$(LIBRARYNAME).o
Chris Lattner76d98ba2002-07-23 17:56:16 +0000265LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner2f7c9632001-06-06 20:29:01 +0000266
Vikram S. Adve15bd3ad2002-08-02 18:34:12 +0000267
268ifndef ENABLE_OPTIMIZED
Chris Lattner76d98ba2002-07-23 17:56:16 +0000269BUILD_LIBNAME_G := $(LIBNAME_G)
270ifndef DONT_BUILD_RELINKED
271BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
272endif
273ifdef BUILD_ARCHIVE
274BUILD_LIBNAME_AG := $(LIBNAME_AG)
275endif
Vikram S. Adve15bd3ad2002-08-02 18:34:12 +0000276endif
Chris Lattner2f7c9632001-06-06 20:29:01 +0000277
Chris Lattner76d98ba2002-07-23 17:56:16 +0000278# If optimized builds are enabled...
279ifdef ENABLE_OPTIMIZED
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000280 ifdef ENABLE_PROFILING
281 BUILD_LIBNAME_O := $(LIBNAME_P)
282 ifndef DONT_BUILD_RELINKED
283 BUILD_LIBNAME_OBJO := $(LIBNAME_OBJP)
284 endif
285 ifdef BUILD_ARCHIVE
286 BUILD_LIBNAME_AO := $(LIBNAME_AP)
287 endif
288 else
289 BUILD_LIBNAME_O := $(LIBNAME_O)
290 ifndef DONT_BUILD_RELINKED
291 BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
292 endif
293 ifdef BUILD_ARCHIVE
294 BUILD_LIBNAME_AO := $(LIBNAME_AO)
295 endif
296 endif
Chris Lattner76d98ba2002-07-23 17:56:16 +0000297endif
298
299all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug
300all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000301all:: $(BUILD_LIBNAME_AP) $(BUILD_LIBNAME_OBJP) # Profile
302dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) $(BUILD_LIBNAME_P) # .so files
Chris Lattner76d98ba2002-07-23 17:56:16 +0000303
Chris Lattner77330fa2002-08-09 15:41:55 +0000304$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattner2f7c9632001-06-06 20:29:01 +0000305 @echo ======= Linking $(LIBRARYNAME) release library =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000306 $(VERB) $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000307
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000308$(LIBNAME_P): $(ObjectsP) $(LibSubDirs) $(LIBPROFILE)/.dir
309 @echo ======= Linking $(LIBRARYNAME) profile library =======
310 $(VERB) $(MakeSOP) -o $@ $(ObjectsP) $(LibSubDirs) $(LibLinkOpts)
311
Chris Lattner77330fa2002-08-09 15:41:55 +0000312$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattner2f7c9632001-06-06 20:29:01 +0000313 @echo ======= Linking $(LIBRARYNAME) debug library =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000314 $(VERB) $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000315
Chris Lattner77330fa2002-08-09 15:41:55 +0000316$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Vikram S. Advefe346892001-07-15 13:16:47 +0000317 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner07c7c192001-09-07 22:57:58 +0000318 @rm -f $@
Misha Brukman1326a7c2002-09-12 16:05:39 +0000319 $(VERB) $(AR) $@ $(ObjectsO) $(LibSubDirs)
Vikram S. Advefe346892001-07-15 13:16:47 +0000320
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000321$(LIBNAME_AP): $(ObjectsP) $(LibSubDirs) $(LIBPROFILE)/.dir
322 @echo ======= Linking $(LIBRARYNAME) profile library =======
323 @rm -f $@
324 $(VERB) $(AR) $@ $(ObjectsP) $(LibSubDirs)
325
Chris Lattner77330fa2002-08-09 15:41:55 +0000326$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Vikram S. Advefe346892001-07-15 13:16:47 +0000327 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner07c7c192001-09-07 22:57:58 +0000328 @rm -f $@
Misha Brukman1326a7c2002-09-12 16:05:39 +0000329 $(VERB) $(AR) $@ $(ObjectsG) $(LibSubDirs)
Vikram S. Advefe346892001-07-15 13:16:47 +0000330
Chris Lattner77330fa2002-08-09 15:41:55 +0000331$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000332 @echo "Linking $@"
333 $(VERB) $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
Chris Lattner76d98ba2002-07-23 17:56:16 +0000334
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000335$(LIBNAME_OBJP): $(ObjectsP) $(LibSubDirs) $(LIBPROFILE)/.dir
336 @echo "Linking $@"
337 $(VERB) $(Relink) -o $@ $(ObjectsP) $(LibSubDirs)
338
Chris Lattner77330fa2002-08-09 15:41:55 +0000339$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattner8d081dd2002-09-25 17:15:22 +0000340 @echo "Linking $@"
Misha Brukman1326a7c2002-09-12 16:05:39 +0000341 $(VERB) $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
Chris Lattner76d98ba2002-07-23 17:56:16 +0000342
Chris Lattner2f7c9632001-06-06 20:29:01 +0000343endif
344
Chris Lattner07c7c192001-09-07 22:57:58 +0000345#------------------------------------------------------------------------
Vikram S. Advefa9dc582001-10-10 22:35:00 +0000346# Create a TAGS database for emacs
347#------------------------------------------------------------------------
348
Vikram S. Advea0e99082001-10-13 12:26:59 +0000349ifeq ($(LEVEL), .)
Vikram S. Advea0e99082001-10-13 12:26:59 +0000350tags:
Chris Lattner198d5eb2002-05-10 18:51:54 +0000351 etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Advea0e99082001-10-13 12:26:59 +0000352all:: tags
Vikram S. Advea0e99082001-10-13 12:26:59 +0000353endif
Vikram S. Advefa9dc582001-10-10 22:35:00 +0000354
355#------------------------------------------------------------------------
Chris Lattner07c7c192001-09-07 22:57:58 +0000356# Handle the TOOLNAME option - used when building tool executables...
357#------------------------------------------------------------------------
358#
359# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattner76d98ba2002-07-23 17:56:16 +0000360# libraries (and the order of the libs) that should be linked to the
361# tool. USEDLIBS should contain a list of library names (some with .a extension)
362# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner07c7c192001-09-07 22:57:58 +0000363#
364ifdef TOOLNAME
365
366# TOOLEXENAME* - These compute the output filenames to generate...
Chris Lattner01f68c62002-08-12 21:19:28 +0000367TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME)
368TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME)
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000369TOOLEXENAME_P := $(BUILD_ROOT_TOP)/tools/Profile/$(TOOLNAME)
370
371ifndef ENABLE_OPTIMIZED
372 TOOLEXENAMES := $(TOOLEXENAME_G)
373else
374 ifdef ENABLE_PROFILING
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000375 TOOLEXENAMES := $(TOOLEXENAME_P)
Vikram S. Advea0abb972002-09-20 16:15:57 +0000376 else
377 TOOLEXENAMES := $(TOOLEXENAME_O)
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000378 endif
Chris Lattner76d98ba2002-07-23 17:56:16 +0000379endif
Chris Lattner07c7c192001-09-07 22:57:58 +0000380
381# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Chris Lattner76d98ba2002-07-23 17:56:16 +0000382USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
383USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS))
384USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000385USED_LIBS_OPTIONS_P := $(patsubst %.o, $(LIBPROFILE)/%.o,$(USED_LIBS_OPTIONS))
Chris Lattner76d98ba2002-07-23 17:56:16 +0000386
Chris Lattner07c7c192001-09-07 22:57:58 +0000387
388# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattner76d98ba2002-07-23 17:56:16 +0000389# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
390# files seperately.
Chris Lattner07c7c192001-09-07 22:57:58 +0000391#
Chris Lattner76d98ba2002-07-23 17:56:16 +0000392STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
393USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
394USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000395USED_LIB_PATHS_P := $(addprefix $(LIBPROFILE)/, $(STATICUSEDLIBS))
Chris Lattnerf1313582002-11-04 20:50:33 +0000396LINK_OPTS := $(TOOLLINKOPTS) $(PLATFORMLINKOPTS)
Chris Lattner07c7c192001-09-07 22:57:58 +0000397
Chris Lattner3ecb7762003-01-22 16:13:31 +0000398
399# Tell make that we need to rebuild subdirectories before we can link the tool.
400# This affects things like LLI which has library subdirectories.
401$(USED_LIB_PATHS_G) $(USED_LIB_PATHS_O) $(USED_LIB_PATHS_P): \
402 $(addsuffix /.makeall, $(PARALLEL_DIRS))
403
Chris Lattner1fd501f2001-10-13 05:10:29 +0000404all:: $(TOOLEXENAMES)
Chris Lattner07c7c192001-09-07 22:57:58 +0000405clean::
Misha Brukman1326a7c2002-09-12 16:05:39 +0000406 $(VERB) rm -f $(TOOLEXENAMES)
Chris Lattner07c7c192001-09-07 22:57:58 +0000407
Chris Lattner3ecb7762003-01-22 16:13:31 +0000408$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(TOOLDEBUG)/.dir
Vikram S. Advea12d4c02002-10-20 21:45:49 +0000409 @echo ======= Linking $(TOOLNAME) debug executable $(WARN_MSG) =======
Chris Lattnerf1313582002-11-04 20:50:33 +0000410 $(VERB) $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(LINK_OPTS)
Chris Lattner07c7c192001-09-07 22:57:58 +0000411
Chris Lattner3ecb7762003-01-22 16:13:31 +0000412$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(TOOLRELEASE)/.dir
Chris Lattner500f0642002-09-12 17:02:40 +0000413 @echo ======= Linking $(TOOLNAME) release executable =======
Chris Lattnerf1313582002-11-04 20:50:33 +0000414 $(VERB) $(LinkO) -o $@ $(ObjectsO) $(USED_LIBS_OPTIONS_O) $(LINK_OPTS)
Chris Lattner07c7c192001-09-07 22:57:58 +0000415
Chris Lattner3ecb7762003-01-22 16:13:31 +0000416$(TOOLEXENAME_P): $(ObjectsP) $(USED_LIB_PATHS_P) $(TOOLPROFILE)/.dir
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000417 @echo ======= Linking $(TOOLNAME) profile executable =======
Chris Lattnerf1313582002-11-04 20:50:33 +0000418 $(VERB) $(LinkP) -o $@ $(ObjectsP) $(USED_LIBS_OPTIONS_P) $(LINK_OPTS)
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000419
Chris Lattner07c7c192001-09-07 22:57:58 +0000420endif
421
422
Chris Lattner2f7c9632001-06-06 20:29:01 +0000423
424#---------------------------------------------------------
Chris Lattner77330fa2002-08-09 15:41:55 +0000425.PRECIOUS: $(BUILD_ROOT)/Depend/.dir
426.PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir
Chris Lattner2f7c9632001-06-06 20:29:01 +0000427
Vikram S. Advefe346892001-07-15 13:16:47 +0000428# Create dependencies for the *.cpp files...
Chris Lattner77330fa2002-08-09 15:41:55 +0000429$(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000430 $(VERB) $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Profile/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@
Chris Lattner2f7c9632001-06-06 20:29:01 +0000431
Vikram S. Advefe346892001-07-15 13:16:47 +0000432# Create dependencies for the *.c files...
Chris Lattner77330fa2002-08-09 15:41:55 +0000433$(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000434 $(VERB) $(DependC) $< | sed 's|$*\.o *|Release/& Profile/& Debug/& Depend/$(@F)|g' > $@
Vikram S. Advefe346892001-07-15 13:16:47 +0000435
436# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattner77330fa2002-08-09 15:41:55 +0000437$(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000438 @echo "Compiling $<"
439 $(VERB) $(CompileO) $< -o $@
Chris Lattner2f7c9632001-06-06 20:29:01 +0000440
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000441$(BUILD_ROOT)/Release/%.o: %.c $(BUILD_ROOT)/Release/.dir
Chris Lattnerd3fcf422002-10-22 23:28:23 +0000442 $(VERB) $(CompileCO) $< -o $@
Vikram S. Advefe346892001-07-15 13:16:47 +0000443
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000444$(BUILD_ROOT)/Profile/%.o: %.cpp $(BUILD_ROOT)/Profile/.dir
445 @echo "Compiling $<"
446 $(VERB) $(CompileP) $< -o $@
447
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000448$(BUILD_ROOT)/Profile/%.o: %.c $(BUILD_ROOT)/Profile/.dir
449 @echo "Compiling $<"
450 $(VERB) $(CompileCP) $< -o $@
451
Chris Lattner77330fa2002-08-09 15:41:55 +0000452$(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000453 @echo "Compiling $<"
454 $(VERB) $(CompileG) $< -o $@
Chris Lattner2f7c9632001-06-06 20:29:01 +0000455
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000456$(BUILD_ROOT)/Debug/%.o: %.c $(BUILD_ROOT)/Debug/.dir
457 $(VERB) $(CompileCG) $< -o $@
Vikram S. Advefe346892001-07-15 13:16:47 +0000458
Chris Lattnerdb644dd2003-01-16 22:44:19 +0000459#
460# Rules for building lex/yacc files
461#
462LEX_FILES = $(filter %.l, $(Source))
463LEX_OUTPUT = $(LEX_FILES:%.l=%.cpp)
464YACC_FILES = $(filter %.y, $(Source))
465YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
466.PRECIOUS: $(LEX_OUTPUT) $(YACC_OUTPUT)
467
Chris Lattner2f7c9632001-06-06 20:29:01 +0000468# Create a .cpp source file from a flex input file... this uses sed to cut down
469# on the warnings emited by GCC...
470%.cpp: %.l
471 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
472
473# Rule for building the bison parsers...
474
475%.cpp %.h : %.y
Chris Lattnerdb644dd2003-01-16 22:44:19 +0000476 $(VERB) $(BISON) -v -d -p $(<:%Parser.y=%) $*.y
477 $(VERB) mv -f $*.tab.c $*.cpp
478 $(VERB) mv -f $*.tab.h $*.h
Chris Lattner2f7c9632001-06-06 20:29:01 +0000479
480# To create the directories...
481%/.dir:
Chris Lattnerdb644dd2003-01-16 22:44:19 +0000482 $(VERB) mkdir -p $*
Chris Lattner2f7c9632001-06-06 20:29:01 +0000483 @date > $@
484
Chris Lattner23d47392003-01-16 21:06:18 +0000485# To create postscript files from dot files...
486%.ps: %.dot
487 dot -Tps < $< > $@
488
Chris Lattnera8ce09e2002-09-22 02:47:15 +0000489# 'make clean' nukes the tree
Chris Lattner2f7c9632001-06-06 20:29:01 +0000490clean::
Vikram S. Adve20aa62f2002-09-20 14:03:13 +0000491 $(VERB) rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Profile $(BUILD_ROOT)/Depend
Misha Brukman8b6e7d52002-12-04 17:08:15 +0000492 $(VERB) rm -f core core.[0-9][0-9]* *.o *.d *.so *~ *.flc
Chris Lattnerdb644dd2003-01-16 22:44:19 +0000493 $(VERB) rm -f $(LEX_OUTPUT) $(YACC_OUTPUT)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000494
495# If dependancies were generated for the file that included this file,
496# include the dependancies now...
497#
Chris Lattner01f68c62002-08-12 21:19:28 +0000498SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source)))))
Chris Lattner2f7c9632001-06-06 20:29:01 +0000499ifneq ($(SourceDepend),)
Chris Lattner1ad7c122002-10-25 14:32:42 +0000500-include $(SourceDepend)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000501endif