blob: 3151a2c61f5f189d9cef5d1a1c4dde0bbc84fd81 [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#
64ifndef BUILD_ROOT
65LOGIN_NAME := $(shell whoami)
66CUR_DIRECTORY := $(shell pwd)
67BUILD_ROOT := /shared/$(LOGIN_NAME)$(patsubst $(HOME)%,%,$(CUR_DIRECTORY))
68endif
69
Chris Lattner00950542001-06-06 20:29:01 +000070#--------------------------------------------------------------------
71# Installation configuration options...
72#--------------------------------------------------------------------
73
74#BinInstDir=/usr/local/bin
75#LibInstDir=/usrl/local/lib/xxx
76#DocInstDir=/usr/doc/xxx
77
Vikram S. Advedba59ef2001-08-06 19:01:20 +000078BURG = /home/vadve/vadve/Research/DynOpt/Burg/burg
79BURG_OPTS = -I
80
Chris Lattner6e390702001-10-30 20:24:08 +000081
Chris Lattnerec6bed22002-04-07 06:18:40 +000082PURIFY = /usr/dcs/applications/purify/bin/purify -cache-dir="$(HOME)/purifycache" -chain-length="30" -messages=all
Chris Lattner6e390702001-10-30 20:24:08 +000083
Chris Lattnere62dbe92002-07-23 17:56:16 +000084# Shorthand for commonly accessed directories
Chris Lattnere16b1b42002-08-09 15:41:55 +000085LIBDEBUG = $(BUILD_ROOT)/$(LEVEL)/lib/Debug
86LIBRELEASE = $(BUILD_ROOT)/$(LEVEL)/lib/Release
87TOOLDEBUG = $(BUILD_ROOT)/$(LEVEL)/tools/Debug
88TOOLRELEASE = $(BUILD_ROOT)/$(LEVEL)/tools/Release
Chris Lattnere62dbe92002-07-23 17:56:16 +000089
Chris Lattner00950542001-06-06 20:29:01 +000090#---------------------------------------------------------
91# Compilation options...
92#---------------------------------------------------------
93
Vikram S. Advedba59ef2001-08-06 19:01:20 +000094# Special tools used while building
95RunBurg = $(BURG) $(BURG_OPTS)
96
Chris Lattner00950542001-06-06 20:29:01 +000097# Enable this for profiling support with 'gprof'
Chris Lattner18f47012002-05-10 18:51:54 +000098ifdef ENABLE_PROFILING
99PROFILE = -pg
100else
101PROFILE =
102endif
Chris Lattner00950542001-06-06 20:29:01 +0000103
Chris Lattnerc7acf812002-01-23 05:46:01 +0000104# -Wno-unused-parameter
Chris Lattner18f47012002-05-10 18:51:54 +0000105CompileCommonOpts = $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner00950542001-06-06 20:29:01 +0000106
107# Compile a file, don't link...
Vikram S. Adve60f56062002-08-02 18:34:12 +0000108Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
Chris Lattner00950542001-06-06 20:29:01 +0000109CompileG = $(Compile) -g -D_DEBUG
Chris Lattner00950542001-06-06 20:29:01 +0000110CompileO = $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
111
112# Link final executable
Chris Lattner6e390702001-10-30 20:24:08 +0000113
Chris Lattner1917e952002-07-31 21:32:05 +0000114ifdef ENABLE_PURIFY # To enable purify, build with 'gmake ENABLE_PURIFY=1'
115Link = $(PURIFY) $(CXX) $(PROFILE) -static
Chris Lattner12604ed2002-04-05 18:56:58 +0000116else
Chris Lattner1917e952002-07-31 21:32:05 +0000117Link = $(CXX) $(PROFILE)
Chris Lattner12604ed2002-04-05 18:56:58 +0000118endif
Chris Lattnere62dbe92002-07-23 17:56:16 +0000119LinkG = $(Link) -g -L $(LIBDEBUG)
120LinkO = $(Link) -O3 -L $(LIBRELEASE)
Chris Lattner00950542001-06-06 20:29:01 +0000121
Chris Lattnere62dbe92002-07-23 17:56:16 +0000122# Create a .so file from a .o files...
Chris Lattner1917e952002-07-31 21:32:05 +0000123#MakeSO = $(CXX) -shared $(PROFILE)
124MakeSO = $(CXX) -G $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +0000125MakeSOO = $(MakeSO) -O3
126
Chris Lattnere62dbe92002-07-23 17:56:16 +0000127# Create one .o file from a bunch of .o files...
128Relink = ld -r
129
Chris Lattner00950542001-06-06 20:29:01 +0000130# Create dependancy file from CPP file, send to stdout.
131Depend = $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
132
133# Archive a bunch of .o files into a .a file...
134AR = ar cq
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000135MakeLib = $(AR)
Chris Lattner00950542001-06-06 20:29:01 +0000136
137#----------------------------------------------------------
138
139# Source includes all of the cpp files, and objects are derived from the
140# source files...
Chris Lattnere0010592001-10-18 01:48:09 +0000141# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +0000142#
Chris Lattnere0010592001-10-18 01:48:09 +0000143Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000144
Chris Lattner4fa128c2002-07-25 15:01:19 +0000145Objs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
Chris Lattnere16b1b42002-08-09 15:41:55 +0000146ObjectsO = $(addprefix $(BUILD_ROOT)/Release/,$(Objs)))
147ObjectsG = $(addprefix $(BUILD_ROOT)/Debug/,$(Objs))
Chris Lattner00950542001-06-06 20:29:01 +0000148
Chris Lattnere62dbe92002-07-23 17:56:16 +0000149
Chris Lattner00950542001-06-06 20:29:01 +0000150#---------------------------------------------------------
151# Handle the DIRS option
152#---------------------------------------------------------
153
154ifdef DIRS # Only do this if we're using DIRS!
155
156all :: $(addsuffix /.makeall , $(DIRS))
157install :: $(addsuffix /.makeinstall, $(DIRS))
158clean :: $(addsuffix /.makeclean , $(DIRS))
159
160%/.makeall %/.makeclean %/.makeinstall:
161 cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
162endif
163
164#---------------------------------------------------------
165# Handle the LIBRARYNAME option - used when building libs...
166#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000167#
168# When libraries are built, they are allowed to optionally define the
169# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
170# from being built for the library. This .o files may then be linked to by a
171# tool if the tool does not need (or want) the semantics a .a file provides
172# (linking in only object files that are "needed"). If a library is never to
173# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
174# BUILD_ARCHIVE instead.
175#
176# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattner1917e952002-07-31 21:32:05 +0000177# 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 +0000178# linked into tools (for example gccas) even if they only use one of the parts
179# of it. For this reason, sometimes it's useful to use libraries as .a files.
Chris Lattner00950542001-06-06 20:29:01 +0000180
181ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000182
Chris Lattnere62dbe92002-07-23 17:56:16 +0000183LIBNAME_O := $(LIBRELEASE)/lib$(LIBRARYNAME).so
184LIBNAME_G := $(LIBDEBUG)/lib$(LIBRARYNAME).so
185LIBNAME_AO := $(LIBRELEASE)/lib$(LIBRARYNAME).a
186LIBNAME_AG := $(LIBDEBUG)/lib$(LIBRARYNAME).a
187LIBNAME_OBJO := $(LIBRELEASE)/$(LIBRARYNAME).o
188LIBNAME_OBJG := $(LIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner00950542001-06-06 20:29:01 +0000189
Vikram S. Adve60f56062002-08-02 18:34:12 +0000190
191ifndef ENABLE_OPTIMIZED
Chris Lattnere62dbe92002-07-23 17:56:16 +0000192BUILD_LIBNAME_G := $(LIBNAME_G)
193ifndef DONT_BUILD_RELINKED
194BUILD_LIBNAME_OBJG := $(LIBNAME_OBJG)
195endif
196ifdef BUILD_ARCHIVE
197BUILD_LIBNAME_AG := $(LIBNAME_AG)
198endif
Vikram S. Adve60f56062002-08-02 18:34:12 +0000199endif
Chris Lattner00950542001-06-06 20:29:01 +0000200
Chris Lattnere62dbe92002-07-23 17:56:16 +0000201# If optimized builds are enabled...
202ifdef ENABLE_OPTIMIZED
203BUILD_LIBNAME_O := $(LIBNAME_O)
204ifndef DONT_BUILD_RELINKED
205BUILD_LIBNAME_OBJO := $(LIBNAME_OBJO)
206endif
207ifdef BUILD_ARCHIVE
208BUILD_LIBNAME_AO := $(LIBNAME_AO)
209endif
210endif
211
212all:: $(BUILD_LIBNAME_AG) $(BUILD_LIBNAME_OBJG) # Debug
213all:: $(BUILD_LIBNAME_AO) $(BUILD_LIBNAME_OBJO) # Release
214dynamic:: $(BUILD_LIBNAME_G) $(BUILD_LIBNAME_O) # .so files
215
Chris Lattnere16b1b42002-08-09 15:41:55 +0000216$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000217 @echo ======= Linking $(LIBRARYNAME) release library =======
218 $(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
219
Chris Lattnere16b1b42002-08-09 15:41:55 +0000220$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000221 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattnere62dbe92002-07-23 17:56:16 +0000222 $(MakeSO) -g -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
Chris Lattner00950542001-06-06 20:29:01 +0000223
Chris Lattnere16b1b42002-08-09 15:41:55 +0000224$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000225 @echo ======= Linking $(LIBRARYNAME) release library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000226 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000227 $(MakeLib) $@ $(ObjectsO) $(LibSubDirs)
228
Chris Lattnere16b1b42002-08-09 15:41:55 +0000229$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000230 @echo ======= Linking $(LIBRARYNAME) debug library =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000231 @rm -f $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000232 $(MakeLib) $@ $(ObjectsG) $(LibSubDirs)
233
Chris Lattnere16b1b42002-08-09 15:41:55 +0000234$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(LIBRELEASE)/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000235 $(Relink) -o $@ $(ObjectsO) $(LibSubDirs)
236
Chris Lattnere16b1b42002-08-09 15:41:55 +0000237$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(LIBDEBUG)/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000238 $(Relink) -o $@ $(ObjectsG) $(LibSubDirs)
239
Chris Lattner00950542001-06-06 20:29:01 +0000240endif
241
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000242#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000243# Create a TAGS database for emacs
244#------------------------------------------------------------------------
245
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000246ifeq ($(LEVEL), .)
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000247tags:
Chris Lattner18f47012002-05-10 18:51:54 +0000248 etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000249all:: tags
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000250endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000251
252#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000253# Handle the TOOLNAME option - used when building tool executables...
254#------------------------------------------------------------------------
255#
256# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattnere62dbe92002-07-23 17:56:16 +0000257# libraries (and the order of the libs) that should be linked to the
258# tool. USEDLIBS should contain a list of library names (some with .a extension)
259# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000260#
261ifdef TOOLNAME
262
263# TOOLEXENAME* - These compute the output filenames to generate...
264TOOLEXENAME_G = $(LEVEL)/tools/Debug/$(TOOLNAME)
265TOOLEXENAME_O = $(LEVEL)/tools/Release/$(TOOLNAME)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000266TOOLEXENAMES := $(TOOLEXENAME_G)
267ifdef ENABLE_OPTIMIZED
268TOOLEXENAMES += $(TOOLEXENAME_O)
269endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000270
271# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Chris Lattnere62dbe92002-07-23 17:56:16 +0000272USED_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
273USED_LIBS_OPTIONS_G := $(patsubst %.o, $(LIBDEBUG)/%.o, $(USED_LIBS_OPTIONS))
274USED_LIBS_OPTIONS_O := $(patsubst %.o, $(LIBRELEASE)/%.o,$(USED_LIBS_OPTIONS))
275
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000276
277# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattnere62dbe92002-07-23 17:56:16 +0000278# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
279# files seperately.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000280#
Chris Lattnere62dbe92002-07-23 17:56:16 +0000281STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
282USED_LIB_PATHS_G := $(addprefix $(LIBDEBUG)/, $(STATICUSEDLIBS))
283USED_LIB_PATHS_O := $(addprefix $(LIBRELEASE)/, $(STATICUSEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000284
Chris Lattner669bd7c2001-10-13 05:10:29 +0000285all:: $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000286clean::
287 rm -f $(TOOLEXENAMES)
288
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000289$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(LEVEL)/tools/Debug/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000290 $(LinkG) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_G) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000291
Chris Lattnerbf2f0432001-09-09 20:59:28 +0000292$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(LEVEL)/tools/Release/.dir
Chris Lattnere62dbe92002-07-23 17:56:16 +0000293 $(LinkO) -o $@ $(ObjectsG) $(USED_LIBS_OPTIONS_O) $(TOOLLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000294
295endif
296
297
Chris Lattner00950542001-06-06 20:29:01 +0000298
299#---------------------------------------------------------
Chris Lattnere16b1b42002-08-09 15:41:55 +0000300.PRECIOUS: $(BUILD_ROOT)/Depend/.dir
301.PRECIOUS: $(BUILD_ROOT)/Debug/.dir $(BUILD_ROOT)/Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000302
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000303# Create dependencies for the *.cpp files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000304$(BUILD_ROOT)/Depend/%.d: %.cpp $(BUILD_ROOT)/Depend/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000305 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
306
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000307# Create dependencies for the *.c files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000308$(BUILD_ROOT)/Depend/%.d: %.c $(BUILD_ROOT)/Depend/.dir
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000309 $(Depend) $< | sed 's|$*\.o *|Release/& Debug/& Depend/$(@F)|g' > $@
310
311# Create .o files in the ObjectFiles directory from the .cpp and .c files...
Chris Lattnere16b1b42002-08-09 15:41:55 +0000312$(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000313 $(CompileO) $< -o $@
314
Chris Lattnerc7acf812002-01-23 05:46:01 +0000315#Release/%.o: %.c Release/.dir Depend/.dir
316# $(CompileOC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000317
Chris Lattnere16b1b42002-08-09 15:41:55 +0000318$(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000319 $(CompileG) $< -o $@
320
Chris Lattnere16b1b42002-08-09 15:41:55 +0000321#Debug/%.o: %.c Debug/.dir
Chris Lattnerc7acf812002-01-23 05:46:01 +0000322# $(CompileGC) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000323
Chris Lattner00950542001-06-06 20:29:01 +0000324# Create a .cpp source file from a flex input file... this uses sed to cut down
325# on the warnings emited by GCC...
326%.cpp: %.l
327 flex -t $< | sed '/^find_rule/d' | sed 's/void yyunput/inline void yyunput/' | sed 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' > $@
328
329# Rule for building the bison parsers...
330
331%.cpp %.h : %.y
Chris Lattner18f47012002-05-10 18:51:54 +0000332 bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
Chris Lattner00950542001-06-06 20:29:01 +0000333 mv -f $(basename $@).tab.c $(basename $@).cpp
334 mv -f $(basename $@).tab.h $(basename $@).h
335
336# To create the directories...
337%/.dir:
338 mkdir -p $(@D)
339 @date > $@
340
Chris Lattner1917e952002-07-31 21:32:05 +0000341# Clean nukes the tree
Chris Lattner00950542001-06-06 20:29:01 +0000342clean::
343 rm -rf Debug Release Depend
344 rm -f core *.o *.d *.so *~ *.flc
345
346# If dependancies were generated for the file that included this file,
347# include the dependancies now...
348#
Chris Lattnere16b1b42002-08-09 15:41:55 +0000349SourceDepend = $(addsuffix .d,$(addprefix $(BUILD_ROOT)/Depend/,$(basename $(filter-out Debug/%, $(Source)))))
Chris Lattner00950542001-06-06 20:29:01 +0000350ifneq ($(SourceDepend),)
351include $(SourceDepend)
352endif