blob: 20a991c4cb9322034b7f961a5fca1b6d576932e0 [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
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 Lattnere0010592001-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 Lattner00950542001-06-06 20:29:01 +000023#
Vikram S. Adved60aede2002-07-09 12:04:21 +000024#===-----------------------------------------------------------------------====
Chris Lattner00950542001-06-06 20:29:01 +000025
Vikram S. Advec214e712002-08-29 23:28:46 +000026# Configuration file to set paths specific to local installation of LLVM
27#
28include $(LEVEL)/Makefile.config
29
Chris Lattnere62dbe92002-07-23 17:56:16 +000030# These are options that can either be enabled here, or can be enabled on the
Chris Lattner9dd794e2002-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 Lattnere62dbe92002-07-23 17:56:16 +000036#
37#ENABLE_PROFILING = 1
Chris Lattner9dd794e2002-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 Lattnere62dbe92002-07-23 17:56:16 +000042#ENABLE_PURIFY = 1
Chris Lattner9dd794e2002-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 Lattnere62dbe92002-07-23 17:56:16 +000047#ENABLE_OPTIMIZED = 1
48
Chris Lattneredf1f232002-07-23 19:21:31 +000049ifdef SHARED_LIBRARY
50# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
51dynamic ::
52endif
53
Chris Lattnerb19e59c2001-06-29 05:20:16 +000054# Default Rule: Make sure it's also a :: rule
Chris Lattner00950542001-06-06 20:29:01 +000055all ::
56
57# Default for install is to at least build everything...
58install ::
59
Chris Lattnere16b1b42002-08-09 15:41:55 +000060
61# Figure out which directory to build stuff into. We want to build into the
62# /shared directory by default because it is guaranteed to be local to the
63# current machine.
64#
Vikram S. Advec214e712002-08-29 23:28:46 +000065ifeq ($(LLVM_OBJ_DIR),.)
66BUILD_ROOT = $(LLVM_OBJ_DIR)
67BUILD_ROOT_TOP = $(LEVEL)
Chris Lattner285af382002-08-12 21:19:28 +000068else
69
Vikram S. Advec214e712002-08-29 23:28:46 +000070BUILD_ROOT := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(shell pwd))
Chris Lattner285af382002-08-12 21:19:28 +000071
72# Calculate the BUILD_ROOT_TOP variable, which is the top of the llvm/ tree.
73# Note that although this is just equal to $(BUILD_ROOT)/$(LEVEL), we cannot use
74# this expression because some of the directories on the source tree may not
75# exist in the build tree (for example the test/ heirarchy). Thus we evaluate
76# the directory to eliminate the ../'s
77#
78TOP_DIRECTORY := $(shell cd $(LEVEL); pwd)
Vikram S. Advec214e712002-08-29 23:28:46 +000079BUILD_ROOT_TOP := $(LLVM_OBJ_DIR)$(patsubst $(HOME)%,%,$(TOP_DIRECTORY))
Chris Lattnere16b1b42002-08-09 15:41:55 +000080endif
81
Chris Lattner00950542001-06-06 20:29:01 +000082#--------------------------------------------------------------------
Vikram S. Advec214e712002-08-29 23:28:46 +000083# Variables derived from configuration options...
Chris Lattner00950542001-06-06 20:29:01 +000084#--------------------------------------------------------------------
85
86#BinInstDir=/usr/local/bin
87#LibInstDir=/usrl/local/lib/xxx
88#DocInstDir=/usr/doc/xxx
89
Vikram S. Advedba59ef2001-08-06 19:01:20 +000090BURG_OPTS = -I
91
Vikram S. Advec214e712002-08-29 23:28:46 +000092PURIFY := $(PURIFY) -cache-dir="$(BUILD_ROOT_TOP)/../purifycache" -chain-length="30" -messages=all
Chris Lattner6e390702001-10-30 20:24:08 +000093
Chris Lattnere62dbe92002-07-23 17:56:16 +000094# Shorthand for commonly accessed directories
Chris Lattner285af382002-08-12 21:19:28 +000095LIBDEBUG := $(BUILD_ROOT_TOP)/lib/Debug
96LIBRELEASE := $(BUILD_ROOT_TOP)/lib/Release
97TOOLDEBUG := $(BUILD_ROOT_TOP)/tools/Debug
98TOOLRELEASE := $(BUILD_ROOT_TOP)/tools/Release
Chris Lattnere62dbe92002-07-23 17:56:16 +000099
Chris Lattner00950542001-06-06 20:29:01 +0000100#---------------------------------------------------------
101# Compilation options...
102#---------------------------------------------------------
103
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000104# Special tools used while building
Chris Lattner285af382002-08-12 21:19:28 +0000105RunBurg := $(BURG) $(BURG_OPTS)
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000106
Chris Lattner00950542001-06-06 20:29:01 +0000107# Enable this for profiling support with 'gprof'
Chris Lattner18f47012002-05-10 18:51:54 +0000108ifdef ENABLE_PROFILING
109PROFILE = -pg
110else
111PROFILE =
112endif
Chris Lattner00950542001-06-06 20:29:01 +0000113
Chris Lattnerc7acf812002-01-23 05:46:01 +0000114# -Wno-unused-parameter
Chris Lattner285af382002-08-12 21:19:28 +0000115CompileCommonOpts := $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner00950542001-06-06 20:29:01 +0000116
117# Compile a file, don't link...
Chris Lattner285af382002-08-12 21:19:28 +0000118Compile := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
119CompileG := $(Compile) -g -D_DEBUG
120CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
Chris Lattner00950542001-06-06 20:29:01 +0000121
122# Link final executable
Chris Lattner6e390702001-10-30 20:24:08 +0000123
Chris Lattner1917e952002-07-31 21:32:05 +0000124ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1'
Chris Lattner285af382002-08-12 21:19:28 +0000125Link := $(PURIFY) $(CXX) $(PROFILE) -static
Chris Lattner12604ed2002-04-05 18:56:58 +0000126else
Chris Lattner285af382002-08-12 21:19:28 +0000127Link := $(CXX) $(PROFILE)
Chris Lattner12604ed2002-04-05 18:56:58 +0000128endif
Chris Lattner285af382002-08-12 21:19:28 +0000129LinkG := $(Link) -g -L $(LIBDEBUG)
130LinkO := $(Link) -O3 -L $(LIBRELEASE)
Chris Lattner00950542001-06-06 20:29:01 +0000131
Chris Lattnere62dbe92002-07-23 17:56:16 +0000132# Create a .so file from a .o files...
Chris Lattner285af382002-08-12 21:19:28 +0000133#MakeSO := $(CXX) -shared $(PROFILE)
134MakeSO := $(CXX) -G $(PROFILE)
135MakeSOO := $(MakeSO) -O3
Chris Lattner00950542001-06-06 20:29:01 +0000136
Chris Lattnere62dbe92002-07-23 17:56:16 +0000137# Create one .o file from a bunch of .o files...
138Relink = ld -r
139
Chris Lattner00950542001-06-06 20:29:01 +0000140# Create dependancy file from CPP file, send to stdout.
Chris Lattner285af382002-08-12 21:19:28 +0000141Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattner00950542001-06-06 20:29:01 +0000142
143# Archive a bunch of .o files into a .a file...
144AR = ar cq
145
146#----------------------------------------------------------
147
148# Source includes all of the cpp files, and objects are derived from the
149# source files...
Chris Lattnere0010592001-10-18 01:48:09 +0000150# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +0000151#
Chris Lattnere0010592001-10-18 01:48:09 +0000152Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000153
Chris Lattner4fa128c2002-07-25 15:01:19 +0000154Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
Chris Lattnere16b1b42002-08-09 15:41:55 +0000155ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs)))
156ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
Chris Lattner00950542001-06-06 20:29:01 +0000157
Chris Lattnere62dbe92002-07-23 17:56:16 +0000158
Chris Lattner00950542001-06-06 20:29:01 +0000159#---------------------------------------------------------
160# Handle the DIRS option
161#---------------------------------------------------------
162
163ifdef DIRS # Only do this if we're using DIRS!
164
165all :: $(addsuffix /.makeall , $(DIRS))
166install :: $(addsuffix /.makeinstall, $(DIRS))
167clean :: $(addsuffix /.makeclean , $(DIRS))
168
169%/.makeall %/.makeclean %/.makeinstall:
170 cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
171endif
172
173#---------------------------------------------------------
174# Handle the LIBRARYNAME option - used when building libs...
175#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000176#
177# When libraries are built, they are allowed to optionally define the
178# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
179# from being built for the library. This .o files may then be linked to by a
180# tool if the tool does not need (or want) the semantics a .a file provides
181# (linking in only object files that are "needed"). If a library is never to
182# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
183# BUILD_ARCHIVE instead.
184#
185# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattner1917e952002-07-31 21:32:05 +0000186# 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 +0000187# linked into tools (for example gccas) even if they only use one of the parts
188# of it. For this reason, sometimes it's useful to use libraries as .a files.
Chris Lattner00950542001-06-06 20:29:01 +0000189
190ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000191
Chris Lattnere62dbe92002-07-23 17:56:16 +0000192LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so
193LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so
194LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a
195LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a
196LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
197LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner00950542001-06-06 20:29:01 +0000198
Vikram S. Adve60f56062002-08-02 18:34:12 +0000199
200ifndef ENABLE_OPTIMIZED
Chris Lattnere62dbe92002-07-23 17:56:16 +0000201BUILD_LIBNAME_G := $(LIBNAME_G)
202ifndef DONT_BUILD_RELINKED
203BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
204endif
205ifdef BUILD_ARCHIVE
206BUILD_LIBNAME_AG := $(LIBNAME_AG)
207endif
Vikram S. Adve60f56062002-08-02 18:34:12 +0000208endif
Chris Lattner00950542001-06-06 20:29:01 +0000209
Chris Lattnere62dbe92002-07-23 17:56:16 +0000210# If optimized builds are enabled...
211ifdef ENABLE_OPTIMIZED
212BUILD_LIBNAME_O := $(LIBNAME_O)
213ifndef DONT_BUILD_RELINKED
214BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
215endif
216ifdef BUILD_ARCHIVE
217BUILD_LIBNAME_AO := $(LIBNAME_AO)
218endif
219endif
220
221all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug
222all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release
223dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files
224
Chris Lattnere16b1b42002-08-09 15:41:55 +0000225$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000226 @echo ======= Linking $(LIBRARYNAME) release library =======
227 $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
228
Chris Lattnere16b1b42002-08-09 15:41:55 +0000229$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000230 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattnere62dbe92002-07-23 17:56:16 +0000231 $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner00950542001-06-06 20:29:01 +0000232
Chris Lattnere16b1b42002-08-09 15:41:55 +0000233$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000234 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000235 @rm -f $@
Chris Lattner285af382002-08-12 21:19:28 +0000236 $(AR) $@ $(ObjectsO) $(LibSubDirs)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000237
Chris Lattnere16b1b42002-08-09 15:41:55 +0000238$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000239 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000240 @rm -f $@
Chris Lattner285af382002-08-12 21:19:28 +0000241 $(AR) $@ $(ObjectsG) $(LibSubDirs)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000242
Chris Lattnere16b1b42002-08-09 15:41:55 +0000243$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000244 $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
245
Chris Lattnere16b1b42002-08-09 15:41:55 +0000246$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000247 $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
248
Chris Lattner00950542001-06-06 20:29:01 +0000249endif
250
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000251#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000252# Create a TAGS database for emacs
253#------------------------------------------------------------------------
254
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000255ifeq ($(LEVEL), .)
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000256tags:
Chris Lattner18f47012002-05-10 18:51:54 +0000257 etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000258all:: tags
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000259endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000260
261#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000262# Handle the TOOLNAME option - used when building tool executables...
263#------------------------------------------------------------------------
264#
265# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattnere62dbe92002-07-23 17:56:16 +0000266# libraries (and the order of the libs) that should be linked to the
267# tool. USEDLIBS should contain a list of library names (some with .a extension)
268# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000269#
270ifdef TOOLNAME
271
272# TOOLEXENAME* - These compute the output filenames to generate...
Chris Lattner285af382002-08-12 21:19:28 +0000273TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME)
274TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME)
275TOOLEXENAMES := $(TOOLEXENAME_G)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000276ifdef ENABLE_OPTIMIZED
277TOOLEXENAMES += $(TOOLEXENAME_O)
278endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000279
280# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Chris Lattnere62dbe92002-07-23 17:56:16 +0000281USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
282USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS))
283USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
284
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000285
286# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattnere62dbe92002-07-23 17:56:16 +0000287# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
288# files seperately.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000289#
Chris Lattnere62dbe92002-07-23 17:56:16 +0000290STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
291USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
292USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000293
Chris Lattner669bd7c2001-10-13 05:10:29 +0000294all:: $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000295clean::
296 rm -f $(TOOLEXENAMES)
297
Chris Lattner285af382002-08-12 21:19:28 +0000298$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000299 $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000300
Chris Lattner285af382002-08-12 21:19:28 +0000301$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000302 $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000303
304endif
305
306
Chris Lattner00950542001-06-06 20:29:01 +0000307
308#---------------------------------------------------------
Chris Lattnere16b1b42002-08-09 15:41:55 +0000309.PRECIOUS: $(BUILD_ROOT)/Depend/.dir
310.PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000311
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000312# Create dependencies for the *.cpp files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000313$(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir
Chris Lattner43db05a2002-08-09 19:18:12 +0000314 $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@
Chris Lattner00950542001-06-06 20:29:01 +0000315
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000316# Create dependencies for the *.c files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000317$(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000318 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
319
320# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000321$(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000322 $(CompileO) $< -o $@
323
Chris Lattnerc7acf812002-01-23 05:46:01 +0000324#Release/%.o: %.c Release/.dir Depend/.dir
325# $(CompileOC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000326
Chris Lattnere16b1b42002-08-09 15:41:55 +0000327$(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000328 $(CompileG) $< -o $@
329
Chris Lattnere16b1b42002-08-09 15:41:55 +0000330#Debug/%.o: %.c Debug/.dir
Chris Lattnerc7acf812002-01-23 05:46:01 +0000331# $(CompileGC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000332
Chris Lattner00950542001-06-06 20:29:01 +0000333# Create a .cpp source file from a flex input file... this uses sed to cut down
334# on the warnings emited by GCC...
335%.cpp: %.l
336 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
337
338# Rule for building the bison parsers...
339
340%.cpp %.h : %.y
Chris Lattner18f47012002-05-10 18:51:54 +0000341 bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
Chris Lattner00950542001-06-06 20:29:01 +0000342 mv -f $(basename $@).tab.c $(basename $@).cpp
343 mv -f $(basename $@).tab.h $(basename $@).h
344
345# To create the directories...
346%/.dir:
347 mkdir -p $(@D)
348 @date > $@
349
Chris Lattner1917e952002-07-31 21:32:05 +0000350# Clean nukes the tree
Chris Lattner00950542001-06-06 20:29:01 +0000351clean::
Vikram S. Advef8d630a2002-08-22 03:20:27 +0000352 rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Depend
Chris Lattner00950542001-06-06 20:29:01 +0000353 rm -f core *.o *.d *.so *~ *.flc
354
355# If dependancies were generated for the file that included this file,
356# include the dependancies now...
357#
Chris Lattner285af382002-08-12 21:19:28 +0000358SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source)))))
Chris Lattner00950542001-06-06 20:29:01 +0000359ifneq ($(SourceDepend),)
360include $(SourceDepend)
361endif