blob: 3d89a1c12b418cccf61de1d2fe4cc6370491c53c [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
Chris Lattnera8abc222002-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 Lattner00950542001-06-06 20:29:01 +000019#
Chris Lattnera8abc222002-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 Lattner00950542001-06-06 20:29:01 +000025# is not set, it defaults to be all of the .cpp, .c, .y, and .l files
Chris Lattnere0010592001-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 Lattner00950542001-06-06 20:29:01 +000028#
Chris Lattner694c5df2003-05-15 21:28:55 +000029# 5. SourceDir - If specified, this specifies a directory that the source files
30# are in, if they are not in the current directory. This should include a
31# trailing / character.
32#
John Criswell7a73b802003-06-30 21:59:07 +000033# 6. LLVM_SRC_ROOT - If specified, points to the top of the LLVM source tree.
Dinakar Dhurjati584dd182003-05-29 21:49:00 +000034#
John Criswell7a73b802003-06-30 21:59:07 +000035# 7. LLVM_OBJ_ROOT - If specified, points to the top directory where LLVM
36# object files are placed.
37#
38# 8. BUILD_SRC_DIR - The directory which contains the current set of Makefiles
39# and usually the source code too (unless SourceDir is set).
40#
41# 9. BUILD_SRC_ROOT - The root directory of the source code being compiled.
42#
43# 10. BUILD_OBJ_DIR - The directory where object code should be placed.
44#
45# 11. BUILD_OBJ_ROOT - The root directory for where object code should be
46# placed.
47#
48# For building,
49# LLVM, LLVM_SRC_ROOT = BUILD_SRC_ROOT, and
50# LLVM_OBJ_ROOT = BUILD_OBJ_ROOT.
Vikram S. Adved60aede2002-07-09 12:04:21 +000051#===-----------------------------------------------------------------------====
Chris Lattner00950542001-06-06 20:29:01 +000052
John Criswell2a6530f2003-06-27 16:58:44 +000053#
Vikram S. Advec214e712002-08-29 23:28:46 +000054# Configuration file to set paths specific to local installation of LLVM
55#
56include $(LEVEL)/Makefile.config
57
John Criswell8bff5092003-06-11 13:55:44 +000058###########################################################################
59# Directory Configuration
60# This section of the Makefile determines what is where. To be
61# specific, there are several locations that need to be defined:
62#
63# o LLVM_SRC_ROOT : The root directory of the LLVM source code.
64# o LLVM_OBJ_ROOT : The root directory containing the built LLVM code.
65#
66# o BUILD_SRC_DIR : The directory containing the code to build.
67# o BUILD_SRC_ROOT : The root directory of the code to build.
68#
69# o BUILD_OBJ_DIR : The directory in which compiled code will be placed.
70# o BUILD_OBJ_ROOT : The root directory in which compiled code is placed.
71#
72###########################################################################
73
74#
75# Set the source build directory. That is almost always the current directory.
76#
77ifndef BUILD_SRC_DIR
78BUILD_SRC_DIR = $(shell pwd)
79endif
80
81#
82# Set the source root directory.
83#
84ifndef BUILD_SRC_ROOT
John Criswell890d5bd2003-06-16 19:14:31 +000085BUILD_SRC_ROOT = $(shell cd $(BUILD_SRC_DIR)/$(LEVEL); pwd)
John Criswell8bff5092003-06-11 13:55:44 +000086endif
87
88#
John Criswell7a73b802003-06-30 21:59:07 +000089# Determine the path of the source tree relative from $HOME (the mythical
90# home directory).
91#
Misha Brukmanf8873ed2003-07-07 22:27:05 +000092HOME_OBJ_ROOT := $(OBJ_ROOT)$(patsubst $(HOME)%,%,$(BUILD_SRC_ROOT))
John Criswell7a73b802003-06-30 21:59:07 +000093
94#
John Criswell8bff5092003-06-11 13:55:44 +000095# Set the object build directory. Its location depends upon the source path
96# and where object files should go.
97#
98ifndef BUILD_OBJ_DIR
99ifeq ($(OBJ_ROOT),.)
John Criswell7a73b802003-06-30 21:59:07 +0000100BUILD_OBJ_DIR = $(BUILD_SRC_DIR)
John Criswell8bff5092003-06-11 13:55:44 +0000101else
John Criswell7a73b802003-06-30 21:59:07 +0000102BUILD_OBJ_DIR := $(HOME_OBJ_ROOT)$(patsubst $(BUILD_SRC_ROOT)%,%,$(BUILD_SRC_DIR))
John Criswell8bff5092003-06-11 13:55:44 +0000103endif
104endif
105
106#
107# Set the root of the object directory.
108#
109ifndef BUILD_OBJ_ROOT
110ifeq ($(OBJ_ROOT),.)
John Criswell7a73b802003-06-30 21:59:07 +0000111BUILD_OBJ_ROOT = $(BUILD_SRC_ROOT)
John Criswell8bff5092003-06-11 13:55:44 +0000112else
John Criswell7a73b802003-06-30 21:59:07 +0000113BUILD_OBJ_ROOT := $(HOME_OBJ_ROOT)
John Criswell8bff5092003-06-11 13:55:44 +0000114endif
115endif
116
117#
118# Set the LLVM source directory.
119# It is typically the root directory of what we're compiling now.
120#
121ifndef LLVM_SRC_ROOT
122LLVM_SRC_ROOT = $(BUILD_SRC_ROOT)
123endif
124
125#
126# Set the LLVM object directory.
127#
128ifndef LLVM_OBJ_ROOT
129LLVM_OBJ_ROOT = $(BUILD_OBJ_ROOT)
130endif
131
John Criswell7a73b802003-06-30 21:59:07 +0000132###########################################################################
133# Default Targets:
134# The following targets are the standard top level targets for
135# building.
136###########################################################################
Chris Lattner4bb13b82002-09-13 22:14:47 +0000137
Chris Lattneredf1f232002-07-23 19:21:31 +0000138ifdef SHARED_LIBRARY
139# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
John Criswell7a73b802003-06-30 21:59:07 +0000140all:: dynamic
Chris Lattneredf1f232002-07-23 19:21:31 +0000141endif
142
Chris Lattner95cc1b32003-08-14 21:10:25 +0000143ifdef BYTECODE_LIBRARY
144# if BYTECODE_LIBRARY is specified, the default is to build the bytecode lib
145all:: bytecodelib
146endif
147
Chris Lattnerb19e59c2001-06-29 05:20:16 +0000148# Default Rule: Make sure it's also a :: rule
Chris Lattner00950542001-06-06 20:29:01 +0000149all ::
150
151# Default for install is to at least build everything...
152install ::
153
John Criswell8bff5092003-06-11 13:55:44 +0000154# Default rule for test. It ensures everything has a test rule
155test::
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000156
Vikram S. Adve6edfe272003-07-10 19:25:29 +0000157# Default rule for building only bytecode.
158bytecode::
159
John Criswell7a73b802003-06-30 21:59:07 +0000160# Print out the directories used for building
161prdirs::
162 echo "Home Offset : " $(HOME_OBJ_ROOT);
163 echo "Build Source Root: " $(BUILD_SRC_ROOT);
164 echo "Build Source Dir : " $(BUILD_SRC_DIR);
165 echo "Build Object Root: " $(BUILD_OBJ_ROOT);
166 echo "Build Object Dir : " $(BUILD_OBJ_DIR);
167 echo "LLVM Source Root: " $(LLVM_SRC_ROOT);
168 echo "LLVM Object Root: " $(LLVM_OBJ_ROOT);
169
John Criswell96914392003-07-16 20:26:06 +0000170#
171# Mark all of these targets as phony. This will hopefully speed up builds
172# slightly since GNU Make will not try to find implicit rules for targets
173# which are marked as Phony.
174#
Chris Lattner95cc1b32003-08-14 21:10:25 +0000175.PHONY: all dynamic bytecodelib clean distclean install test bytecode prdirs
John Criswell96914392003-07-16 20:26:06 +0000176
John Criswell7a73b802003-06-30 21:59:07 +0000177###########################################################################
178# Miscellaneous paths and commands:
179# This section defines various configuration macros, such as where
180# to find burg, tblgen, and libtool.
181###########################################################################
182
Chris Lattner00950542001-06-06 20:29:01 +0000183#--------------------------------------------------------------------
Vikram S. Advec214e712002-08-29 23:28:46 +0000184# Variables derived from configuration options...
Chris Lattner00950542001-06-06 20:29:01 +0000185#--------------------------------------------------------------------
186
187#BinInstDir=/usr/local/bin
John Criswell65aa59342003-05-29 18:52:10 +0000188#LibInstDir=/usr/local/lib/xxx
Chris Lattner00950542001-06-06 20:29:01 +0000189#DocInstDir=/usr/doc/xxx
190
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000191BURG_OPTS = -I
192
Chris Lattner760da062003-03-14 20:25:22 +0000193ifdef ENABLE_PROFILING
194 ENABLE_OPTIMIZED = 1
195 CONFIGURATION := Profile
196else
197 ifdef ENABLE_OPTIMIZED
198 CONFIGURATION := Release
199 else
200 CONFIGURATION := Debug
201 endif
202endif
203
John Criswell7a73b802003-06-30 21:59:07 +0000204#
205# Enable this for profiling support with 'gprof'
206# This automatically enables optimized builds.
207#
208ifdef ENABLE_PROFILING
209 PROFILE = -pg
210endif
211
212#
213# Suffixes for library compilation rules
214#
215.SUFFIXES: .so
216
John Criswell8bff5092003-06-11 13:55:44 +0000217###########################################################################
John Criswell7a73b802003-06-30 21:59:07 +0000218# Library Locations:
John Criswell8bff5092003-06-11 13:55:44 +0000219# These variables describe various library locations:
220#
221# DEST* = Location of where libraries that are built will be placed.
222# LLVM* = Location of LLVM libraries used for linking.
223# PROJ* = Location of previously built libraries used for linking.
224###########################################################################
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000225
John Criswell8bff5092003-06-11 13:55:44 +0000226# Libraries that are being built
227DESTLIBDEBUG := $(BUILD_OBJ_ROOT)/lib/Debug
228DESTLIBRELEASE := $(BUILD_OBJ_ROOT)/lib/Release
229DESTLIBPROFILE := $(BUILD_OBJ_ROOT)/lib/Profile
230DESTLIBCURRENT := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000231
John Criswell8bff5092003-06-11 13:55:44 +0000232# LLVM libraries used for linking
233LLVMLIBDEBUGSOURCE := $(LLVM_OBJ_ROOT)/lib/Debug
234LLVMLIBRELEASESOURCE := $(LLVM_OBJ_ROOT)/lib/Release
235LLVMLIBPROFILESOURCE := $(LLVM_OBJ_ROOT)/lib/Profile
236LLVMLIBCURRENTSOURCE := $(LLVM_OBJ_ROOT)/lib/$(CONFIGURATION)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000237
John Criswell8bff5092003-06-11 13:55:44 +0000238# Libraries that were built that will now be used for linking
239PROJLIBDEBUGSOURCE := $(BUILD_OBJ_ROOT)/lib/Debug
240PROJLIBRELEASESOURCE := $(BUILD_OBJ_ROOT)/lib/Release
241PROJLIBPROFILESOURCE := $(BUILD_OBJ_ROOT)/lib/Profile
242PROJLIBCURRENTSOURCE := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000243
John Criswell8bff5092003-06-11 13:55:44 +0000244###########################################################################
245# Tool Locations
246# These variables describe various tool locations:
247#
248# DEST* = Location of where tools that are built will be placed.
249# LLVM* = Location of LLVM tools used for building.
250# PROJ* = Location of previously built tools used for linking.
251###########################################################################
Chris Lattner760da062003-03-14 20:25:22 +0000252
John Criswell8bff5092003-06-11 13:55:44 +0000253DESTTOOLDEBUG := $(BUILD_OBJ_ROOT)/tools/Debug
254DESTTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release
255DESTTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile
256DESTTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
257
258LLVMTOOLDEBUG := $(LLVM_OBJ_ROOT)/tools/Debug
259LLVMTOOLRELEASE := $(LLVM_OBJ_ROOT)/tools/Release
260LLVMTOOLPROFILE := $(LLVM_OBJ_ROOT)/tools/Profile
261LLVMTOOLCURRENT := $(LLVM_OBJ_ROOT)/tools/$(CONFIGURATION)
262
263PROJTOOLDEBUG := $(BUILD_OBJ_ROOT)/tools/Debug
264PROJTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release
265PROJTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile
266PROJTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000267
John Criswell7a73b802003-06-30 21:59:07 +0000268#
269# Libtool is found in the current directory.
270#
Chris Lattner95cc1b32003-08-14 21:10:25 +0000271LIBTOOL := $(LLVM_SRC_ROOT)/mklib
John Criswell7a73b802003-06-30 21:59:07 +0000272
273#
John Criswell82f4a5a2003-07-31 20:58:51 +0000274# If we're not building a shared library, use the disable-shared tag with
275# libtool. This will disable the building of objects for shared libraries and
276# only generate static library objects.
277#
278# For dynamic libraries, we'll take the performance hit for now, since we
279# almost never build them.
280#
281# This should speed up compilation and require no modifications to future
282# versions of libtool.
283#
284ifndef SHARED_LIBRARY
Chris Lattner95cc1b32003-08-14 21:10:25 +0000285LIBTOOL += --tag=disable-shared
John Criswell82f4a5a2003-07-31 20:58:51 +0000286endif
287
288#
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000289# Verbosity levels
John Criswell7a73b802003-06-30 21:59:07 +0000290#
Chris Lattner760da062003-03-14 20:25:22 +0000291ifndef VERBOSE
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000292VERB := @
Chris Lattner95cc1b32003-08-14 21:10:25 +0000293LIBTOOL += --silent
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000294endif
295
John Criswell7a73b802003-06-30 21:59:07 +0000296###########################################################################
297# Miscellaneous paths and commands (part deux):
298# This section defines various configuration macros, such as where
299# to find burg, tblgen, and libtool.
300###########################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000301
John Criswell7a73b802003-06-30 21:59:07 +0000302#--------------------------------------------------------------------------
303# Special tools used while building the LLVM tree. Burg is built as part
304# of the utils directory.
305#--------------------------------------------------------------------------
John Criswell8bff5092003-06-11 13:55:44 +0000306BURG := $(LLVMTOOLCURRENT)/burg
Chris Lattner9b947012002-09-19 19:42:24 +0000307RunBurg := $(BURG) $(BURG_OPTS)
308
John Criswell8bff5092003-06-11 13:55:44 +0000309TBLGEN := $(LLVMTOOLCURRENT)/tblgen
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000310
Chris Lattner00950542001-06-06 20:29:01 +0000311
John Criswell8bff5092003-06-11 13:55:44 +0000312###########################################################################
313# Compile Time Flags
314###########################################################################
315
316#
John Criswell7a73b802003-06-30 21:59:07 +0000317# Include both the project headers and the LLVM headers for compilation and
318# dependency computation.
John Criswell8bff5092003-06-11 13:55:44 +0000319#
320CPPFLAGS += -I$(BUILD_SRC_ROOT)/include -I$(LLVM_SRC_ROOT)/include
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000321
Vikram S. Advefeeae582002-09-18 11:55:13 +0000322# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000323ifndef KEEP_SYMBOLS
Chris Lattner527002c2003-01-31 19:00:26 +0000324STRIP = $(PLATFORMSTRIPOPTS)
Misha Brukman9b51b6f2003-07-10 16:52:41 +0000325STRIP_WARN_MSG = "(without symbols)"
Vikram S. Advefeeae582002-09-18 11:55:13 +0000326endif
327
Chris Lattner73e1d0f2002-09-13 16:02:26 +0000328# Allow gnu extensions...
329CPPFLAGS += -D_GNU_SOURCE
330
John Criswell8bff5092003-06-11 13:55:44 +0000331CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner1d1e5b52003-02-13 16:56:30 +0000332CompileOptimizeOpts := -O3 -DNDEBUG -finline-functions -fshort-enums
Chris Lattner00950542001-06-06 20:29:01 +0000333
John Criswell7a73b802003-06-30 21:59:07 +0000334#
335# Compile commands with libtool.
336#
337Compile := $(LIBTOOL) --mode=compile $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
338CompileC := $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CCFLAGS) $(CompileCommonOpts)
339
Chris Lattner172b6482002-09-22 02:47:15 +0000340# Compile a cpp file, don't link...
Chris Lattner285af382002-08-12 21:19:28 +0000341CompileG := $(Compile) -g -D_DEBUG
Chris Lattner1d1e5b52003-02-13 16:56:30 +0000342CompileO := $(Compile) $(CompileOptimizeOpts) -felide-constructors -fomit-frame-pointer
343CompileP := $(Compile) $(CompileOptimizeOpts) -felide-constructors $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +0000344
Chris Lattner172b6482002-09-22 02:47:15 +0000345# Compile a c file, don't link...
Chris Lattner172b6482002-09-22 02:47:15 +0000346CompileCG := $(CompileC) -g -D_DEBUG
Chris Lattnerfe95dae2003-02-19 22:12:20 +0000347CompileCO := $(CompileC) $(CompileOptimizeOpts) -fomit-frame-pointer
348CompileCP := $(CompileC) $(CompileOptimizeOpts) $(PROFILE)
Chris Lattner172b6482002-09-22 02:47:15 +0000349
John Criswell7a73b802003-06-30 21:59:07 +0000350###########################################################################
351# Link Time Options
352###########################################################################
Chris Lattner172b6482002-09-22 02:47:15 +0000353
John Criswell7a73b802003-06-30 21:59:07 +0000354#
Chris Lattner00950542001-06-06 20:29:01 +0000355# Link final executable
John Criswell7a73b802003-06-30 21:59:07 +0000356# (Note that we always link with the C++ compiler).
357#
John Criswell7a73b802003-06-30 21:59:07 +0000358Link := $(LIBTOOL) --mode=link $(CXX)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000359
John Criswell7a73b802003-06-30 21:59:07 +0000360# link both projlib and llvmlib libraries
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000361LinkG := $(Link) -g -L$(PROJLIBDEBUGSOURCE) -L$(LLVMLIBDEBUGSOURCE) $(STRIP)
362LinkO := $(Link) -O3 -L$(PROJLIBRELEASESOURCE) -L$(LLVMLIBRELEASESOURCE)
363LinkP := $(Link) -O3 -L$(PROJLIBPROFILESOURCE) -L$(LLVMLIBPROFILESOURCE) $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +0000364
Chris Lattnere62dbe92002-07-23 17:56:16 +0000365# Create one .o file from a bunch of .o files...
Chris Lattner95cc1b32003-08-14 21:10:25 +0000366Relink := ${LIBTOOL} --mode=link $(CXX)
367ifndef SHARED_LIBRARY
368Relink += -only-static
369endif
John Criswell7a73b802003-06-30 21:59:07 +0000370
371#
372# Configure where the item being compiled should go.
373#
374ifdef SHARED_LIBRARY
Chris Lattner95cc1b32003-08-14 21:10:25 +0000375Link += -rpath $(DESTLIBCURRENT)
John Criswell7a73b802003-06-30 21:59:07 +0000376endif
377
378ifdef TOOLNAME
Chris Lattner95cc1b32003-08-14 21:10:25 +0000379Link += -rpath $(DESTTOOLCURRENT)
John Criswell7a73b802003-06-30 21:59:07 +0000380endif
Chris Lattner4bb13b82002-09-13 22:14:47 +0000381
Chris Lattner00950542001-06-06 20:29:01 +0000382# Create dependancy file from CPP file, send to stdout.
John Criswell8bff5092003-06-11 13:55:44 +0000383Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
384DependC := $(CC) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattner00950542001-06-06 20:29:01 +0000385
386# Archive a bunch of .o files into a .a file...
John Criswell794fcd22003-05-30 15:50:31 +0000387AR = ${AR_PATH} cq
Chris Lattner00950542001-06-06 20:29:01 +0000388
389#----------------------------------------------------------
390
391# Source includes all of the cpp files, and objects are derived from the
392# source files...
Chris Lattnere0010592001-10-18 01:48:09 +0000393# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +0000394#
Vikram S. Advead9ea7e2002-10-14 16:40:04 +0000395ifndef Source
Chris Lattnere0010592001-10-18 01:48:09 +0000396Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Advead9ea7e2002-10-14 16:40:04 +0000397endif
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000398
John Criswell82f4a5a2003-07-31 20:58:51 +0000399#
400# Libtool Objects
401#
John Criswellf4ccd992003-07-01 14:52:28 +0000402Objs := $(sort $(patsubst Debug/%.lo, %.lo, $(addsuffix .lo,$(notdir $(basename $(Source))))))
403ObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(Objs))
404ObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(Objs))
405ObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(Objs))
Chris Lattnere62dbe92002-07-23 17:56:16 +0000406
John Criswell82f4a5a2003-07-31 20:58:51 +0000407#
408# The real objects underlying the libtool objects
409#
410RObjs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(notdir $(basename $(Source))))))
411RObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(RObjs))
412RObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(RObjs))
413RObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(RObjs))
414
Chris Lattner00950542001-06-06 20:29:01 +0000415#---------------------------------------------------------
Chris Lattnera8abc222002-09-18 03:22:27 +0000416# Handle the DIRS and PARALLEL_DIRS options
Chris Lattner00950542001-06-06 20:29:01 +0000417#---------------------------------------------------------
418
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000419ifdef DIRS
Vikram S. Adve6edfe272003-07-10 19:25:29 +0000420all install clean test bytecode ::
Chris Lattner16d1f732002-09-17 23:45:34 +0000421 $(VERB) for dir in ${DIRS}; do \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000422 (cd $$dir; $(MAKE) $@) || exit 1; \
423 done
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000424endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000425
426# Handle PARALLEL_DIRS
427ifdef PARALLEL_DIRS
Vikram S. Adve6edfe272003-07-10 19:25:29 +0000428all :: $(addsuffix /.makeall , $(PARALLEL_DIRS))
429install :: $(addsuffix /.makeinstall , $(PARALLEL_DIRS))
430clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS))
431test :: $(addsuffix /.maketest , $(PARALLEL_DIRS))
432bytecode :: $(addsuffix /.makebytecode, $(PARALLEL_DIRS))
Chris Lattnera8abc222002-09-18 03:22:27 +0000433
Vikram S. Adve6edfe272003-07-10 19:25:29 +0000434%/.makeall %/.makeinstall %/.makeclean %/.maketest %/.makebytecode:
Chris Lattnera8abc222002-09-18 03:22:27 +0000435 $(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000436endif
437
John Criswell7a73b802003-06-30 21:59:07 +0000438# Handle directories that may or may not exist
John Criswell2a6530f2003-06-27 16:58:44 +0000439ifdef OPTIONAL_DIRS
Vikram S. Adve6edfe272003-07-10 19:25:29 +0000440all install clean test bytecode ::
John Criswell2a6530f2003-06-27 16:58:44 +0000441 $(VERB) for dir in ${OPTIONAL_DIRS}; do \
442 if [ -d $$dir ]; \
443 then\
444 (cd $$dir; $(MAKE) $@) || exit 1; \
445 fi \
446 done
447endif
448
John Criswell7a73b802003-06-30 21:59:07 +0000449###########################################################################
450# Library Build Rules:
451#
Chris Lattner00950542001-06-06 20:29:01 +0000452#---------------------------------------------------------
453# Handle the LIBRARYNAME option - used when building libs...
454#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000455#
456# When libraries are built, they are allowed to optionally define the
457# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
458# from being built for the library. This .o files may then be linked to by a
459# tool if the tool does not need (or want) the semantics a .a file provides
460# (linking in only object files that are "needed"). If a library is never to
461# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
462# BUILD_ARCHIVE instead.
463#
464# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattner1917e952002-07-31 21:32:05 +0000465# 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 +0000466# linked into tools (for example gccas) even if they only use one of the parts
467# of it. For this reason, sometimes it's useful to use libraries as .a files.
John Criswell7a73b802003-06-30 21:59:07 +0000468###########################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000469
470ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000471
Chris Lattner2a548c52002-09-16 22:36:42 +0000472# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000473LIBRARYNAME := $(strip $(LIBRARYNAME))
474
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000475LIBNAME_O := $(DESTLIBRELEASE)/lib$(LIBRARYNAME).so
476LIBNAME_P := $(DESTLIBPROFILE)/lib$(LIBRARYNAME).so
477LIBNAME_G := $(DESTLIBDEBUG)/lib$(LIBRARYNAME).so
478LIBNAME_AO := $(DESTLIBRELEASE)/lib$(LIBRARYNAME).a
479LIBNAME_AP := $(DESTLIBPROFILE)/lib$(LIBRARYNAME).a
480LIBNAME_AG := $(DESTLIBDEBUG)/lib$(LIBRARYNAME).a
481LIBNAME_OBJO := $(DESTLIBRELEASE)/$(LIBRARYNAME).o
482LIBNAME_OBJP := $(DESTLIBPROFILE)/$(LIBRARYNAME).o
483LIBNAME_OBJG := $(DESTLIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner00950542001-06-06 20:29:01 +0000484
John Criswell7a73b802003-06-30 21:59:07 +0000485#--------------------------------------------------------------------
486# Library Targets
487# Modify the top level targets to build the desired libraries.
488#--------------------------------------------------------------------
489
Chris Lattner760da062003-03-14 20:25:22 +0000490# dynamic target builds a shared object version of the library...
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000491dynamic:: $(DESTLIBCURRENT)/lib$(LIBRARYNAME).so
Vikram S. Adve60f56062002-08-02 18:34:12 +0000492
Chris Lattner760da062003-03-14 20:25:22 +0000493# Does the library want a .o version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000494ifndef DONT_BUILD_RELINKED
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000495all:: $(DESTLIBCURRENT)/$(LIBRARYNAME).o
Chris Lattnere62dbe92002-07-23 17:56:16 +0000496endif
Chris Lattner760da062003-03-14 20:25:22 +0000497
498# Does the library want an archive version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000499ifdef BUILD_ARCHIVE
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000500all:: $(DESTLIBCURRENT)/lib$(LIBRARYNAME).a
Chris Lattnere62dbe92002-07-23 17:56:16 +0000501endif
Chris Lattnere62dbe92002-07-23 17:56:16 +0000502
John Criswell7a73b802003-06-30 21:59:07 +0000503#--------------------------------------------------------------------
504# Rules for building libraries
505#--------------------------------------------------------------------
Chris Lattner00950542001-06-06 20:29:01 +0000506
John Criswell7a73b802003-06-30 21:59:07 +0000507#
508# Rules for building dynamically linked libraries.
509#
John Criswellf4ccd992003-07-01 14:52:28 +0000510$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000511 @echo ======= Linking $(LIBRARYNAME) dynamic release library =======
John Criswellf4ccd992003-07-01 14:52:28 +0000512 $(VERB) $(Link) -o $*.la $(ObjectsO) $(LibSubDirs) $(LibLinkOpts);
John Criswell7a73b802003-06-30 21:59:07 +0000513 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT);
Vikram S. Adve41e78912002-09-20 14:03:13 +0000514
John Criswellf4ccd992003-07-01 14:52:28 +0000515$(LIBNAME_P): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000516 @echo ======= Linking $(LIBRARYNAME) dynamic profile library =======
John Criswellf4ccd992003-07-01 14:52:28 +0000517 $(VERB) $(Link) -o $*.la $(ObjectsP) $(LibSubDirs) $(LibLinkOpts);
John Criswell7a73b802003-06-30 21:59:07 +0000518 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT);
Chris Lattner00950542001-06-06 20:29:01 +0000519
John Criswellf4ccd992003-07-01 14:52:28 +0000520$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000521 @echo ======= Linking $(LIBRARYNAME) dynamic debug library =======
John Criswellf4ccd992003-07-01 14:52:28 +0000522 $(VERB) $(Link) -o $*.la $(ObjectsG) $(LibSubDirs) $(LibLinkOpts);
John Criswell7a73b802003-06-30 21:59:07 +0000523 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT);
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000524
John Criswell7a73b802003-06-30 21:59:07 +0000525#
526# Rules for building static archive libraries.
527#
John Criswellf4ccd992003-07-01 14:52:28 +0000528$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000529 @echo ======= Linking $(LIBRARYNAME) archive release library =======
530 @$(RM) -f $@
John Criswellf4ccd992003-07-01 14:52:28 +0000531 $(VERB) $(Link) -03 -o $@ $(ObjectsO) $(LibSubDirs) -static
Vikram S. Adve41e78912002-09-20 14:03:13 +0000532
John Criswellf4ccd992003-07-01 14:52:28 +0000533$(LIBNAME_AP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000534 @echo ======= Linking $(LIBRARYNAME) archive profile library =======
535 @$(RM) -f $@
John Criswellf4ccd992003-07-01 14:52:28 +0000536 $(VERB) $(Link) -03 $(PROFILE) -o $@ $(ObjectsP) $(LibSubDirs) -static
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000537
John Criswellf4ccd992003-07-01 14:52:28 +0000538$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000539 @echo ======= Linking $(LIBRARYNAME) archive debug library =======
540 @$(RM) -f $@
John Criswellf4ccd992003-07-01 14:52:28 +0000541 $(VERB) $(Link) -g $(STRIP) -o $@ $(ObjectsG) $(LibSubDirs) -static
John Criswell7a73b802003-06-30 21:59:07 +0000542
543#
544# Rules for building .o libraries.
545#
John Criswell82f4a5a2003-07-31 20:58:51 +0000546# JTC:
547# Note that for this special case, we specify the actual object files
548# instead of their libtool counterparts. This is because libtool
549# doesn't want to generate a reloadable object file unless it is given
550# .o files explicitly.
551#
552# Note that we're making an assumption here: If we build a .lo file,
553# it's corresponding .o file will be placed in the same directory.
554#
555# I think that is safe.
556#
John Criswellf4ccd992003-07-01 14:52:28 +0000557$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000558 @echo "Linking $@"
John Criswell82f4a5a2003-07-31 20:58:51 +0000559 $(VERB) $(Relink) -o $@ $(RObjectsO) $(LibSubDirs)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000560
John Criswellf4ccd992003-07-01 14:52:28 +0000561$(LIBNAME_OBJP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
Vikram S. Adve41e78912002-09-20 14:03:13 +0000562 @echo "Linking $@"
John Criswell82f4a5a2003-07-31 20:58:51 +0000563 $(VERB) $(Relink) -o $@ $(RObjectsP) $(LibSubDirs)
Vikram S. Adve41e78912002-09-20 14:03:13 +0000564
John Criswellf4ccd992003-07-01 14:52:28 +0000565$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
Chris Lattner9e398162002-09-25 17:15:22 +0000566 @echo "Linking $@"
John Criswell82f4a5a2003-07-31 20:58:51 +0000567 $(VERB) $(Relink) -o $@ $(RObjectsG) $(LibSubDirs)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000568
Chris Lattner00950542001-06-06 20:29:01 +0000569endif
570
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000571#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000572# Create a TAGS database for emacs
573#------------------------------------------------------------------------
574
John Criswell7a73b802003-06-30 21:59:07 +0000575ifdef ETAGS
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000576ifeq ($(LEVEL), .)
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000577tags:
John Criswell7a73b802003-06-30 21:59:07 +0000578 $(ETAGS) -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000579all:: tags
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000580endif
John Criswell7a73b802003-06-30 21:59:07 +0000581else
582tags:
583 ${ECHO} "Cannot build $@: The program etags is not installed"
584endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000585
586#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000587# Handle the TOOLNAME option - used when building tool executables...
588#------------------------------------------------------------------------
589#
590# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattnere62dbe92002-07-23 17:56:16 +0000591# libraries (and the order of the libs) that should be linked to the
592# tool. USEDLIBS should contain a list of library names (some with .a extension)
593# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000594#
595ifdef TOOLNAME
596
597# TOOLEXENAME* - These compute the output filenames to generate...
John Criswell8bff5092003-06-11 13:55:44 +0000598TOOLEXENAME_G := $(DESTTOOLDEBUG)/$(TOOLNAME)
599TOOLEXENAME_O := $(DESTTOOLRELEASE)/$(TOOLNAME)
600TOOLEXENAME_P := $(DESTTOOLPROFILE)/$(TOOLNAME)
601TOOLEXENAMES := $(DESTTOOLCURRENT)/$(TOOLNAME)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000602
603# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000604PROJ_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
605PROJ_LIBS_OPTIONS_G := $(patsubst %.o, $(PROJLIBDEBUGSOURCE)/%.o, $(PROJ_LIBS_OPTIONS))
606PROJ_LIBS_OPTIONS_O := $(patsubst %.o, $(PROJLIBRELEASESOURCE)/%.o,$(PROJ_LIBS_OPTIONS))
607PROJ_LIBS_OPTIONS_P := $(patsubst %.o, $(PROJLIBPROFILESOURCE)/%.o,$(PROJ_LIBS_OPTIONS))
608
609LLVM_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
610LLVM_LIBS_OPTIONS_G := $(patsubst %.o, $(LLVMLIBDEBUGSOURCE)/%.o, $(LLVM_LIBS_OPTIONS))
611LLVM_LIBS_OPTIONS_O := $(patsubst %.o, $(LLVMLIBRELEASESOURCE)/%.o,$(LLVM_LIBS_OPTIONS))
612LLVM_LIBS_OPTIONS_P := $(patsubst %.o, $(LLVMLIBPROFILESOURCE)/%.o,$(LLVM_LIBS_OPTIONS))
613
614LIB_OPTS_G := $(LLVM_LIBS_OPTIONS_G) $(PROJ_LIBS_OPTIONS_G)
Chris Lattnere3ba95e2003-06-20 15:41:57 +0000615LIB_OPTS_O := $(LLVM_LIBS_OPTIONS_O) $(PROJ_LIBS_OPTIONS_O)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000616LIB_OPTS_P := $(LLVM_LIBS_OPTIONS_P) $(PROJ_LIBS_OPTIONS_P)
617
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000618# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattnere62dbe92002-07-23 17:56:16 +0000619# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
Misha Brukman1ba31382003-07-14 17:26:34 +0000620# files separately.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000621#
Chris Lattnere62dbe92002-07-23 17:56:16 +0000622STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000623USED_LIB_PATHS_G := $(addprefix $(DESTLIBDEBUG)/, $(STATICUSEDLIBS))
624USED_LIB_PATHS_O := $(addprefix $(DESTLIBRELEASE)/, $(STATICUSEDLIBS))
625USED_LIB_PATHS_P := $(addprefix $(DESTLIBPROFILE)/, $(STATICUSEDLIBS))
John Criswell7a73b802003-06-30 21:59:07 +0000626#LINK_OPTS := $(TOOLLINKOPTS) $(PLATFORMLINKOPTS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000627
John Criswell7a73b802003-06-30 21:59:07 +0000628#
629# Libtool link options:
630# Ensure that all binaries have their symbols exported so that they can
631# by dlsym'ed.
632#
633LINK_OPTS := -export-dynamic $(TOOLLINKOPTS)
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000634
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000635
636
637
638
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000639# Tell make that we need to rebuild subdirectories before we can link the tool.
640# This affects things like LLI which has library subdirectories.
641$(USED_LIB_PATHS_G) $(USED_LIB_PATHS_O) $(USED_LIB_PATHS_P): \
642 $(addsuffix /.makeall, $(PARALLEL_DIRS))
643
Chris Lattner669bd7c2001-10-13 05:10:29 +0000644all:: $(TOOLEXENAMES)
John Criswell2a6530f2003-06-27 16:58:44 +0000645
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000646clean::
John Criswell7a73b802003-06-30 21:59:07 +0000647 $(VERB) $(RM) -f $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000648
John Criswellf4ccd992003-07-01 14:52:28 +0000649$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(DESTTOOLDEBUG)/.dir
Misha Brukman9b51b6f2003-07-10 16:52:41 +0000650 @echo ======= Linking $(TOOLNAME) debug executable $(STRIP_WARN_MSG) =======
John Criswellf4ccd992003-07-01 14:52:28 +0000651 $(VERB) $(LinkG) -o $@ $(ObjectsG) $(LIB_OPTS_G) $(LINK_OPTS) $(LIBS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000652
John Criswellf4ccd992003-07-01 14:52:28 +0000653$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(DESTTOOLRELEASE)/.dir
Chris Lattner287d4432002-09-12 17:02:40 +0000654 @echo ======= Linking $(TOOLNAME) release executable =======
John Criswellf4ccd992003-07-01 14:52:28 +0000655 $(VERB) $(LinkO) -o $@ $(ObjectsO) $(LIB_OPTS_O) $(LINK_OPTS) $(LIBS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000656
John Criswellf4ccd992003-07-01 14:52:28 +0000657$(TOOLEXENAME_P): $(ObjectsP) $(USED_LIB_PATHS_P) $(DESTTOOLPROFILE)/.dir
Vikram S. Adve41e78912002-09-20 14:03:13 +0000658 @echo ======= Linking $(TOOLNAME) profile executable =======
John Criswellf4ccd992003-07-01 14:52:28 +0000659 $(VERB) $(LinkP) -o $@ $(ObjectsP) $(LIB_OPTS_P) $(LINK_OPTS) $(LIBS)
Vikram S. Adve41e78912002-09-20 14:03:13 +0000660
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000661endif
662
663
Chris Lattner00950542001-06-06 20:29:01 +0000664
665#---------------------------------------------------------
John Criswell8bff5092003-06-11 13:55:44 +0000666.PRECIOUS: $(BUILD_OBJ_DIR)/Depend/.dir
667.PRECIOUS: $(BUILD_OBJ_DIR)/Debug/.dir $(BUILD_OBJ_DIR)/Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000668
John Criswell7a73b802003-06-30 21:59:07 +0000669# Create .lo files in the ObjectFiles directory from the .cpp and .c files...
670$(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Release/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000671 @echo "Compiling $<"
672 $(VERB) $(CompileO) $< -o $@
Chris Lattner00950542001-06-06 20:29:01 +0000673
John Criswell7a73b802003-06-30 21:59:07 +0000674$(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Release/.dir
675 @echo "Compiling $<"
Chris Lattner1eeac662002-10-22 23:28:23 +0000676 $(VERB) $(CompileCO) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000677
John Criswell7a73b802003-06-30 21:59:07 +0000678$(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Profile/.dir
Vikram S. Adve41e78912002-09-20 14:03:13 +0000679 @echo "Compiling $<"
680 $(VERB) $(CompileP) $< -o $@
681
John Criswell7a73b802003-06-30 21:59:07 +0000682$(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Profile/.dir
Chris Lattner172b6482002-09-22 02:47:15 +0000683 @echo "Compiling $<"
684 $(VERB) $(CompileCP) $< -o $@
685
John Criswell7a73b802003-06-30 21:59:07 +0000686$(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Debug/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000687 @echo "Compiling $<"
688 $(VERB) $(CompileG) $< -o $@
Chris Lattner00950542001-06-06 20:29:01 +0000689
John Criswell7a73b802003-06-30 21:59:07 +0000690$(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Debug/.dir
691 @echo "Compiling $<"
692 $(VERB) $(CompileCG) $< -o $@
693
Chris Lattnere8996782003-01-16 22:44:19 +0000694#
695# Rules for building lex/yacc files
696#
697LEX_FILES = $(filter %.l, $(Source))
698LEX_OUTPUT = $(LEX_FILES:%.l=%.cpp)
699YACC_FILES = $(filter %.y, $(Source))
700YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
701.PRECIOUS: $(LEX_OUTPUT) $(YACC_OUTPUT)
702
Chris Lattner00950542001-06-06 20:29:01 +0000703# Create a .cpp source file from a flex input file... this uses sed to cut down
704# on the warnings emited by GCC...
Chris Lattner6d131b42003-01-23 16:33:10 +0000705#
706# The last line is a gross hack to work around flex aparently not being able to
707# resize the buffer on a large token input. Currently, for uninitialized string
708# buffers in LLVM we can generate very long tokens, so this is a hack around it.
709# FIXME. (f.e. char Buffer[10000]; )
710#
Chris Lattner00950542001-06-06 20:29:01 +0000711%.cpp: %.l
Chris Lattnera328f882003-08-04 19:47:06 +0000712 @echo Flex\'ing $<...
Chris Lattner7bb107d2003-08-04 19:48:10 +0000713 $(VERB) $(FLEX) -t $< | \
714 $(SED) '/^find_rule/d' | \
715 $(SED) 's/void yyunput/inline void yyunput/' | \
John Criswell7a73b802003-06-30 21:59:07 +0000716 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
Chris Lattnera328f882003-08-04 19:47:06 +0000717 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
718 > $@.tmp
John Criswelld741bcf2003-08-12 18:51:51 +0000719 $(VERB) cmp -s $@ $@.tmp > /dev/null || ${MV} -f $@.tmp $@
Chris Lattnera328f882003-08-04 19:47:06 +0000720 @# remove the output of flex if it didn't get moved over...
721 @rm -f $@.tmp
Chris Lattner00950542001-06-06 20:29:01 +0000722
723# Rule for building the bison parsers...
Chris Lattner694c5df2003-05-15 21:28:55 +0000724%.c: %.y # Cancel built-in rules for yacc
725%.h: %.y # Cancel built-in rules for yacc
Chris Lattner00950542001-06-06 20:29:01 +0000726%.cpp %.h : %.y
Chris Lattner694c5df2003-05-15 21:28:55 +0000727 @echo Bison\'ing $<...
Chris Lattnere8996782003-01-16 22:44:19 +0000728 $(VERB) $(BISON) -v -d -p $(<:%Parser.y=%) $*.y
John Criswelld741bcf2003-08-12 18:51:51 +0000729 $(VERB) cmp -s $*.tab.c $*.cpp > /dev/null || ${MV} -f $*.tab.c $*.cpp
730 $(VERB) cmp -s $*.tab.h $*.h > /dev/null || ${MV} -f $*.tab.h $*.h
Chris Lattnera328f882003-08-04 19:47:06 +0000731 @# If the files were not updated, don't leave them lying around...
732 @rm -f $*.tab.c $*.tab.h
Chris Lattner00950542001-06-06 20:29:01 +0000733
734# To create the directories...
735%/.dir:
John Criswell7a73b802003-06-30 21:59:07 +0000736 $(VERB) ${MKDIR} $* > /dev/null
737 @$(DATE) > $@
Chris Lattner00950542001-06-06 20:29:01 +0000738
Chris Lattner30440c62003-01-16 21:06:18 +0000739# To create postscript files from dot files...
John Criswell7a73b802003-06-30 21:59:07 +0000740ifdef DOT
Chris Lattner30440c62003-01-16 21:06:18 +0000741%.ps: %.dot
John Criswell7a73b802003-06-30 21:59:07 +0000742 ${DOT} -Tps < $< > $@
743else
744%.ps: %.dot
745 ${ECHO} "Cannot build $@: The program dot is not installed"
746endif
Chris Lattner30440c62003-01-16 21:06:18 +0000747
Chris Lattner172b6482002-09-22 02:47:15 +0000748# 'make clean' nukes the tree
Chris Lattner00950542001-06-06 20:29:01 +0000749clean::
John Criswell7a73b802003-06-30 21:59:07 +0000750 $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Debug $(BUILD_OBJ_DIR)/Release $(BUILD_OBJ_DIR)/Profile $(BUILD_OBJ_DIR)/Depend
751 $(VERB) $(RM) -f core core.[0-9][0-9]* *.o *.d *.so *~ *.flc
752 $(VERB) $(RM) -f $(LEX_OUTPUT) $(YACC_OUTPUT)
753
John Criswell7a73b802003-06-30 21:59:07 +0000754###########################################################################
755# C/C++ Dependencies
756# Define variables and rules that generate header file dependencies
757# from C/C++ source files.
758###########################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000759
Chris Lattner694c5df2003-05-15 21:28:55 +0000760# If dependencies were generated for the file that included this file,
Chris Lattner00950542001-06-06 20:29:01 +0000761# include the dependancies now...
762#
Chris Lattner694c5df2003-05-15 21:28:55 +0000763SourceBaseNames := $(basename $(notdir $(filter-out Debug/%, $(Source))))
John Criswell8bff5092003-06-11 13:55:44 +0000764SourceDepend := $(SourceBaseNames:%=$(BUILD_OBJ_DIR)/Depend/%.d)
Chris Lattner694c5df2003-05-15 21:28:55 +0000765
766# Create dependencies for the *.cpp files...
767#$(SourceDepend): \x
John Criswell8bff5092003-06-11 13:55:44 +0000768$(BUILD_OBJ_DIR)/Depend/%.d: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Depend/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000769 $(VERB) $(Depend) $< | $(SED) 's|\.o|\.lo|' | $(SED) 's|$*\.lo *|$(BUILD_OBJ_DIR)/Release/& $(BUILD_OBJ_DIR)/Profile/& $(BUILD_OBJ_DIR)/Debug/& $(BUILD_OBJ_DIR)/Depend/$(@F)|g' > $@
Chris Lattner694c5df2003-05-15 21:28:55 +0000770
771# Create dependencies for the *.c files...
772#$(SourceDepend): \x
John Criswell8bff5092003-06-11 13:55:44 +0000773$(BUILD_OBJ_DIR)/Depend/%.d: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Depend/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000774 $(VERB) $(DependC) -o $@ $< | $(SED) 's|\.o|\.lo|' | $(SED) 's|$*\.lo *|$(BUILD_OBJ_DIR)/Release/& $(BUILD_OBJ_DIR)/Profile/& $(BUILD_OBJ_DIR)/Debug/& $(BUILD_OBJ_DIR)/Depend/$(@F)|g' > $@
Chris Lattner694c5df2003-05-15 21:28:55 +0000775
John Criswell7a73b802003-06-30 21:59:07 +0000776#
777# Include dependencies generated from C/C++ source files, but not if we
778# are cleaning (this example taken from the GNU Make Manual).
779#
780ifneq ($(MAKECMDGOALS),clean)
John Criswelld741bcf2003-08-12 18:51:51 +0000781ifneq ($(MAKECMDGOALS),distclean)
Chris Lattner00950542001-06-06 20:29:01 +0000782ifneq ($(SourceDepend),)
Chris Lattnered03bc92002-10-25 14:32:42 +0000783-include $(SourceDepend)
Chris Lattner00950542001-06-06 20:29:01 +0000784endif
John Criswell7a73b802003-06-30 21:59:07 +0000785endif
John Criswelld741bcf2003-08-12 18:51:51 +0000786endif