blob: 5c004b32478b1ccb17ef0c55d3a1106ad8fc0f27 [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
Misha Brukman36bc6422003-08-21 22:02:18 +00004# rules to do things like compile a .cpp file or generate dependency info.
5# These are platform dependent, so this is the file used to specify these
6# system dependent operations.
Chris Lattner00950542001-06-06 20:29:01 +00007#
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.
Chris Lattneraf06a082003-08-15 03:02:52 +000051#
Vikram S. Adved60aede2002-07-09 12:04:21 +000052#===-----------------------------------------------------------------------====
Chris Lattner00950542001-06-06 20:29:01 +000053
John Criswell2a6530f2003-06-27 16:58:44 +000054#
Vikram S. Advec214e712002-08-29 23:28:46 +000055# Configuration file to set paths specific to local installation of LLVM
56#
57include $(LEVEL)/Makefile.config
58
John Criswell8bff5092003-06-11 13:55:44 +000059###########################################################################
60# Directory Configuration
61# This section of the Makefile determines what is where. To be
62# specific, there are several locations that need to be defined:
63#
64# o LLVM_SRC_ROOT : The root directory of the LLVM source code.
65# o LLVM_OBJ_ROOT : The root directory containing the built LLVM code.
66#
67# o BUILD_SRC_DIR : The directory containing the code to build.
68# o BUILD_SRC_ROOT : The root directory of the code to build.
69#
70# o BUILD_OBJ_DIR : The directory in which compiled code will be placed.
71# o BUILD_OBJ_ROOT : The root directory in which compiled code is placed.
72#
73###########################################################################
74
75#
76# Set the source build directory. That is almost always the current directory.
77#
78ifndef BUILD_SRC_DIR
79BUILD_SRC_DIR = $(shell pwd)
80endif
81
82#
83# Set the source root directory.
84#
85ifndef BUILD_SRC_ROOT
John Criswell890d5bd2003-06-16 19:14:31 +000086BUILD_SRC_ROOT = $(shell cd $(BUILD_SRC_DIR)/$(LEVEL); pwd)
John Criswell8bff5092003-06-11 13:55:44 +000087endif
88
89#
John Criswell7a73b802003-06-30 21:59:07 +000090# Determine the path of the source tree relative from $HOME (the mythical
91# home directory).
92#
Misha Brukmanf8873ed2003-07-07 22:27:05 +000093HOME_OBJ_ROOT := $(OBJ_ROOT)$(patsubst $(HOME)%,%,$(BUILD_SRC_ROOT))
John Criswell7a73b802003-06-30 21:59:07 +000094
95#
John Criswell8bff5092003-06-11 13:55:44 +000096# Set the object build directory. Its location depends upon the source path
97# and where object files should go.
98#
99ifndef BUILD_OBJ_DIR
100ifeq ($(OBJ_ROOT),.)
John Criswell7a73b802003-06-30 21:59:07 +0000101BUILD_OBJ_DIR = $(BUILD_SRC_DIR)
John Criswell8bff5092003-06-11 13:55:44 +0000102else
John Criswell7a73b802003-06-30 21:59:07 +0000103BUILD_OBJ_DIR := $(HOME_OBJ_ROOT)$(patsubst $(BUILD_SRC_ROOT)%,%,$(BUILD_SRC_DIR))
John Criswell8bff5092003-06-11 13:55:44 +0000104endif
105endif
106
107#
108# Set the root of the object directory.
109#
110ifndef BUILD_OBJ_ROOT
111ifeq ($(OBJ_ROOT),.)
John Criswell7a73b802003-06-30 21:59:07 +0000112BUILD_OBJ_ROOT = $(BUILD_SRC_ROOT)
John Criswell8bff5092003-06-11 13:55:44 +0000113else
John Criswell7a73b802003-06-30 21:59:07 +0000114BUILD_OBJ_ROOT := $(HOME_OBJ_ROOT)
John Criswell8bff5092003-06-11 13:55:44 +0000115endif
116endif
117
118#
119# Set the LLVM source directory.
120# It is typically the root directory of what we're compiling now.
121#
122ifndef LLVM_SRC_ROOT
Chris Lattner481cc7c2003-08-15 02:18:35 +0000123LLVM_SRC_ROOT := $(BUILD_SRC_ROOT)
John Criswell8bff5092003-06-11 13:55:44 +0000124endif
125
126#
127# Set the LLVM object directory.
128#
129ifndef LLVM_OBJ_ROOT
Chris Lattner481cc7c2003-08-15 02:18:35 +0000130LLVM_OBJ_ROOT := $(BUILD_OBJ_ROOT)
John Criswell8bff5092003-06-11 13:55:44 +0000131endif
132
John Criswell7a73b802003-06-30 21:59:07 +0000133###########################################################################
134# Default Targets:
135# The following targets are the standard top level targets for
136# building.
137###########################################################################
Chris Lattner4bb13b82002-09-13 22:14:47 +0000138
Chris Lattneredf1f232002-07-23 19:21:31 +0000139ifdef SHARED_LIBRARY
140# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
John Criswell7a73b802003-06-30 21:59:07 +0000141all:: dynamic
Chris Lattneredf1f232002-07-23 19:21:31 +0000142endif
143
Chris Lattner95cc1b32003-08-14 21:10:25 +0000144ifdef BYTECODE_LIBRARY
145# if BYTECODE_LIBRARY is specified, the default is to build the bytecode lib
146all:: bytecodelib
Chris Lattner481cc7c2003-08-15 02:18:35 +0000147install:: bytecodelib-install
Chris Lattner95cc1b32003-08-14 21:10:25 +0000148endif
149
Chris Lattnerb19e59c2001-06-29 05:20:16 +0000150# Default Rule: Make sure it's also a :: rule
Chris Lattner00950542001-06-06 20:29:01 +0000151all ::
152
153# Default for install is to at least build everything...
154install ::
155
John Criswell8bff5092003-06-11 13:55:44 +0000156# Default rule for test. It ensures everything has a test rule
157test::
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000158
Vikram S. Adve6edfe272003-07-10 19:25:29 +0000159# Default rule for building only bytecode.
160bytecode::
161
John Criswell7a73b802003-06-30 21:59:07 +0000162# Print out the directories used for building
163prdirs::
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000164 echo "Home Offset : " $(HOME_OBJ_ROOT)
165 echo "Build Source Root: " $(BUILD_SRC_ROOT)
166 echo "Build Source Dir : " $(BUILD_SRC_DIR)
167 echo "Build Object Root: " $(BUILD_OBJ_ROOT)
168 echo "Build Object Dir : " $(BUILD_OBJ_DIR)
169 echo "LLVM Source Root: " $(LLVM_SRC_ROOT)
170 echo "LLVM Object Root: " $(LLVM_OBJ_ROOT)
John Criswell7a73b802003-06-30 21:59:07 +0000171
John Criswell9621a2b2003-08-20 15:18:41 +0000172###########################################################################
173# Suffixes and implicit rules:
174# Empty out the list of suffixes, generate a list that is only
175# used by this Makefile, and cancel useless implicit rules. This
176# will hopefully speed up compilation a little bit.
177###########################################################################
178.SUFFIXES:
179.SUFFIXES: .c .cpp .h .hpp .y .l
180.SUFFIXES: .lo .o .a .so .bc
181.SUFFIXES: .ps .dot .d
182
John Criswell96914392003-07-16 20:26:06 +0000183#
184# Mark all of these targets as phony. This will hopefully speed up builds
185# slightly since GNU Make will not try to find implicit rules for targets
186# which are marked as Phony.
187#
Chris Lattner481cc7c2003-08-15 02:18:35 +0000188.PHONY: all dynamic bytecodelib bytecodelib-install
Chris Lattnerfbb574d2003-08-21 20:39:08 +0000189.PHONY: clean distclean install test bytecode prdirs
John Criswell96914392003-07-16 20:26:06 +0000190
John Criswell7a73b802003-06-30 21:59:07 +0000191###########################################################################
192# Miscellaneous paths and commands:
193# This section defines various configuration macros, such as where
194# to find burg, tblgen, and libtool.
195###########################################################################
196
Chris Lattner00950542001-06-06 20:29:01 +0000197#--------------------------------------------------------------------
Vikram S. Advec214e712002-08-29 23:28:46 +0000198# Variables derived from configuration options...
Chris Lattner00950542001-06-06 20:29:01 +0000199#--------------------------------------------------------------------
200
201#BinInstDir=/usr/local/bin
John Criswell65aa59342003-05-29 18:52:10 +0000202#LibInstDir=/usr/local/lib/xxx
Chris Lattner00950542001-06-06 20:29:01 +0000203#DocInstDir=/usr/doc/xxx
204
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000205BURG_OPTS = -I
206
Chris Lattner760da062003-03-14 20:25:22 +0000207ifdef ENABLE_PROFILING
208 ENABLE_OPTIMIZED = 1
209 CONFIGURATION := Profile
210else
211 ifdef ENABLE_OPTIMIZED
212 CONFIGURATION := Release
213 else
214 CONFIGURATION := Debug
215 endif
216endif
217
John Criswell7a73b802003-06-30 21:59:07 +0000218#
219# Enable this for profiling support with 'gprof'
220# This automatically enables optimized builds.
221#
222ifdef ENABLE_PROFILING
223 PROFILE = -pg
224endif
225
John Criswell8bff5092003-06-11 13:55:44 +0000226###########################################################################
John Criswell7a73b802003-06-30 21:59:07 +0000227# Library Locations:
John Criswell8bff5092003-06-11 13:55:44 +0000228# These variables describe various library locations:
229#
230# DEST* = Location of where libraries that are built will be placed.
231# LLVM* = Location of LLVM libraries used for linking.
232# PROJ* = Location of previously built libraries used for linking.
233###########################################################################
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000234
John Criswell8bff5092003-06-11 13:55:44 +0000235# Libraries that are being built
236DESTLIBDEBUG := $(BUILD_OBJ_ROOT)/lib/Debug
237DESTLIBRELEASE := $(BUILD_OBJ_ROOT)/lib/Release
238DESTLIBPROFILE := $(BUILD_OBJ_ROOT)/lib/Profile
Chris Lattner481cc7c2003-08-15 02:18:35 +0000239DESTLIBBYTECODE := $(BUILD_OBJ_ROOT)/lib/Bytecode
John Criswell8bff5092003-06-11 13:55:44 +0000240DESTLIBCURRENT := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000241
John Criswell8bff5092003-06-11 13:55:44 +0000242# LLVM libraries used for linking
243LLVMLIBDEBUGSOURCE := $(LLVM_OBJ_ROOT)/lib/Debug
244LLVMLIBRELEASESOURCE := $(LLVM_OBJ_ROOT)/lib/Release
245LLVMLIBPROFILESOURCE := $(LLVM_OBJ_ROOT)/lib/Profile
246LLVMLIBCURRENTSOURCE := $(LLVM_OBJ_ROOT)/lib/$(CONFIGURATION)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000247
John Criswell8bff5092003-06-11 13:55:44 +0000248# Libraries that were built that will now be used for linking
249PROJLIBDEBUGSOURCE := $(BUILD_OBJ_ROOT)/lib/Debug
250PROJLIBRELEASESOURCE := $(BUILD_OBJ_ROOT)/lib/Release
251PROJLIBPROFILESOURCE := $(BUILD_OBJ_ROOT)/lib/Profile
252PROJLIBCURRENTSOURCE := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000253
John Criswell8bff5092003-06-11 13:55:44 +0000254###########################################################################
255# Tool Locations
256# These variables describe various tool locations:
257#
258# DEST* = Location of where tools that are built will be placed.
259# LLVM* = Location of LLVM tools used for building.
260# PROJ* = Location of previously built tools used for linking.
261###########################################################################
Chris Lattner760da062003-03-14 20:25:22 +0000262
John Criswell8bff5092003-06-11 13:55:44 +0000263DESTTOOLDEBUG := $(BUILD_OBJ_ROOT)/tools/Debug
264DESTTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release
265DESTTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile
266DESTTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
267
268LLVMTOOLDEBUG := $(LLVM_OBJ_ROOT)/tools/Debug
269LLVMTOOLRELEASE := $(LLVM_OBJ_ROOT)/tools/Release
270LLVMTOOLPROFILE := $(LLVM_OBJ_ROOT)/tools/Profile
271LLVMTOOLCURRENT := $(LLVM_OBJ_ROOT)/tools/$(CONFIGURATION)
272
273PROJTOOLDEBUG := $(BUILD_OBJ_ROOT)/tools/Debug
274PROJTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release
275PROJTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile
276PROJTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000277
John Criswell7a73b802003-06-30 21:59:07 +0000278#
279# Libtool is found in the current directory.
280#
Chris Lattner95cc1b32003-08-14 21:10:25 +0000281LIBTOOL := $(LLVM_SRC_ROOT)/mklib
John Criswell7a73b802003-06-30 21:59:07 +0000282
283#
John Criswell82f4a5a2003-07-31 20:58:51 +0000284# If we're not building a shared library, use the disable-shared tag with
285# libtool. This will disable the building of objects for shared libraries and
286# only generate static library objects.
287#
288# For dynamic libraries, we'll take the performance hit for now, since we
289# almost never build them.
290#
291# This should speed up compilation and require no modifications to future
292# versions of libtool.
293#
294ifndef SHARED_LIBRARY
Chris Lattner95cc1b32003-08-14 21:10:25 +0000295LIBTOOL += --tag=disable-shared
John Criswell82f4a5a2003-07-31 20:58:51 +0000296endif
297
298#
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000299# Verbosity levels
John Criswell7a73b802003-06-30 21:59:07 +0000300#
Chris Lattner760da062003-03-14 20:25:22 +0000301ifndef VERBOSE
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000302VERB := @
Chris Lattner95cc1b32003-08-14 21:10:25 +0000303LIBTOOL += --silent
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000304endif
305
John Criswell7a73b802003-06-30 21:59:07 +0000306###########################################################################
307# Miscellaneous paths and commands (part deux):
308# This section defines various configuration macros, such as where
309# to find burg, tblgen, and libtool.
310###########################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000311
John Criswell7a73b802003-06-30 21:59:07 +0000312#--------------------------------------------------------------------------
Chris Lattner481cc7c2003-08-15 02:18:35 +0000313# Utilities used while building the LLVM tree, which live in the utils dir
314#
John Criswell8bff5092003-06-11 13:55:44 +0000315BURG := $(LLVMTOOLCURRENT)/burg
Chris Lattner9b947012002-09-19 19:42:24 +0000316RunBurg := $(BURG) $(BURG_OPTS)
John Criswell8bff5092003-06-11 13:55:44 +0000317TBLGEN := $(LLVMTOOLCURRENT)/tblgen
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000318
Chris Lattner481cc7c2003-08-15 02:18:35 +0000319#--------------------------------------------------------------------------
320# The LLVM GCC front-end in C and C++ flavors
321#
Chris Lattner9a86a012003-08-15 15:20:52 +0000322LLVMGCC := PATH=$(LLVMTOOLCURRENT):$(PATH) $(LLVMGCCDIR)/bin/gcc
Chris Lattner98892652003-08-20 22:11:45 +0000323LCC1 := $(LLVMGCCDIR)/libexec/gcc/$(LLVMGCCARCH)/cc1
Chris Lattner9a86a012003-08-15 15:20:52 +0000324LLVMGXX := PATH=$(LLVMTOOLCURRENT):$(PATH) $(LLVMGCCDIR)/bin/g++
Chris Lattner98892652003-08-20 22:11:45 +0000325LCC1XX := $(LLVMGCCDIR)/libexec/gcc/$(LLVMGCCARCH)/cc1plus
Chris Lattner481cc7c2003-08-15 02:18:35 +0000326
327#--------------------------------------------------------------------------
328# Some of the compiled LLVM tools which are used for compilation of runtime
329# libraries.
330#
331LLVMAS := $(LLVMTOOLCURRENT)/as
332
Chris Lattner00950542001-06-06 20:29:01 +0000333
John Criswell8bff5092003-06-11 13:55:44 +0000334###########################################################################
335# Compile Time Flags
336###########################################################################
337
338#
John Criswell7a73b802003-06-30 21:59:07 +0000339# Include both the project headers and the LLVM headers for compilation and
340# dependency computation.
John Criswell8bff5092003-06-11 13:55:44 +0000341#
342CPPFLAGS += -I$(BUILD_SRC_ROOT)/include -I$(LLVM_SRC_ROOT)/include
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000343
Vikram S. Advefeeae582002-09-18 11:55:13 +0000344# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000345ifndef KEEP_SYMBOLS
Chris Lattner527002c2003-01-31 19:00:26 +0000346STRIP = $(PLATFORMSTRIPOPTS)
Misha Brukman9b51b6f2003-07-10 16:52:41 +0000347STRIP_WARN_MSG = "(without symbols)"
Vikram S. Advefeeae582002-09-18 11:55:13 +0000348endif
349
Chris Lattner73e1d0f2002-09-13 16:02:26 +0000350# Allow gnu extensions...
351CPPFLAGS += -D_GNU_SOURCE
352
John Criswell8bff5092003-06-11 13:55:44 +0000353CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
Chris Lattner1d1e5b52003-02-13 16:56:30 +0000354CompileOptimizeOpts := -O3 -DNDEBUG -finline-functions -fshort-enums
Chris Lattner00950542001-06-06 20:29:01 +0000355
John Criswell7a73b802003-06-30 21:59:07 +0000356#
357# Compile commands with libtool.
358#
359Compile := $(LIBTOOL) --mode=compile $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
360CompileC := $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CCFLAGS) $(CompileCommonOpts)
361
Chris Lattner172b6482002-09-22 02:47:15 +0000362# Compile a cpp file, don't link...
Chris Lattner285af382002-08-12 21:19:28 +0000363CompileG := $(Compile) -g -D_DEBUG
Chris Lattner1d1e5b52003-02-13 16:56:30 +0000364CompileO := $(Compile) $(CompileOptimizeOpts) -felide-constructors -fomit-frame-pointer
365CompileP := $(Compile) $(CompileOptimizeOpts) -felide-constructors $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +0000366
Chris Lattner172b6482002-09-22 02:47:15 +0000367# Compile a c file, don't link...
Chris Lattner172b6482002-09-22 02:47:15 +0000368CompileCG := $(CompileC) -g -D_DEBUG
Chris Lattnerfe95dae2003-02-19 22:12:20 +0000369CompileCO := $(CompileC) $(CompileOptimizeOpts) -fomit-frame-pointer
370CompileCP := $(CompileC) $(CompileOptimizeOpts) $(PROFILE)
Chris Lattner172b6482002-09-22 02:47:15 +0000371
John Criswell7a73b802003-06-30 21:59:07 +0000372###########################################################################
373# Link Time Options
374###########################################################################
Chris Lattner172b6482002-09-22 02:47:15 +0000375
John Criswell7a73b802003-06-30 21:59:07 +0000376#
Chris Lattner00950542001-06-06 20:29:01 +0000377# Link final executable
John Criswell7a73b802003-06-30 21:59:07 +0000378# (Note that we always link with the C++ compiler).
379#
John Criswell7a73b802003-06-30 21:59:07 +0000380Link := $(LIBTOOL) --mode=link $(CXX)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000381
John Criswell7a73b802003-06-30 21:59:07 +0000382# link both projlib and llvmlib libraries
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000383LinkG := $(Link) -g -L$(PROJLIBDEBUGSOURCE) -L$(LLVMLIBDEBUGSOURCE) $(STRIP)
384LinkO := $(Link) -O3 -L$(PROJLIBRELEASESOURCE) -L$(LLVMLIBRELEASESOURCE)
385LinkP := $(Link) -O3 -L$(PROJLIBPROFILESOURCE) -L$(LLVMLIBPROFILESOURCE) $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +0000386
Chris Lattnere62dbe92002-07-23 17:56:16 +0000387# Create one .o file from a bunch of .o files...
Chris Lattner95cc1b32003-08-14 21:10:25 +0000388Relink := ${LIBTOOL} --mode=link $(CXX)
John Criswell7a73b802003-06-30 21:59:07 +0000389
390#
391# Configure where the item being compiled should go.
392#
393ifdef SHARED_LIBRARY
Chris Lattner95cc1b32003-08-14 21:10:25 +0000394Link += -rpath $(DESTLIBCURRENT)
John Criswell7a73b802003-06-30 21:59:07 +0000395endif
396
397ifdef TOOLNAME
Chris Lattner95cc1b32003-08-14 21:10:25 +0000398Link += -rpath $(DESTTOOLCURRENT)
John Criswell7a73b802003-06-30 21:59:07 +0000399endif
Chris Lattner4bb13b82002-09-13 22:14:47 +0000400
Misha Brukman36bc6422003-08-21 22:02:18 +0000401# Create dependency file from CPP file, send to stdout.
John Criswell8bff5092003-06-11 13:55:44 +0000402Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
403DependC := $(CC) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattner00950542001-06-06 20:29:01 +0000404
405# Archive a bunch of .o files into a .a file...
John Criswell794fcd22003-05-30 15:50:31 +0000406AR = ${AR_PATH} cq
Chris Lattner00950542001-06-06 20:29:01 +0000407
408#----------------------------------------------------------
409
410# Source includes all of the cpp files, and objects are derived from the
411# source files...
Chris Lattnere0010592001-10-18 01:48:09 +0000412# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +0000413#
Vikram S. Advead9ea7e2002-10-14 16:40:04 +0000414ifndef Source
Chris Lattnere0010592001-10-18 01:48:09 +0000415Source := $(ExtraSource) $(wildcard *.cpp *.c *.y *.l)
Vikram S. Advead9ea7e2002-10-14 16:40:04 +0000416endif
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000417
John Criswell82f4a5a2003-07-31 20:58:51 +0000418#
419# Libtool Objects
420#
Chris Lattner481cc7c2003-08-15 02:18:35 +0000421Srcs := $(sort $(notdir $(basename $(Source))))
422Objs := $(addsuffix .lo, $(Srcs))
John Criswellf4ccd992003-07-01 14:52:28 +0000423ObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(Objs))
424ObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(Objs))
425ObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(Objs))
Chris Lattner481cc7c2003-08-15 02:18:35 +0000426ObjectsBC := $(addprefix $(BUILD_OBJ_DIR)/Bytecode/,$(addsuffix .bc, $(Srcs)))
Chris Lattnere62dbe92002-07-23 17:56:16 +0000427
John Criswell82f4a5a2003-07-31 20:58:51 +0000428#
429# The real objects underlying the libtool objects
430#
431RObjs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(notdir $(basename $(Source))))))
432RObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(RObjs))
433RObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(RObjs))
434RObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(RObjs))
435
Chris Lattner00950542001-06-06 20:29:01 +0000436#---------------------------------------------------------
Chris Lattnera8abc222002-09-18 03:22:27 +0000437# Handle the DIRS and PARALLEL_DIRS options
Chris Lattner00950542001-06-06 20:29:01 +0000438#---------------------------------------------------------
439
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000440ifdef DIRS
Chris Lattnerfbb574d2003-08-21 20:39:08 +0000441all install clean test bytecode ::
Chris Lattner16d1f732002-09-17 23:45:34 +0000442 $(VERB) for dir in ${DIRS}; do \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000443 (cd $$dir; $(MAKE) $@) || exit 1; \
444 done
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000445endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000446
447# Handle PARALLEL_DIRS
448ifdef PARALLEL_DIRS
Vikram S. Adve6edfe272003-07-10 19:25:29 +0000449all :: $(addsuffix /.makeall , $(PARALLEL_DIRS))
450install :: $(addsuffix /.makeinstall , $(PARALLEL_DIRS))
451clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS))
452test :: $(addsuffix /.maketest , $(PARALLEL_DIRS))
453bytecode :: $(addsuffix /.makebytecode, $(PARALLEL_DIRS))
Chris Lattnera8abc222002-09-18 03:22:27 +0000454
Chris Lattnerfbb574d2003-08-21 20:39:08 +0000455%/.makeall %/.makeinstall %/.makeclean %/.maketest %/.makebytecode:
Chris Lattnera8abc222002-09-18 03:22:27 +0000456 $(VERB) cd $(@D); $(MAKE) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000457endif
458
John Criswell7a73b802003-06-30 21:59:07 +0000459# Handle directories that may or may not exist
John Criswell2a6530f2003-06-27 16:58:44 +0000460ifdef OPTIONAL_DIRS
Chris Lattnerfbb574d2003-08-21 20:39:08 +0000461all install clean test bytecode ::
John Criswell2a6530f2003-06-27 16:58:44 +0000462 $(VERB) for dir in ${OPTIONAL_DIRS}; do \
463 if [ -d $$dir ]; \
464 then\
465 (cd $$dir; $(MAKE) $@) || exit 1; \
466 fi \
467 done
468endif
469
John Criswell7a73b802003-06-30 21:59:07 +0000470###########################################################################
471# Library Build Rules:
472#
Chris Lattner00950542001-06-06 20:29:01 +0000473#---------------------------------------------------------
474# Handle the LIBRARYNAME option - used when building libs...
475#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000476#
477# When libraries are built, they are allowed to optionally define the
478# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
479# from being built for the library. This .o files may then be linked to by a
480# tool if the tool does not need (or want) the semantics a .a file provides
481# (linking in only object files that are "needed"). If a library is never to
482# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
483# BUILD_ARCHIVE instead.
484#
485# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattner1917e952002-07-31 21:32:05 +0000486# 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 +0000487# linked into tools (for example gccas) even if they only use one of the parts
488# of it. For this reason, sometimes it's useful to use libraries as .a files.
John Criswell7a73b802003-06-30 21:59:07 +0000489###########################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000490
491ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000492
Chris Lattner2a548c52002-09-16 22:36:42 +0000493# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000494LIBRARYNAME := $(strip $(LIBRARYNAME))
495
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000496LIBNAME_O := $(DESTLIBRELEASE)/lib$(LIBRARYNAME).so
497LIBNAME_P := $(DESTLIBPROFILE)/lib$(LIBRARYNAME).so
498LIBNAME_G := $(DESTLIBDEBUG)/lib$(LIBRARYNAME).so
499LIBNAME_AO := $(DESTLIBRELEASE)/lib$(LIBRARYNAME).a
500LIBNAME_AP := $(DESTLIBPROFILE)/lib$(LIBRARYNAME).a
501LIBNAME_AG := $(DESTLIBDEBUG)/lib$(LIBRARYNAME).a
502LIBNAME_OBJO := $(DESTLIBRELEASE)/$(LIBRARYNAME).o
503LIBNAME_OBJP := $(DESTLIBPROFILE)/$(LIBRARYNAME).o
504LIBNAME_OBJG := $(DESTLIBDEBUG)/$(LIBRARYNAME).o
Chris Lattner481cc7c2003-08-15 02:18:35 +0000505LIBNAME_BC := $(DESTLIBBYTECODE)/lib$(LIBRARYNAME).bc
Chris Lattner00950542001-06-06 20:29:01 +0000506
John Criswell7a73b802003-06-30 21:59:07 +0000507#--------------------------------------------------------------------
508# Library Targets
509# Modify the top level targets to build the desired libraries.
510#--------------------------------------------------------------------
511
Chris Lattner760da062003-03-14 20:25:22 +0000512# dynamic target builds a shared object version of the library...
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000513dynamic:: $(DESTLIBCURRENT)/lib$(LIBRARYNAME).so
Chris Lattner481cc7c2003-08-15 02:18:35 +0000514bytecodelib:: $(LIBNAME_BC)
515bytecodelib-install:: $(LLVMGCCDIR)/bytecode-libs/lib$(LIBRARYNAME).bc
516
517$(LLVMGCCDIR)/bytecode-libs/lib$(LIBRARYNAME).bc: $(LIBNAME_BC)
518 @echo ======= Installing $(LIBRARYNAME) bytecode library =======
519 cp $< $@
Vikram S. Adve60f56062002-08-02 18:34:12 +0000520
Chris Lattner760da062003-03-14 20:25:22 +0000521# Does the library want a .o version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000522ifndef DONT_BUILD_RELINKED
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000523all:: $(DESTLIBCURRENT)/$(LIBRARYNAME).o
Chris Lattnere62dbe92002-07-23 17:56:16 +0000524endif
Chris Lattner760da062003-03-14 20:25:22 +0000525
526# Does the library want an archive version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000527ifdef BUILD_ARCHIVE
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000528all:: $(DESTLIBCURRENT)/lib$(LIBRARYNAME).a
Chris Lattnere62dbe92002-07-23 17:56:16 +0000529endif
Chris Lattnere62dbe92002-07-23 17:56:16 +0000530
John Criswell7a73b802003-06-30 21:59:07 +0000531#--------------------------------------------------------------------
532# Rules for building libraries
533#--------------------------------------------------------------------
Chris Lattner00950542001-06-06 20:29:01 +0000534
Chris Lattner481cc7c2003-08-15 02:18:35 +0000535LinkBCLib := $(LLVMGCC) -shared
536ifdef EXPORTED_SYMBOL_LIST
537LinkBCLib += -Xlinker -internalize-public-api-list=$(EXPORTED_SYMBOL_LIST)
538else
539LinkBCLib += -Xlinker -disable-internalize
540endif
541
542
543# Rule for building bytecode libraries.
Chris Lattneraf06a082003-08-15 03:02:52 +0000544$(LIBNAME_BC): $(ObjectsBC) $(LibSubDirs) $(DESTLIBBYTECODE)/.dir
Chris Lattner481cc7c2003-08-15 02:18:35 +0000545 @echo ======= Linking $(LIBRARYNAME) bytecode library =======
546 $(VERB) $(LinkBCLib) -o $@ $(ObjectsBC) $(LibSubDirs) $(LibLinkOpts)
John Criswell7a73b802003-06-30 21:59:07 +0000547#
548# Rules for building dynamically linked libraries.
549#
John Criswellf4ccd992003-07-01 14:52:28 +0000550$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000551 @echo ======= Linking $(LIBRARYNAME) dynamic release library =======
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000552 $(VERB) $(Link) -o $*.la $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
553 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT)
Vikram S. Adve41e78912002-09-20 14:03:13 +0000554
John Criswellf4ccd992003-07-01 14:52:28 +0000555$(LIBNAME_P): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000556 @echo ======= Linking $(LIBRARYNAME) dynamic profile library =======
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000557 $(VERB) $(Link) -o $*.la $(ObjectsP) $(LibSubDirs) $(LibLinkOpts)
558 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT)
Chris Lattner00950542001-06-06 20:29:01 +0000559
John Criswellf4ccd992003-07-01 14:52:28 +0000560$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000561 @echo ======= Linking $(LIBRARYNAME) dynamic debug library =======
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000562 $(VERB) $(Link) -o $*.la $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
563 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT)
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000564
John Criswell7a73b802003-06-30 21:59:07 +0000565#
566# Rules for building static archive libraries.
567#
John Criswellf4ccd992003-07-01 14:52:28 +0000568$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000569 @echo ======= Linking $(LIBRARYNAME) archive release library =======
570 @$(RM) -f $@
John Criswellf4ccd992003-07-01 14:52:28 +0000571 $(VERB) $(Link) -03 -o $@ $(ObjectsO) $(LibSubDirs) -static
Vikram S. Adve41e78912002-09-20 14:03:13 +0000572
John Criswellf4ccd992003-07-01 14:52:28 +0000573$(LIBNAME_AP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000574 @echo ======= Linking $(LIBRARYNAME) archive profile library =======
575 @$(RM) -f $@
John Criswellf4ccd992003-07-01 14:52:28 +0000576 $(VERB) $(Link) -03 $(PROFILE) -o $@ $(ObjectsP) $(LibSubDirs) -static
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000577
John Criswellf4ccd992003-07-01 14:52:28 +0000578$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000579 @echo ======= Linking $(LIBRARYNAME) archive debug library =======
580 @$(RM) -f $@
John Criswellf4ccd992003-07-01 14:52:28 +0000581 $(VERB) $(Link) -g $(STRIP) -o $@ $(ObjectsG) $(LibSubDirs) -static
John Criswell7a73b802003-06-30 21:59:07 +0000582
Chris Lattner481cc7c2003-08-15 02:18:35 +0000583
John Criswell7a73b802003-06-30 21:59:07 +0000584#
585# Rules for building .o libraries.
586#
John Criswell82f4a5a2003-07-31 20:58:51 +0000587# JTC:
588# Note that for this special case, we specify the actual object files
589# instead of their libtool counterparts. This is because libtool
590# doesn't want to generate a reloadable object file unless it is given
591# .o files explicitly.
592#
593# Note that we're making an assumption here: If we build a .lo file,
594# it's corresponding .o file will be placed in the same directory.
595#
596# I think that is safe.
597#
John Criswellf4ccd992003-07-01 14:52:28 +0000598$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000599 @echo "Linking $@"
John Criswell82f4a5a2003-07-31 20:58:51 +0000600 $(VERB) $(Relink) -o $@ $(RObjectsO) $(LibSubDirs)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000601
John Criswellf4ccd992003-07-01 14:52:28 +0000602$(LIBNAME_OBJP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
Vikram S. Adve41e78912002-09-20 14:03:13 +0000603 @echo "Linking $@"
John Criswell82f4a5a2003-07-31 20:58:51 +0000604 $(VERB) $(Relink) -o $@ $(RObjectsP) $(LibSubDirs)
Vikram S. Adve41e78912002-09-20 14:03:13 +0000605
John Criswellf4ccd992003-07-01 14:52:28 +0000606$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
Chris Lattner9e398162002-09-25 17:15:22 +0000607 @echo "Linking $@"
John Criswell82f4a5a2003-07-31 20:58:51 +0000608 $(VERB) $(Relink) -o $@ $(RObjectsG) $(LibSubDirs)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000609
Chris Lattner00950542001-06-06 20:29:01 +0000610endif
611
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000612#------------------------------------------------------------------------
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000613# Create a TAGS database for emacs
614#------------------------------------------------------------------------
615
John Criswell7a73b802003-06-30 21:59:07 +0000616ifdef ETAGS
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000617ifeq ($(LEVEL), .)
Chris Lattner942f9042003-08-21 21:53:38 +0000618SRCDIRS := $(wildcard include lib tools)
619
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000620tags:
Chris Lattner942f9042003-08-21 21:53:38 +0000621 $(ETAGS) -l c++ `find $(SRCDIRS) -name '*.cpp' -o -name '*.h'`
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000622all:: tags
Vikram S. Adve022d06c2001-10-13 12:26:59 +0000623endif
John Criswell7a73b802003-06-30 21:59:07 +0000624else
625tags:
626 ${ECHO} "Cannot build $@: The program etags is not installed"
627endif
Vikram S. Adve0193d5e2001-10-10 22:35:00 +0000628
629#------------------------------------------------------------------------
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000630# Handle the TOOLNAME option - used when building tool executables...
631#------------------------------------------------------------------------
632#
633# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattnere62dbe92002-07-23 17:56:16 +0000634# libraries (and the order of the libs) that should be linked to the
635# tool. USEDLIBS should contain a list of library names (some with .a extension)
636# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000637#
638ifdef TOOLNAME
639
640# TOOLEXENAME* - These compute the output filenames to generate...
John Criswell8bff5092003-06-11 13:55:44 +0000641TOOLEXENAME_G := $(DESTTOOLDEBUG)/$(TOOLNAME)
642TOOLEXENAME_O := $(DESTTOOLRELEASE)/$(TOOLNAME)
643TOOLEXENAME_P := $(DESTTOOLPROFILE)/$(TOOLNAME)
644TOOLEXENAMES := $(DESTTOOLCURRENT)/$(TOOLNAME)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000645
646# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000647PROJ_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
648PROJ_LIBS_OPTIONS_G := $(patsubst %.o, $(PROJLIBDEBUGSOURCE)/%.o, $(PROJ_LIBS_OPTIONS))
649PROJ_LIBS_OPTIONS_O := $(patsubst %.o, $(PROJLIBRELEASESOURCE)/%.o,$(PROJ_LIBS_OPTIONS))
650PROJ_LIBS_OPTIONS_P := $(patsubst %.o, $(PROJLIBPROFILESOURCE)/%.o,$(PROJ_LIBS_OPTIONS))
651
652LLVM_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
653LLVM_LIBS_OPTIONS_G := $(patsubst %.o, $(LLVMLIBDEBUGSOURCE)/%.o, $(LLVM_LIBS_OPTIONS))
654LLVM_LIBS_OPTIONS_O := $(patsubst %.o, $(LLVMLIBRELEASESOURCE)/%.o,$(LLVM_LIBS_OPTIONS))
655LLVM_LIBS_OPTIONS_P := $(patsubst %.o, $(LLVMLIBPROFILESOURCE)/%.o,$(LLVM_LIBS_OPTIONS))
656
657LIB_OPTS_G := $(LLVM_LIBS_OPTIONS_G) $(PROJ_LIBS_OPTIONS_G)
Chris Lattnere3ba95e2003-06-20 15:41:57 +0000658LIB_OPTS_O := $(LLVM_LIBS_OPTIONS_O) $(PROJ_LIBS_OPTIONS_O)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000659LIB_OPTS_P := $(LLVM_LIBS_OPTIONS_P) $(PROJ_LIBS_OPTIONS_P)
660
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000661# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattnere62dbe92002-07-23 17:56:16 +0000662# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
Misha Brukman1ba31382003-07-14 17:26:34 +0000663# files separately.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000664#
Chris Lattnere62dbe92002-07-23 17:56:16 +0000665STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000666USED_LIB_PATHS_G := $(addprefix $(DESTLIBDEBUG)/, $(STATICUSEDLIBS))
667USED_LIB_PATHS_O := $(addprefix $(DESTLIBRELEASE)/, $(STATICUSEDLIBS))
668USED_LIB_PATHS_P := $(addprefix $(DESTLIBPROFILE)/, $(STATICUSEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000669
John Criswell7a73b802003-06-30 21:59:07 +0000670#
671# Libtool link options:
672# Ensure that all binaries have their symbols exported so that they can
673# by dlsym'ed.
674#
675LINK_OPTS := -export-dynamic $(TOOLLINKOPTS)
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000676
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000677
678
679
680
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000681# Tell make that we need to rebuild subdirectories before we can link the tool.
682# This affects things like LLI which has library subdirectories.
683$(USED_LIB_PATHS_G) $(USED_LIB_PATHS_O) $(USED_LIB_PATHS_P): \
684 $(addsuffix /.makeall, $(PARALLEL_DIRS))
685
Chris Lattner669bd7c2001-10-13 05:10:29 +0000686all:: $(TOOLEXENAMES)
John Criswell2a6530f2003-06-27 16:58:44 +0000687
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000688clean::
John Criswell7a73b802003-06-30 21:59:07 +0000689 $(VERB) $(RM) -f $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000690
John Criswellf4ccd992003-07-01 14:52:28 +0000691$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(DESTTOOLDEBUG)/.dir
Misha Brukman9b51b6f2003-07-10 16:52:41 +0000692 @echo ======= Linking $(TOOLNAME) debug executable $(STRIP_WARN_MSG) =======
John Criswellf4ccd992003-07-01 14:52:28 +0000693 $(VERB) $(LinkG) -o $@ $(ObjectsG) $(LIB_OPTS_G) $(LINK_OPTS) $(LIBS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000694
John Criswellf4ccd992003-07-01 14:52:28 +0000695$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(DESTTOOLRELEASE)/.dir
Chris Lattner287d4432002-09-12 17:02:40 +0000696 @echo ======= Linking $(TOOLNAME) release executable =======
John Criswellf4ccd992003-07-01 14:52:28 +0000697 $(VERB) $(LinkO) -o $@ $(ObjectsO) $(LIB_OPTS_O) $(LINK_OPTS) $(LIBS)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000698
John Criswellf4ccd992003-07-01 14:52:28 +0000699$(TOOLEXENAME_P): $(ObjectsP) $(USED_LIB_PATHS_P) $(DESTTOOLPROFILE)/.dir
Vikram S. Adve41e78912002-09-20 14:03:13 +0000700 @echo ======= Linking $(TOOLNAME) profile executable =======
John Criswellf4ccd992003-07-01 14:52:28 +0000701 $(VERB) $(LinkP) -o $@ $(ObjectsP) $(LIB_OPTS_P) $(LINK_OPTS) $(LIBS)
Vikram S. Adve41e78912002-09-20 14:03:13 +0000702
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000703endif
704
705
Chris Lattner00950542001-06-06 20:29:01 +0000706
707#---------------------------------------------------------
Chris Lattner481cc7c2003-08-15 02:18:35 +0000708.PRECIOUS: $(BUILD_OBJ_DIR)/Depend/.dir $(BUILD_OBJ_DIR)/Bytecode/.dir
John Criswell8bff5092003-06-11 13:55:44 +0000709.PRECIOUS: $(BUILD_OBJ_DIR)/Debug/.dir $(BUILD_OBJ_DIR)/Release/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000710
John Criswell7a73b802003-06-30 21:59:07 +0000711# Create .lo files in the ObjectFiles directory from the .cpp and .c files...
712$(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Release/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000713 @echo "Compiling $<"
714 $(VERB) $(CompileO) $< -o $@
Chris Lattner00950542001-06-06 20:29:01 +0000715
John Criswell7a73b802003-06-30 21:59:07 +0000716$(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Release/.dir
717 @echo "Compiling $<"
Chris Lattner1eeac662002-10-22 23:28:23 +0000718 $(VERB) $(CompileCO) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000719
John Criswell7a73b802003-06-30 21:59:07 +0000720$(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Profile/.dir
Vikram S. Adve41e78912002-09-20 14:03:13 +0000721 @echo "Compiling $<"
722 $(VERB) $(CompileP) $< -o $@
723
John Criswell7a73b802003-06-30 21:59:07 +0000724$(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Profile/.dir
Chris Lattner172b6482002-09-22 02:47:15 +0000725 @echo "Compiling $<"
726 $(VERB) $(CompileCP) $< -o $@
727
John Criswell7a73b802003-06-30 21:59:07 +0000728$(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Debug/.dir
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000729 @echo "Compiling $<"
730 $(VERB) $(CompileG) $< -o $@
Chris Lattner00950542001-06-06 20:29:01 +0000731
John Criswell7a73b802003-06-30 21:59:07 +0000732$(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Debug/.dir
733 @echo "Compiling $<"
734 $(VERB) $(CompileCG) $< -o $@
735
Chris Lattner481cc7c2003-08-15 02:18:35 +0000736$(BUILD_OBJ_DIR)/Bytecode/%.bc: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Bytecode/.dir $(LCC1XX)
737 @echo "Compiling $< to bytecode"
738 $(VERB) $(LLVMGXX) $(CPPFLAGS) -c $< -o $@
739
740$(BUILD_OBJ_DIR)/Bytecode/%.bc: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Bytecode/.dir $(LCC1)
741 @echo "Compiling $< to bytecode"
742 $(VERB) $(LLVMGCC) $(CPPFLAGS) -c $< -o $@
743
Chris Lattnereb6b47c2003-08-21 15:47:37 +0000744$(BUILD_OBJ_DIR)/Bytecode/%.bc: $(SourceDir)%.ll $(BUILD_OBJ_DIR)/Bytecode/.dir $(LLVMAS)
Chris Lattner481cc7c2003-08-15 02:18:35 +0000745 @echo "Compiling $< to bytecode"
746 $(VERB) $(LLVMAS) $< -f -o $@
747
748
Chris Lattnere8996782003-01-16 22:44:19 +0000749#
750# Rules for building lex/yacc files
751#
752LEX_FILES = $(filter %.l, $(Source))
753LEX_OUTPUT = $(LEX_FILES:%.l=%.cpp)
754YACC_FILES = $(filter %.y, $(Source))
755YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
756.PRECIOUS: $(LEX_OUTPUT) $(YACC_OUTPUT)
757
Chris Lattner00950542001-06-06 20:29:01 +0000758# Create a .cpp source file from a flex input file... this uses sed to cut down
759# on the warnings emited by GCC...
Chris Lattner6d131b42003-01-23 16:33:10 +0000760#
761# The last line is a gross hack to work around flex aparently not being able to
762# resize the buffer on a large token input. Currently, for uninitialized string
763# buffers in LLVM we can generate very long tokens, so this is a hack around it.
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000764# FIXME. (f.e. char Buffer[10000] )
Chris Lattner6d131b42003-01-23 16:33:10 +0000765#
Chris Lattner00950542001-06-06 20:29:01 +0000766%.cpp: %.l
Chris Lattnera328f882003-08-04 19:47:06 +0000767 @echo Flex\'ing $<...
Chris Lattner7bb107d2003-08-04 19:48:10 +0000768 $(VERB) $(FLEX) -t $< | \
769 $(SED) '/^find_rule/d' | \
770 $(SED) 's/void yyunput/inline void yyunput/' | \
John Criswell7a73b802003-06-30 21:59:07 +0000771 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
Chris Lattnera328f882003-08-04 19:47:06 +0000772 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
773 > $@.tmp
John Criswelld741bcf2003-08-12 18:51:51 +0000774 $(VERB) cmp -s $@ $@.tmp > /dev/null || ${MV} -f $@.tmp $@
Chris Lattnera328f882003-08-04 19:47:06 +0000775 @# remove the output of flex if it didn't get moved over...
776 @rm -f $@.tmp
Chris Lattner00950542001-06-06 20:29:01 +0000777
778# Rule for building the bison parsers...
Chris Lattner694c5df2003-05-15 21:28:55 +0000779%.c: %.y # Cancel built-in rules for yacc
780%.h: %.y # Cancel built-in rules for yacc
Chris Lattner00950542001-06-06 20:29:01 +0000781%.cpp %.h : %.y
Chris Lattner694c5df2003-05-15 21:28:55 +0000782 @echo Bison\'ing $<...
Chris Lattnere8996782003-01-16 22:44:19 +0000783 $(VERB) $(BISON) -v -d -p $(<:%Parser.y=%) $*.y
John Criswelld741bcf2003-08-12 18:51:51 +0000784 $(VERB) cmp -s $*.tab.c $*.cpp > /dev/null || ${MV} -f $*.tab.c $*.cpp
785 $(VERB) cmp -s $*.tab.h $*.h > /dev/null || ${MV} -f $*.tab.h $*.h
Chris Lattnera328f882003-08-04 19:47:06 +0000786 @# If the files were not updated, don't leave them lying around...
787 @rm -f $*.tab.c $*.tab.h
Chris Lattner00950542001-06-06 20:29:01 +0000788
789# To create the directories...
790%/.dir:
John Criswell7a73b802003-06-30 21:59:07 +0000791 $(VERB) ${MKDIR} $* > /dev/null
792 @$(DATE) > $@
Chris Lattner00950542001-06-06 20:29:01 +0000793
Chris Lattner30440c62003-01-16 21:06:18 +0000794# To create postscript files from dot files...
John Criswell7a73b802003-06-30 21:59:07 +0000795ifdef DOT
Chris Lattner30440c62003-01-16 21:06:18 +0000796%.ps: %.dot
John Criswell7a73b802003-06-30 21:59:07 +0000797 ${DOT} -Tps < $< > $@
798else
799%.ps: %.dot
800 ${ECHO} "Cannot build $@: The program dot is not installed"
801endif
Chris Lattner30440c62003-01-16 21:06:18 +0000802
Chris Lattner172b6482002-09-22 02:47:15 +0000803# 'make clean' nukes the tree
Chris Lattner00950542001-06-06 20:29:01 +0000804clean::
Chris Lattner481cc7c2003-08-15 02:18:35 +0000805 $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Debug $(BUILD_OBJ_DIR)/Release
806 $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Profile $(BUILD_OBJ_DIR)/Depend
807 $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Bytecode
John Criswell7a73b802003-06-30 21:59:07 +0000808 $(VERB) $(RM) -f core core.[0-9][0-9]* *.o *.d *.so *~ *.flc
809 $(VERB) $(RM) -f $(LEX_OUTPUT) $(YACC_OUTPUT)
810
John Criswell7a73b802003-06-30 21:59:07 +0000811###########################################################################
812# C/C++ Dependencies
813# Define variables and rules that generate header file dependencies
814# from C/C++ source files.
815###########################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000816
Chris Lattner694c5df2003-05-15 21:28:55 +0000817# If dependencies were generated for the file that included this file,
Misha Brukman36bc6422003-08-21 22:02:18 +0000818# include the dependencies now...
Chris Lattner00950542001-06-06 20:29:01 +0000819#
Chris Lattner694c5df2003-05-15 21:28:55 +0000820SourceBaseNames := $(basename $(notdir $(filter-out Debug/%, $(Source))))
John Criswell8bff5092003-06-11 13:55:44 +0000821SourceDepend := $(SourceBaseNames:%=$(BUILD_OBJ_DIR)/Depend/%.d)
Chris Lattner694c5df2003-05-15 21:28:55 +0000822
823# Create dependencies for the *.cpp files...
John Criswell8bff5092003-06-11 13:55:44 +0000824$(BUILD_OBJ_DIR)/Depend/%.d: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Depend/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000825 $(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 Lattnerfbb574d2003-08-21 20:39:08 +0000826 $(VERB) $(Depend) $< | $(SED) 's|$*.o: $*.cpp||' | $(SED) 's|[^\]$$|&::|' >> $@
Chris Lattner694c5df2003-05-15 21:28:55 +0000827
828# Create dependencies for the *.c files...
John Criswell8bff5092003-06-11 13:55:44 +0000829$(BUILD_OBJ_DIR)/Depend/%.d: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Depend/.dir
John Criswell7a73b802003-06-30 21:59:07 +0000830 $(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 Lattnerfbb574d2003-08-21 20:39:08 +0000831 $(VERB) $(Depend) $< | $(SED) 's|$*.o: $*.c||' | $(SED) 's|[^\]$$|&::|' >> $@
Chris Lattner694c5df2003-05-15 21:28:55 +0000832
John Criswell7a73b802003-06-30 21:59:07 +0000833#
834# Include dependencies generated from C/C++ source files, but not if we
835# are cleaning (this example taken from the GNU Make Manual).
836#
837ifneq ($(MAKECMDGOALS),clean)
John Criswelld741bcf2003-08-12 18:51:51 +0000838ifneq ($(MAKECMDGOALS),distclean)
Chris Lattner00950542001-06-06 20:29:01 +0000839ifneq ($(SourceDepend),)
Chris Lattnered03bc92002-10-25 14:32:42 +0000840-include $(SourceDepend)
Chris Lattner00950542001-06-06 20:29:01 +0000841endif
John Criswell7a73b802003-06-30 21:59:07 +0000842endif
John Criswelld741bcf2003-08-12 18:51:51 +0000843endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +0000844
845cleandeps::
846 $(VERB) rm -f $(SourceDepend)
847