blob: 88fa992c51178cc28c08c46eb5eed16c19617362 [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#
Reid Spencer3a561f52004-10-23 20:04:14 +000010# This file is included by all of the LLVM makefiles. For details on how to use
11# it properly, please see the document MakefileGuide.html in the docs directory.
Chris Lattneraf06a082003-08-15 03:02:52 +000012#
Chris Lattner77efe272006-02-14 04:27:15 +000013#===-----------------------------------------------------------------------====#
Chris Lattner00950542001-06-06 20:29:01 +000014
Reid Spencercc2d1e22004-10-30 09:19:36 +000015################################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +000016# TARGETS: Define standard targets that can be invoked
Reid Spencercc2d1e22004-10-30 09:19:36 +000017################################################################################
John Criswell7a73b802003-06-30 21:59:07 +000018
Chris Lattner00950542001-06-06 20:29:01 +000019#--------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +000020# Define the various target sets
21#--------------------------------------------------------------------
Chris Lattner7dc02822004-12-03 21:05:57 +000022RecursiveTargets := all clean clean-all install uninstall install-bytecode
Reid Spencer9e8d54a2004-12-06 05:35:13 +000023LocalTargets := all-local clean-local clean-all-local check-local \
Reid Spencer44cb1b32004-12-03 20:08:48 +000024 install-local printvars uninstall-local \
25 install-bytecode-local
Reid Spencer9e8d54a2004-12-06 05:35:13 +000026TopLevelTargets := check dist dist-check dist-clean tags dist-gzip dist-bzip2 \
Reid Spencercc2d1e22004-10-30 09:19:36 +000027 dist-zip
28UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
29InternalTargets := preconditions distdir dist-hook
Reid Spencer3a561f52004-10-23 20:04:14 +000030
Reid Spencercc2d1e22004-10-30 09:19:36 +000031################################################################################
Reid Spencer9411c642004-10-26 22:26:33 +000032# INITIALIZATION: Basic things the makefile needs
Reid Spencercc2d1e22004-10-30 09:19:36 +000033################################################################################
34
35#--------------------------------------------------------------------
36# Set the VPATH so that we can find source files.
37#--------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +000038VPATH=$(PROJ_SRC_DIR)
Reid Spencer9411c642004-10-26 22:26:33 +000039
40#--------------------------------------------------------------------
41# Reset the list of suffixes we know how to build
42#--------------------------------------------------------------------
43.SUFFIXES:
Chris Lattner89681112006-01-27 22:13:12 +000044.SUFFIXES: .c .cpp .cc .h .hpp .y .l .lo .o .a .bc .td .ps .dot .ll
Reid Spencercc2d1e22004-10-30 09:19:36 +000045.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
Reid Spencer9411c642004-10-26 22:26:33 +000046
Reid Spencer3a561f52004-10-23 20:04:14 +000047#--------------------------------------------------------------------
48# Mark all of these targets as phony to avoid implicit rule search
49#--------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +000050.PHONY: $(UserTargets) $(InternalTargets)
Reid Spencer3a561f52004-10-23 20:04:14 +000051
52#--------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +000053# Make sure all the user-target rules are double colon rules and
54# they are defined first.
Reid Spencer3a561f52004-10-23 20:04:14 +000055#--------------------------------------------------------------------
56
Reid Spencercc2d1e22004-10-30 09:19:36 +000057$(UserTargets)::
Reid Spencer151f8ba2004-10-25 08:27:37 +000058
Reid Spencer9411c642004-10-26 22:26:33 +000059################################################################################
60# PRECONDITIONS: that which must be built/checked first
61################################################################################
62
Reid Spencer44cb1b32004-12-03 20:08:48 +000063SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencer11fde542005-01-16 02:20:54 +000064 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
65ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
66ConfigureScript := $(PROJ_SRC_ROOT)/configure
67ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
68MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
69MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
70MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
71MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
72PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
73ifneq ($(MakefileCommonIn),)
74PreConditions += $(MakefileCommon)
75endif
76ifneq ($(MakefileConfigIn),)
77PreConditions += $(MakefileConfig)
78endif
Reid Spencer9411c642004-10-26 22:26:33 +000079
Reid Spencerca739c62005-08-25 04:59:49 +000080preconditions: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +000081
82#------------------------------------------------------------------------
83# Make sure the BUILT_SOURCES are built first
84#------------------------------------------------------------------------
Reid Spencer07a549a2004-12-16 07:15:16 +000085$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000086
87clean-local::
88ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +000089 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000090endif
91
Reid Spencer11fde542005-01-16 02:20:54 +000092ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer31f95242004-12-16 08:00:46 +000093spotless:
Reid Spencer31f95242004-12-16 08:00:46 +000094 $(Verb) if test -x config.status ; then \
Reid Spencer11fde542005-01-16 02:20:54 +000095 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +000096 $(MKDIR) .spotless.save ; \
97 $(MV) config.status .spotless.save ; \
98 $(MV) mklib .spotless.save ; \
99 $(MV) projects .spotless.save ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000100 $(RM) -rf * ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000101 $(MV) .spotless.save/config.status . ; \
102 $(MV) .spotless.save/mklib . ; \
103 $(MV) .spotless.save/projects . ; \
104 $(RM) -rf .spotless.save ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000105 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000106 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
107 $(ConfigStatusScript) ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000108 else \
Reid Spencer11fde542005-01-16 02:20:54 +0000109 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer31f95242004-12-16 08:00:46 +0000110 fi
Reid Spencer25e8a702005-12-21 23:17:06 +0000111else
112spotless:
113 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer31f95242004-12-16 08:00:46 +0000114endif
115
Reid Spencercc2d1e22004-10-30 09:19:36 +0000116$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencer80f0ef72004-10-28 00:41:43 +0000117
Reid Spencer9411c642004-10-26 22:26:33 +0000118#------------------------------------------------------------------------
119# Make sure we're not using a stale configuration
120#------------------------------------------------------------------------
Reid Spencerc3719842004-12-16 18:26:53 +0000121reconfigure:
Reid Spencer11fde542005-01-16 02:20:54 +0000122 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
123 $(Verb) cd $(PROJ_OBJ_ROOT) && \
124 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
125 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000126 fi ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000127 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
128 $(ConfigStatusScript)
129
Reid Spencercc2d1e22004-10-30 09:19:36 +0000130.PRECIOUS: $(ConfigStatusScript)
131$(ConfigStatusScript): $(ConfigureScript)
132 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000133 $(Verb) cd $(PROJ_OBJ_ROOT) && \
134 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
135 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000136 fi ; \
Reid Spencer7d277002004-11-29 12:37:44 +0000137 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
138 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000139
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000140#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000141# Make sure the configuration makefile is up to date
142#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000143ifneq ($(MakefileConfigIn),)
144$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000145 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000146 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
147endif
148
149ifneq ($(MakefileCommonIn),)
150$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
151 $(Echo) Regenerating $@
152 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
153endif
Reid Spencer9411c642004-10-26 22:26:33 +0000154
155#------------------------------------------------------------------------
156# If the Makefile in the source tree has been updated, copy it over into the
157# build tree. But, only do this if the source and object makefiles differ
158#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000159ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000160
Reid Spencer11fde542005-01-16 02:20:54 +0000161Makefile: $(PROJ_SRC_DIR)/Makefile
Reid Spencercc2d1e22004-10-30 09:19:36 +0000162 $(Echo) "Updating Makefile"
163 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000164 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000165
166# Copy the Makefile.* files unless we're in the root directory which avoids
167# the copying of Makefile.config.in or other things that should be explicitly
168# taken care of.
Reid Spencer11fde542005-01-16 02:20:54 +0000169$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
Reid Spencer86606782004-10-26 23:10:00 +0000170 @case '$?' in \
171 *Makefile.rules) ;; \
172 *.in) ;; \
Reid Spencercc2d1e22004-10-30 09:19:36 +0000173 *) $(Echo) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000174 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000175 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000176 esac
177
Reid Spencer9411c642004-10-26 22:26:33 +0000178endif
179
180#------------------------------------------------------------------------
181# Set up the basic dependencies
182#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000183$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000184
185all:: all-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000186clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000187clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000188install:: install-local
189uninstall:: uninstall-local
Reid Spencer9411c642004-10-26 22:26:33 +0000190install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000191install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000192
193###############################################################################
194# VARIABLES: Set up various variables based on configuration data
195###############################################################################
196
197#--------------------------------------------------------------------
198# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000199#--------------------------------------------------------------------
200
Chris Lattnerd63b9642006-05-24 23:02:40 +0000201# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
202# this can be overridden on the make command line.
Reid Spencer48fdf912006-06-01 19:03:21 +0000203ifneq ($(OS),MingW)
204 OPTIMIZE_OPTION := -O3
205else
206 OPTIMIZE_OPTION := -O2
207endif
Chris Lattnerd63b9642006-05-24 23:02:40 +0000208
Chris Lattner760da062003-03-14 20:25:22 +0000209ifdef ENABLE_PROFILING
Reid Spencer9af3b292004-11-01 07:50:27 +0000210 BuildMode := Profile
Chris Lattner041572f2006-07-11 18:33:50 +0000211 CXX.Flags := $(OPTIMIZE_OPTION) -pg -g
212 C.Flags := $(OPTIMIZE_OPTION) -pg -g
213 LD.Flags := $(OPTIMIZE_OPTION) -pg -g
Chris Lattner760da062003-03-14 20:25:22 +0000214else
215 ifdef ENABLE_OPTIMIZED
Reid Spencer9af3b292004-11-01 07:50:27 +0000216 BuildMode := Release
Chris Lattner16620fc2006-07-27 18:19:51 +0000217 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Reid Spencer325a87e2005-01-02 17:43:20 +0000218 ifneq ($(OS),FreeBSD)
Chris Lattnere5aa8f32006-05-24 18:34:08 +0000219 ifneq ($(OS),Darwin)
Reid Spencer325a87e2005-01-02 17:43:20 +0000220 OmitFramePointer := -fomit-frame-pointer
221 endif
Chris Lattnere5aa8f32006-05-24 18:34:08 +0000222 endif
Chris Lattner16620fc2006-07-27 18:19:51 +0000223
224 # Darwin requires -fstrict-aliasing to be explicitly enabled.
225 ifeq ($(OS),Darwin)
226 EXTRA_OPTIONS += -fstrict-aliasing
227 endif
228
Chris Lattnerd63b9642006-05-24 23:02:40 +0000229 CXX.Flags := $(OPTIMIZE_OPTION) $(OmitFramePointer)
230 C.Flags := $(OPTIMIZE_OPTION) $(OmitFramePointer)
231 LD.Flags := $(OPTIMIZE_OPTION)
Chris Lattner760da062003-03-14 20:25:22 +0000232 else
Reid Spencer9af3b292004-11-01 07:50:27 +0000233 BuildMode := Debug
Chris Lattner71927862006-03-21 01:06:41 +0000234 CXX.Flags := -g
235 C.Flags := -g
Evan Cheng11bcd752006-07-21 23:06:51 +0000236 LD.Flags := -g
Reid Spencer4d71b662004-10-22 21:01:56 +0000237 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000238 endif
239endif
240
Reid Spencer99655e12006-08-25 19:54:53 +0000241# IF REQUIRES_EH=1 is specified then don't disable exceptions
242#ifndef REQUIRES_EH
243# CXX.Flags += -fno-exceptions
244#endif
245
Reid Spencer854071c2006-04-10 16:46:04 +0000246# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
247# then disable assertions by defining the appropriate preprocessor symbols.
Reid Spencerf9f431c2006-04-09 23:41:14 +0000248ifdef DISABLE_ASSERTIONS
Reid Spencerbac3ca22006-04-07 16:06:18 +0000249 BuildMode := $(BuildMode)-Asserts
Chris Lattner71927862006-03-21 01:06:41 +0000250 CXX.Flags += -DNDEBUG
251 C.Flags += -DNDEBUG
Reid Spencerf9f431c2006-04-09 23:41:14 +0000252else
253 CXX.Flags += -D_DEBUG
254 C.Flags += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000255endif
256
Reid Spencerf2722ca2006-03-22 15:59:55 +0000257CXX.Flags += $(CXXFLAGS)
258C.Flags += $(CFLAGS)
259CPP.BaseFlags += $(CPPFLAGS)
260LD.Flags += $(LDFLAGS)
261AR.Flags := cru
Reid Spencercc2d1e22004-10-30 09:19:36 +0000262LibTool.Flags := --tag=CXX
Reid Spencer3a561f52004-10-23 20:04:14 +0000263
Chris Lattner16620fc2006-07-27 18:19:51 +0000264# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000265ifeq ($(ARCH),Alpha)
Andrew Lenharth74bda2e2006-07-20 17:27:58 +0000266 CXX.Flags += -mieee -fPIC
267 CPP.BaseFlags += -mieee -fPIC
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000268endif
269
Reid Spencer3a561f52004-10-23 20:04:14 +0000270#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000271# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000272#--------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000273ObjDir := $(PROJ_OBJ_DIR)/$(BuildMode)
274LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
275ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
276ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
Reid Spencer815cbcf2004-11-18 10:03:46 +0000277LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
Reid Spencer9a5acaf2004-11-18 20:04:39 +0000278LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
Reid Spencer775bf892004-12-28 07:59:22 +0000279LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Reid Spencer2f138e72004-12-22 05:57:21 +0000280CFERuntimeLibDir := $(LLVMGCCDIR)/lib
John Criswell7a73b802003-06-30 21:59:07 +0000281
Reid Spencer3a561f52004-10-23 20:04:14 +0000282#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000283# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000284#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000285EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
286Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000287ifndef LIBTOOL
Reid Spencer4d71b662004-10-22 21:01:56 +0000288LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
Reid Spencercc2d1e22004-10-30 09:19:36 +0000289endif
290ifndef LLVMAS
291LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
292endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000293ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000294 ifeq ($(LLVM_CROSS_COMPILING),1)
295 TBLGEN := $(LLVMToolDir)/tblgen$(BUILD_EXEEXT)
296 else
297 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
298 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000299endif
Chris Lattner478b3b42004-11-29 19:47:58 +0000300ifndef GCCAS
301GCCAS := $(LLVMToolDir)/gccas$(EXEEXT)
302endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000303ifndef GCCLD
304GCCLD := $(LLVMToolDir)/gccld$(EXEEXT)
305endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000306ifndef LDIS
307LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
308endif
309ifndef LLI
310LLI := $(LLVMToolDir)/lli$(EXEEXT)
311endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000312ifndef LLC
313LLC := $(LLVMToolDir)/llc$(EXEEXT)
314endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000315ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000316LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000317endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000318ifndef LBUGPOINT
319LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
320endif
321
John Criswellf5629d02005-01-03 17:42:57 +0000322LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
323LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000324
Reid Spencer3a561f52004-10-23 20:04:14 +0000325#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000326# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000327#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000328
Reid Spencer492c2932005-01-11 04:31:07 +0000329# Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
330# to be built. Note that if LOADABLE_MODULE is specified then the resulting
Reid Spencer42fe4552006-08-07 23:12:15 +0000331# shared library can be opened with dlopen. Also, LOADABLE_MODULE implies
332# several other things so we force them to be defined/on.
333ifdef LOADABLE_MODULE
334 SHARED_LIBRARY := 1
335 DONT_BUILD_RELINKED := 1
336 LINK_LIBS_IN_SHARED := 1
337 LD.Flags += -module
338endif
339
Reid Spencer492c2932005-01-11 04:31:07 +0000340ifdef SHARED_LIBRARY
Reid Spencercc2d1e22004-10-30 09:19:36 +0000341 LD.Flags += -rpath $(LibDir)
Reid Spencer492c2932005-01-11 04:31:07 +0000342else
343 LibTool.Flags += --tag=disable-shared
John Criswell82f4a5a2003-07-31 20:58:51 +0000344endif
345
Reid Spencercceed9f2004-11-08 17:32:12 +0000346ifdef TOOL_VERBOSE
347 C.Flags += -v
348 CXX.Flags += -v
349 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000350 VERBOSE := 1
351endif
352
Reid Spencer3a561f52004-10-23 20:04:14 +0000353# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000354ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000355 Verb := @
356 LibTool.Flags += --silent
357 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000358 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000359else
Reid Spencercc2d1e22004-10-30 09:19:36 +0000360 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000361endif
362
Vikram S. Advefeeae582002-09-18 11:55:13 +0000363# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000364ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000365 Strip := $(PLATFORMSTRIPOPTS)
366 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000367 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000368endif
369
Reid Spencer3a561f52004-10-23 20:04:14 +0000370# Adjust linker flags for building an executable
Reid Spencer4d71b662004-10-22 21:01:56 +0000371ifdef TOOLNAME
Reid Spencer815cbcf2004-11-18 10:03:46 +0000372ifdef EXAMPLE_TOOL
373 LD.Flags += -rpath $(ExmplDir) -export-dynamic
374else
Reid Spencercc2d1e22004-10-30 09:19:36 +0000375 LD.Flags += -rpath $(ToolDir) -export-dynamic
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000376endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000377endif
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000378
Reid Spencer3a561f52004-10-23 20:04:14 +0000379#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000380# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000381#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000382
Reid Spencer72f42bb2006-06-01 01:55:21 +0000383CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused -Wno-long-long \
Evan Cheng6cee0332006-06-20 18:50:48 +0000384 -pedantic $(EXTRA_OPTIONS)
Reid Spencer4d71b662004-10-22 21:01:56 +0000385
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000386ifeq ($(OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000387 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000388endif
389
Chris Lattner73faa392006-05-30 16:38:06 +0000390# If we are building a universal binary on Mac OS/X, pass extra options. This
391# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000392# apps.
393#
394# The following can be optionally specified:
395# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
396# For Mac OS/X 10.4 Intel machines, the traditional one is:
397# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
398# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
399# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
400# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000401ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000402 ifndef UNIVERSAL_ARCH
403 UNIVERSAL_ARCH := i386 ppc
404 endif
405 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
406 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
407 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
Chris Lattnerf988e532006-06-16 21:47:59 +0000408 ifdef UNIVERSAL_SDK_PATH
409 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
410 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
411 endif
412
413 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000414 DISABLE_AUTO_DEPENDENCIES=1
415endif
416
Reid Spencerf2722ca2006-03-22 15:59:55 +0000417LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
418CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
419# All -I flags should go here, so that they don't confuse llvm-config.
420CPP.Flags += -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
421 -I$(PROJ_OBJ_ROOT)/include \
422 -I$(PROJ_SRC_ROOT)/include \
423 -I$(LLVM_OBJ_ROOT)/include \
424 -I$(LLVM_SRC_ROOT)/include \
425 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000426
Reid Spencercc2d1e22004-10-30 09:19:36 +0000427Compile.C = $(CC) $(CPP.Flags) $(CompileCommonOpts) -c $(C.Flags)
428LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
Reid Spencer2f138e72004-12-22 05:57:21 +0000429BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
Chris Lattner89681112006-01-27 22:13:12 +0000430 $(C.Flags)
Chris Lattner0cb09f12005-10-05 00:28:41 +0000431Preprocess.C = $(CC) $(CPP.Flags) $(CompileCommonOpts) -E $(C.Flags)
432
Reid Spencercc2d1e22004-10-30 09:19:36 +0000433Compile.CXX = $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -c
434LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
Reid Spencerbc52ad72004-12-24 14:47:34 +0000435BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
Chris Lattner89681112006-01-27 22:13:12 +0000436 $(CXX.Flags)
Chris Lattner0cb09f12005-10-05 00:28:41 +0000437Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
Reid Spencer42fe4552006-08-07 23:12:15 +0000438Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
439 $(LD.Flags) $(Strip)
440LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
441Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
442 $(Relink.Flags)
443LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
Reid Spencer1a9a69c2005-02-16 16:13:02 +0000444LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
445 $(Install.Flags)
Reid Spencer860598a2005-02-24 07:12:43 +0000446ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
Reid Spencerf2722ca2006-03-22 15:59:55 +0000447ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000448DataInstall = $(INSTALL) -m 0644
Vladimir Pruse438c2a2006-05-16 06:39:36 +0000449TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include \
450 -I $(PROJ_SRC_ROOT)/lib/Target
Reid Spencercc2d1e22004-10-30 09:19:36 +0000451Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000452LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000453ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000454Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000455else
Reid Spencer3a561f52004-10-23 20:04:14 +0000456Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000457endif
458
Chris Lattner00950542001-06-06 20:29:01 +0000459#----------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +0000460# Get the list of source files and compute object file
461# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000462#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000463
464ifndef SOURCES
465 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
466 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
467 $(PROJ_SRC_DIR)/*.l))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000468else
Chris Lattner89681112006-01-27 22:13:12 +0000469 Sources := $(SOURCES)
470endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000471
Chris Lattner89681112006-01-27 22:13:12 +0000472ifdef BUILT_SOURCES
473Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000474endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000475
Chris Lattner89681112006-01-27 22:13:12 +0000476BaseNameSources := $(sort $(basename $(Sources)))
477
478ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
479ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
480ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
481
Reid Spencer3a561f52004-10-23 20:04:14 +0000482###############################################################################
483# DIRECTORIES: Handle recursive descent of directory structure
484###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000485
Chris Lattner00950542001-06-06 20:29:01 +0000486#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000487# Provide rules to make install dirs. This must be early
488# in the file so they get built before dependencies
489#---------------------------------------------------------
490
Reid Spenceraa8bc432005-05-19 20:26:14 +0000491$(PROJ_bindir): $(PROJ_bindir)/.dir
492$(PROJ_libdir): $(PROJ_libdir)/.dir
493$(PROJ_includedir): $(PROJ_includedir)/.dir
494$(PROJ_etcdir): $(PROJ_etcdir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000495
Reid Spencercc2d1e22004-10-30 09:19:36 +0000496# To create other directories, as needed, and timestamp their creation
497%/.dir:
498 $(Verb) $(MKDIR) $* > /dev/null
Reid Spencerfbbf3072004-11-29 05:00:33 +0000499 $(Verb) $(DATE) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000500
Reid Spencer815cbcf2004-11-18 10:03:46 +0000501.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
502.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000503
504#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000505# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000506#---------------------------------------------------------
507
Reid Spencercc2d1e22004-10-30 09:19:36 +0000508SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000509ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000510SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000511
512ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000513$(RecursiveTargets)::
514 $(Verb) for dir in $(DIRS); do \
Reid Spencer4d71b662004-10-22 21:01:56 +0000515 if [ ! -f $$dir/Makefile ]; then \
516 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000517 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000518 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000519 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000520 done
Chris Lattner82033602006-07-26 20:22:26 +0000521else
522$(RecursiveTargets)::
523 $(Verb) for dir in $(DIRS); do \
524 ($(MAKE) -C $$dir $@ ) || exit 1; \
525 done
526endif
527
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000528endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000529
Reid Spencer3a561f52004-10-23 20:04:14 +0000530#---------------------------------------------------------
531# Handle the EXPERIMENTAL_DIRS options ensuring success
532# after each directory is built.
533#---------------------------------------------------------
534ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000535$(RecursiveTargets)::
536 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Reid Spencer3a561f52004-10-23 20:04:14 +0000537 if [ ! -f $$dir/Makefile ]; then \
538 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000539 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000540 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000541 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000542 done
543endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000544
Reid Spencer25e8a702005-12-21 23:17:06 +0000545#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000546# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000547#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000548ifdef PARALLEL_DIRS
549
Reid Spencercc2d1e22004-10-30 09:19:36 +0000550SubDirs += $(PARALLEL_DIRS)
551
Reid Spencer44cb1b32004-12-03 20:08:48 +0000552# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000553all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
554clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000555clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000556install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000557uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000558install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000559
Reid Spencer345235ca2004-12-04 22:34:09 +0000560ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000561
Reid Spencer345235ca2004-12-04 22:34:09 +0000562$(ParallelTargets) :
Reid Spencercc2d1e22004-10-30 09:19:36 +0000563 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000564 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000565 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000566 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000567 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) ;
Chris Lattner00950542001-06-06 20:29:01 +0000568endif
569
Reid Spencer3a561f52004-10-23 20:04:14 +0000570#---------------------------------------------------------
571# Handle the OPTIONAL_DIRS options for directores that may
572# or may not exist.
573#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000574ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000575
Reid Spencercc2d1e22004-10-30 09:19:36 +0000576SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000577
Chris Lattner82033602006-07-26 20:22:26 +0000578ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000579$(RecursiveTargets)::
580 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000581 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Reid Spencer4d71b662004-10-22 21:01:56 +0000582 if [ ! -f $$dir/Makefile ]; then \
583 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000584 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000585 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000586 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000587 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000588 done
Chris Lattner82033602006-07-26 20:22:26 +0000589else
590$(RecursiveTargets)::
591 $(Verb) for dir in $(OPTIONAL_DIRS); do \
592 ($(MAKE) -C$$dir $@ ) || exit 1; \
593 done
594endif
John Criswell2a6530f2003-06-27 16:58:44 +0000595endif
596
Reid Spencerfc945082004-08-20 09:20:05 +0000597#---------------------------------------------------------
598# Handle the CONFIG_FILES options
599#---------------------------------------------------------
600ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000601
Reid Spencer11fde542005-01-16 02:20:54 +0000602install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
603 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000604 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000605 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Reid Spencer4a0aaea2005-02-24 03:56:32 +0000606 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000607 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Reid Spencer4a0aaea2005-02-24 03:56:32 +0000608 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000609 else \
610 $(ECHO) Error: cannot find config file $${file}. ; \
611 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000612 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000613
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000614uninstall-local::
Reid Spencer11fde542005-01-16 02:20:54 +0000615 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000616 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000617 $(RM) -f $(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000618 done
619
Reid Spencerfc945082004-08-20 09:20:05 +0000620endif
621
Reid Spencer3a561f52004-10-23 20:04:14 +0000622###############################################################################
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000623# Set up variables for building libararies
624###############################################################################
625
626#---------------------------------------------------------
627# Handle the special "JIT" value for LLVM_LIBS which is a
628# shorthand for a bunch of libraries that get the correct
629# JIT support for a library or a tool that runs JIT.
630#---------------------------------------------------------
Reid Spencer205b02e2006-03-24 07:36:57 +0000631ifeq ($(firstword $(LLVMLIBS)),config)
632LLVM_CONFIG := $(LLVM_SRC_ROOT)/utils/llvm-config/llvm-config
Reid Spencerbac3ca22006-04-07 16:06:18 +0000633LLVMLIBS := $(shell $(LLVM_CONFIG) --libnames $(wordlist 2,9999,$(LLVMLIBS)))
634LLVMLIBS := $(patsubst lib%.a,%.a,$(LLVMLIBS))
Reid Spencer205b02e2006-03-24 07:36:57 +0000635LLVMLIBS := $(patsubst %.o,%,$(LLVMLIBS))
Reid Spencer205b02e2006-03-24 07:36:57 +0000636endif
637
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000638ifeq ($(LLVMLIBS),JIT)
639
640# Make sure we can get our own symbols in the tool
641Link += -dlopen self
642
643# Generic JIT libraries
Devang Patel2ebc1f82006-07-21 19:44:55 +0000644JIT_LIBS := LLVMInterpreter LLVMJIT LLVMSelectionDAG.a LLVMCodeGen.a \
645 LLVMExecutionEngine
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000646
647# You can enable the X86 JIT on a non-X86 host by setting the flag
648# ENABLE_X86_JIT on the make command line. If not, it will still be
649# enabled automagically on an X86 host.
650ifeq ($(ARCH), x86)
651 ENABLE_X86_JIT = 1
652endif
653
654# What the X86 JIT requires
655ifdef ENABLE_X86_JIT
Devang Patel2ebc1f82006-07-21 19:44:55 +0000656 JIT_LIBS += LLVMX86
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000657endif
658
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000659# You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
660# ENABLE_PPC_JIT on the make command line. If not, it will still be
661# enabled automagically on an PowerPC host.
662ifeq ($(ARCH), PowerPC)
663 ENABLE_PPC_JIT = 1
664endif
665
666# What the PowerPC JIT requires
667ifdef ENABLE_PPC_JIT
Devang Patel2ebc1f82006-07-21 19:44:55 +0000668 JIT_LIBS += LLVMPowerPC
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000669endif
670
Andrew Lenharthddc31e82005-07-22 20:54:01 +0000671# You can enable the Alpha JIT on a non-Alpha host by setting the flag
672# ENABLE_ALPHA_JIT on the make command line. If not, it will still be
Misha Brukmanab25eda2005-07-22 22:43:40 +0000673# enabled automagically on an Alpha host.
Andrew Lenharthddc31e82005-07-22 20:54:01 +0000674ifeq ($(ARCH), Alpha)
675 ENABLE_ALPHA_JIT = 1
676endif
677
Andrew Lenharth22894e92005-07-22 22:00:24 +0000678# What the Alpha JIT requires
Andrew Lenharthddc31e82005-07-22 20:54:01 +0000679ifdef ENABLE_ALPHA_JIT
Devang Patel2ebc1f82006-07-21 19:44:55 +0000680 JIT_LIBS += LLVMAlpha
Andrew Lenharthddc31e82005-07-22 20:54:01 +0000681endif
682
John Criswella1156432005-10-27 15:54:34 +0000683LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts.a LLVMTransformUtils.a LLVMAnalysis.a \
Reid Spencer18c8b492006-06-01 01:30:27 +0000684 LLVMBCReader.a LLVMTarget.a LLVMCore.a LLVMSupport.a LLVMbzip2.a \
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000685 LLVMSystem.a $(PLATFORMLIBDL)
686endif
687
688#---------------------------------------------------------
689# Define various command line options pertaining to the
690# libraries needed when linking. There are "Proj" libs
691# (defined by the user's project) and "LLVM" libs (defined
692# by the # LLVM project).
693#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000694
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000695ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
696ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
697LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
698LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
699ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
700LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
701ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
702LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
703
704###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000705# Library Build Rules: Four ways to build a library
706###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000707
Reid Spencer7980ea42004-12-05 05:17:22 +0000708#---------------------------------------------------------
709# Bytecode Module Targets:
710# If the user set MODULE_NAME then they want to build a
711# bytecode module from the sources. We compile all the
712# sources and link it together into a single bytecode
713# module.
714#---------------------------------------------------------
715
716ifdef MODULE_NAME
Reid Spencer9a8398e2005-02-14 21:54:08 +0000717ifeq ($(strip $(LLVMGCC)),)
Reid Spencer0d255bd2005-05-13 18:32:54 +0000718$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +0000719else
Reid Spencer7980ea42004-12-05 05:17:22 +0000720
721Module := $(LibDir)/$(MODULE_NAME).bc
Reid Spencerbbd5e432006-04-12 18:21:35 +0000722LinkModule := $(GCCLD) -L$(CFERuntimeLibDir)
723
Reid Spencer7980ea42004-12-05 05:17:22 +0000724
725ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +0000726LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +0000727endif
728
729$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +0000730 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +0000731 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
732
733all-local:: $(Module)
734
735clean-local::
736ifneq ($(strip $(Module)),)
737 -$(Verb) $(RM) -f $(Module)
738endif
739
Reid Spencerab3690b2004-12-13 07:38:07 +0000740ifdef BYTECODE_DESTINATION
741ModuleDestDir := $(BYTECODE_DESTINATION)
742else
Reid Spencer11fde542005-01-16 02:20:54 +0000743ModuleDestDir := $(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +0000744endif
Reid Spencer7980ea42004-12-05 05:17:22 +0000745
Reid Spencerab3690b2004-12-13 07:38:07 +0000746DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
747
748install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +0000749install-local:: $(DestModule)
750
Reid Spencerab3690b2004-12-13 07:38:07 +0000751$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +0000752 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +0000753 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +0000754
755uninstall-local::
756 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
757 -$(Verb) $(RM) -f $(DestModule)
758
759endif
Reid Spencer9a8398e2005-02-14 21:54:08 +0000760endif
Brian Gaeke8abff792004-01-22 22:53:48 +0000761
Reid Spencer3a561f52004-10-23 20:04:14 +0000762# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +0000763ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000764
Chris Lattner2a548c52002-09-16 22:36:42 +0000765# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000766LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +0000767ifdef LOADABLE_MODULE
768LibName.LA := $(LibDir)/$(LIBRARYNAME).la
769else
Reid Spencercc2d1e22004-10-30 09:19:36 +0000770LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
Reid Spencer492c2932005-01-11 04:31:07 +0000771endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000772LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
773LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +0000774LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000775
Reid Spencer3a561f52004-10-23 20:04:14 +0000776#---------------------------------------------------------
777# Shared Library Targets:
778# If the user asked for a shared library to be built
779# with the SHARED_LIBRARY variable, then we provide
780# targets for building them.
781#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000782ifdef SHARED_LIBRARY
783
Reid Spencercc2d1e22004-10-30 09:19:36 +0000784all-local:: $(LibName.LA)
Reid Spencer4d71b662004-10-22 21:01:56 +0000785
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000786ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +0000787ifdef LOADABLE_MODULE
788SharedLibKindMessage := "Lodable Module"
789else
790SharedLibKindMessage := "Shared Library"
791endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000792$(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +0000793 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
794 $(LIBRARYNAME)$(SHLIBEXT)
795 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
796 $(LLVMLibsOptions)
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000797 $(Verb) $(LTInstall) $@ $(LibDir)
798else
Reid Spencerf2ac1892004-12-16 07:36:08 +0000799$(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +0000800 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer42fe4552006-08-07 23:12:15 +0000801 $(Verb) $(LTLink) -o $@ $(ObjectsLO)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000802 $(Verb) $(LTInstall) $@ $(LibDir)
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000803endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000804
805clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +0000806ifneq ($(strip $(LibName.LA)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000807 -$(Verb) $(RM) -f $(LibName.LA)
Reid Spencere5487ba2004-10-24 07:53:21 +0000808endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000809
Reid Spencer11fde542005-01-16 02:20:54 +0000810DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer4d71b662004-10-22 21:01:56 +0000811
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000812install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000813
Reid Spencer11fde542005-01-16 02:20:54 +0000814$(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
Reid Spencer9af3b292004-11-01 07:50:27 +0000815 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000816 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
Reid Spencer11fde542005-01-16 02:20:54 +0000817 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
Reid Spencere5487ba2004-10-24 07:53:21 +0000818
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000819uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +0000820 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Reid Spencer11fde542005-01-16 02:20:54 +0000821 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
Reid Spencere5487ba2004-10-24 07:53:21 +0000822
Reid Spencer4d71b662004-10-22 21:01:56 +0000823endif
824
Reid Spencer3a561f52004-10-23 20:04:14 +0000825#---------------------------------------------------------
826# Bytecode Library Targets:
827# If the user asked for a bytecode library to be built
828# with the BYTECODE_LIBRARY variable, then we provide
829# targets for building them.
830#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000831ifdef BYTECODE_LIBRARY
Reid Spencer9a8398e2005-02-14 21:54:08 +0000832ifeq ($(strip $(LLVMGCC)),)
Reid Spencer0d255bd2005-05-13 18:32:54 +0000833$(warning Bytecode libraries require llvm-gcc which could not be found ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +0000834else
Reid Spencer4d71b662004-10-22 21:01:56 +0000835
Reid Spencer9a2f1372004-12-02 09:28:21 +0000836all-local:: $(LibName.BCA)
837
838ifdef EXPORTED_SYMBOL_FILE
Chris Lattner73faa392006-05-30 16:38:06 +0000839BCLinkLib = $(GCCLD) -L$(CFERuntimeLibDir) \
840 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000841
Reid Spencerf2ac1892004-12-16 07:36:08 +0000842$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(GCCLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +0000843 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +0000844 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
845 "(internalize)"
Chris Lattnerb0ea8642004-12-02 21:23:43 +0000846 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +0000847 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +0000848 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
Reid Spencer4d71b662004-10-22 21:01:56 +0000849else
Reid Spencerf2ac1892004-12-16 07:36:08 +0000850$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +0000851 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +0000852 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +0000853 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +0000854 $(Verb) $(LArchive) $@ $(ObjectsBC)
855
Reid Spencer4d71b662004-10-22 21:01:56 +0000856endif
857
Reid Spencer3a561f52004-10-23 20:04:14 +0000858clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +0000859ifneq ($(strip $(LibName.BCA)),)
860 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +0000861endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000862
Reid Spencer8f094f32004-12-13 07:28:21 +0000863ifdef BYTECODE_DESTINATION
864BytecodeDestDir := $(BYTECODE_DESTINATION)
865else
Reid Spencer11fde542005-01-16 02:20:54 +0000866BytecodeDestDir := $(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +0000867endif
868
869DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
Reid Spencer9a2f1372004-12-02 09:28:21 +0000870
Reid Spencer44cb1b32004-12-03 20:08:48 +0000871install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +0000872
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000873install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +0000874
Reid Spencer8f094f32004-12-13 07:28:21 +0000875$(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000876 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +0000877 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000878
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000879uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +0000880 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000881 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencer4d71b662004-10-22 21:01:56 +0000882
883endif
Reid Spencer9a8398e2005-02-14 21:54:08 +0000884endif
Vikram S. Adve60f56062002-08-02 18:34:12 +0000885
Reid Spencercc2d1e22004-10-30 09:19:36 +0000886#---------------------------------------------------------
887# ReLinked Library Targets:
Chris Lattner89938082005-10-24 02:21:45 +0000888# If the user explicitly requests a relinked library with
889# BUILD_RELINKED, provide it. Otherwise, if they specify
890# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
891# them one.
Reid Spencercc2d1e22004-10-30 09:19:36 +0000892#---------------------------------------------------------
Chris Lattner89938082005-10-24 02:21:45 +0000893ifndef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +0000894ifndef DONT_BUILD_RELINKED
Chris Lattner89938082005-10-24 02:21:45 +0000895BUILD_RELINKED = 1
896endif
897endif
898
899ifdef BUILD_RELINKED
Reid Spencer4d71b662004-10-22 21:01:56 +0000900
Reid Spencercc2d1e22004-10-30 09:19:36 +0000901all-local:: $(LibName.O)
902
Reid Spencerf2ac1892004-12-16 07:36:08 +0000903$(LibName.O): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +0000904 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
Reid Spencer42fe4552006-08-07 23:12:15 +0000905 $(Verb) $(LTRelink) -o $@ $(ObjectsO)
Reid Spencer4d71b662004-10-22 21:01:56 +0000906
Reid Spencer3a561f52004-10-23 20:04:14 +0000907clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +0000908ifneq ($(strip $(LibName.O)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000909 -$(Verb) $(RM) -f $(LibName.O)
Reid Spencere5487ba2004-10-24 07:53:21 +0000910endif
911
Reid Spencer11fde542005-01-16 02:20:54 +0000912DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
Reid Spencere5487ba2004-10-24 07:53:21 +0000913
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000914install-local:: $(DestRelinkedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000915
Reid Spencer11fde542005-01-16 02:20:54 +0000916$(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
Reid Spencer9af3b292004-11-01 07:50:27 +0000917 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000918 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000919
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000920uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +0000921 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000922 -$(Verb) $(RM) -f $(DestRelinkedLib)
Reid Spencer4d71b662004-10-22 21:01:56 +0000923
Chris Lattnere62dbe92002-07-23 17:56:16 +0000924endif
Chris Lattner760da062003-03-14 20:25:22 +0000925
Reid Spencercc2d1e22004-10-30 09:19:36 +0000926#---------------------------------------------------------
927# Archive Library Targets:
928# If the user wanted a regular archive library built,
929# then we provide targets for building them.
930#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +0000931ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +0000932
Reid Spencercc2d1e22004-10-30 09:19:36 +0000933all-local:: $(LibName.A)
934
Reid Spencerf2ac1892004-12-16 07:36:08 +0000935$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +0000936 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000937 -$(Verb) $(RM) -f $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000938 $(Verb) $(Archive) $@ $(ObjectsO)
939 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +0000940
Reid Spencer3a561f52004-10-23 20:04:14 +0000941clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +0000942ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000943 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +0000944endif
945
Reid Spencer11fde542005-01-16 02:20:54 +0000946DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +0000947
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000948install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000949
Reid Spencer11fde542005-01-16 02:20:54 +0000950$(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
Reid Spencer9af3b292004-11-01 07:50:27 +0000951 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencer11fde542005-01-16 02:20:54 +0000952 $(Verb) $(MKDIR) $(PROJ_libdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000953 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000954
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000955uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +0000956 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000957 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +0000958
959endif
960
961# endif LIBRARYNAME
Reid Spencer4d71b662004-10-22 21:01:56 +0000962endif
963
Reid Spencerb1dd3dd2004-10-24 08:21:04 +0000964###############################################################################
965# Tool Build Rules: Build executable tool based on TOOLNAME option
966###############################################################################
967
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000968ifdef TOOLNAME
969
Reid Spencercc2d1e22004-10-30 09:19:36 +0000970#---------------------------------------------------------
971# Set up variables for building a tool.
972#---------------------------------------------------------
Reid Spencer815cbcf2004-11-18 10:03:46 +0000973ifdef EXAMPLE_TOOL
Reid Spencer5da2d082005-05-19 21:03:11 +0000974ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +0000975else
Reid Spencer5da2d082005-05-19 21:03:11 +0000976ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +0000977endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000978
Reid Spencercc2d1e22004-10-30 09:19:36 +0000979#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000980# Tell make that we need to rebuild subdirectories before
981# we can link the tool. This affects things like LLI which
982# has library subdirectories.
983#---------------------------------------------------------
984$(ToolBuildPath): $(addsuffix /.makeall, $(PARALLEL_DIRS))
Chris Lattner8d7dfb32003-01-22 16:13:31 +0000985
Reid Spencercc2d1e22004-10-30 09:19:36 +0000986#---------------------------------------------------------
987# Provide targets for building the tools
988#---------------------------------------------------------
989all-local:: $(ToolBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +0000990
Reid Spencer3a561f52004-10-23 20:04:14 +0000991clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +0000992ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000993 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +0000994endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +0000995
Reid Spencer815cbcf2004-11-18 10:03:46 +0000996ifdef EXAMPLE_TOOL
997$(ToolBuildPath): $(ExmplDir)/.dir
998else
999$(ToolBuildPath): $(ToolDir)/.dir
1000endif
1001
Reid Spencerf2ac1892004-12-16 07:36:08 +00001002$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001003 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Reid Spencer42fe4552006-08-07 23:12:15 +00001004 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001005 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001006 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1007 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001008
Reid Spencer11fde542005-01-16 02:20:54 +00001009DestTool = $(PROJ_bindir)/$(TOOLNAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001010
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001011install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001012
Reid Spencer11fde542005-01-16 02:20:54 +00001013$(DestTool): $(PROJ_bindir) $(ToolBuildPath)
Reid Spencer9af3b292004-11-01 07:50:27 +00001014 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001015 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001016
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001017uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001018 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001019 -$(Verb) $(RM) -f $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001020
Reid Spencer4d71b662004-10-22 21:01:56 +00001021endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001022
Reid Spencercc2d1e22004-10-30 09:19:36 +00001023###############################################################################
1024# Object Build Rules: Build object files based on sources
1025###############################################################################
1026
Duraid Madina197ab872006-02-15 03:23:26 +00001027# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1028ifeq ($(OS),HP-UX)
1029 DISABLE_AUTO_DEPENDENCIES=1
1030endif
1031
Chris Lattnerd92490f2006-06-21 20:58:03 +00001032ifdef SHARED_LIBRARY
1033PIC_FLAG = "(PIC)"
1034MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1035MAYBE_PIC_Compile.C = $(LTCompile.C)
1036else
1037MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1038MAYBE_PIC_Compile.C = $(Compile.C)
1039endif
1040
Reid Spencercc2d1e22004-10-30 09:19:36 +00001041# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001042ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001043
Reid Spencercc2d1e22004-10-30 09:19:36 +00001044#---------------------------------------------------------
1045# Create .lo files in the ObjDir directory from the .cpp and .c files...
1046#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001047
Chris Lattner3c473472004-12-16 17:28:50 +00001048$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001049 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1050 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1051 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1052 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
Reid Spencer3a561f52004-10-23 20:04:14 +00001053
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001054$(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001055 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1056 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001057 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1058 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1059
Chris Lattner3c473472004-12-16 17:28:50 +00001060$(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001061 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1062 $(Verb) if $(MAYBE_PIC_Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001063 then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
1064 else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
Reid Spencer3a561f52004-10-23 20:04:14 +00001065
Reid Spencercc2d1e22004-10-30 09:19:36 +00001066#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001067# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001068#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001069
1070$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Reid Spencer9af3b292004-11-01 07:50:27 +00001071 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattnerd25ad612006-02-14 04:25:54 +00001072 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1073 $< -o $@ -S -emit-llvm ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001074 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1075 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Reid Spencer4d71b662004-10-22 21:01:56 +00001076
Chris Lattner89681112006-01-27 22:13:12 +00001077$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001078 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattnerd25ad612006-02-14 04:25:54 +00001079 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1080 $< -o $@ -S -emit-llvm ; \
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001081 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1082 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1083
Chris Lattner89681112006-01-27 22:13:12 +00001084$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Reid Spencer9af3b292004-11-01 07:50:27 +00001085 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattnerd25ad612006-02-14 04:25:54 +00001086 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1087 $< -o $@ -S -emit-llvm ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001088 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1089 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
Reid Spencer4d71b662004-10-22 21:01:56 +00001090
Reid Spencercc2d1e22004-10-30 09:19:36 +00001091# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001092else
1093
Chris Lattner3c473472004-12-16 17:28:50 +00001094$(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001095 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1096 $(MAYBE_PIC_Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001097
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001098$(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001099 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1100 $(MAYBE_PIC_Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001101
Chris Lattner3c473472004-12-16 17:28:50 +00001102$(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001103 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1104 $(MAYBE_PIC_Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001105
Chris Lattner89681112006-01-27 22:13:12 +00001106$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Reid Spencer9af3b292004-11-01 07:50:27 +00001107 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001108 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Reid Spencer4d71b662004-10-22 21:01:56 +00001109
Chris Lattner89681112006-01-27 22:13:12 +00001110$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001111 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001112 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001113
Chris Lattner89681112006-01-27 22:13:12 +00001114$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Reid Spencer9af3b292004-11-01 07:50:27 +00001115 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001116 $(BCCompile.C) $< -o $@ -S -emit-llvm
Brian Gaeke44909cf2003-12-10 00:26:28 +00001117
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001118endif
1119
Chris Lattner8eb12de2006-06-21 21:01:20 +00001120
1121## Rules for building preprocessed (.i/.ii) outputs.
1122$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1123 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1124 $(Verb) $(Preprocess.CXX) $< -o $@
1125
1126$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1127 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1128 $(Verb) $(Preprocess.CXX) $< -o $@
1129
1130 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1131 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1132 $(Verb) $(Preprocess.C) $< -o $@
1133
1134
1135$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1136 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1137 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1138
1139$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1140 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1141 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1142
1143$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1144 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1145 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1146
1147
Chris Lattner89681112006-01-27 22:13:12 +00001148# make the C and C++ compilers strip debug info out of bytecode libraries.
1149ifdef DEBUG_RUNTIME
1150$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1151 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Chris Lattnerc0977982006-03-09 06:00:05 +00001152 $(Verb) $(GCCAS) $< -o $@
Chris Lattner89681112006-01-27 22:13:12 +00001153else
1154$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1155 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Chris Lattnerc0977982006-03-09 06:00:05 +00001156 $(Verb) $(GCCAS) -strip-debug $< -o $@
Chris Lattner89681112006-01-27 22:13:12 +00001157endif
1158
1159
Reid Spencercc2d1e22004-10-30 09:19:36 +00001160#---------------------------------------------------------
1161# Provide rule to build .bc files from .ll sources,
1162# regardless of dependencies
1163#---------------------------------------------------------
1164$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001165 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001166 $(Verb) $(LLVMAS) $< -f -o $@
1167
1168###############################################################################
1169# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1170###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001171
Reid Spencer4d71b662004-10-22 21:01:56 +00001172ifdef TARGET
1173
Chris Lattnerd25ad612006-02-14 04:25:54 +00001174TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1175 $(LLVM_SRC_ROOT)/lib/Target/Target.td \
Chris Lattnercb3fc532006-03-03 01:54:54 +00001176 $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td \
1177 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001178INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001179INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1180.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001181
Chris Lattner3c473472004-12-16 17:28:50 +00001182# All of these files depend on tblgen and the .td files.
1183$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001184
Chris Lattner23ee7952004-12-16 17:38:56 +00001185# INCFiles rule: All of the tblgen generated files are emitted to
1186# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1187# us to only "touch" the real file if the contents of it change. IOW, if
1188# tblgen is modified, all of the .inc.tmp files are regereated, but no
1189# dependencies of the .inc files are, unless the contents of the .inc file
1190# changes.
1191$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001192 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001193
1194$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1195$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001196 $(Echo) "Building $(<F) register names with tblgen"
1197 $(Verb) $(TableGen) -gen-register-enums -o $@ $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001198
Chris Lattner3c473472004-12-16 17:28:50 +00001199$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1200$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001201 $(Echo) "Building $(<F) register information header with tblgen"
1202 $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001203
Chris Lattner3c473472004-12-16 17:28:50 +00001204$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1205$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001206 $(Echo) "Building $(<F) register info implementation with tblgen"
1207 $(Verb) $(TableGen) -gen-register-desc -o $@ $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001208
Chris Lattner3c473472004-12-16 17:28:50 +00001209$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1210$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001211 $(Echo) "Building $(<F) instruction names with tblgen"
1212 $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001213
Chris Lattner3c473472004-12-16 17:28:50 +00001214$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1215$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001216 $(Echo) "Building $(<F) instruction information with tblgen"
1217 $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001218
Chris Lattner3c473472004-12-16 17:28:50 +00001219$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1220$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001221 $(Echo) "Building $(<F) assembly writer with tblgen"
1222 $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001223
Chris Lattner02a4f902004-12-16 17:34:04 +00001224$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1225$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1226 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001227 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001228
Chris Lattner3c473472004-12-16 17:28:50 +00001229$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1230$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001231 $(Echo) "Building $(<F) code emitter with tblgen"
1232 $(Verb) $(TableGen) -gen-emitter -o $@ $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001233
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001234$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1235$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1236 $(Echo) "Building $(<F) instruction selector implementation with tblgen"
1237 $(Verb) $(TableGen) -gen-dag-isel -o $@ $<
1238
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001239$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1240$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1241 $(Echo) "Building $(<F) subtarget information with tblgen"
1242 $(Verb) $(TableGen) -gen-subtarget -o $@ $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001243
Reid Spencer3a561f52004-10-23 20:04:14 +00001244clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001245 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001246
1247endif
Chris Lattner481cc7c2003-08-15 02:18:35 +00001248
Reid Spencercc2d1e22004-10-30 09:19:36 +00001249###############################################################################
1250# LEX AND YACC: Provide rules for generating sources with lex and yacc
1251###############################################################################
Chris Lattnere8996782003-01-16 22:44:19 +00001252
Reid Spencercc2d1e22004-10-30 09:19:36 +00001253#---------------------------------------------------------
1254# Provide rules for generating a .cpp source file from
1255# (f)lex input sources.
1256#---------------------------------------------------------
1257
Reid Spencer3d659492004-11-02 16:36:03 +00001258LexFiles := $(filter %.l,$(Sources))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001259
Reid Spencer3d659492004-11-02 16:36:03 +00001260ifneq ($(LexFiles),)
1261
Reid Spencer68a24bd2005-08-27 18:50:39 +00001262# Cancel built-in rules for lex
1263%.c: %.l
1264%.cpp: %.l
Reid Spencercc2d1e22004-10-30 09:19:36 +00001265
Chris Lattner342567c2006-02-14 05:12:00 +00001266all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1267
Reid Spencercc2d1e22004-10-30 09:19:36 +00001268# Note the extra sed filtering here, used to cut down on the warnings emited
1269# by GCC. The last line is a gross hack to work around flex aparently not
1270# being able to resize the buffer on a large token input. Currently, for
1271# uninitialized string buffers in LLVM we can generate very long tokens, so
1272# this is a hack around it.
Chris Lattnerb7dc2b92003-08-15 20:00:47 +00001273# FIXME. (f.e. char Buffer[10000] )
Reid Spencer68a24bd2005-08-27 18:50:39 +00001274$(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
Reid Spencerc2ef8cd2004-12-10 19:44:16 +00001275 $(Echo) Flexing $*.l
Reid Spencer68a24bd2005-08-27 18:50:39 +00001276 $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
Reid Spencer4d71b662004-10-22 21:01:56 +00001277 $(SED) 's/void yyunput/inline void yyunput/' | \
1278 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1279 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
Reid Spencer68a24bd2005-08-27 18:50:39 +00001280 > $(PROJ_SRC_DIR)/$*.cpp
Chris Lattner342567c2006-02-14 05:12:00 +00001281
1282# IFF the .l file has changed since it was last checked into CVS, copy the .l
1283# file to .l.cvs and the generated .cpp file to .cpp.cvs. We use this mechanism
1284# so that people without flex can build LLVM by copying the .cvs files to the
1285# source location and building them.
1286$(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1287$(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
Chris Lattneraf2f3512006-02-16 05:10:48 +00001288 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
Chris Lattner342567c2006-02-14 05:12:00 +00001289 ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
Reid Spencer68a24bd2005-08-27 18:50:39 +00001290
Chris Lattner342567c2006-02-14 05:12:00 +00001291$(LexFiles:%.l=$(ObjDir)/%.o) : \
1292$(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
Chris Lattner00950542001-06-06 20:29:01 +00001293
Reid Spencer9af3b292004-11-01 07:50:27 +00001294clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001295 -$(Verb) $(RM) -f $(LexOutput)
Reid Spencer9af3b292004-11-01 07:50:27 +00001296
Reid Spencercc2d1e22004-10-30 09:19:36 +00001297endif
1298
1299#---------------------------------------------------------
1300# Provide rules for generating a .cpp and .h source files
1301# from yacc (bison) input sources.
1302#---------------------------------------------------------
1303
Reid Spencer3d659492004-11-02 16:36:03 +00001304YaccFiles := $(filter %.y,$(Sources))
1305ifneq ($(YaccFiles),)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001306
1307.PRECIOUS: $(YaccOutput)
1308
Chris Lattner1f1edce2006-02-15 07:23:05 +00001309all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
Chris Lattner6599c752006-02-15 07:16:57 +00001310
Reid Spencercc2d1e22004-10-30 09:19:36 +00001311# Cancel built-in rules for yacc
1312%.c: %.y
1313%.cpp: %.y
1314%.h: %.y
1315
Reid Spencer25e8a702005-12-21 23:17:06 +00001316# Rule for building the bison based parsers...
Reid Spencer68a24bd2005-08-27 18:50:39 +00001317$(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
Reid Spencer4869d7f2006-08-24 22:41:20 +00001318ifneq ($(BISON),)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001319 $(Echo) "Bisoning $*.y"
Reid Spencer68a24bd2005-08-27 18:50:39 +00001320 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1321 $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1322 $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
Reid Spencer4869d7f2006-08-24 22:41:20 +00001323else
1324 $(Echo) "Bison of $*.y SKIPPED -- bison not found"
1325endif
Chris Lattner00950542001-06-06 20:29:01 +00001326
Chris Lattner6599c752006-02-15 07:16:57 +00001327# IFF the .y file has changed since it was last checked into CVS, copy the .y
1328# file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs. We use this
1329# mechanism so that people without flex can build LLVM by copying the .cvs files
1330# to the source location and building them.
1331$(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1332$(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
Chris Lattneraf2f3512006-02-16 05:10:48 +00001333 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
Chris Lattner6599c752006-02-15 07:16:57 +00001334 ($(CP) $< $@; \
Chris Lattner1f1edce2006-02-15 07:23:05 +00001335 $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
Chris Lattner6599c752006-02-15 07:16:57 +00001336 $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
Reid Spencer25e8a702005-12-21 23:17:06 +00001337
Chris Lattner6599c752006-02-15 07:16:57 +00001338
1339$(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1340
1341YaccOutput := $(YaccFiles:%.y=%.output)
Reid Spencer25e8a702005-12-21 23:17:06 +00001342
Reid Spencer9af3b292004-11-01 07:50:27 +00001343clean-local::
Reid Spencer25e8a702005-12-21 23:17:06 +00001344 -$(Verb) $(RM) -f $(YaccOutput)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001345endif
Chris Lattner00950542001-06-06 20:29:01 +00001346
Reid Spencercc2d1e22004-10-30 09:19:36 +00001347###############################################################################
1348# OTHER RULES: Other rules needed
1349###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001350
Chris Lattner30440c62003-01-16 21:06:18 +00001351# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001352ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001353%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001354 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001355else
1356%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001357 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001358endif
Chris Lattner30440c62003-01-16 21:06:18 +00001359
John Criswell7f336952003-09-06 14:44:17 +00001360# This rules ensures that header files that are removed still have a rule for
1361# which they can be "generated." This allows make to ignore them and
1362# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001363%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001364%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001365
Reid Spencercc2d1e22004-10-30 09:19:36 +00001366# Define clean-local to clean the current directory. Note that this uses a
1367# very conservative approach ensuring that empty variables do not cause
1368# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001369clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001370ifneq ($(strip $(ObjDir)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001371 -$(Verb) $(RM) -rf $(ObjDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001372endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001373 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001374ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001375 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001376endif
John Criswell7a73b802003-06-30 21:59:07 +00001377
Reid Spencer3d659492004-11-02 16:36:03 +00001378clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001379 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001380
Reid Spencercc2d1e22004-10-30 09:19:36 +00001381# Build tags database for Emacs/Xemacs:
Reid Spencer12d79512004-11-12 02:27:36 +00001382tags:: TAGS CTAGS
1383
Reid Spencercc2d1e22004-10-30 09:19:36 +00001384TAGS:
Reid Spencer11fde542005-01-16 02:20:54 +00001385 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1386 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1387 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1388 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
Reid Spencer12d79512004-11-12 02:27:36 +00001389 -name '*.cpp' -o -name '*.h' | \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001390 $(ETAGS) $(ETAGSFLAGS) -
1391
Reid Spencer12d79512004-11-12 02:27:36 +00001392CTAGS:
Reid Spencer11fde542005-01-16 02:20:54 +00001393 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1394 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1395 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1396 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
Reid Spencer12d79512004-11-12 02:27:36 +00001397 \( -name '*.cpp' -o -name '*.h' \) -print | \
Reid Spencer11fde542005-01-16 02:20:54 +00001398 ctags -ImtT -o $(PROJ_OBJ_ROOT)/CTAGS -L -
Reid Spencer12d79512004-11-12 02:27:36 +00001399
1400
Reid Spencer3a561f52004-10-23 20:04:14 +00001401###############################################################################
1402# DEPENDENCIES: Include the dependency files if we should
1403###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001404ifndef DISABLE_AUTO_DEPENDENCIES
1405
Reid Spencer3a561f52004-10-23 20:04:14 +00001406# If its not one of the cleaning targets
Reid Spencercc2d1e22004-10-30 09:19:36 +00001407ifneq ($strip($(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
Reid Spencer4d71b662004-10-22 21:01:56 +00001408
Reid Spencer3a561f52004-10-23 20:04:14 +00001409# Get the list of dependency files
Reid Spencercc2d1e22004-10-30 09:19:36 +00001410DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
Chris Lattner342567c2006-02-14 05:12:00 +00001411DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001412
Reid Spencer3a561f52004-10-23 20:04:14 +00001413-include /dev/null $(DependFiles)
1414
John Criswelld741bcf2003-08-12 18:51:51 +00001415endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001416
Reid Spencercc2d1e22004-10-30 09:19:36 +00001417endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001418
Reid Spencer151f8ba2004-10-25 08:27:37 +00001419###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001420# CHECK: Running the test suite
1421###############################################################################
1422
1423check::
Reid Spencer11fde542005-01-16 02:20:54 +00001424 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1425 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001426 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001427 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001428 TESTSUITE=$(TESTSUITE) ; \
1429 else \
1430 $(EchoCmd) No Makefile in test directory ; \
1431 fi ; \
1432 else \
1433 $(EchoCmd) No test directory ; \
1434 fi
1435
1436###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001437# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001438###############################################################################
1439
Reid Spencere45ebfa2004-10-26 07:09:33 +00001440#------------------------------------------------------------------------
1441# Define distribution related variables
1442#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001443DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1444DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1445TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1446DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1447DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1448DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001449DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1450 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001451 Makefile.config.in configure autoconf
1452DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001453 $(PROJ_SRC_DIR)/*.h \
1454 $(PROJ_SRC_DIR)/*.td \
1455 $(PROJ_SRC_DIR)/*.def \
1456 $(PROJ_SRC_DIR)/*.ll \
1457 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001458DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001459DistSources = $(Sources) $(EXTRA_DIST)
1460DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001461
Reid Spencere45ebfa2004-10-26 07:09:33 +00001462#------------------------------------------------------------------------
1463# We MUST build distribution with OBJ_DIR != SRC_DIR
1464#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001465ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001466dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001467 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001468
Reid Spencere45ebfa2004-10-26 07:09:33 +00001469else
1470
Reid Spencere45ebfa2004-10-26 07:09:33 +00001471#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001472# Prevent attempt to run dist targets from anywhere but the top level
1473#------------------------------------------------------------------------
1474ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001475dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001476 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001477else
1478
1479#------------------------------------------------------------------------
1480# Provide the top level targets
1481#------------------------------------------------------------------------
1482
Reid Spencercc2d1e22004-10-30 09:19:36 +00001483dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001484
Reid Spencer345235ca2004-12-04 22:34:09 +00001485$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001486 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001487 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001488 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001489
Reid Spencercc2d1e22004-10-30 09:19:36 +00001490dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001491
Reid Spencer345235ca2004-12-04 22:34:09 +00001492$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001493 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001494 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001495 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001496
Reid Spencercc2d1e22004-10-30 09:19:36 +00001497dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001498
Reid Spencer345235ca2004-12-04 22:34:09 +00001499$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001500 $(Echo) Packing zipped distribution file.
1501 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00001502 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001503
1504dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001505 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001506
Reid Spencerf8f57402005-01-28 19:52:32 +00001507DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00001508
Reid Spencer345235ca2004-12-04 22:34:09 +00001509dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001510 $(Echo) Checking distribution tar file.
1511 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001512 $(RM) -rf $(DistCheckDir) ; \
1513 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00001514 $(Verb) $(MKDIR) $(DistCheckDir)
1515 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001516 $(MKDIR) $(DistCheckDir)/build && \
1517 $(MKDIR) $(DistCheckDir)/install && \
1518 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1519 cd build && \
1520 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00001521 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00001522 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001523 $(MAKE) check && \
1524 $(MAKE) install && \
1525 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001526 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001527 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001528
1529dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001530 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00001531 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1532 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001533
1534endif
1535
1536#------------------------------------------------------------------------
1537# Provide the recursive distdir target for building the distribution directory
1538#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00001539distdir: $(DistDir)/.makedistdir
1540$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001541 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001542 if test -d "$(DistDir)" ; then \
1543 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1544 exit 1 ; \
1545 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001546 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001547 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001548 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00001549 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001550 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00001551 $(Echo) Building Distribution Directory $(DistDir)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001552 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00001553 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1554 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001555 for file in $(DistFiles) ; do \
1556 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00001557 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001558 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1559 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00001560 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001561 file=`echo "$$file" | \
1562 sed "s#^$$srcrootstrip/##"` \
1563 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001564 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00001565 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1566 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1567 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001568 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001569 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001570 fi ; \
1571 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001572 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1573 to_dir="$(DistDir)/$$dir"; \
1574 $(MKDIR) "$$to_dir" ; \
1575 else \
1576 to_dir="$(DistDir)"; \
1577 fi; \
1578 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1579 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001580 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001581 fi ; \
1582 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00001583 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1584 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001585 cd $(PROJ_SRC_DIR) ; \
1586 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1587 ( cd $$to_dir ; $(TAR) xf - ) ; \
1588 cd $(PROJ_OBJ_DIR) ; \
1589 else \
1590 cd $$from_dir ; \
1591 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1592 ( cd $$to_dir ; $(TAR) xf - ) ; \
1593 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001594 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001595 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001596 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001597 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001598 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001599 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00001600 $(EchoCmd) "===== WARNING: Distribution Source " \
1601 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001602 elif test "$(Verb)" != '@' ; then \
1603 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001604 fi; \
1605 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00001606 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001607 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001608 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001609 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00001610 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00001611 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001612 fi; \
1613 done
Reid Spencer345235ca2004-12-04 22:34:09 +00001614 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001615 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00001616 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1617 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00001618 $(MAKE) dist-hook ; \
1619 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1620 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1621 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1622 -o ! -type d ! -perm -444 -exec \
1623 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1624 || chmod -R a+r $(DistDir) ; \
1625 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00001626
Reid Spencercc2d1e22004-10-30 09:19:36 +00001627# This is invoked by distdir target, define it as a no-op to avoid errors if not
1628# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00001629dist-hook::
1630
Reid Spencere53e3972004-10-22 23:06:30 +00001631endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001632
1633###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00001634# TOP LEVEL - targets only to apply at the top level directory
1635###############################################################################
1636
1637ifeq ($(LEVEL),.)
1638
1639#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001640# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00001641#------------------------------------------------------------------------
1642install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001643 $(Echo) Installing include files
Reid Spencer11fde542005-01-16 02:20:54 +00001644 $(Verb) $(MKDIR) $(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001645 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00001646 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencer2edabc02005-02-16 15:54:03 +00001647 for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1648 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001649 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1650 if test \! -d "$$instdir" ; then \
1651 $(EchoCmd) Making install directory $$instdir ; \
1652 $(MKDIR) $$instdir ;\
1653 fi ; \
1654 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00001655 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00001656 fi
Reid Spencer443045a2005-12-23 22:27:56 +00001657ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001658 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00001659 cd $(PROJ_OBJ_ROOT)/include && \
Reid Spencer443045a2005-12-23 22:27:56 +00001660 for hdr in `find . -type f -print | grep -v CVS` ; do \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001661 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00001662 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001663 fi
Reid Spencer443045a2005-12-23 22:27:56 +00001664endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001665
1666uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001667 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00001668 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1669 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00001670 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerd25ad612006-02-14 04:25:54 +00001671 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1672 -o -name '*.in' ')' -print ')' | \
1673 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001674 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00001675 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1676 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001677 fi
Reid Spencere5487ba2004-10-24 07:53:21 +00001678
Reid Spencere5487ba2004-10-24 07:53:21 +00001679endif
1680
Reid Spencer4d71b662004-10-22 21:01:56 +00001681#------------------------------------------------------------------------
1682# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00001683#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001684printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00001685 $(Echo) "BuildMode : " '$(BuildMode)'
1686 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1687 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1688 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1689 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1690 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1691 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1692 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1693 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1694 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1695 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00001696 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00001697 $(Echo) "UserTargets : " '$(UserTargets)'
1698 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1699 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1700 $(Echo) "ObjDir : " '$(ObjDir)'
1701 $(Echo) "LibDir : " '$(LibDir)'
1702 $(Echo) "ToolDir : " '$(ToolDir)'
1703 $(Echo) "ExmplDir : " '$(ExmplDir)'
1704 $(Echo) "Sources : " '$(Sources)'
1705 $(Echo) "TDFiles : " '$(TDFiles)'
1706 $(Echo) "INCFiles : " '$(INCFiles)'
1707 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00001708 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00001709 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1710 $(Echo) "Compile.C : " '$(Compile.C)'
1711 $(Echo) "Archive : " '$(Archive)'
1712 $(Echo) "YaccFiles : " '$(YaccFiles)'
1713 $(Echo) "LexFiles : " '$(LexFiles)'
1714 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00001715 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00001716 $(Echo) "SubDirs : " '$(SubDirs)'