blob: 2c5f9310c0b3437485e4312edc99b7ae53a00a18 [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#
8# The following functionality may be set by setting incoming variables:
9#
10# 1. LEVEL - The level of the current subdirectory from the top of the
11# MagicStats view. This level should be expressed as a path, for
12# example, ../.. for two levels deep.
13#
14# 2. DIRS - A list of subdirectories to be built. Fake targets are set up
15# so that each of the targets "all", "install", and "clean" each build.
16# the subdirectories before the local target.
17#
18# 3. Source - If specified, this sets the source code filenames. If this
19# is not set, it defaults to be all of the .cpp, .c, .y, and .l files
Chris Lattnere0010592001-10-18 01:48:09 +000020# in the current directory. Also, if you want to build files in addition
21# to the local files, you can use the ExtraSource variable
Chris Lattner00950542001-06-06 20:29:01 +000022#
Vikram S. Adved60aede2002-07-09 12:04:21 +000023#===-----------------------------------------------------------------------====
Chris Lattner00950542001-06-06 20:29:01 +000024
Chris Lattnere62dbe92002-07-23 17:56:16 +000025# These are options that can either be enabled here, or can be enabled on the
Chris Lattner9dd794e2002-08-03 20:19:30 +000026# make command line (ie, make ENABLE_PROFILING=1)
27#
28
29# When ENABLE_PROFILING is enabled, the llvm source base is built with profile
30# information to allow gprof to be used to get execution frequencies.
Chris Lattnere62dbe92002-07-23 17:56:16 +000031#
32#ENABLE_PROFILING = 1
Chris Lattner9dd794e2002-08-03 20:19:30 +000033
34# When ENABLE_PURIFY is enabled, the LLVM tools are linked with purify (which
35# must be locally installed) to allow for some automated memory error debugging.
36#
Chris Lattnere62dbe92002-07-23 17:56:16 +000037#ENABLE_PURIFY = 1
Chris Lattner9dd794e2002-08-03 20:19:30 +000038
39# When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
40# turned on, and Debug builds are turned off.
41#
Chris Lattnere62dbe92002-07-23 17:56:16 +000042#ENABLE_OPTIMIZED = 1
43
Chris Lattnere16b1b42002-08-09 15:41:55 +000044# If you do not want to build into /shared, uncomment this
45#
46#BUILD_ROOT = .
47
Chris Lattneredf1f232002-07-23 19:21:31 +000048ifdef SHARED_LIBRARY
49# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
50dynamic ::
51endif
52
Chris Lattnerb19e59c2001-06-29 05:20:16 +000053# Default Rule: Make sure it's also a :: rule
Chris Lattner00950542001-06-06 20:29:01 +000054all ::
55
56# Default for install is to at least build everything...
57install ::
58
Chris Lattnere16b1b42002-08-09 15:41:55 +000059
60# Figure out which directory to build stuff into. We want to build into the
61# /shared directory by default because it is guaranteed to be local to the
62# current machine.
63#
Chris Lattner285af382002-08-12 21:19:28 +000064ifdef BUILD_ROOT
65BUILD_ROOT_TOP := $(LEVEL)
66else
67
Chris Lattnere16b1b42002-08-09 15:41:55 +000068LOGIN_NAME := $(shell whoami)
69CUR_DIRECTORY := $(shell pwd)
70BUILD_ROOT := /shared/$(LOGIN_NAME)$(patsubst $(HOME)%,%,$(CUR_DIRECTORY))
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)
79BUILD_ROOT_TOP := /shared/$(LOGIN_NAME)$(patsubst $(HOME)%,%,$(TOP_DIRECTORY))
Chris Lattnere16b1b42002-08-09 15:41:55 +000080endif
81
Chris Lattner00950542001-06-06 20:29:01 +000082#--------------------------------------------------------------------
83# Installation configuration options...
84#--------------------------------------------------------------------
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 = /home/vadve/vadve/Research/DynOpt/Burg/burg
91BURG_OPTS = -I
92
Chris Lattner6e390702001-10-30 20:24:08 +000093
Chris Lattnerec6bed22002-04-07 06:18:40 +000094PURIFY = /usr/dcs/applications/purify/bin/purify -cache-dir="$(HOME)/purifycache" -chain-length="30" -messages=all
Chris Lattner6e390702001-10-30 20:24:08 +000095
Chris Lattnere62dbe92002-07-23 17:56:16 +000096# Shorthand for commonly accessed directories
Chris Lattner285af382002-08-12 21:19:28 +000097LIBDEBUG := $(BUILD_ROOT_TOP)/lib/Debug
98LIBRELEASE := $(BUILD_ROOT_TOP)/lib/Release
99TOOLDEBUG := $(BUILD_ROOT_TOP)/tools/Debug
100TOOLRELEASE := $(BUILD_ROOT_TOP)/tools/Release
Chris Lattnere62dbe92002-07-23 17:56:16 +0000101
Chris Lattner00950542001-06-06 20:29:01 +0000102#---------------------------------------------------------
103# Compilation options...
104#---------------------------------------------------------
105
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000106# Special tools used while building
Chris Lattner285af382002-08-12 21:19:28 +0000107RunBurg := $(BURG) $(BURG_OPTS)
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000108
Chris Lattner00950542001-06-06 20:29:01 +0000109# Enable this for profiling support with 'gprof'
Chris Lattner18f47012002-05-10 18:51:54 +0000110ifdef ENABLE_PROFILING
111PROFILE = -pg
112else
113PROFILE =
114endif
Chris Lattner00950542001-06-06 20:29:01 +0000115
Chris Lattnerc7acf812002-01-23 05:46:01 +0000116# -Wno-unused-parameter
Chris Lattner285af382002-08-12 21:19:28 +0000117CompileCommonOpts := $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner00950542001-06-06 20:29:01 +0000118
119# Compile a file, don't link...
Chris Lattner285af382002-08-12 21:19:28 +0000120Compile := $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
121CompileG := $(Compile) -g -D_DEBUG
122CompileO := $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
Chris Lattner00950542001-06-06 20:29:01 +0000123
124# Link final executable
Chris Lattner6e390702001-10-30 20:24:08 +0000125
Chris Lattner1917e952002-07-31 21:32:05 +0000126ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1'
Chris Lattner285af382002-08-12 21:19:28 +0000127Link := $(PURIFY) $(CXX) $(PROFILE) -static
Chris Lattner12604ed2002-04-05 18:56:58 +0000128else
Chris Lattner285af382002-08-12 21:19:28 +0000129Link := $(CXX) $(PROFILE)
Chris Lattner12604ed2002-04-05 18:56:58 +0000130endif
Chris Lattner285af382002-08-12 21:19:28 +0000131LinkG := $(Link) -g -L $(LIBDEBUG)
132LinkO := $(Link) -O3 -L $(LIBRELEASE)
Chris Lattner00950542001-06-06 20:29:01 +0000133
Chris Lattnere62dbe92002-07-23 17:56:16 +0000134# Create a .so file from a .o files...
Chris Lattner285af382002-08-12 21:19:28 +0000135#MakeSO := $(CXX) -shared $(PROFILE)
136MakeSO := $(CXX) -G $(PROFILE)
137MakeSOO := $(MakeSO) -O3
Chris Lattner00950542001-06-06 20:29:01 +0000138
Chris Lattnere62dbe92002-07-23 17:56:16 +0000139# Create one .o file from a bunch of .o files...
140Relink = ld -r
141
Chris Lattner00950542001-06-06 20:29:01 +0000142# Create dependancy file from CPP file, send to stdout.
Chris Lattner285af382002-08-12 21:19:28 +0000143Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattner00950542001-06-06 20:29:01 +0000144
145# Archive a bunch of .o files into a .a file...
146AR = ar cq
147
148#----------------------------------------------------------
149
150# Source includes all of the cpp files, and objects are derived from the
151# source files...
Chris Lattnere0010592001-10-18 01:48:09 +0000152# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +0000153#
Chris Lattnere0010592001-10-18 01:48:09 +0000154Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000155
Chris Lattner4fa128c2002-07-25 15:01:19 +0000156Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
Chris Lattnere16b1b42002-08-09 15:41:55 +0000157ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs)))
158ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
Chris Lattner00950542001-06-06 20:29:01 +0000159
Chris Lattnere62dbe92002-07-23 17:56:16 +0000160
Chris Lattner00950542001-06-06 20:29:01 +0000161#---------------------------------------------------------
162# Handle the DIRS option
163#---------------------------------------------------------
164
165ifdef DIRS # Only do this if we're using DIRS!
166
167all :: $(addsuffix /.makeall , $(DIRS))
168install :: $(addsuffix /.makeinstall, $(DIRS))
169clean :: $(addsuffix /.makeclean , $(DIRS))
170
171%/.makeall %/.makeclean %/.makeinstall:
172 cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
173endif
174
175#---------------------------------------------------------
176# Handle the LIBRARYNAME option - used when building libs...
177#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000178#
179# When libraries are built, they are allowed to optionally define the
180# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
181# from being built for the library. This .o files may then be linked to by a
182# tool if the tool does not need (or want) the semantics a .a file provides
183# (linking in only object files that are "needed"). If a library is never to
184# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
185# BUILD_ARCHIVE instead.
186#
187# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattner1917e952002-07-31 21:32:05 +0000188# 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 +0000189# linked into tools (for example gccas) even if they only use one of the parts
190# of it. For this reason, sometimes it's useful to use libraries as .a files.
Chris Lattner00950542001-06-06 20:29:01 +0000191
192ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000193
Chris Lattnere62dbe92002-07-23 17:56:16 +0000194LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so
195LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so
196LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a
197LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a
198LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
199LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner00950542001-06-06 20:29:01 +0000200
Vikram S. Adve60f56062002-08-02 18:34:12 +0000201
202ifndef ENABLE_OPTIMIZED
Chris Lattnere62dbe92002-07-23 17:56:16 +0000203BUILD_LIBNAME_G := $(LIBNAME_G)
204ifndef DONT_BUILD_RELINKED
205BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
206endif
207ifdef BUILD_ARCHIVE
208BUILD_LIBNAME_AG := $(LIBNAME_AG)
209endif
Vikram S. Adve60f56062002-08-02 18:34:12 +0000210endif
Chris Lattner00950542001-06-06 20:29:01 +0000211
Chris Lattnere62dbe92002-07-23 17:56:16 +0000212# If optimized builds are enabled...
213ifdef ENABLE_OPTIMIZED
214BUILD_LIBNAME_O := $(LIBNAME_O)
215ifndef DONT_BUILD_RELINKED
216BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
217endif
218ifdef BUILD_ARCHIVE
219BUILD_LIBNAME_AO := $(LIBNAME_AO)
220endif
221endif
222
223all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug
224all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release
225dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files
226
Chris Lattnere16b1b42002-08-09 15:41:55 +0000227$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000228 @echo ======= Linking $(LIBRARYNAME) release library =======
229 $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
230
Chris Lattnere16b1b42002-08-09 15:41:55 +0000231$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000232 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattnere62dbe92002-07-23 17:56:16 +0000233 $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner00950542001-06-06 20:29:01 +0000234
Chris Lattnere16b1b42002-08-09 15:41:55 +0000235$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000236 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000237 @rm -f $@
Chris Lattner285af382002-08-12 21:19:28 +0000238 $(AR) $@ $(ObjectsO) $(LibSubDirs)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000239
Chris Lattnere16b1b42002-08-09 15:41:55 +0000240$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000241 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000242 @rm -f $@
Chris Lattner285af382002-08-12 21:19:28 +0000243 $(AR) $@ $(ObjectsG) $(LibSubDirs)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000244
Chris Lattnere16b1b42002-08-09 15:41:55 +0000245$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000246 $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
247
Chris Lattnere16b1b42002-08-09 15:41:55 +0000248$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000249 $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
250
Chris Lattner00950542001-06-06 20:29:01 +0000251endif
252
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000253#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000254# Create a TAGS database for emacs
255#------------------------------------------------------------------------
256
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000257ifeq ($(LEVEL), .)
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000258tags:
Chris Lattner18f47012002-05-10 18:51:54 +0000259 etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000260all:: tags
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000261endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000262
263#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000264# Handle the TOOLNAME option - used when building tool executables...
265#------------------------------------------------------------------------
266#
267# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattnere62dbe92002-07-23 17:56:16 +0000268# libraries (and the order of the libs) that should be linked to the
269# tool. USEDLIBS should contain a list of library names (some with .a extension)
270# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000271#
272ifdef TOOLNAME
273
274# TOOLEXENAME* - These compute the output filenames to generate...
Chris Lattner285af382002-08-12 21:19:28 +0000275TOOLEXENAME_G := $(BUILD_ROOT_TOP)/tools/Debug/$(TOOLNAME)
276TOOLEXENAME_O := $(BUILD_ROOT_TOP)/tools/Release/$(TOOLNAME)
277TOOLEXENAMES := $(TOOLEXENAME_G)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000278ifdef ENABLE_OPTIMIZED
279TOOLEXENAMES += $(TOOLEXENAME_O)
280endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000281
282# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Chris Lattnere62dbe92002-07-23 17:56:16 +0000283USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
284USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS))
285USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
286
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000287
288# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattnere62dbe92002-07-23 17:56:16 +0000289# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
290# files seperately.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000291#
Chris Lattnere62dbe92002-07-23 17:56:16 +0000292STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
293USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
294USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000295
Chris Lattner669bd7c2001-10-13 05:10:29 +0000296all:: $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000297clean::
298 rm -f $(TOOLEXENAMES)
299
Chris Lattner285af382002-08-12 21:19:28 +0000300$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(BUILD_ROOT_TOP)/tools/Debug/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000301 $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000302
Chris Lattner285af382002-08-12 21:19:28 +0000303$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(BUILD_ROOT_TOP)/tools/Release/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000304 $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000305
306endif
307
308
Chris Lattner00950542001-06-06 20:29:01 +0000309
310#---------------------------------------------------------
Chris Lattnere16b1b42002-08-09 15:41:55 +0000311.PRECIOUS: $(BUILD_ROOT)/Depend/.dir
312.PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000313
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000314# Create dependencies for the *.cpp files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000315$(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir
Chris Lattner43db05a2002-08-09 19:18:12 +0000316 $(Depend) $< | sed 's|$*\.o *|$(BUILD_ROOT)/Release/& $(BUILD_ROOT)/Debug/& $(BUILD_ROOT)/Depend/$(@F)|g' > $@
Chris Lattner00950542001-06-06 20:29:01 +0000317
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000318# Create dependencies for the *.c files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000319$(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000320 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
321
322# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000323$(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000324 $(CompileO) $< -o $@
325
Chris Lattnerc7acf812002-01-23 05:46:01 +0000326#Release/%.o: %.c Release/.dir Depend/.dir
327# $(CompileOC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000328
Chris Lattnere16b1b42002-08-09 15:41:55 +0000329$(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000330 $(CompileG) $< -o $@
331
Chris Lattnere16b1b42002-08-09 15:41:55 +0000332#Debug/%.o: %.c Debug/.dir
Chris Lattnerc7acf812002-01-23 05:46:01 +0000333# $(CompileGC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000334
Chris Lattner00950542001-06-06 20:29:01 +0000335# Create a .cpp source file from a flex input file... this uses sed to cut down
336# on the warnings emited by GCC...
337%.cpp: %.l
338 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
339
340# Rule for building the bison parsers...
341
342%.cpp %.h : %.y
Chris Lattner18f47012002-05-10 18:51:54 +0000343 bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
Chris Lattner00950542001-06-06 20:29:01 +0000344 mv -f $(basename $@).tab.c $(basename $@).cpp
345 mv -f $(basename $@).tab.h $(basename $@).h
346
347# To create the directories...
348%/.dir:
349 mkdir -p $(@D)
350 @date > $@
351
Chris Lattner1917e952002-07-31 21:32:05 +0000352# Clean nukes the tree
Chris Lattner00950542001-06-06 20:29:01 +0000353clean::
354 rm -rf Debug Release Depend
355 rm -f core *.o *.d *.so *~ *.flc
356
357# If dependancies were generated for the file that included this file,
358# include the dependancies now...
359#
Chris Lattner285af382002-08-12 21:19:28 +0000360SourceDepend := $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source)))))
Chris Lattner00950542001-06-06 20:29:01 +0000361ifneq ($(SourceDepend),)
362include $(SourceDepend)
363endif