blob: 41afc1aa1e6ab995633082c3b4dedbd5a3b7f548 [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
110TOOLDEBUG := $(BUILD_ROOT_TOP)/tools/Debug
111TOOLRELEASE := $(BUILD_ROOT_TOP)/tools/Release
Chris Lattner76d98ba2002-07-23 17:56:16 +0000112
Misha Brukman1326a7c2002-09-12 16:05:39 +0000113# Verbosity levels
114ifdef VERBOSE
115VERB :=
116else
117VERB := @
118endif
119
Chris Lattner2f7c9632001-06-06 20:29:01 +0000120#---------------------------------------------------------
121# Compilation options...
122#---------------------------------------------------------
123
Chris Lattnerc58930c2002-09-19 19:42:24 +0000124# Special tools used while building the LLVM tree. Burg is built as part of the
125# utils directory.
126#
127BURG := $(LEVEL)/utils/Burg/burg
128RunBurg := $(BURG) $(BURG_OPTS)
129
Vikram S. Adveca4a3822001-08-06 19:01:20 +0000130
Chris Lattner2f7c9632001-06-06 20:29:01 +0000131# Enable this for profiling support with 'gprof'
Chris Lattner198d5eb2002-05-10 18:51:54 +0000132ifdef ENABLE_PROFILING
133PROFILE = -pg
134else
135PROFILE =
136endif
Chris Lattner2f7c9632001-06-06 20:29:01 +0000137
Vikram S. Adved141c282002-09-18 11:55:13 +0000138# By default, strip symbol information from executable
139ifdef KEEP_SYMBOLS
140STRIP =
141else
142STRIP = -s
143endif
144
Chris Lattner2efcf432002-09-13 16:02:26 +0000145# Allow gnu extensions...
146CPPFLAGS += -D_GNU_SOURCE
147
Chris Lattner068f8222002-01-23 05:46:01 +0000148# -Wno-unused-parameter
Chris Lattner01f68c62002-08-12 21:19:28 +0000149CompileCommonOpts := $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner2f7c9632001-06-06 20:29:01 +0000150
151# Compile a file, don't link...
Chris Lattner01f68c62002-08-12 21:19:28 +0000152Compile := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
153CompileG := $(Compile) -g -D_DEBUG
154CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
Chris Lattner2f7c9632001-06-06 20:29:01 +0000155
156# Link final executable
Chris Lattnerb20b290c2001-10-30 20:24:08 +0000157
Chris Lattnerd711a5e2002-07-31 21:32:05 +0000158ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1'
Chris Lattner01f68c62002-08-12 21:19:28 +0000159Link := $(PURIFY) $(CXX) $(PROFILE) -static
Chris Lattnerf0a88d12002-04-05 18:56:58 +0000160else
Chris Lattner01f68c62002-08-12 21:19:28 +0000161Link := $(CXX) $(PROFILE)
Chris Lattnerf0a88d12002-04-05 18:56:58 +0000162endif
Vikram S. Adved141c282002-09-18 11:55:13 +0000163LinkG := $(Link) -g -L $(LIBDEBUG) $(STRIP)
Chris Lattner01f68c62002-08-12 21:19:28 +0000164LinkO := $(Link) -O3 -L $(LIBRELEASE)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000165
Chris Lattner76d98ba2002-07-23 17:56:16 +0000166# Create one .o file from a bunch of .o files...
167Relink = ld -r
168
Chris Lattnere5ad7bd2002-09-13 22:14:47 +0000169# MakeSO - Create a .so file from a .o files...
170MakeSO := $(CXX) $(MakeSharedObjectOption) $(PROFILE)
171MakeSOO := $(MakeSO) -O3
172
Chris Lattner2f7c9632001-06-06 20:29:01 +0000173# Create dependancy file from CPP file, send to stdout.
Chris Lattner01f68c62002-08-12 21:19:28 +0000174Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000175
176# Archive a bunch of .o files into a .a file...
177AR = ar cq
178
179#----------------------------------------------------------
180
181# Source includes all of the cpp files, and objects are derived from the
182# source files...
Chris Lattneree6e1992001-10-18 01:48:09 +0000183# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advebd9cae22001-10-17 12:33:55 +0000184#
Chris Lattneree6e1992001-10-18 01:48:09 +0000185Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Advefe346892001-07-15 13:16:47 +0000186
Chris Lattnerd1a72292002-07-25 15:01:19 +0000187Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
Chris Lattnerc58930c2002-09-19 19:42:24 +0000188ObjectsO := $(addprefix $(BUILD_ROOT)/Release/,$(Objs)))
189ObjectsG := $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
Chris Lattner2f7c9632001-06-06 20:29:01 +0000190
Chris Lattner76d98ba2002-07-23 17:56:16 +0000191
Chris Lattner2f7c9632001-06-06 20:29:01 +0000192#---------------------------------------------------------
Chris Lattnerf3dd5f52002-09-18 03:22:27 +0000193# Handle the DIRS and PARALLEL_DIRS options
Chris Lattner2f7c9632001-06-06 20:29:01 +0000194#---------------------------------------------------------
195
Anand Shukla8c2a0ee2002-09-18 04:29:30 +0000196ifdef DIRS
Chris Lattnerf3dd5f52002-09-18 03:22:27 +0000197all install clean ::
Chris Lattner59ded8e2002-09-17 23:45:34 +0000198 $(VERB) for dir in ${DIRS}; do \
Chris Lattner539a23c2002-09-17 23:35:02 +0000199 (cd $$dir; $(MAKE) $@) || exit 1; \
200 done
Anand Shukla8c2a0ee2002-09-18 04:29:30 +0000201endif
Chris Lattnerf3dd5f52002-09-18 03:22:27 +0000202
203# Handle PARALLEL_DIRS
204ifdef PARALLEL_DIRS
205all :: $(addsuffix /.makeall , $(PARALLEL_DIRS))
206install :: $(addsuffix /.makeinstall, $(PARALLEL_DIRS))
207clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS))
208
209%/.makeall %/.makeinstall %/.makeclean:
210 $(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
211
Chris Lattner2f7c9632001-06-06 20:29:01 +0000212endif
213
214#---------------------------------------------------------
215# Handle the LIBRARYNAME option - used when building libs...
216#---------------------------------------------------------
Chris Lattner76d98ba2002-07-23 17:56:16 +0000217#
218# When libraries are built, they are allowed to optionally define the
219# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
220# from being built for the library. This .o files may then be linked to by a
221# tool if the tool does not need (or want) the semantics a .a file provides
222# (linking in only object files that are "needed"). If a library is never to
223# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
224# BUILD_ARCHIVE instead.
225#
226# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattnerd711a5e2002-07-31 21:32:05 +0000227# 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 +0000228# linked into tools (for example gccas) even if they only use one of the parts
229# of it. For this reason, sometimes it's useful to use libraries as .a files.
Chris Lattner2f7c9632001-06-06 20:29:01 +0000230
231ifdef LIBRARYNAME
Vikram S. Advefe346892001-07-15 13:16:47 +0000232
Chris Lattner0100eab2002-09-16 22:36:42 +0000233# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnere6e193ca2002-09-16 22:34:56 +0000234LIBRARYNAME := $(strip $(LIBRARYNAME))
235
Chris Lattner76d98ba2002-07-23 17:56:16 +0000236LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so
237LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so
238LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a
239LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a
240LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
241LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner2f7c9632001-06-06 20:29:01 +0000242
Vikram S. Adve15bd3ad2002-08-02 18:34:12 +0000243
244ifndef ENABLE_OPTIMIZED
Chris Lattner76d98ba2002-07-23 17:56:16 +0000245BUILD_LIBNAME_G := $(LIBNAME_G)
246ifndef DONT_BUILD_RELINKED
247BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
248endif
249ifdef BUILD_ARCHIVE
250BUILD_LIBNAME_AG := $(LIBNAME_AG)
251endif
Vikram S. Adve15bd3ad2002-08-02 18:34:12 +0000252endif
Chris Lattner2f7c9632001-06-06 20:29:01 +0000253
Chris Lattner76d98ba2002-07-23 17:56:16 +0000254# If optimized builds are enabled...
255ifdef ENABLE_OPTIMIZED
256BUILD_LIBNAME_O := $(LIBNAME_O)
257ifndef DONT_BUILD_RELINKED
258BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
259endif
260ifdef BUILD_ARCHIVE
261BUILD_LIBNAME_AO := $(LIBNAME_AO)
262endif
263endif
264
265all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug
266all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release
267dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files
268
Chris Lattner77330fa2002-08-09 15:41:55 +0000269$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattner2f7c9632001-06-06 20:29:01 +0000270 @echo ======= Linking $(LIBRARYNAME) release library =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000271 $(VERB) $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000272
Chris Lattner77330fa2002-08-09 15:41:55 +0000273$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattner2f7c9632001-06-06 20:29:01 +0000274 @echo ======= Linking $(LIBRARYNAME) debug library =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000275 $(VERB) $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000276
Chris Lattner77330fa2002-08-09 15:41:55 +0000277$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Vikram S. Advefe346892001-07-15 13:16:47 +0000278 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner07c7c192001-09-07 22:57:58 +0000279 @rm -f $@
Misha Brukman1326a7c2002-09-12 16:05:39 +0000280 $(VERB) $(AR) $@ $(ObjectsO) $(LibSubDirs)
Vikram S. Advefe346892001-07-15 13:16:47 +0000281
Chris Lattner77330fa2002-08-09 15:41:55 +0000282$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Vikram S. Advefe346892001-07-15 13:16:47 +0000283 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner07c7c192001-09-07 22:57:58 +0000284 @rm -f $@
Misha Brukman1326a7c2002-09-12 16:05:39 +0000285 $(VERB) $(AR) $@ $(ObjectsG) $(LibSubDirs)
Vikram S. Advefe346892001-07-15 13:16:47 +0000286
Chris Lattner77330fa2002-08-09 15:41:55 +0000287$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000288 @echo "Linking $@"
289 $(VERB) $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
Chris Lattner76d98ba2002-07-23 17:56:16 +0000290
Chris Lattner77330fa2002-08-09 15:41:55 +0000291$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000292 $(VERB) $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
Chris Lattner76d98ba2002-07-23 17:56:16 +0000293
Chris Lattner2f7c9632001-06-06 20:29:01 +0000294endif
295
Chris Lattner07c7c192001-09-07 22:57:58 +0000296#------------------------------------------------------------------------
Vikram S. Advefa9dc582001-10-10 22:35:00 +0000297# Create a TAGS database for emacs
298#------------------------------------------------------------------------
299
Vikram S. Advea0e99082001-10-13 12:26:59 +0000300ifeq ($(LEVEL), .)
Vikram S. Advea0e99082001-10-13 12:26:59 +0000301tags:
Chris Lattner198d5eb2002-05-10 18:51:54 +0000302 etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Advea0e99082001-10-13 12:26:59 +0000303all:: tags
Vikram S. Advea0e99082001-10-13 12:26:59 +0000304endif
Vikram S. Advefa9dc582001-10-10 22:35:00 +0000305
306#------------------------------------------------------------------------
Chris Lattner07c7c192001-09-07 22:57:58 +0000307# Handle the TOOLNAME option - used when building tool executables...
308#------------------------------------------------------------------------
309#
310# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattner76d98ba2002-07-23 17:56:16 +0000311# libraries (and the order of the libs) that should be linked to the
312# tool. USEDLIBS should contain a list of library names (some with .a extension)
313# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner07c7c192001-09-07 22:57:58 +0000314#
315ifdef TOOLNAME
316
317# TOOLEXENAME* - These compute the output filenames to generate...
Chris Lattner01f68c62002-08-12 21:19:28 +0000318TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME)
319TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME)
320TOOLEXENAMES := $(TOOLEXENAME_G)
Chris Lattner76d98ba2002-07-23 17:56:16 +0000321ifdef ENABLE_OPTIMIZED
322TOOLEXENAMES += $(TOOLEXENAME_O)
323endif
Chris Lattner07c7c192001-09-07 22:57:58 +0000324
325# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Chris Lattner76d98ba2002-07-23 17:56:16 +0000326USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
327USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS))
328USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
329
Chris Lattner07c7c192001-09-07 22:57:58 +0000330
331# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattner76d98ba2002-07-23 17:56:16 +0000332# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
333# files seperately.
Chris Lattner07c7c192001-09-07 22:57:58 +0000334#
Chris Lattner76d98ba2002-07-23 17:56:16 +0000335STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
336USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
337USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
Chris Lattner07c7c192001-09-07 22:57:58 +0000338
Chris Lattner1fd501f2001-10-13 05:10:29 +0000339all:: $(TOOLEXENAMES)
Chris Lattner07c7c192001-09-07 22:57:58 +0000340clean::
Misha Brukman1326a7c2002-09-12 16:05:39 +0000341 $(VERB) rm -f $(TOOLEXENAMES)
Chris Lattner07c7c192001-09-07 22:57:58 +0000342
Chris Lattner01f68c62002-08-12 21:19:28 +0000343$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir
Chris Lattner500f0642002-09-12 17:02:40 +0000344 @echo ======= Linking $(TOOLNAME) debug executable =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000345 $(VERB) $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
Chris Lattner07c7c192001-09-07 22:57:58 +0000346
Chris Lattner01f68c62002-08-12 21:19:28 +0000347$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir
Chris Lattner500f0642002-09-12 17:02:40 +0000348 @echo ======= Linking $(TOOLNAME) release executable =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000349 $(VERB) $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
Chris Lattner07c7c192001-09-07 22:57:58 +0000350
351endif
352
353
Chris Lattner2f7c9632001-06-06 20:29:01 +0000354
355#---------------------------------------------------------
Chris Lattner77330fa2002-08-09 15:41:55 +0000356.PRECIOUS: $(BUILD_ROOT)/Depend/.dir
357.PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir
Chris Lattner2f7c9632001-06-06 20:29:01 +0000358
Vikram S. Advefe346892001-07-15 13:16:47 +0000359# Create dependencies for the *.cpp files...
Chris Lattner77330fa2002-08-09 15:41:55 +0000360$(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000361 $(VERB) $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@
Chris Lattner2f7c9632001-06-06 20:29:01 +0000362
Vikram S. Advefe346892001-07-15 13:16:47 +0000363# Create dependencies for the *.c files...
Chris Lattner77330fa2002-08-09 15:41:55 +0000364$(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000365 $(VERB) $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
Vikram S. Advefe346892001-07-15 13:16:47 +0000366
367# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattner77330fa2002-08-09 15:41:55 +0000368$(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000369 @echo "Compiling $<"
370 $(VERB) $(CompileO) $< -o $@
Chris Lattner2f7c9632001-06-06 20:29:01 +0000371
Chris Lattner068f8222002-01-23 05:46:01 +0000372#Release/%.o: %.c Release/.dir Depend/.dir
373# $(CompileOC) $< -o $@
Vikram S. Advefe346892001-07-15 13:16:47 +0000374
Chris Lattner77330fa2002-08-09 15:41:55 +0000375$(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000376 @echo "Compiling $<"
377 $(VERB) $(CompileG) $< -o $@
Chris Lattner2f7c9632001-06-06 20:29:01 +0000378
Chris Lattner77330fa2002-08-09 15:41:55 +0000379#Debug/%.o: %.c Debug/.dir
Chris Lattner068f8222002-01-23 05:46:01 +0000380# $(CompileGC) $< -o $@
Vikram S. Advefe346892001-07-15 13:16:47 +0000381
Chris Lattner2f7c9632001-06-06 20:29:01 +0000382# Create a .cpp source file from a flex input file... this uses sed to cut down
383# on the warnings emited by GCC...
384%.cpp: %.l
385 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
386
387# Rule for building the bison parsers...
388
389%.cpp %.h : %.y
Misha Brukman1326a7c2002-09-12 16:05:39 +0000390 $(VERB) bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
391 $(VERB) mv -f $(basename $@).tab.c $(basename $@).cpp
392 $(VERB) mv -f $(basename $@).tab.h $(basename $@).h
Chris Lattner2f7c9632001-06-06 20:29:01 +0000393
394# To create the directories...
395%/.dir:
Misha Brukman1326a7c2002-09-12 16:05:39 +0000396 $(VERB) mkdir -p $(@D)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000397 @date > $@
398
Chris Lattnerd711a5e2002-07-31 21:32:05 +0000399# Clean nukes the tree
Chris Lattner2f7c9632001-06-06 20:29:01 +0000400clean::
Misha Brukman1326a7c2002-09-12 16:05:39 +0000401 $(VERB) rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Depend
402 $(VERB) rm -f core *.o *.d *.so *~ *.flc
Chris Lattner2f7c9632001-06-06 20:29:01 +0000403
404# If dependancies were generated for the file that included this file,
405# include the dependancies now...
406#
Chris Lattner01f68c62002-08-12 21:19:28 +0000407SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source)))))
Chris Lattner2f7c9632001-06-06 20:29:01 +0000408ifneq ($(SourceDepend),)
409include $(SourceDepend)
410endif