blob: a4bdb1c93a0869550458e6e71560a6c6456cdb18 [file] [log] [blame]
Misha Brukman6d5ab862004-04-24 00:10:56 +00001#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2#
John Criswelld8846c12003-10-21 14:33:46 +00003# The LLVM Compiler Infrastructure
4#
5# This file was developed by the LLVM research group and is distributed under
6# the University of Illinois Open Source License. See LICENSE.TXT for details.
7#
Misha Brukman6d5ab862004-04-24 00:10:56 +00008#===------------------------------------------------------------------------===#
Chris Lattner00950542001-06-06 20:29:01 +00009#
10# This file is included by all of the LLVM makefiles. This file defines common
Misha Brukman36bc6422003-08-21 22:02:18 +000011# rules to do things like compile a .cpp file or generate dependency info.
12# These are platform dependent, so this is the file used to specify these
13# system dependent operations.
Chris Lattner00950542001-06-06 20:29:01 +000014#
Vikram S. Advec214e712002-08-29 23:28:46 +000015# The following functionality can be set by setting incoming variables.
16# The variable $(LEVEL) *must* be set:
Chris Lattner00950542001-06-06 20:29:01 +000017#
18# 1. LEVEL - The level of the current subdirectory from the top of the
19# MagicStats view. This level should be expressed as a path, for
20# example, ../.. for two levels deep.
21#
22# 2. DIRS - A list of subdirectories to be built. Fake targets are set up
Chris Lattnera8abc222002-09-18 03:22:27 +000023# so that each of the targets "all", "install", and "clean" each build
24# the subdirectories before the local target. DIRS are guaranteed to be
25# built in order.
Chris Lattner00950542001-06-06 20:29:01 +000026#
Chris Lattnera8abc222002-09-18 03:22:27 +000027# 3. PARALLEL_DIRS - A list of subdirectories to be built, but that may be
28# built in any order. All DIRS are built in order before PARALLEL_DIRS are
29# built, which are then built in any order.
30#
31# 4. Source - If specified, this sets the source code filenames. If this
Chris Lattner00950542001-06-06 20:29:01 +000032# is not set, it defaults to be all of the .cpp, .c, .y, and .l files
Chris Lattnere0010592001-10-18 01:48:09 +000033# in the current directory. Also, if you want to build files in addition
34# to the local files, you can use the ExtraSource variable
Chris Lattner00950542001-06-06 20:29:01 +000035#
Chris Lattner694c5df2003-05-15 21:28:55 +000036# 5. SourceDir - If specified, this specifies a directory that the source files
37# are in, if they are not in the current directory. This should include a
38# trailing / character.
39#
John Criswell7a73b802003-06-30 21:59:07 +000040# 6. LLVM_SRC_ROOT - If specified, points to the top of the LLVM source tree.
Dinakar Dhurjati584dd182003-05-29 21:49:00 +000041#
John Criswell7a73b802003-06-30 21:59:07 +000042# 8. BUILD_SRC_DIR - The directory which contains the current set of Makefiles
43# and usually the source code too (unless SourceDir is set).
44#
45# 9. BUILD_SRC_ROOT - The root directory of the source code being compiled.
46#
47# 10. BUILD_OBJ_DIR - The directory where object code should be placed.
48#
49# 11. BUILD_OBJ_ROOT - The root directory for where object code should be
50# placed.
51#
52# For building,
Chris Lattnere430a1e2003-08-21 22:23:49 +000053# LLVM, LLVM_SRC_ROOT = BUILD_SRC_ROOT
Chris Lattneraf06a082003-08-15 03:02:52 +000054#
Vikram S. Adved60aede2002-07-09 12:04:21 +000055#===-----------------------------------------------------------------------====
Chris Lattner00950542001-06-06 20:29:01 +000056
John Criswell2a6530f2003-06-27 16:58:44 +000057#
John Criswell7f336952003-09-06 14:44:17 +000058# Set the VPATH so that we can find source files.
John Criswell8bff5092003-06-11 13:55:44 +000059#
John Criswell613758d2003-09-11 18:03:50 +000060VPATH=$(SourceDir)
John Criswell8bff5092003-06-11 13:55:44 +000061
John Criswell7a73b802003-06-30 21:59:07 +000062###########################################################################
63# Default Targets:
64# The following targets are the standard top level targets for
65# building.
66###########################################################################
Chris Lattner4bb13b82002-09-13 22:14:47 +000067
John Criswellbd082802003-10-07 14:16:44 +000068# Ensure people re-run configure when it gets updated
Misha Brukman94fe1f92003-10-07 15:24:23 +000069all::$(LLVM_OBJ_ROOT)/config.status
John Criswellbd082802003-10-07 14:16:44 +000070
Chris Lattneredf1f232002-07-23 19:21:31 +000071ifdef SHARED_LIBRARY
72# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
John Criswell7a73b802003-06-30 21:59:07 +000073all:: dynamic
Brian Gaeke7976e972004-01-16 21:12:34 +000074install:: install-dynamic-library
Chris Lattneredf1f232002-07-23 19:21:31 +000075endif
76
Chris Lattner95cc1b32003-08-14 21:10:25 +000077ifdef BYTECODE_LIBRARY
78# if BYTECODE_LIBRARY is specified, the default is to build the bytecode lib
79all:: bytecodelib
Brian Gaeke78cb3f22003-12-18 20:57:48 +000080install:: install-bytecode-library
Brian Gaekef313ea72004-03-10 17:38:01 +000081install-bytecode:: install-bytecode-library
Chris Lattner95cc1b32003-08-14 21:10:25 +000082endif
83
Chris Lattnerb19e59c2001-06-29 05:20:16 +000084# Default Rule: Make sure it's also a :: rule
Chris Lattner00950542001-06-06 20:29:01 +000085all ::
86
87# Default for install is to at least build everything...
88install ::
89
John Criswell8bff5092003-06-11 13:55:44 +000090# Default rule for test. It ensures everything has a test rule
91test::
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +000092
Vikram S. Adve6edfe272003-07-10 19:25:29 +000093# Default rule for building only bytecode.
94bytecode::
95
Brian Gaekef313ea72004-03-10 17:38:01 +000096# Default rule for installing only bytecode.
97install-bytecode::
98
John Criswell7a73b802003-06-30 21:59:07 +000099# Print out the directories used for building
100prdirs::
John Criswell7ec78aa2003-10-16 01:49:00 +0000101 @${ECHO} "Build Source Root: " $(BUILD_SRC_ROOT)
102 @${ECHO} "Build Source Dir : " $(BUILD_SRC_DIR)
103 @${ECHO} "Build Object Root: " $(BUILD_OBJ_ROOT)
104 @${ECHO} "Build Object Dir : " $(BUILD_OBJ_DIR)
105 @${ECHO} "LLVM Source Root: " $(LLVM_SRC_ROOT)
106 @${ECHO} "LLVM Object Root: " $(LLVM_OBJ_ROOT)
John Criswell7a73b802003-06-30 21:59:07 +0000107
John Criswell9621a2b2003-08-20 15:18:41 +0000108###########################################################################
109# Suffixes and implicit rules:
110# Empty out the list of suffixes, generate a list that is only
111# used by this Makefile, and cancel useless implicit rules. This
112# will hopefully speed up compilation a little bit.
113###########################################################################
114.SUFFIXES:
115.SUFFIXES: .c .cpp .h .hpp .y .l
Brian Gaeked65ed3f2004-01-21 19:59:19 +0000116.SUFFIXES: .lo .o .a $(SHLIBEXT) .bc .td
John Criswell9621a2b2003-08-20 15:18:41 +0000117.SUFFIXES: .ps .dot .d
118
John Criswell96914392003-07-16 20:26:06 +0000119#
120# Mark all of these targets as phony. This will hopefully speed up builds
121# slightly since GNU Make will not try to find implicit rules for targets
122# which are marked as Phony.
123#
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000124.PHONY: all dynamic bytecodelib install-bytecode-library
Chris Lattnerfbb574d2003-08-21 20:39:08 +0000125.PHONY: clean distclean install test bytecode prdirs
John Criswell96914392003-07-16 20:26:06 +0000126
John Criswell7a73b802003-06-30 21:59:07 +0000127###########################################################################
128# Miscellaneous paths and commands:
129# This section defines various configuration macros, such as where
130# to find burg, tblgen, and libtool.
131###########################################################################
132
Chris Lattner00950542001-06-06 20:29:01 +0000133#--------------------------------------------------------------------
Vikram S. Advec214e712002-08-29 23:28:46 +0000134# Variables derived from configuration options...
Chris Lattner00950542001-06-06 20:29:01 +0000135#--------------------------------------------------------------------
136
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000137BURG_OPTS = -I
138
Chris Lattner760da062003-03-14 20:25:22 +0000139ifdef ENABLE_PROFILING
140 ENABLE_OPTIMIZED = 1
141 CONFIGURATION := Profile
142else
143 ifdef ENABLE_OPTIMIZED
144 CONFIGURATION := Release
145 else
146 CONFIGURATION := Debug
147 endif
148endif
149
John Criswell7a73b802003-06-30 21:59:07 +0000150#
151# Enable this for profiling support with 'gprof'
152# This automatically enables optimized builds.
153#
154ifdef ENABLE_PROFILING
155 PROFILE = -pg
156endif
157
John Criswell8bff5092003-06-11 13:55:44 +0000158###########################################################################
John Criswell7a73b802003-06-30 21:59:07 +0000159# Library Locations:
John Criswell8bff5092003-06-11 13:55:44 +0000160# These variables describe various library locations:
161#
162# DEST* = Location of where libraries that are built will be placed.
163# LLVM* = Location of LLVM libraries used for linking.
164# PROJ* = Location of previously built libraries used for linking.
165###########################################################################
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000166
John Criswell8bff5092003-06-11 13:55:44 +0000167# Libraries that are being built
168DESTLIBDEBUG := $(BUILD_OBJ_ROOT)/lib/Debug
169DESTLIBRELEASE := $(BUILD_OBJ_ROOT)/lib/Release
170DESTLIBPROFILE := $(BUILD_OBJ_ROOT)/lib/Profile
Chris Lattnerad2be6c2003-09-10 19:37:51 +0000171DESTLIBBYTECODE := $(BUILD_OBJ_ROOT)/lib/BytecodeLibs
John Criswell8bff5092003-06-11 13:55:44 +0000172DESTLIBCURRENT := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000173
John Criswell8bff5092003-06-11 13:55:44 +0000174# LLVM libraries used for linking
175LLVMLIBDEBUGSOURCE := $(LLVM_OBJ_ROOT)/lib/Debug
176LLVMLIBRELEASESOURCE := $(LLVM_OBJ_ROOT)/lib/Release
177LLVMLIBPROFILESOURCE := $(LLVM_OBJ_ROOT)/lib/Profile
178LLVMLIBCURRENTSOURCE := $(LLVM_OBJ_ROOT)/lib/$(CONFIGURATION)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000179
John Criswell8bff5092003-06-11 13:55:44 +0000180# Libraries that were built that will now be used for linking
181PROJLIBDEBUGSOURCE := $(BUILD_OBJ_ROOT)/lib/Debug
182PROJLIBRELEASESOURCE := $(BUILD_OBJ_ROOT)/lib/Release
183PROJLIBPROFILESOURCE := $(BUILD_OBJ_ROOT)/lib/Profile
184PROJLIBCURRENTSOURCE := $(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000185
John Criswell8bff5092003-06-11 13:55:44 +0000186###########################################################################
187# Tool Locations
188# These variables describe various tool locations:
189#
190# DEST* = Location of where tools that are built will be placed.
191# LLVM* = Location of LLVM tools used for building.
192# PROJ* = Location of previously built tools used for linking.
193###########################################################################
Chris Lattner760da062003-03-14 20:25:22 +0000194
John Criswell8bff5092003-06-11 13:55:44 +0000195DESTTOOLDEBUG := $(BUILD_OBJ_ROOT)/tools/Debug
196DESTTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release
197DESTTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile
198DESTTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
199
200LLVMTOOLDEBUG := $(LLVM_OBJ_ROOT)/tools/Debug
201LLVMTOOLRELEASE := $(LLVM_OBJ_ROOT)/tools/Release
202LLVMTOOLPROFILE := $(LLVM_OBJ_ROOT)/tools/Profile
203LLVMTOOLCURRENT := $(LLVM_OBJ_ROOT)/tools/$(CONFIGURATION)
204
205PROJTOOLDEBUG := $(BUILD_OBJ_ROOT)/tools/Debug
206PROJTOOLRELEASE := $(BUILD_OBJ_ROOT)/tools/Release
207PROJTOOLPROFILE := $(BUILD_OBJ_ROOT)/tools/Profile
208PROJTOOLCURRENT := $(BUILD_OBJ_ROOT)/tools/$(CONFIGURATION)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000209
John Criswell7a73b802003-06-30 21:59:07 +0000210#
211# Libtool is found in the current directory.
212#
John Criswell7f336952003-09-06 14:44:17 +0000213LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
John Criswell7a73b802003-06-30 21:59:07 +0000214
215#
John Criswell82f4a5a2003-07-31 20:58:51 +0000216# If we're not building a shared library, use the disable-shared tag with
217# libtool. This will disable the building of objects for shared libraries and
218# only generate static library objects.
219#
220# For dynamic libraries, we'll take the performance hit for now, since we
221# almost never build them.
222#
223# This should speed up compilation and require no modifications to future
224# versions of libtool.
225#
226ifndef SHARED_LIBRARY
Chris Lattner95cc1b32003-08-14 21:10:25 +0000227LIBTOOL += --tag=disable-shared
John Criswell82f4a5a2003-07-31 20:58:51 +0000228endif
229
230#
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000231# Verbosity levels
John Criswell7a73b802003-06-30 21:59:07 +0000232#
Chris Lattner760da062003-03-14 20:25:22 +0000233ifndef VERBOSE
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000234VERB := @
Chris Lattner95cc1b32003-08-14 21:10:25 +0000235LIBTOOL += --silent
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000236endif
237
John Criswell7a73b802003-06-30 21:59:07 +0000238###########################################################################
239# Miscellaneous paths and commands (part deux):
240# This section defines various configuration macros, such as where
241# to find burg, tblgen, and libtool.
242###########################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000243
John Criswell7a73b802003-06-30 21:59:07 +0000244#--------------------------------------------------------------------------
Chris Lattner481cc7c2003-08-15 02:18:35 +0000245# Utilities used while building the LLVM tree, which live in the utils dir
246#
Chris Lattner396d96b2004-06-01 19:06:43 +0000247BURG := $(LLVMTOOLCURRENT)/burg$(EXEEXT)
Chris Lattnereefa3d32003-11-29 09:50:15 +0000248RunBurg := $(BURG) $(BURG_OPTS)
Chris Lattner396d96b2004-06-01 19:06:43 +0000249TBLGEN := $(LLVMTOOLCURRENT)/tblgen$(EXEEXT)
250LGCCLDPROG := $(LLVMTOOLCURRENT)/gccld$(EXEEXT)
Vikram S. Advedba59ef2001-08-06 19:01:20 +0000251
Chris Lattner481cc7c2003-08-15 02:18:35 +0000252#--------------------------------------------------------------------------
253# The LLVM GCC front-end in C and C++ flavors
254#
Chris Lattner9a86a012003-08-15 15:20:52 +0000255LLVMGCC := PATH=$(LLVMTOOLCURRENT):$(PATH) $(LLVMGCCDIR)/bin/gcc
Chris Lattner9a86a012003-08-15 15:20:52 +0000256LLVMGXX := PATH=$(LLVMTOOLCURRENT):$(PATH) $(LLVMGCCDIR)/bin/g++
Chris Lattner481cc7c2003-08-15 02:18:35 +0000257
258#--------------------------------------------------------------------------
Brian Gaeke0b441222004-07-21 01:31:47 +0000259# The compiled LLVM tools
Chris Lattner481cc7c2003-08-15 02:18:35 +0000260#
Brian Gaeke0b441222004-07-21 01:31:47 +0000261
Chris Lattner396d96b2004-06-01 19:06:43 +0000262LLVMAS := $(LLVMTOOLCURRENT)/llvm-as$(EXEEXT)
Brian Gaeke0b441222004-07-21 01:31:47 +0000263# Find the location of the platform specific LLVM GCC libraries
264LLVMGCCLIBDIR=$(dir $(shell $(LLVMGCC) -print-file-name=libgcc.a))
265# LLVM Tool Definitions (LLVMGCC, LLVMGXX, LLVMAS are provided by
Misha Brukman712c0e22004-07-21 12:47:40 +0000266# Makefile.rules)
267LLI = $(LLVMTOOLCURRENT)/lli$(EXEEXT)
268LLC = $(LLVMTOOLCURRENT)/llc$(EXEEXT)
269LGCCAS = $(LLVMTOOLCURRENT)/gccas$(EXEEXT)
270LGCCLD = $(LGCCLDPROG) -L$(LLVMGCCLIBDIR) -L$(LLVMGCCDIR)/lib
271LDIS = $(LLVMTOOLCURRENT)/llvm-dis$(EXEEXT)
272LOPT = $(LLVMTOOLCURRENT)/opt$(EXEEXT)
273LLINK = $(LLVMTOOLCURRENT)/llvm-link$(EXEEXT)
274LPROF = $(LLVMTOOLCURRENT)/llvm-prof$(EXEEXT)
275LANALYZE = $(LLVMTOOLCURRENT)/analyze$(EXEEXT)
276LBUGPOINT = $(LLVMTOOLCURRENT)/bugpoint$(EXEEXT)
Chris Lattner481cc7c2003-08-15 02:18:35 +0000277
Chris Lattner00950542001-06-06 20:29:01 +0000278
John Criswell8bff5092003-06-11 13:55:44 +0000279###########################################################################
280# Compile Time Flags
281###########################################################################
282
283#
John Criswell7a73b802003-06-30 21:59:07 +0000284# Include both the project headers and the LLVM headers for compilation and
285# dependency computation.
John Criswell8bff5092003-06-11 13:55:44 +0000286#
John Criswell7f336952003-09-06 14:44:17 +0000287# BUILD_OBJ_DIR : Files local to the particular object directory
288# (locallly generated header files).
289# BUILD_SRC_DIR : Files local to the particular source directory.
290# BUILD_SRC_ROOT/include : Files global to the project.
Chris Lattner00e730a2003-09-15 01:07:32 +0000291# LLVM_OBJ_ROOT/include : config.h files generated by autoconf
John Criswell7f336952003-09-06 14:44:17 +0000292# LEVEL/include : config.h files for the project
293# LLVM_SRC_ROOT/include : Files global to LLVM.
John Criswell7f336952003-09-06 14:44:17 +0000294#
Chris Lattner069f9302003-09-15 01:12:04 +0000295CPPFLAGS += -I$(BUILD_OBJ_DIR) -I$(BUILD_SRC_DIR) -I$(LLVM_OBJ_ROOT)/include \
296 -I$(BUILD_SRC_ROOT)/include -I$(LEVEL)/include \
297 -I$(LLVM_SRC_ROOT)/include
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000298
Vikram S. Advefeeae582002-09-18 11:55:13 +0000299# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000300ifndef KEEP_SYMBOLS
Chris Lattner527002c2003-01-31 19:00:26 +0000301STRIP = $(PLATFORMSTRIPOPTS)
Misha Brukman9b51b6f2003-07-10 16:52:41 +0000302STRIP_WARN_MSG = "(without symbols)"
Vikram S. Advefeeae582002-09-18 11:55:13 +0000303endif
304
Brian Gaeke90eca552003-10-28 19:09:28 +0000305# Allow GNU extensions:
Chris Lattner73e1d0f2002-09-13 16:02:26 +0000306CPPFLAGS += -D_GNU_SOURCE
Brian Gaeke90eca552003-10-28 19:09:28 +0000307# Pull in limit macros from stdint.h, even in C++:
308CPPFLAGS += -D__STDC_LIMIT_MACROS
Chris Lattner73e1d0f2002-09-13 16:02:26 +0000309
Alkis Evlogimenosbccab5e2004-02-13 20:05:44 +0000310### FIXME: this is GCC specific
Alkis Evlogimenos972c0c92004-05-20 21:31:43 +0000311CPPFLAGS += -DATTR_DEPRECATED='__attribute__ ((deprecated))'
Alkis Evlogimenosbccab5e2004-02-13 20:05:44 +0000312
Chris Lattnerd1803002003-12-06 20:59:45 +0000313CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused
Chris Lattnerbb3dd472003-08-27 18:26:44 +0000314CompileOptimizeOpts := -O3 -DNDEBUG -finline-functions
Chris Lattner00950542001-06-06 20:29:01 +0000315
John Criswell7a73b802003-06-30 21:59:07 +0000316#
317# Compile commands with libtool.
318#
Brian Gaeke10c508b2004-06-08 18:52:45 +0000319Compile := $(LIBTOOL) --tag=CXX --mode=compile $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
Chris Lattner72987ee2003-08-23 15:56:38 +0000320CompileC := $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(CompileCommonOpts)
John Criswell7a73b802003-06-30 21:59:07 +0000321
Chris Lattner172b6482002-09-22 02:47:15 +0000322# Compile a cpp file, don't link...
Chris Lattner285af382002-08-12 21:19:28 +0000323CompileG := $(Compile) -g -D_DEBUG
Chris Lattner1d1e5b52003-02-13 16:56:30 +0000324CompileO := $(Compile) $(CompileOptimizeOpts) -felide-constructors -fomit-frame-pointer
325CompileP := $(Compile) $(CompileOptimizeOpts) -felide-constructors $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +0000326
Chris Lattner172b6482002-09-22 02:47:15 +0000327# Compile a c file, don't link...
Chris Lattner172b6482002-09-22 02:47:15 +0000328CompileCG := $(CompileC) -g -D_DEBUG
Chris Lattnerfe95dae2003-02-19 22:12:20 +0000329CompileCO := $(CompileC) $(CompileOptimizeOpts) -fomit-frame-pointer
330CompileCP := $(CompileC) $(CompileOptimizeOpts) $(PROFILE)
Chris Lattner172b6482002-09-22 02:47:15 +0000331
John Criswell7a73b802003-06-30 21:59:07 +0000332###########################################################################
333# Link Time Options
334###########################################################################
Chris Lattner172b6482002-09-22 02:47:15 +0000335
John Criswell7a73b802003-06-30 21:59:07 +0000336#
Chris Lattner00950542001-06-06 20:29:01 +0000337# Link final executable
John Criswell7a73b802003-06-30 21:59:07 +0000338# (Note that we always link with the C++ compiler).
339#
Brian Gaeke10c508b2004-06-08 18:52:45 +0000340Link := $(LIBTOOL) --tag=CXX --mode=link $(CXX)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000341
John Criswell7a73b802003-06-30 21:59:07 +0000342# link both projlib and llvmlib libraries
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000343LinkG := $(Link) -g -L$(PROJLIBDEBUGSOURCE) -L$(LLVMLIBDEBUGSOURCE) $(STRIP)
344LinkO := $(Link) -O3 -L$(PROJLIBRELEASESOURCE) -L$(LLVMLIBRELEASESOURCE)
345LinkP := $(Link) -O3 -L$(PROJLIBPROFILESOURCE) -L$(LLVMLIBPROFILESOURCE) $(PROFILE)
Chris Lattner00950542001-06-06 20:29:01 +0000346
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000347# TOOLLINKOPTSB to pass options to the linker like library search path etc
348# Note that this is different from TOOLLINKOPTS, these options
349# are passed to the linker *before* the USEDLIBS options are passed.
350# e.g. usage TOOLLINKOPTSB = -L/home/xxx/lib
351ifdef TOOLLINKOPTSB
352LinkG := $(LinkG) $(TOOLLINKOPTSB)
Dinakar Dhurjati79903c82003-10-29 20:34:13 +0000353LinkO := $(LinkO) $(TOOLLINKOPTSB)
354LinkP := $(LinkP) $(TOOLLINKOPTSB)
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000355endif
356
Chris Lattnere62dbe92002-07-23 17:56:16 +0000357# Create one .o file from a bunch of .o files...
Brian Gaeke10c508b2004-06-08 18:52:45 +0000358Relink := ${LIBTOOL} --tag=CXX --mode=link $(CXX)
John Criswell7a73b802003-06-30 21:59:07 +0000359
360#
361# Configure where the item being compiled should go.
362#
363ifdef SHARED_LIBRARY
Chris Lattner95cc1b32003-08-14 21:10:25 +0000364Link += -rpath $(DESTLIBCURRENT)
John Criswell7a73b802003-06-30 21:59:07 +0000365endif
366
367ifdef TOOLNAME
Chris Lattner95cc1b32003-08-14 21:10:25 +0000368Link += -rpath $(DESTTOOLCURRENT)
John Criswell7a73b802003-06-30 21:59:07 +0000369endif
Chris Lattner4bb13b82002-09-13 22:14:47 +0000370
Misha Brukman36bc6422003-08-21 22:02:18 +0000371# Create dependency file from CPP file, send to stdout.
John Criswell8bff5092003-06-11 13:55:44 +0000372Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS)
373DependC := $(CC) -MM -I$(LEVEL)/include $(CPPFLAGS)
Chris Lattner00950542001-06-06 20:29:01 +0000374
375# Archive a bunch of .o files into a .a file...
Brian Gaeke7a45c492004-02-04 21:41:23 +0000376AR = $(AR_PATH) cr
Chris Lattner00950542001-06-06 20:29:01 +0000377
378#----------------------------------------------------------
379
380# Source includes all of the cpp files, and objects are derived from the
381# source files...
Chris Lattnere0010592001-10-18 01:48:09 +0000382# The local Makefile can list other Source files via ExtraSource = ...
Vikram S. Advec4bed342001-10-17 12:33:55 +0000383#
Vikram S. Advead9ea7e2002-10-14 16:40:04 +0000384ifndef Source
Chris Lattner069f9302003-09-15 01:12:04 +0000385Source := $(notdir $(ExtraSource) $(wildcard $(SourceDir)/*.cpp \
John Criswellb1f5cfe2003-12-29 22:02:12 +0000386 $(SourceDir)/*.cc $(SourceDir)/*.c $(SourceDir)/*.y \
387 $(SourceDir)/*.l))
Vikram S. Advead9ea7e2002-10-14 16:40:04 +0000388endif
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000389
John Criswell82f4a5a2003-07-31 20:58:51 +0000390#
391# Libtool Objects
392#
John Criswell410d1b52003-09-09 20:57:03 +0000393Srcs := $(sort $(basename $(Source)))
Chris Lattnereefa3d32003-11-29 09:50:15 +0000394ObjectsO := $(Srcs:%=$(BUILD_OBJ_DIR)/Release/%.lo)
395ObjectsP := $(Srcs:%=$(BUILD_OBJ_DIR)/Profile/%.lo)
396ObjectsG := $(Srcs:%=$(BUILD_OBJ_DIR)/Debug/%.lo)
397ObjectsBC := $(Srcs:%=$(BUILD_OBJ_DIR)/BytecodeObj/%.bc)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000398
John Criswell82f4a5a2003-07-31 20:58:51 +0000399#
400# The real objects underlying the libtool objects
401#
John Criswell410d1b52003-09-09 20:57:03 +0000402RObjs := $(sort $(patsubst Debug/%.o, %.o, $(addsuffix .o,$(basename $(Source)))))
John Criswell82f4a5a2003-07-31 20:58:51 +0000403RObjectsO := $(addprefix $(BUILD_OBJ_DIR)/Release/,$(RObjs))
404RObjectsP := $(addprefix $(BUILD_OBJ_DIR)/Profile/,$(RObjs))
405RObjectsG := $(addprefix $(BUILD_OBJ_DIR)/Debug/,$(RObjs))
406
Chris Lattner00950542001-06-06 20:29:01 +0000407#---------------------------------------------------------
Chris Lattnera8abc222002-09-18 03:22:27 +0000408# Handle the DIRS and PARALLEL_DIRS options
Chris Lattner00950542001-06-06 20:29:01 +0000409#---------------------------------------------------------
410
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000411ifdef DIRS
Brian Gaekef313ea72004-03-10 17:38:01 +0000412all install clean test bytecode stripped-bytecode install-bytecode::
Chris Lattner16d1f732002-09-17 23:45:34 +0000413 $(VERB) for dir in ${DIRS}; do \
John Criswell60577602003-11-25 17:49:22 +0000414 if [ ! -f $$dir/Makefile ]; \
415 then \
John Criswellb3866b62003-11-25 19:32:22 +0000416 $(MKDIR) $$dir; \
John Criswell60577602003-11-25 17:49:22 +0000417 cp $(SourceDir)/$$dir/Makefile $$dir/Makefile; \
418 fi; \
Misha Brukmanc2fb0062004-05-21 00:09:21 +0000419 ($(MAKE) -C $$dir $@ $(MFLAGS)) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000420 done
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000421endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000422
423# Handle PARALLEL_DIRS
424ifdef PARALLEL_DIRS
Vikram S. Adve6edfe272003-07-10 19:25:29 +0000425all :: $(addsuffix /.makeall , $(PARALLEL_DIRS))
426install :: $(addsuffix /.makeinstall , $(PARALLEL_DIRS))
427clean :: $(addsuffix /.makeclean , $(PARALLEL_DIRS))
428test :: $(addsuffix /.maketest , $(PARALLEL_DIRS))
429bytecode :: $(addsuffix /.makebytecode, $(PARALLEL_DIRS))
Chris Lattnera8df7bd2003-12-01 07:28:25 +0000430stripped-bytecode :: $(addsuffix /.makestripped-bytecode, $(PARALLEL_DIRS))
Brian Gaekef313ea72004-03-10 17:38:01 +0000431install-bytecode :: $(addsuffix /.makeinstall-bytecode, $(PARALLEL_DIRS))
Chris Lattnera8abc222002-09-18 03:22:27 +0000432
Brian Gaekef313ea72004-03-10 17:38:01 +0000433%/.makeall %/.makeinstall %/.makeclean %/.maketest %/.makebytecode %/.makestripped-bytecode %/.makeinstall-bytecode:
John Criswellb3866b62003-11-25 19:32:22 +0000434 $(VERB) if [ ! -f $(@D)/Makefile ]; \
435 then \
436 $(MKDIR) $(@D); \
437 cp $(SourceDir)/$(@D)/Makefile $(@D)/Makefile; \
438 fi; \
Misha Brukman694b3ff2004-05-21 23:21:11 +0000439 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) $(MFLAGS)
Chris Lattner00950542001-06-06 20:29:01 +0000440endif
441
John Criswell7a73b802003-06-30 21:59:07 +0000442# Handle directories that may or may not exist
John Criswell2a6530f2003-06-27 16:58:44 +0000443ifdef OPTIONAL_DIRS
Brian Gaekef313ea72004-03-10 17:38:01 +0000444all install clean test bytecode stripped-bytecode install-bytecode::
John Criswell2a6530f2003-06-27 16:58:44 +0000445 $(VERB) for dir in ${OPTIONAL_DIRS}; do \
John Criswell60577602003-11-25 17:49:22 +0000446 if [ -d $(SourceDir)/$$dir ]; \
John Criswell2a6530f2003-06-27 16:58:44 +0000447 then\
John Criswell60577602003-11-25 17:49:22 +0000448 if [ ! -f $$dir/Makefile ]; \
449 then \
John Criswellb3866b62003-11-25 19:32:22 +0000450 $(MKDIR) $$dir; \
John Criswell60577602003-11-25 17:49:22 +0000451 cp $(SourceDir)/$$dir/Makefile $$dir/Makefile; \
452 fi; \
Misha Brukman694b3ff2004-05-21 23:21:11 +0000453 ($(MAKE) -C$$dir $@ $(MFLAGS)) || exit 1; \
John Criswell2a6530f2003-06-27 16:58:44 +0000454 fi \
455 done
456endif
457
Reid Spencerfc945082004-08-20 09:20:05 +0000458#---------------------------------------------------------
459# Handle the CONFIG_FILES options
460#---------------------------------------------------------
461ifdef CONFIG_FILES
462install:: $(sysconfdir) install-config-files
463
464$(sysconfdir):
465 $(MKDIR) $(sysconfdir)
466
467install-config-files: $(CONFIG_FILES)
468 $(VERB) echo Installing Configuration Files To $(sysconfdir)
469 $(VERB) for file in $(CONFIG_FILES); do \
470 $(INSTALL) $(SourceDir)/$${file} $(sysconfdir) ; \
471 done
472endif
473
John Criswell7a73b802003-06-30 21:59:07 +0000474###########################################################################
475# Library Build Rules:
476#
Chris Lattner00950542001-06-06 20:29:01 +0000477#---------------------------------------------------------
478# Handle the LIBRARYNAME option - used when building libs...
479#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000480#
481# When libraries are built, they are allowed to optionally define the
482# DONT_BUILD_RELINKED make variable, which, when defined, prevents a .o file
483# from being built for the library. This .o files may then be linked to by a
484# tool if the tool does not need (or want) the semantics a .a file provides
485# (linking in only object files that are "needed"). If a library is never to
486# be used in this way, it is better to define DONT_BUILD_RELINKED, and define
487# BUILD_ARCHIVE instead.
488#
489# Some libraries must be built as .a files (libscalar for example) because if
Chris Lattner1917e952002-07-31 21:32:05 +0000490# 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 +0000491# linked into tools (for example gccas) even if they only use one of the parts
492# of it. For this reason, sometimes it's useful to use libraries as .a files.
John Criswell7a73b802003-06-30 21:59:07 +0000493###########################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000494
Brian Gaeke8abff792004-01-22 22:53:48 +0000495# Install rule for making bytecode library directory if it does not exist.
496# Trigger this by making libraries that need to be installed here depend on it.
497$(DESTDIR)$(bytecode_libdir):
498 $(MKDIR) $@
499
Chris Lattner00950542001-06-06 20:29:01 +0000500ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000501
Chris Lattner2a548c52002-09-16 22:36:42 +0000502# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000503LIBRARYNAME := $(strip $(LIBRARYNAME))
504
Brian Gaeked252d752004-01-21 21:17:37 +0000505LIBNAME_O := $(DESTLIBRELEASE)/lib$(LIBRARYNAME)$(SHLIBEXT)
506LIBNAME_P := $(DESTLIBPROFILE)/lib$(LIBRARYNAME)$(SHLIBEXT)
507LIBNAME_G := $(DESTLIBDEBUG)/lib$(LIBRARYNAME)$(SHLIBEXT)
508LIBNAME_CUR := $(DESTLIBCURRENT)/lib$(LIBRARYNAME)$(SHLIBEXT)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000509LIBNAME_AO := $(DESTLIBRELEASE)/lib$(LIBRARYNAME).a
510LIBNAME_AP := $(DESTLIBPROFILE)/lib$(LIBRARYNAME).a
511LIBNAME_AG := $(DESTLIBDEBUG)/lib$(LIBRARYNAME).a
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000512LIBNAME_ACUR := $(DESTLIBCURRENT)/lib$(LIBRARYNAME).a
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000513LIBNAME_OBJO := $(DESTLIBRELEASE)/$(LIBRARYNAME).o
514LIBNAME_OBJP := $(DESTLIBPROFILE)/$(LIBRARYNAME).o
515LIBNAME_OBJG := $(DESTLIBDEBUG)/$(LIBRARYNAME).o
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000516LIBNAME_OBJCUR := $(DESTLIBCURRENT)/$(LIBRARYNAME).o
Chris Lattner481cc7c2003-08-15 02:18:35 +0000517LIBNAME_BC := $(DESTLIBBYTECODE)/lib$(LIBRARYNAME).bc
Chris Lattner00950542001-06-06 20:29:01 +0000518
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000519
John Criswell7a73b802003-06-30 21:59:07 +0000520#--------------------------------------------------------------------
521# Library Targets
522# Modify the top level targets to build the desired libraries.
523#--------------------------------------------------------------------
524
Chris Lattner760da062003-03-14 20:25:22 +0000525# dynamic target builds a shared object version of the library...
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000526dynamic:: $(LIBNAME_CUR)
Chris Lattner481cc7c2003-08-15 02:18:35 +0000527bytecodelib:: $(LIBNAME_BC)
Brian Gaeke13f99322004-01-21 23:57:21 +0000528install-bytecode-library:: $(DESTDIR)$(bytecode_libdir)/lib$(LIBRARYNAME).bc
Chris Lattner481cc7c2003-08-15 02:18:35 +0000529
Brian Gaeke13f99322004-01-21 23:57:21 +0000530$(DESTDIR)$(bytecode_libdir)/lib$(LIBRARYNAME).bc: $(LIBNAME_BC) $(DESTDIR)$(bytecode_libdir)
John Criswell7ec78aa2003-10-16 01:49:00 +0000531 @${ECHO} ======= Installing $(LIBRARYNAME) bytecode library =======
Chris Lattner481cc7c2003-08-15 02:18:35 +0000532 cp $< $@
Vikram S. Adve60f56062002-08-02 18:34:12 +0000533
Chris Lattner760da062003-03-14 20:25:22 +0000534# Does the library want a .o version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000535ifndef DONT_BUILD_RELINKED
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000536all:: $(LIBNAME_OBJCUR)
537install:: install-single-object-library
Chris Lattnere62dbe92002-07-23 17:56:16 +0000538endif
Chris Lattner760da062003-03-14 20:25:22 +0000539
540# Does the library want an archive version built?
Chris Lattnere62dbe92002-07-23 17:56:16 +0000541ifdef BUILD_ARCHIVE
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000542all:: $(LIBNAME_ACUR)
543install:: install-archive-library
Chris Lattnere62dbe92002-07-23 17:56:16 +0000544endif
Chris Lattnere62dbe92002-07-23 17:56:16 +0000545
John Criswell7a73b802003-06-30 21:59:07 +0000546#--------------------------------------------------------------------
547# Rules for building libraries
548#--------------------------------------------------------------------
Chris Lattner00950542001-06-06 20:29:01 +0000549
Chris Lattner771ed152003-10-21 18:00:37 +0000550LinkBCLib := $(LLVMGCC) -shared -nostdlib
Chris Lattner481cc7c2003-08-15 02:18:35 +0000551ifdef EXPORTED_SYMBOL_LIST
552LinkBCLib += -Xlinker -internalize-public-api-list=$(EXPORTED_SYMBOL_LIST)
553else
Chris Lattner22c83282003-09-15 15:06:54 +0000554 ifdef EXPORTED_SYMBOL_FILE
555LinkBCLib += -Xlinker -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
556 else
Chris Lattner481cc7c2003-08-15 02:18:35 +0000557LinkBCLib += -Xlinker -disable-internalize
Chris Lattner22c83282003-09-15 15:06:54 +0000558 endif
Chris Lattner481cc7c2003-08-15 02:18:35 +0000559endif
560
561
562# Rule for building bytecode libraries.
Chris Lattneraf06a082003-08-15 03:02:52 +0000563$(LIBNAME_BC): $(ObjectsBC) $(LibSubDirs) $(DESTLIBBYTECODE)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000564 @${ECHO} Linking $(LIBRARYNAME) bytecode library
Chris Lattner481cc7c2003-08-15 02:18:35 +0000565 $(VERB) $(LinkBCLib) -o $@ $(ObjectsBC) $(LibSubDirs) $(LibLinkOpts)
John Criswella4c53522003-11-03 21:12:49 +0000566 @${ECHO} ======= Finished building $(LIBRARYNAME) bytecode library =======
John Criswell7a73b802003-06-30 21:59:07 +0000567#
568# Rules for building dynamically linked libraries.
569#
John Criswellf4ccd992003-07-01 14:52:28 +0000570$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000571 @${ECHO} Linking $(LIBRARYNAME) dynamic release library
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000572 $(VERB) $(Link) -o $*.la $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
573 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT)
John Criswella4c53522003-11-03 21:12:49 +0000574 @${ECHO} ======= Finished building $(LIBRARYNAME) dynamic release library =======
Vikram S. Adve41e78912002-09-20 14:03:13 +0000575
John Criswellf4ccd992003-07-01 14:52:28 +0000576$(LIBNAME_P): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000577 @${ECHO} Linking $(LIBRARYNAME) dynamic profile library
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000578 $(VERB) $(Link) -o $*.la $(ObjectsP) $(LibSubDirs) $(LibLinkOpts)
579 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT)
John Criswella4c53522003-11-03 21:12:49 +0000580 @${ECHO} ======= Finished building $(LIBRARYNAME) dynamic profile library =======
Chris Lattner00950542001-06-06 20:29:01 +0000581
John Criswellf4ccd992003-07-01 14:52:28 +0000582$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000583 @${ECHO} Linking $(LIBRARYNAME) dynamic debug library
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000584 $(VERB) $(Link) -o $*.la $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
585 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $*.la $(DESTLIBCURRENT)
John Criswella4c53522003-11-03 21:12:49 +0000586 @${ECHO} ======= Finished building $(LIBRARYNAME) dynamic debug library =======
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000587
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000588install-dynamic-library: $(LIBNAME_CUR)
Brian Gaeke6c096962004-02-09 17:38:52 +0000589 $(MKDIR) $(DESTDIR)$(libdir)
Brian Gaeke819567d2004-01-21 21:20:44 +0000590 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $(LIBNAME_CUR) $(DESTDIR)$(libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000591
John Criswell7a73b802003-06-30 21:59:07 +0000592#
593# Rules for building static archive libraries.
594#
John Criswellf4ccd992003-07-01 14:52:28 +0000595$(LIBNAME_AO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000596 @${ECHO} Linking $(LIBRARYNAME) archive release library
John Criswell7a73b802003-06-30 21:59:07 +0000597 @$(RM) -f $@
John Criswellf4ccd992003-07-01 14:52:28 +0000598 $(VERB) $(Link) -03 -o $@ $(ObjectsO) $(LibSubDirs) -static
John Criswella4c53522003-11-03 21:12:49 +0000599 @${ECHO} Finished building $(LIBRARYNAME) archive release library =======
Vikram S. Adve41e78912002-09-20 14:03:13 +0000600
John Criswellf4ccd992003-07-01 14:52:28 +0000601$(LIBNAME_AP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000602 @${ECHO} Linking $(LIBRARYNAME) archive profile library
John Criswell7a73b802003-06-30 21:59:07 +0000603 @$(RM) -f $@
John Criswellf4ccd992003-07-01 14:52:28 +0000604 $(VERB) $(Link) -03 $(PROFILE) -o $@ $(ObjectsP) $(LibSubDirs) -static
John Criswella4c53522003-11-03 21:12:49 +0000605 @${ECHO} ======= Finished building $(LIBRARYNAME) archive profile library =======
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000606
John Criswellf4ccd992003-07-01 14:52:28 +0000607$(LIBNAME_AG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000608 @${ECHO} Linking $(LIBRARYNAME) archive debug library
John Criswell7a73b802003-06-30 21:59:07 +0000609 @$(RM) -f $@
John Criswellf4ccd992003-07-01 14:52:28 +0000610 $(VERB) $(Link) -g $(STRIP) -o $@ $(ObjectsG) $(LibSubDirs) -static
John Criswella4c53522003-11-03 21:12:49 +0000611 @${ECHO} ======= Finished building $(LIBRARYNAME) archive debug library =======
John Criswell7a73b802003-06-30 21:59:07 +0000612
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000613install-archive-library: $(LIBNAME_ACUR)
Brian Gaeke6c096962004-02-09 17:38:52 +0000614 $(MKDIR) $(DESTDIR)$(libdir)
Brian Gaeke819567d2004-01-21 21:20:44 +0000615 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $(LIBNAME_ACUR) $(DESTDIR)$(libdir)/lib$(LIBRARYNAME).a
Chris Lattner481cc7c2003-08-15 02:18:35 +0000616
John Criswell7a73b802003-06-30 21:59:07 +0000617#
618# Rules for building .o libraries.
619#
John Criswell82f4a5a2003-07-31 20:58:51 +0000620# JTC:
621# Note that for this special case, we specify the actual object files
622# instead of their libtool counterparts. This is because libtool
623# doesn't want to generate a reloadable object file unless it is given
624# .o files explicitly.
625#
626# Note that we're making an assumption here: If we build a .lo file,
627# it's corresponding .o file will be placed in the same directory.
628#
629# I think that is safe.
630#
John Criswellf4ccd992003-07-01 14:52:28 +0000631$(LIBNAME_OBJO): $(ObjectsO) $(LibSubDirs) $(DESTLIBRELEASE)/.dir
John Criswell7ec78aa2003-10-16 01:49:00 +0000632 @${ECHO} "Linking `basename $@`"
John Criswell82f4a5a2003-07-31 20:58:51 +0000633 $(VERB) $(Relink) -o $@ $(RObjectsO) $(LibSubDirs)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000634
John Criswellf4ccd992003-07-01 14:52:28 +0000635$(LIBNAME_OBJP): $(ObjectsP) $(LibSubDirs) $(DESTLIBPROFILE)/.dir
John Criswell7ec78aa2003-10-16 01:49:00 +0000636 @${ECHO} "Linking `basename $@`"
John Criswell82f4a5a2003-07-31 20:58:51 +0000637 $(VERB) $(Relink) -o $@ $(RObjectsP) $(LibSubDirs)
Vikram S. Adve41e78912002-09-20 14:03:13 +0000638
John Criswellf4ccd992003-07-01 14:52:28 +0000639$(LIBNAME_OBJG): $(ObjectsG) $(LibSubDirs) $(DESTLIBDEBUG)/.dir
John Criswell7ec78aa2003-10-16 01:49:00 +0000640 @${ECHO} "Linking `basename $@`"
John Criswell82f4a5a2003-07-31 20:58:51 +0000641 $(VERB) $(Relink) -o $@ $(RObjectsG) $(LibSubDirs)
Chris Lattnere62dbe92002-07-23 17:56:16 +0000642
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000643install-single-object-library: $(LIBNAME_OBJCUR)
Brian Gaeke6c096962004-02-09 17:38:52 +0000644 $(MKDIR) $(DESTDIR)$(libdir)
Brian Gaeke819567d2004-01-21 21:20:44 +0000645 $(VERB) $(LIBTOOL) --mode=install $(INSTALL) $(LIBNAME_OBJCUR) $(DESTDIR)$(libdir)/$(LIBRARYNAME).o
Brian Gaeke78cb3f22003-12-18 20:57:48 +0000646
Chris Lattner00950542001-06-06 20:29:01 +0000647endif
648
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000649#------------------------------------------------------------------------
650# Handle the TOOLNAME option - used when building tool executables...
651#------------------------------------------------------------------------
652#
653# The TOOLNAME option should be used with a USEDLIBS variable that tells the
Chris Lattnere62dbe92002-07-23 17:56:16 +0000654# libraries (and the order of the libs) that should be linked to the
655# tool. USEDLIBS should contain a list of library names (some with .a extension)
656# that are automatically linked in as .o files unless the .a suffix is added.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000657#
658ifdef TOOLNAME
659
660# TOOLEXENAME* - These compute the output filenames to generate...
John Criswell8bff5092003-06-11 13:55:44 +0000661TOOLEXENAME_G := $(DESTTOOLDEBUG)/$(TOOLNAME)
662TOOLEXENAME_O := $(DESTTOOLRELEASE)/$(TOOLNAME)
663TOOLEXENAME_P := $(DESTTOOLPROFILE)/$(TOOLNAME)
664TOOLEXENAMES := $(DESTTOOLCURRENT)/$(TOOLNAME)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000665
666# USED_LIBS_OPTIONS - Compute the options line that add -llib1 -llib2, etc.
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000667PROJ_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
668PROJ_LIBS_OPTIONS_G := $(patsubst %.o, $(PROJLIBDEBUGSOURCE)/%.o, $(PROJ_LIBS_OPTIONS))
669PROJ_LIBS_OPTIONS_O := $(patsubst %.o, $(PROJLIBRELEASESOURCE)/%.o,$(PROJ_LIBS_OPTIONS))
670PROJ_LIBS_OPTIONS_P := $(patsubst %.o, $(PROJLIBPROFILESOURCE)/%.o,$(PROJ_LIBS_OPTIONS))
671
672LLVM_LIBS_OPTIONS := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
673LLVM_LIBS_OPTIONS_G := $(patsubst %.o, $(LLVMLIBDEBUGSOURCE)/%.o, $(LLVM_LIBS_OPTIONS))
674LLVM_LIBS_OPTIONS_O := $(patsubst %.o, $(LLVMLIBRELEASESOURCE)/%.o,$(LLVM_LIBS_OPTIONS))
675LLVM_LIBS_OPTIONS_P := $(patsubst %.o, $(LLVMLIBPROFILESOURCE)/%.o,$(LLVM_LIBS_OPTIONS))
676
677LIB_OPTS_G := $(LLVM_LIBS_OPTIONS_G) $(PROJ_LIBS_OPTIONS_G)
Chris Lattnere3ba95e2003-06-20 15:41:57 +0000678LIB_OPTS_O := $(LLVM_LIBS_OPTIONS_O) $(PROJ_LIBS_OPTIONS_O)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000679LIB_OPTS_P := $(LLVM_LIBS_OPTIONS_P) $(PROJ_LIBS_OPTIONS_P)
680
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000681# USED_LIB_PATHS - Compute the path of the libraries used so that tools are
Chris Lattnere62dbe92002-07-23 17:56:16 +0000682# rebuilt if libraries change. This has to make sure to handle .a/.so and .o
Misha Brukman1ba31382003-07-14 17:26:34 +0000683# files separately.
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000684#
Chris Lattnere62dbe92002-07-23 17:56:16 +0000685STATICUSEDLIBS := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000686USED_LIB_PATHS_G := $(addprefix $(DESTLIBDEBUG)/, $(STATICUSEDLIBS))
687USED_LIB_PATHS_O := $(addprefix $(DESTLIBRELEASE)/, $(STATICUSEDLIBS))
688USED_LIB_PATHS_P := $(addprefix $(DESTLIBPROFILE)/, $(STATICUSEDLIBS))
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000689
John Criswell7a73b802003-06-30 21:59:07 +0000690#
691# Libtool link options:
692# Ensure that all binaries have their symbols exported so that they can
693# by dlsym'ed.
694#
695LINK_OPTS := -export-dynamic $(TOOLLINKOPTS)
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000696
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000697
698
699
700
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000701# Tell make that we need to rebuild subdirectories before we can link the tool.
702# This affects things like LLI which has library subdirectories.
703$(USED_LIB_PATHS_G) $(USED_LIB_PATHS_O) $(USED_LIB_PATHS_P): \
704 $(addsuffix /.makeall, $(PARALLEL_DIRS))
705
Chris Lattner669bd7c2001-10-13 05:10:29 +0000706all:: $(TOOLEXENAMES)
John Criswell2a6530f2003-06-27 16:58:44 +0000707
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000708clean::
John Criswell7a73b802003-06-30 21:59:07 +0000709 $(VERB) $(RM) -f $(TOOLEXENAMES)
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000710
John Criswellf4ccd992003-07-01 14:52:28 +0000711$(TOOLEXENAME_G): $(ObjectsG) $(USED_LIB_PATHS_G) $(DESTTOOLDEBUG)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000712 @${ECHO} Linking $(TOOLNAME) debug executable $(STRIP_WARN_MSG)
John Criswellf4ccd992003-07-01 14:52:28 +0000713 $(VERB) $(LinkG) -o $@ $(ObjectsG) $(LIB_OPTS_G) $(LINK_OPTS) $(LIBS)
John Criswella4c53522003-11-03 21:12:49 +0000714 @${ECHO} ======= Finished building $(TOOLNAME) debug executable $(STRIP_WARN_MSG) =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000715
John Criswellf4ccd992003-07-01 14:52:28 +0000716$(TOOLEXENAME_O): $(ObjectsO) $(USED_LIB_PATHS_O) $(DESTTOOLRELEASE)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000717 @${ECHO} Linking $(TOOLNAME) release executable
John Criswellf4ccd992003-07-01 14:52:28 +0000718 $(VERB) $(LinkO) -o $@ $(ObjectsO) $(LIB_OPTS_O) $(LINK_OPTS) $(LIBS)
John Criswella4c53522003-11-03 21:12:49 +0000719 @${ECHO} ======= Finished building $(TOOLNAME) release executable =======
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000720
John Criswellf4ccd992003-07-01 14:52:28 +0000721$(TOOLEXENAME_P): $(ObjectsP) $(USED_LIB_PATHS_P) $(DESTTOOLPROFILE)/.dir
John Criswella4c53522003-11-03 21:12:49 +0000722 @${ECHO} Linking $(TOOLNAME) profile executable
John Criswellf4ccd992003-07-01 14:52:28 +0000723 $(VERB) $(LinkP) -o $@ $(ObjectsP) $(LIB_OPTS_P) $(LINK_OPTS) $(LIBS)
John Criswella4c53522003-11-03 21:12:49 +0000724 @${ECHO} ======= Finished building $(TOOLNAME) profile executable =======
Vikram S. Adve41e78912002-09-20 14:03:13 +0000725
Brian Gaeke44909cf2003-12-10 00:26:28 +0000726install:: $(TOOLEXENAMES)
Brian Gaeke6c096962004-02-09 17:38:52 +0000727 $(MKDIR) $(DESTDIR)$(bindir)
Brian Gaeke819567d2004-01-21 21:20:44 +0000728 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) -c -m 0755 $(TOOLEXENAMES) $(DESTDIR)$(bindir)/$(TOOLNAME)
Brian Gaeke44909cf2003-12-10 00:26:28 +0000729
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000730endif
731
732
Chris Lattner00950542001-06-06 20:29:01 +0000733
734#---------------------------------------------------------
Chris Lattner0df847a2003-09-15 22:17:02 +0000735.PRECIOUS: $(BUILD_OBJ_DIR)/Depend/.dir $(BUILD_OBJ_DIR)/BytecodeObj/.dir
John Criswell8bff5092003-06-11 13:55:44 +0000736.PRECIOUS: $(BUILD_OBJ_DIR)/Debug/.dir $(BUILD_OBJ_DIR)/Release/.dir
Chris Lattnerd85b7a42004-07-08 03:42:20 +0000737.PRECIOUS: $(BUILD_OBJ_DIR)/Profile/.dir
Chris Lattner00950542001-06-06 20:29:01 +0000738
John Criswell7a73b802003-06-30 21:59:07 +0000739# Create .lo files in the ObjectFiles directory from the .cpp and .c files...
John Criswell410d1b52003-09-09 20:57:03 +0000740$(BUILD_OBJ_DIR)/Release/%.lo: %.cpp $(BUILD_OBJ_DIR)/Release/.dir
John Criswell7ec78aa2003-10-16 01:49:00 +0000741 @${ECHO} "Compiling `basename $<`"
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000742 $(VERB) $(CompileO) $< -o $@
Chris Lattner00950542001-06-06 20:29:01 +0000743
John Criswell410d1b52003-09-09 20:57:03 +0000744$(BUILD_OBJ_DIR)/Release/%.lo: %.c $(BUILD_OBJ_DIR)/Release/.dir
John Criswell7ec78aa2003-10-16 01:49:00 +0000745 @${ECHO} "Compiling `basename $<`"
Chris Lattner1eeac662002-10-22 23:28:23 +0000746 $(VERB) $(CompileCO) $< -o $@
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000747
John Criswell410d1b52003-09-09 20:57:03 +0000748$(BUILD_OBJ_DIR)/Profile/%.lo: %.cpp $(BUILD_OBJ_DIR)/Profile/.dir
John Criswell7ec78aa2003-10-16 01:49:00 +0000749 @${ECHO} "Compiling `basename $<`"
Vikram S. Adve41e78912002-09-20 14:03:13 +0000750 $(VERB) $(CompileP) $< -o $@
751
John Criswell410d1b52003-09-09 20:57:03 +0000752$(BUILD_OBJ_DIR)/Profile/%.lo: %.c $(BUILD_OBJ_DIR)/Profile/.dir
John Criswell7ec78aa2003-10-16 01:49:00 +0000753 @${ECHO} "Compiling `basename $<`"
Chris Lattner172b6482002-09-22 02:47:15 +0000754 $(VERB) $(CompileCP) $< -o $@
755
John Criswell410d1b52003-09-09 20:57:03 +0000756$(BUILD_OBJ_DIR)/Debug/%.lo: %.cpp $(BUILD_OBJ_DIR)/Debug/.dir
John Criswell7ec78aa2003-10-16 01:49:00 +0000757 @${ECHO} "Compiling `basename $<`"
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000758 $(VERB) $(CompileG) $< -o $@
Chris Lattner00950542001-06-06 20:29:01 +0000759
John Criswell410d1b52003-09-09 20:57:03 +0000760$(BUILD_OBJ_DIR)/Debug/%.lo: %.c $(BUILD_OBJ_DIR)/Debug/.dir
John Criswell7ec78aa2003-10-16 01:49:00 +0000761 @${ECHO} "Compiling `basename $<`"
John Criswell7a73b802003-06-30 21:59:07 +0000762 $(VERB) $(CompileCG) $< -o $@
763
Chris Lattner0df847a2003-09-15 22:17:02 +0000764$(BUILD_OBJ_DIR)/BytecodeObj/%.bc: %.cpp $(BUILD_OBJ_DIR)/BytecodeObj/.dir $(LCC1XX)
John Criswell7ec78aa2003-10-16 01:49:00 +0000765 @${ECHO} "Compiling `basename $<` to bytecode"
Chris Lattnerd1803002003-12-06 20:59:45 +0000766 $(VERB) $(LLVMGXX) $(CompileCommonOpts) $(CPPFLAGS) -c $< -o $@
Chris Lattner481cc7c2003-08-15 02:18:35 +0000767
Chris Lattner0df847a2003-09-15 22:17:02 +0000768$(BUILD_OBJ_DIR)/BytecodeObj/%.bc: %.c $(BUILD_OBJ_DIR)/BytecodeObj/.dir $(LCC1)
John Criswell7ec78aa2003-10-16 01:49:00 +0000769 @${ECHO} "Compiling `basename $<` to bytecode"
Chris Lattnerd1803002003-12-06 20:59:45 +0000770 $(VERB) $(LLVMGCC) $(CompileCommonOpts) $(CPPFLAGS) -c $< -o $@
Chris Lattner481cc7c2003-08-15 02:18:35 +0000771
Chris Lattner0df847a2003-09-15 22:17:02 +0000772$(BUILD_OBJ_DIR)/BytecodeObj/%.bc: %.ll $(BUILD_OBJ_DIR)/BytecodeObj/.dir $(LLVMAS)
John Criswell7ec78aa2003-10-16 01:49:00 +0000773 @${ECHO} "Compiling `basename $<` to bytecode"
Chris Lattner481cc7c2003-08-15 02:18:35 +0000774 $(VERB) $(LLVMAS) $< -f -o $@
775
776
Chris Lattnere8996782003-01-16 22:44:19 +0000777#
778# Rules for building lex/yacc files
779#
780LEX_FILES = $(filter %.l, $(Source))
781LEX_OUTPUT = $(LEX_FILES:%.l=%.cpp)
782YACC_FILES = $(filter %.y, $(Source))
783YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
784.PRECIOUS: $(LEX_OUTPUT) $(YACC_OUTPUT)
785
Chris Lattner00950542001-06-06 20:29:01 +0000786# Create a .cpp source file from a flex input file... this uses sed to cut down
787# on the warnings emited by GCC...
Chris Lattner6d131b42003-01-23 16:33:10 +0000788#
789# The last line is a gross hack to work around flex aparently not being able to
790# resize the buffer on a large token input. Currently, for uninitialized string
791# buffers in LLVM we can generate very long tokens, so this is a hack around it.
Chris Lattnerb7dc2b92003-08-15 20:00:47 +0000792# FIXME. (f.e. char Buffer[10000] )
Chris Lattner6d131b42003-01-23 16:33:10 +0000793#
Chris Lattner00950542001-06-06 20:29:01 +0000794%.cpp: %.l
John Criswell7ec78aa2003-10-16 01:49:00 +0000795 @${ECHO} Flexing $<
Chris Lattner7bb107d2003-08-04 19:48:10 +0000796 $(VERB) $(FLEX) -t $< | \
797 $(SED) '/^find_rule/d' | \
798 $(SED) 's/void yyunput/inline void yyunput/' | \
John Criswell7a73b802003-06-30 21:59:07 +0000799 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
Chris Lattnera328f882003-08-04 19:47:06 +0000800 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
801 > $@.tmp
John Criswelld741bcf2003-08-12 18:51:51 +0000802 $(VERB) cmp -s $@ $@.tmp > /dev/null || ${MV} -f $@.tmp $@
Chris Lattnera328f882003-08-04 19:47:06 +0000803 @# remove the output of flex if it didn't get moved over...
804 @rm -f $@.tmp
Chris Lattner00950542001-06-06 20:29:01 +0000805
806# Rule for building the bison parsers...
Chris Lattner694c5df2003-05-15 21:28:55 +0000807%.c: %.y # Cancel built-in rules for yacc
808%.h: %.y # Cancel built-in rules for yacc
Chris Lattner00950542001-06-06 20:29:01 +0000809%.cpp %.h : %.y
Misha Brukmanb6d59a22003-11-05 06:41:14 +0000810 @${ECHO} "Bisoning `basename $<`"
John Criswell410d1b52003-09-09 20:57:03 +0000811 $(VERB) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
John Criswelld741bcf2003-08-12 18:51:51 +0000812 $(VERB) cmp -s $*.tab.c $*.cpp > /dev/null || ${MV} -f $*.tab.c $*.cpp
813 $(VERB) cmp -s $*.tab.h $*.h > /dev/null || ${MV} -f $*.tab.h $*.h
Chris Lattnera328f882003-08-04 19:47:06 +0000814 @# If the files were not updated, don't leave them lying around...
815 @rm -f $*.tab.c $*.tab.h
Chris Lattner00950542001-06-06 20:29:01 +0000816
817# To create the directories...
818%/.dir:
John Criswell7a73b802003-06-30 21:59:07 +0000819 $(VERB) ${MKDIR} $* > /dev/null
820 @$(DATE) > $@
Chris Lattner00950542001-06-06 20:29:01 +0000821
Chris Lattner30440c62003-01-16 21:06:18 +0000822# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +0000823ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +0000824%.ps: %.dot
John Criswell7a73b802003-06-30 21:59:07 +0000825 ${DOT} -Tps < $< > $@
826else
827%.ps: %.dot
828 ${ECHO} "Cannot build $@: The program dot is not installed"
829endif
Chris Lattner30440c62003-01-16 21:06:18 +0000830
John Criswell7f336952003-09-06 14:44:17 +0000831#
832# This rules ensures that header files that are removed still have a rule for
833# which they can be "generated." This allows make to ignore them and
834# reproduce the dependency lists.
835#
John Criswell4b6e5d12003-09-18 18:37:08 +0000836%.h:: ;
John Criswell7f336952003-09-06 14:44:17 +0000837
Chris Lattner172b6482002-09-22 02:47:15 +0000838# 'make clean' nukes the tree
Chris Lattner00950542001-06-06 20:29:01 +0000839clean::
Chris Lattner481cc7c2003-08-15 02:18:35 +0000840 $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Debug $(BUILD_OBJ_DIR)/Release
841 $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/Profile $(BUILD_OBJ_DIR)/Depend
Chris Lattner0df847a2003-09-15 22:17:02 +0000842 $(VERB) $(RM) -rf $(BUILD_OBJ_DIR)/BytecodeObj
Brian Gaeke9d3cd402004-01-21 19:53:11 +0000843 $(VERB) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
844ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
845 $(VERB) $(RM) -f *$(SHLIBEXT)
846endif
John Criswell7a73b802003-06-30 21:59:07 +0000847 $(VERB) $(RM) -f $(LEX_OUTPUT) $(YACC_OUTPUT)
848
John Criswell7a73b802003-06-30 21:59:07 +0000849###########################################################################
850# C/C++ Dependencies
851# Define variables and rules that generate header file dependencies
852# from C/C++ source files.
853###########################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000854
Chris Lattner33ad24a2003-08-22 14:10:16 +0000855ifndef DISABLE_AUTO_DEPENDENCIES
856
Chris Lattner694c5df2003-05-15 21:28:55 +0000857# If dependencies were generated for the file that included this file,
Misha Brukman36bc6422003-08-21 22:02:18 +0000858# include the dependencies now...
Chris Lattner00950542001-06-06 20:29:01 +0000859#
John Criswell410d1b52003-09-09 20:57:03 +0000860SourceBaseNames := $(basename $(Source))
John Criswell8bff5092003-06-11 13:55:44 +0000861SourceDepend := $(SourceBaseNames:%=$(BUILD_OBJ_DIR)/Depend/%.d)
Chris Lattner694c5df2003-05-15 21:28:55 +0000862
863# Create dependencies for the *.cpp files...
John Criswell410d1b52003-09-09 20:57:03 +0000864$(BUILD_OBJ_DIR)/Depend/%.d: %.cpp $(BUILD_OBJ_DIR)/Depend/.dir
Chris Lattner52d792c2003-11-08 21:23:06 +0000865 $(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 +0000866
867# Create dependencies for the *.c files...
John Criswell410d1b52003-09-09 20:57:03 +0000868$(BUILD_OBJ_DIR)/Depend/%.d: %.c $(BUILD_OBJ_DIR)/Depend/.dir
Chris Lattner52d792c2003-11-08 21:23:06 +0000869 $(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 +0000870
John Criswell7a73b802003-06-30 21:59:07 +0000871#
John Criswellbd082802003-10-07 14:16:44 +0000872# Autoconf Dependencies.
873#
Misha Brukman94fe1f92003-10-07 15:24:23 +0000874$(LLVM_OBJ_ROOT)/config.status:: $(LLVM_SRC_ROOT)/configure
Chris Lattner4faf8602003-10-10 15:55:43 +0000875 @${ECHO} "****************************************************************"
876 @${ECHO} " You need to re-run $(LLVM_SRC_ROOT)/configure"
877 @${ECHO} " in directory $(LLVM_OBJ_ROOT)"
878 @${ECHO} "****************************************************************"
John Criswellbd082802003-10-07 14:16:44 +0000879 $(VERB) exit 1
880
Misha Brukman4f7a8cf2003-11-09 21:36:19 +0000881# If the Makefile in the source tree has been updated, copy it over into the
882# build tree.
883Makefile :: $(BUILD_SRC_DIR)/Makefile
Misha Brukman2fe69092003-11-11 00:05:29 +0000884 @${ECHO} "===== Updating Makefile from source dir: `dirname $<` ====="
John Criswellb3866b62003-11-25 19:32:22 +0000885 $(MKDIR) $(@D)
Misha Brukman4f7a8cf2003-11-09 21:36:19 +0000886 cp -f $< $@
887
John Criswellbd082802003-10-07 14:16:44 +0000888#
John Criswell7a73b802003-06-30 21:59:07 +0000889# Include dependencies generated from C/C++ source files, but not if we
890# are cleaning (this example taken from the GNU Make Manual).
891#
892ifneq ($(MAKECMDGOALS),clean)
John Criswelld741bcf2003-08-12 18:51:51 +0000893ifneq ($(MAKECMDGOALS),distclean)
Chris Lattner15444a92003-08-29 14:07:02 +0000894-include /dev/null $(SourceDepend)
John Criswell7a73b802003-06-30 21:59:07 +0000895endif
John Criswelld741bcf2003-08-12 18:51:51 +0000896endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +0000897
Chris Lattner33ad24a2003-08-22 14:10:16 +0000898endif # ifndef DISABLE_AUTO_DEPENDENCIES