blob: da515716b0add086daebc0e5120570f1f199fb7e [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
16# so that each of the targets "all", "install", and "clean" each build.
17# the subdirectories before the local target.
18#
19# 3. Source - If specified, this sets the source code filenames. If this
20# is not set, it defaults to be all of the .cpp, .c, .y, and .l files
Chris Lattneree6e1992001-10-18 01:48:09 +000021# in the current directory. Also, if you want to build files in addition
22# to the local files, you can use the ExtraSource variable
Chris Lattner2f7c9632001-06-06 20:29:01 +000023#
Vikram S. Adve24132e82002-07-09 12:04:21 +000024#===-----------------------------------------------------------------------====
Chris Lattner2f7c9632001-06-06 20:29:01 +000025
Vikram S. Adve728de922002-08-29 23:28:46 +000026# Configuration file to set paths specific to local installation of LLVM
27#
28include $(LEVEL)/Makefile.config
29
Chris Lattner76d98ba2002-07-23 17:56:16 +000030# These are options that can either be enabled here, or can be enabled on the
Chris Lattneread864f2002-08-03 20:19:30 +000031# make command line (ie, make ENABLE_PROFILING=1)
32#
33
34# When ENABLE_PROFILING is enabled, the llvm source base is built with profile
35# information to allow gprof to be used to get execution frequencies.
Chris Lattner76d98ba2002-07-23 17:56:16 +000036#
37#ENABLE_PROFILING = 1
Chris Lattneread864f2002-08-03 20:19:30 +000038
39# When ENABLE_PURIFY is enabled, the LLVM tools are linked with purify (which
40# must be locally installed) to allow for some automated memory error debugging.
41#
Chris Lattner76d98ba2002-07-23 17:56:16 +000042#ENABLE_PURIFY = 1
Chris Lattneread864f2002-08-03 20:19:30 +000043
44# When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
45# turned on, and Debug builds are turned off.
46#
Chris Lattner76d98ba2002-07-23 17:56:16 +000047#ENABLE_OPTIMIZED = 1
48
Chris Lattnere5ad7bd2002-09-13 22:14:47 +000049
50# Figure out how to do platform specific stuff on this platform. This is really
51# gross and should be autoconfiscated (automake actually), but should hopefully
52# work on Linux and solaris (SunOS).
53#
54UNAME := $(shell uname)
55include $(LEVEL)/Makefile.$(UNAME)
56
Chris Lattner570c6a62002-07-23 19:21:31 +000057ifdef SHARED_LIBRARY
58# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
59dynamic ::
60endif
61
Chris Lattner44601ba2001-06-29 05:20:16 +000062# Default Rule: Make sure it's also a :: rule
Chris Lattner2f7c9632001-06-06 20:29:01 +000063all ::
64
65# Default for install is to at least build everything...
66install ::
67
Chris Lattner77330fa2002-08-09 15:41:55 +000068
69# Figure out which directory to build stuff into. We want to build into the
70# /shared directory by default because it is guaranteed to be local to the
71# current machine.
72#
Vikram S. Adve728de922002-08-29 23:28:46 +000073ifeq ($(LLVM_OBJ_DIR),.)
74BUILD_ROOT = $(LLVM_OBJ_DIR)
75BUILD_ROOT_TOP = $(LEVEL)
Chris Lattner01f68c62002-08-12 21:19:28 +000076else
77
Vikram S. Adve728de922002-08-29 23:28:46 +000078BUILD_ROOT := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(shell pwd))
Chris Lattner01f68c62002-08-12 21:19:28 +000079
80# Calculate the BUILD_ROOT_TOP variable, which is the top of the llvm/ tree.
81# Note that although this is just equal to $(BUILD_ROOT)/$(LEVEL), we cannot use
82# this expression because some of the directories on the source tree may not
83# exist in the build tree (for example the test/ heirarchy). Thus we evaluate
84# the directory to eliminate the ../'s
85#
86TOP_DIRECTORY := $(shell cd $(LEVEL); pwd)
Vikram S. Adve728de922002-08-29 23:28:46 +000087BUILD_ROOT_TOP := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(TOP_DIRECTORY))
Chris Lattner77330fa2002-08-09 15:41:55 +000088endif
89
Chris Lattner2f7c9632001-06-06 20:29:01 +000090#--------------------------------------------------------------------
Vikram S. Adve728de922002-08-29 23:28:46 +000091# Variables derived from configuration options...
Chris Lattner2f7c9632001-06-06 20:29:01 +000092#--------------------------------------------------------------------
93
94#BinInstDir=/usr/local/bin
95#LibInstDir=/usrl/local/lib/xxx
96#DocInstDir=/usr/doc/xxx
97
Vikram S. Adveca4a3822001-08-06 19:01:20 +000098BURG_OPTS = -I
99
Vikram S. Adve728de922002-08-29 23:28:46 +0000100PURIFY := $(PURIFY) -cache-dir="$(BUILD_ROOT_TOP)/../purifycache" -chain-length="30" -messages=all
Chris Lattnerb20b290c2001-10-30 20:24:08 +0000101
Chris Lattner76d98ba2002-07-23 17:56:16 +0000102# Shorthand for commonly accessed directories
Chris Lattner01f68c62002-08-12 21:19:28 +0000103LIBDEBUG := $(BUILD_ROOT_TOP)/lib/Debug
104LIBRELEASE := $(BUILD_ROOT_TOP)/lib/Release
105TOOLDEBUG := $(BUILD_ROOT_TOP)/tools/Debug
106TOOLRELEASE := $(BUILD_ROOT_TOP)/tools/Release
Chris Lattner76d98ba2002-07-23 17:56:16 +0000107
Misha Brukman1326a7c2002-09-12 16:05:39 +0000108# Verbosity levels
109ifdef VERBOSE
110VERB :=
111else
112VERB := @
113endif
114
Chris Lattner2f7c9632001-06-06 20:29:01 +0000115#---------------------------------------------------------
116# Compilation options...
117#---------------------------------------------------------
118
Vikram S. Adveca4a3822001-08-06 19:01:20 +0000119# Special tools used while building
Chris Lattner01f68c62002-08-12 21:19:28 +0000120RunBurg := $(BURG) $(BURG_OPTS)
Vikram S. Adveca4a3822001-08-06 19:01:20 +0000121
Chris Lattner2f7c9632001-06-06 20:29:01 +0000122# Enable this for profiling support with 'gprof'
Chris Lattner198d5eb2002-05-10 18:51:54 +0000123ifdef ENABLE_PROFILING
124PROFILE = -pg
125else
126PROFILE =
127endif
Chris Lattner2f7c9632001-06-06 20:29:01 +0000128
Chris Lattner2efcf432002-09-13 16:02:26 +0000129# Allow gnu extensions...
130CPPFLAGS += -D_GNU_SOURCE
131
Chris Lattner068f8222002-01-23 05:46:01 +0000132# -Wno-unused-parameter
Chris Lattner01f68c62002-08-12 21:19:28 +0000133CompileCommonOpts := $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner2f7c9632001-06-06 20:29:01 +0000134
135# Compile a file, don't link...
Chris Lattner01f68c62002-08-12 21:19:28 +0000136Compile := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
137CompileG := $(Compile) -g -D_DEBUG
138CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
Chris Lattner2f7c9632001-06-06 20:29:01 +0000139
140# Link final executable
Chris Lattnerb20b290c2001-10-30 20:24:08 +0000141
Chris Lattnerd711a5e2002-07-31 21:32:05 +0000142ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1'
Chris Lattner01f68c62002-08-12 21:19:28 +0000143Link := $(PURIFY) $(CXX) $(PROFILE) -static
Chris Lattnerf0a88d12002-04-05 18:56:58 +0000144else
Chris Lattner01f68c62002-08-12 21:19:28 +0000145Link := $(CXX) $(PROFILE)
Chris Lattnerf0a88d12002-04-05 18:56:58 +0000146endif
Chris Lattner01f68c62002-08-12 21:19:28 +0000147LinkG := $(Link) -g -L $(LIBDEBUG)
148LinkO := $(Link) -O3 -L $(LIBRELEASE)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000149
Chris Lattner76d98ba2002-07-23 17:56:16 +0000150# Create one .o file from a bunch of .o files...
151Relink = ld -r
152
Chris Lattnere5ad7bd2002-09-13 22:14:47 +0000153# MakeSO - Create a .so file from a .o files...
154MakeSO := $(CXX) $(MakeSharedObjectOption) $(PROFILE)
155MakeSOO := $(MakeSO) -O3
156
Chris Lattner2f7c9632001-06-06 20:29:01 +0000157# Create dependancy file from CPP file, send to stdout.
Chris Lattner01f68c62002-08-12 21:19:28 +0000158Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000159
160# Archive a bunch of .o files into a .a file...
161AR = ar cq
162
163#----------------------------------------------------------
164
165# Source includes all of the cpp files, and objects are derived from the
166# source files...
Chris Lattneree6e1992001-10-18 01:48:09 +0000167# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advebd9cae22001-10-17 12:33:55 +0000168#
Chris Lattneree6e1992001-10-18 01:48:09 +0000169Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Advefe346892001-07-15 13:16:47 +0000170
Chris Lattnerd1a72292002-07-25 15:01:19 +0000171Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
Chris Lattner77330fa2002-08-09 15:41:55 +0000172ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs)))
173ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
Chris Lattner2f7c9632001-06-06 20:29:01 +0000174
Chris Lattner76d98ba2002-07-23 17:56:16 +0000175
Chris Lattner2f7c9632001-06-06 20:29:01 +0000176#---------------------------------------------------------
177# Handle the DIRS option
178#---------------------------------------------------------
179
180ifdef DIRS # Only do this if we're using DIRS!
181
Chris Lattner539a23c2002-09-17 23:35:02 +0000182all install clean::
183 @for dir in ${DIRS}; do \
184 (cd $$dir; $(MAKE) $@) || exit 1; \
185 done
Chris Lattner2f7c9632001-06-06 20:29:01 +0000186endif
187
188#---------------------------------------------------------
189# Handle the LIBRARYNAME option - used when building libs...
190#---------------------------------------------------------
Chris Lattner76d98ba2002-07-23 17:56:16 +0000191#
192# When libraries are built, they are allowed to optionally define the
193# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
194# from being built for the library. This .o files may then be linked to by a
195# tool if the tool does not need (or want) the semantics a .a file provides
196# (linking in only object files that are "needed"). If a library is never to
197# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
198# BUILD_ARCHIVE instead.
199#
200# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattnerd711a5e2002-07-31 21:32:05 +0000201# 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 +0000202# linked into tools (for example gccas) even if they only use one of the parts
203# of it. For this reason, sometimes it's useful to use libraries as .a files.
Chris Lattner2f7c9632001-06-06 20:29:01 +0000204
205ifdef LIBRARYNAME
Vikram S. Advefe346892001-07-15 13:16:47 +0000206
Chris Lattner0100eab2002-09-16 22:36:42 +0000207# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnere6e193ca2002-09-16 22:34:56 +0000208LIBRARYNAME := $(strip $(LIBRARYNAME))
209
Chris Lattner76d98ba2002-07-23 17:56:16 +0000210LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so
211LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so
212LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a
213LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a
214LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
215LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner2f7c9632001-06-06 20:29:01 +0000216
Vikram S. Adve15bd3ad2002-08-02 18:34:12 +0000217
218ifndef ENABLE_OPTIMIZED
Chris Lattner76d98ba2002-07-23 17:56:16 +0000219BUILD_LIBNAME_G := $(LIBNAME_G)
220ifndef DONT_BUILD_RELINKED
221BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
222endif
223ifdef BUILD_ARCHIVE
224BUILD_LIBNAME_AG := $(LIBNAME_AG)
225endif
Vikram S. Adve15bd3ad2002-08-02 18:34:12 +0000226endif
Chris Lattner2f7c9632001-06-06 20:29:01 +0000227
Chris Lattner76d98ba2002-07-23 17:56:16 +0000228# If optimized builds are enabled...
229ifdef ENABLE_OPTIMIZED
230BUILD_LIBNAME_O := $(LIBNAME_O)
231ifndef DONT_BUILD_RELINKED
232BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
233endif
234ifdef BUILD_ARCHIVE
235BUILD_LIBNAME_AO := $(LIBNAME_AO)
236endif
237endif
238
239all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug
240all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release
241dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files
242
Chris Lattner77330fa2002-08-09 15:41:55 +0000243$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattner2f7c9632001-06-06 20:29:01 +0000244 @echo ======= Linking $(LIBRARYNAME) release library =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000245 $(VERB) $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000246
Chris Lattner77330fa2002-08-09 15:41:55 +0000247$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattner2f7c9632001-06-06 20:29:01 +0000248 @echo ======= Linking $(LIBRARYNAME) debug library =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000249 $(VERB) $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000250
Chris Lattner77330fa2002-08-09 15:41:55 +0000251$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Vikram S. Advefe346892001-07-15 13:16:47 +0000252 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner07c7c192001-09-07 22:57:58 +0000253 @rm -f $@
Misha Brukman1326a7c2002-09-12 16:05:39 +0000254 $(VERB) $(AR) $@ $(ObjectsO) $(LibSubDirs)
Vikram S. Advefe346892001-07-15 13:16:47 +0000255
Chris Lattner77330fa2002-08-09 15:41:55 +0000256$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Vikram S. Advefe346892001-07-15 13:16:47 +0000257 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner07c7c192001-09-07 22:57:58 +0000258 @rm -f $@
Misha Brukman1326a7c2002-09-12 16:05:39 +0000259 $(VERB) $(AR) $@ $(ObjectsG) $(LibSubDirs)
Vikram S. Advefe346892001-07-15 13:16:47 +0000260
Chris Lattner77330fa2002-08-09 15:41:55 +0000261$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000262 @echo "Linking $@"
263 $(VERB) $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
Chris Lattner76d98ba2002-07-23 17:56:16 +0000264
Chris Lattner77330fa2002-08-09 15:41:55 +0000265$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000266 $(VERB) $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
Chris Lattner76d98ba2002-07-23 17:56:16 +0000267
Chris Lattner2f7c9632001-06-06 20:29:01 +0000268endif
269
Chris Lattner07c7c192001-09-07 22:57:58 +0000270#------------------------------------------------------------------------
Vikram S. Advefa9dc582001-10-10 22:35:00 +0000271# Create a TAGS database for emacs
272#------------------------------------------------------------------------
273
Vikram S. Advea0e99082001-10-13 12:26:59 +0000274ifeq ($(LEVEL), .)
Vikram S. Advea0e99082001-10-13 12:26:59 +0000275tags:
Chris Lattner198d5eb2002-05-10 18:51:54 +0000276 etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Advea0e99082001-10-13 12:26:59 +0000277all:: tags
Vikram S. Advea0e99082001-10-13 12:26:59 +0000278endif
Vikram S. Advefa9dc582001-10-10 22:35:00 +0000279
280#------------------------------------------------------------------------
Chris Lattner07c7c192001-09-07 22:57:58 +0000281# Handle the TOOLNAME option - used when building tool executables...
282#------------------------------------------------------------------------
283#
284# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattner76d98ba2002-07-23 17:56:16 +0000285# libraries (and the order of the libs) that should be linked to the
286# tool. USEDLIBS should contain a list of library names (some with .a extension)
287# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner07c7c192001-09-07 22:57:58 +0000288#
289ifdef TOOLNAME
290
291# TOOLEXENAME* - These compute the output filenames to generate...
Chris Lattner01f68c62002-08-12 21:19:28 +0000292TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME)
293TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME)
294TOOLEXENAMES := $(TOOLEXENAME_G)
Chris Lattner76d98ba2002-07-23 17:56:16 +0000295ifdef ENABLE_OPTIMIZED
296TOOLEXENAMES += $(TOOLEXENAME_O)
297endif
Chris Lattner07c7c192001-09-07 22:57:58 +0000298
299# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Chris Lattner76d98ba2002-07-23 17:56:16 +0000300USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
301USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS))
302USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
303
Chris Lattner07c7c192001-09-07 22:57:58 +0000304
305# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattner76d98ba2002-07-23 17:56:16 +0000306# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
307# files seperately.
Chris Lattner07c7c192001-09-07 22:57:58 +0000308#
Chris Lattner76d98ba2002-07-23 17:56:16 +0000309STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
310USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
311USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
Chris Lattner07c7c192001-09-07 22:57:58 +0000312
Chris Lattner1fd501f2001-10-13 05:10:29 +0000313all:: $(TOOLEXENAMES)
Chris Lattner07c7c192001-09-07 22:57:58 +0000314clean::
Misha Brukman1326a7c2002-09-12 16:05:39 +0000315 $(VERB) rm -f $(TOOLEXENAMES)
Chris Lattner07c7c192001-09-07 22:57:58 +0000316
Chris Lattner01f68c62002-08-12 21:19:28 +0000317$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir
Chris Lattner500f0642002-09-12 17:02:40 +0000318 @echo ======= Linking $(TOOLNAME) debug executable =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000319 $(VERB) $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
Chris Lattner07c7c192001-09-07 22:57:58 +0000320
Chris Lattner01f68c62002-08-12 21:19:28 +0000321$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir
Chris Lattner500f0642002-09-12 17:02:40 +0000322 @echo ======= Linking $(TOOLNAME) release executable =======
Misha Brukman1326a7c2002-09-12 16:05:39 +0000323 $(VERB) $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
Chris Lattner07c7c192001-09-07 22:57:58 +0000324
325endif
326
327
Chris Lattner2f7c9632001-06-06 20:29:01 +0000328
329#---------------------------------------------------------
Chris Lattner77330fa2002-08-09 15:41:55 +0000330.PRECIOUS: $(BUILD_ROOT)/Depend/.dir
331.PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir
Chris Lattner2f7c9632001-06-06 20:29:01 +0000332
Vikram S. Advefe346892001-07-15 13:16:47 +0000333# Create dependencies for the *.cpp files...
Chris Lattner77330fa2002-08-09 15:41:55 +0000334$(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000335 $(VERB) $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@
Chris Lattner2f7c9632001-06-06 20:29:01 +0000336
Vikram S. Advefe346892001-07-15 13:16:47 +0000337# Create dependencies for the *.c files...
Chris Lattner77330fa2002-08-09 15:41:55 +0000338$(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000339 $(VERB) $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
Vikram S. Advefe346892001-07-15 13:16:47 +0000340
341# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattner77330fa2002-08-09 15:41:55 +0000342$(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000343 @echo "Compiling $<"
344 $(VERB) $(CompileO) $< -o $@
Chris Lattner2f7c9632001-06-06 20:29:01 +0000345
Chris Lattner068f8222002-01-23 05:46:01 +0000346#Release/%.o: %.c Release/.dir Depend/.dir
347# $(CompileOC) $< -o $@
Vikram S. Advefe346892001-07-15 13:16:47 +0000348
Chris Lattner77330fa2002-08-09 15:41:55 +0000349$(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir
Misha Brukman1326a7c2002-09-12 16:05:39 +0000350 @echo "Compiling $<"
351 $(VERB) $(CompileG) $< -o $@
Chris Lattner2f7c9632001-06-06 20:29:01 +0000352
Chris Lattner77330fa2002-08-09 15:41:55 +0000353#Debug/%.o: %.c Debug/.dir
Chris Lattner068f8222002-01-23 05:46:01 +0000354# $(CompileGC) $< -o $@
Vikram S. Advefe346892001-07-15 13:16:47 +0000355
Chris Lattner2f7c9632001-06-06 20:29:01 +0000356# Create a .cpp source file from a flex input file... this uses sed to cut down
357# on the warnings emited by GCC...
358%.cpp: %.l
359 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
360
361# Rule for building the bison parsers...
362
363%.cpp %.h : %.y
Misha Brukman1326a7c2002-09-12 16:05:39 +0000364 $(VERB) bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
365 $(VERB) mv -f $(basename $@).tab.c $(basename $@).cpp
366 $(VERB) mv -f $(basename $@).tab.h $(basename $@).h
Chris Lattner2f7c9632001-06-06 20:29:01 +0000367
368# To create the directories...
369%/.dir:
Misha Brukman1326a7c2002-09-12 16:05:39 +0000370 $(VERB) mkdir -p $(@D)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000371 @date > $@
372
Chris Lattnerd711a5e2002-07-31 21:32:05 +0000373# Clean nukes the tree
Chris Lattner2f7c9632001-06-06 20:29:01 +0000374clean::
Misha Brukman1326a7c2002-09-12 16:05:39 +0000375 $(VERB) rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Depend
376 $(VERB) rm -f core *.o *.d *.so *~ *.flc
Chris Lattner2f7c9632001-06-06 20:29:01 +0000377
378# If dependancies were generated for the file that included this file,
379# include the dependancies now...
380#
Chris Lattner01f68c62002-08-12 21:19:28 +0000381SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source)))))
Chris Lattner2f7c9632001-06-06 20:29:01 +0000382ifneq ($(SourceDepend),)
383include $(SourceDepend)
384endif