blob: a5ee9c80f1cad278be91973a3f050823646092e4 [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#
Vikram S. Advec214e712002-08-29 23:28:46 +00008# The following functionality can be set by setting incoming variables.
9# The variable $(LEVEL) *must* be set:
Chris Lattner00950542001-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 Lattnera8abc222002-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 Lattner00950542001-06-06 20:29:01 +000019#
Chris Lattnera8abc222002-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 Lattner00950542001-06-06 20:29:01 +000025# is not set, it defaults to be all of the .cpp, .c, .y, and .l files
Chris Lattnere0010592001-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 Lattner00950542001-06-06 20:29:01 +000028#
Vikram S. Adved60aede2002-07-09 12:04:21 +000029#===-----------------------------------------------------------------------====
Chris Lattner00950542001-06-06 20:29:01 +000030
Vikram S. Advec214e712002-08-29 23:28:46 +000031# Configuration file to set paths specific to local installation of LLVM
32#
33include $(LEVEL)/Makefile.config
34
Chris Lattnere62dbe92002-07-23 17:56:16 +000035# These are options that can either be enabled here, or can be enabled on the
Chris Lattner9dd794e2002-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 Lattnere62dbe92002-07-23 17:56:16 +000041#
42#ENABLE_PROFILING = 1
Chris Lattner9dd794e2002-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 Lattnere62dbe92002-07-23 17:56:16 +000047#ENABLE_PURIFY = 1
Chris Lattner9dd794e2002-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 Lattnere62dbe92002-07-23 17:56:16 +000052#ENABLE_OPTIMIZED = 1
53
Chris Lattner4bb13b82002-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 Lattneredf1f232002-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 Lattnerb19e59c2001-06-29 05:20:16 +000067# Default Rule: Make sure it's also a :: rule
Chris Lattner00950542001-06-06 20:29:01 +000068all ::
69
70# Default for install is to at least build everything...
71install ::
72
Chris Lattnere16b1b42002-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. Advec214e712002-08-29 23:28:46 +000078ifeq ($(LLVM_OBJ_DIR),.)
79BUILD_ROOT = $(LLVM_OBJ_DIR)
80BUILD_ROOT_TOP = $(LEVEL)
Chris Lattner285af382002-08-12 21:19:28 +000081else
82
Vikram S. Advec214e712002-08-29 23:28:46 +000083BUILD_ROOT := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(shell pwd))
Chris Lattner285af382002-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. Advec214e712002-08-29 23:28:46 +000092BUILD_ROOT_TOP := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(TOP_DIRECTORY))
Chris Lattnere16b1b42002-08-09 15:41:55 +000093endif
94
Chris Lattner00950542001-06-06 20:29:01 +000095#--------------------------------------------------------------------
Vikram S. Advec214e712002-08-29 23:28:46 +000096# Variables derived from configuration options...
Chris Lattner00950542001-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. Advedba59ef2001-08-06 19:01:20 +0000103BURG_OPTS = -I
104
Vikram S. Advec214e712002-08-29 23:28:46 +0000105PURIFY := $(PURIFY) -cache-dir="$(BUILD_ROOT_TOP)/../purifycache" -chain-length="30" -messages=all
Chris Lattner6e390702001-10-30 20:24:08 +0000106
Chris Lattnere62dbe92002-07-23 17:56:16 +0000107# Shorthand for commonly accessed directories
Chris Lattner285af382002-08-12 21:19:28 +0000108LIBDEBUG := $(BUILD_ROOT_TOP)/lib/Debug
109LIBRELEASE := $(BUILD_ROOT_TOP)/lib/Release
110TOOLDEBUG := $(BUILD_ROOT_TOP)/tools/Debug
111TOOLRELEASE := $(BUILD_ROOT_TOP)/tools/Release
Chris Lattnere62dbe92002-07-23 17:56:16 +0000112
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000113# Verbosity levels
114ifdef VERBOSE
115VERB :=
116else
117VERB := @
118endif
119
Chris Lattner00950542001-06-06 20:29:01 +0000120#---------------------------------------------------------
121# Compilation options...
122#---------------------------------------------------------
123
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000124# Special tools used while building
Chris Lattner285af382002-08-12 21:19:28 +0000125RunBurg := $(BURG) $(BURG_OPTS)
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000126
Chris Lattner00950542001-06-06 20:29:01 +0000127# Enable this for profiling support with 'gprof'
Chris Lattner18f47012002-05-10 18:51:54 +0000128ifdef ENABLE_PROFILING
129PROFILE = -pg
130else
131PROFILE =
132endif
Chris Lattner00950542001-06-06 20:29:01 +0000133
Chris Lattner73e1d0f2002-09-13 16:02:26 +0000134# Allow gnu extensions...
135CPPFLAGS += -D_GNU_SOURCE
136
Chris Lattnerc7acf812002-01-23 05:46:01 +0000137# -Wno-unused-parameter
Chris Lattner285af382002-08-12 21:19:28 +0000138CompileCommonOpts := $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner00950542001-06-06 20:29:01 +0000139
140# Compile a file, don't link...
Chris Lattner285af382002-08-12 21:19:28 +0000141Compile := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
142CompileG := $(Compile) -g -D_DEBUG
143CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
Chris Lattner00950542001-06-06 20:29:01 +0000144
145# Link final executable
Chris Lattner6e390702001-10-30 20:24:08 +0000146
Chris Lattner1917e952002-07-31 21:32:05 +0000147ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1'
Chris Lattner285af382002-08-12 21:19:28 +0000148Link := $(PURIFY) $(CXX) $(PROFILE) -static
Chris Lattner12604ed2002-04-05 18:56:58 +0000149else
Chris Lattner285af382002-08-12 21:19:28 +0000150Link := $(CXX) $(PROFILE)
Chris Lattner12604ed2002-04-05 18:56:58 +0000151endif
Chris Lattner285af382002-08-12 21:19:28 +0000152LinkG := $(Link) -g -L $(LIBDEBUG)
153LinkO := $(Link) -O3 -L $(LIBRELEASE)
Chris Lattner00950542001-06-06 20:29:01 +0000154
Chris Lattnere62dbe92002-07-23 17:56:16 +0000155# Create one .o file from a bunch of .o files...
156Relink = ld -r
157
Chris Lattner4bb13b82002-09-13 22:14:47 +0000158# MakeSO - Create a .so file from a .o files...
159MakeSO := $(CXX) $(MakeSharedObjectOption) $(PROFILE)
160MakeSOO := $(MakeSO) -O3
161
Chris Lattner00950542001-06-06 20:29:01 +0000162# Create dependancy file from CPP file, send to stdout.
Chris Lattner285af382002-08-12 21:19:28 +0000163Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattner00950542001-06-06 20:29:01 +0000164
165# Archive a bunch of .o files into a .a file...
166AR = ar cq
167
168#----------------------------------------------------------
169
170# Source includes all of the cpp files, and objects are derived from the
171# source files...
Chris Lattnere0010592001-10-18 01:48:09 +0000172# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +0000173#
Chris Lattnere0010592001-10-18 01:48:09 +0000174Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000175
Chris Lattner4fa128c2002-07-25 15:01:19 +0000176Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
Chris Lattnere16b1b42002-08-09 15:41:55 +0000177ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs)))
178ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
Chris Lattner00950542001-06-06 20:29:01 +0000179
Chris Lattnere62dbe92002-07-23 17:56:16 +0000180
Chris Lattner00950542001-06-06 20:29:01 +0000181#---------------------------------------------------------
Chris Lattnera8abc222002-09-18 03:22:27 +0000182# Handle the DIRS and PARALLEL_DIRS options
Chris Lattner00950542001-06-06 20:29:01 +0000183#---------------------------------------------------------
184
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000185ifdef DIRS
Chris Lattnera8abc222002-09-18 03:22:27 +0000186all install clean ::
Chris Lattner16d1f732002-09-17 23:45:34 +0000187 $(VERB) for dir in ${DIRS}; do \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000188 (cd $$dir; $(MAKE) $@) || exit 1; \
189 done
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000190endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000191
192# Handle PARALLEL_DIRS
193ifdef PARALLEL_DIRS
194all :: $(addsuffix /.makeall , $(PARALLEL_DIRS))
195install :: $(addsuffix /.makeinstall, $(PARALLEL_DIRS))
196clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS))
197
198%/.makeall %/.makeinstall %/.makeclean:
199 $(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
200
Chris Lattner00950542001-06-06 20:29:01 +0000201endif
202
203#---------------------------------------------------------
204# Handle the LIBRARYNAME option - used when building libs...
205#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000206#
207# When libraries are built, they are allowed to optionally define the
208# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
209# from being built for the library. This .o files may then be linked to by a
210# tool if the tool does not need (or want) the semantics a .a file provides
211# (linking in only object files that are "needed"). If a library is never to
212# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
213# BUILD_ARCHIVE instead.
214#
215# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattner1917e952002-07-31 21:32:05 +0000216# 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 +0000217# linked into tools (for example gccas) even if they only use one of the parts
218# of it. For this reason, sometimes it's useful to use libraries as .a files.
Chris Lattner00950542001-06-06 20:29:01 +0000219
220ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000221
Chris Lattner2a548c52002-09-16 22:36:42 +0000222# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000223LIBRARYNAME := $(strip $(LIBRARYNAME))
224
Chris Lattnere62dbe92002-07-23 17:56:16 +0000225LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so
226LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so
227LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a
228LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a
229LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
230LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner00950542001-06-06 20:29:01 +0000231
Vikram S. Adve60f56062002-08-02 18:34:12 +0000232
233ifndef ENABLE_OPTIMIZED
Chris Lattnere62dbe92002-07-23 17:56:16 +0000234BUILD_LIBNAME_G := $(LIBNAME_G)
235ifndef DONT_BUILD_RELINKED
236BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
237endif
238ifdef BUILD_ARCHIVE
239BUILD_LIBNAME_AG := $(LIBNAME_AG)
240endif
Vikram S. Adve60f56062002-08-02 18:34:12 +0000241endif
Chris Lattner00950542001-06-06 20:29:01 +0000242
Chris Lattnere62dbe92002-07-23 17:56:16 +0000243# If optimized builds are enabled...
244ifdef ENABLE_OPTIMIZED
245BUILD_LIBNAME_O := $(LIBNAME_O)
246ifndef DONT_BUILD_RELINKED
247BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
248endif
249ifdef BUILD_ARCHIVE
250BUILD_LIBNAME_AO := $(LIBNAME_AO)
251endif
252endif
253
254all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug
255all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release
256dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files
257
Chris Lattnere16b1b42002-08-09 15:41:55 +0000258$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000259 @echo ======= Linking $(LIBRARYNAME) release library =======
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000260 $(VERB) $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner00950542001-06-06 20:29:01 +0000261
Chris Lattnere16b1b42002-08-09 15:41:55 +0000262$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000263 @echo ======= Linking $(LIBRARYNAME) debug library =======
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000264 $(VERB) $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner00950542001-06-06 20:29:01 +0000265
Chris Lattnere16b1b42002-08-09 15:41:55 +0000266$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000267 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000268 @rm -f $@
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000269 $(VERB) $(AR) $@ $(ObjectsO) $(LibSubDirs)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000270
Chris Lattnere16b1b42002-08-09 15:41:55 +0000271$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000272 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000273 @rm -f $@
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000274 $(VERB) $(AR) $@ $(ObjectsG) $(LibSubDirs)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000275
Chris Lattnere16b1b42002-08-09 15:41:55 +0000276$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000277 @echo "Linking $@"
278 $(VERB) $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000279
Chris Lattnere16b1b42002-08-09 15:41:55 +0000280$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000281 $(VERB) $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000282
Chris Lattner00950542001-06-06 20:29:01 +0000283endif
284
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000285#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000286# Create a TAGS database for emacs
287#------------------------------------------------------------------------
288
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000289ifeq ($(LEVEL), .)
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000290tags:
Chris Lattner18f47012002-05-10 18:51:54 +0000291 etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000292all:: tags
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000293endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000294
295#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000296# Handle the TOOLNAME option - used when building tool executables...
297#------------------------------------------------------------------------
298#
299# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattnere62dbe92002-07-23 17:56:16 +0000300# libraries (and the order of the libs) that should be linked to the
301# tool. USEDLIBS should contain a list of library names (some with .a extension)
302# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000303#
304ifdef TOOLNAME
305
306# TOOLEXENAME* - These compute the output filenames to generate...
Chris Lattner285af382002-08-12 21:19:28 +0000307TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME)
308TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME)
309TOOLEXENAMES := $(TOOLEXENAME_G)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000310ifdef ENABLE_OPTIMIZED
311TOOLEXENAMES += $(TOOLEXENAME_O)
312endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000313
314# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Chris Lattnere62dbe92002-07-23 17:56:16 +0000315USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
316USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS))
317USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
318
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000319
320# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattnere62dbe92002-07-23 17:56:16 +0000321# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
322# files seperately.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000323#
Chris Lattnere62dbe92002-07-23 17:56:16 +0000324STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
325USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
326USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000327
Chris Lattner669bd7c2001-10-13 05:10:29 +0000328all:: $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000329clean::
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000330 $(VERB) rm -f $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000331
Chris Lattner285af382002-08-12 21:19:28 +0000332$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir
Chris Lattner287d4432002-09-12 17:02:40 +0000333 @echo ======= Linking $(TOOLNAME) debug executable =======
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000334 $(VERB) $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000335
Chris Lattner285af382002-08-12 21:19:28 +0000336$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir
Chris Lattner287d4432002-09-12 17:02:40 +0000337 @echo ======= Linking $(TOOLNAME) release executable =======
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000338 $(VERB) $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000339
340endif
341
342
Chris Lattner00950542001-06-06 20:29:01 +0000343
344#---------------------------------------------------------
Chris Lattnere16b1b42002-08-09 15:41:55 +0000345.PRECIOUS: $(BUILD_ROOT)/Depend/.dir
346.PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000347
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000348# Create dependencies for the *.cpp files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000349$(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000350 $(VERB) $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@
Chris Lattner00950542001-06-06 20:29:01 +0000351
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000352# Create dependencies for the *.c files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000353$(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000354 $(VERB) $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000355
356# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000357$(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000358 @echo "Compiling $<"
359 $(VERB) $(CompileO) $< -o $@
Chris Lattner00950542001-06-06 20:29:01 +0000360
Chris Lattnerc7acf812002-01-23 05:46:01 +0000361#Release/%.o: %.c Release/.dir Depend/.dir
362# $(CompileOC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000363
Chris Lattnere16b1b42002-08-09 15:41:55 +0000364$(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000365 @echo "Compiling $<"
366 $(VERB) $(CompileG) $< -o $@
Chris Lattner00950542001-06-06 20:29:01 +0000367
Chris Lattnere16b1b42002-08-09 15:41:55 +0000368#Debug/%.o: %.c Debug/.dir
Chris Lattnerc7acf812002-01-23 05:46:01 +0000369# $(CompileGC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000370
Chris Lattner00950542001-06-06 20:29:01 +0000371# Create a .cpp source file from a flex input file... this uses sed to cut down
372# on the warnings emited by GCC...
373%.cpp: %.l
374 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
375
376# Rule for building the bison parsers...
377
378%.cpp %.h : %.y
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000379 $(VERB) bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
380 $(VERB) mv -f $(basename $@).tab.c $(basename $@).cpp
381 $(VERB) mv -f $(basename $@).tab.h $(basename $@).h
Chris Lattner00950542001-06-06 20:29:01 +0000382
383# To create the directories...
384%/.dir:
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000385 $(VERB) mkdir -p $(@D)
Chris Lattner00950542001-06-06 20:29:01 +0000386 @date > $@
387
Chris Lattner1917e952002-07-31 21:32:05 +0000388# Clean nukes the tree
Chris Lattner00950542001-06-06 20:29:01 +0000389clean::
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000390 $(VERB) rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Depend
391 $(VERB) rm -f core *.o *.d *.so *~ *.flc
Chris Lattner00950542001-06-06 20:29:01 +0000392
393# If dependancies were generated for the file that included this file,
394# include the dependancies now...
395#
Chris Lattner285af382002-08-12 21:19:28 +0000396SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source)))))
Chris Lattner00950542001-06-06 20:29:01 +0000397ifneq ($(SourceDepend),)
398include $(SourceDepend)
399endif