blob: 5fc77a5e51014418f64d3f3b002db064ba40791a [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#
Chris Lattner57360d12007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Misha Brukmanef5dc702009-01-08 02:11:55 +00007#
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#--------------------------------------------------------------------
Daniel Dunbar7f068f42009-09-13 22:39:27 +000022RecursiveTargets := all clean clean-all install uninstall install-bytecode \
23 unitcheck
Reid Spencer9e8d54a2004-12-06 05:35:13 +000024LocalTargets := all-local clean-local clean-all-local check-local \
Reid Spencer44cb1b32004-12-03 20:08:48 +000025 install-local printvars uninstall-local \
Daniel Dunbar7f068f42009-09-13 22:39:27 +000026 install-bytecode-local
Chris Lattner72e46332007-09-26 06:10:47 +000027TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
Bill Wendling4113bd12009-01-04 23:12:21 +000028 dist-zip unittests
Reid Spencercc2d1e22004-10-30 09:19:36 +000029UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30InternalTargets := preconditions distdir dist-hook
Reid Spencer3a561f52004-10-23 20:04:14 +000031
Reid Spencercc2d1e22004-10-30 09:19:36 +000032################################################################################
Reid Spencer9411c642004-10-26 22:26:33 +000033# INITIALIZATION: Basic things the makefile needs
Reid Spencercc2d1e22004-10-30 09:19:36 +000034################################################################################
35
36#--------------------------------------------------------------------
37# Set the VPATH so that we can find source files.
38#--------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +000039VPATH=$(PROJ_SRC_DIR)
Reid Spencer9411c642004-10-26 22:26:33 +000040
41#--------------------------------------------------------------------
Reid Spencer1abd46d2007-06-29 14:02:07 +000042# Reset the list of suffixes we know how to build.
Reid Spencer9411c642004-10-26 22:26:33 +000043#--------------------------------------------------------------------
44.SUFFIXES:
Greg Clayton43bc79a2010-07-13 18:47:09 +000045.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll .m .mm
Reid Spencercc2d1e22004-10-30 09:19:36 +000046.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
Reid Spencer9411c642004-10-26 22:26:33 +000047
Reid Spencer3a561f52004-10-23 20:04:14 +000048#--------------------------------------------------------------------
49# Mark all of these targets as phony to avoid implicit rule search
50#--------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +000051.PHONY: $(UserTargets) $(InternalTargets)
Reid Spencer3a561f52004-10-23 20:04:14 +000052
53#--------------------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +000054# Make sure all the user-target rules are double colon rules and
Reid Spencer9411c642004-10-26 22:26:33 +000055# they are defined first.
Reid Spencer3a561f52004-10-23 20:04:14 +000056#--------------------------------------------------------------------
57
Reid Spencercc2d1e22004-10-30 09:19:36 +000058$(UserTargets)::
Reid Spencer151f8ba2004-10-25 08:27:37 +000059
Reid Spencer9411c642004-10-26 22:26:33 +000060################################################################################
61# PRECONDITIONS: that which must be built/checked first
62################################################################################
63
Reid Spencer44cb1b32004-12-03 20:08:48 +000064SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencer11fde542005-01-16 02:20:54 +000065 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
66ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
67ConfigureScript := $(PROJ_SRC_ROOT)/configure
68ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
69MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
70MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
71MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
72MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
73PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
74ifneq ($(MakefileCommonIn),)
75PreConditions += $(MakefileCommon)
76endif
Chris Lattner0a1db822006-09-04 05:23:20 +000077
Reid Spencer11fde542005-01-16 02:20:54 +000078ifneq ($(MakefileConfigIn),)
79PreConditions += $(MakefileConfig)
80endif
Reid Spencer9411c642004-10-26 22:26:33 +000081
Reid Spencerca739c62005-08-25 04:59:49 +000082preconditions: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +000083
84#------------------------------------------------------------------------
85# Make sure the BUILT_SOURCES are built first
86#------------------------------------------------------------------------
Reid Spencer07a549a2004-12-16 07:15:16 +000087$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000088
Reid Spencer9bb399c2007-02-07 19:13:19 +000089clean-all-local::
Reid Spencer9411c642004-10-26 22:26:33 +000090ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +000091 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000092endif
93
Reid Spencer11fde542005-01-16 02:20:54 +000094ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer31f95242004-12-16 08:00:46 +000095spotless:
Reid Spencer31f95242004-12-16 08:00:46 +000096 $(Verb) if test -x config.status ; then \
Reid Spencer11fde542005-01-16 02:20:54 +000097 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +000098 $(MKDIR) .spotless.save ; \
99 $(MV) config.status .spotless.save ; \
100 $(MV) mklib .spotless.save ; \
101 $(MV) projects .spotless.save ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000102 $(RM) -rf * ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000103 $(MV) .spotless.save/config.status . ; \
104 $(MV) .spotless.save/mklib . ; \
105 $(MV) .spotless.save/projects . ; \
106 $(RM) -rf .spotless.save ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000107 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000108 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109 $(ConfigStatusScript) ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000110 else \
Reid Spencer11fde542005-01-16 02:20:54 +0000111 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer31f95242004-12-16 08:00:46 +0000112 fi
Reid Spencer25e8a702005-12-21 23:17:06 +0000113else
114spotless:
115 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer31f95242004-12-16 08:00:46 +0000116endif
117
Reid Spencercc2d1e22004-10-30 09:19:36 +0000118$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencer80f0ef72004-10-28 00:41:43 +0000119
Reid Spencer9411c642004-10-26 22:26:33 +0000120#------------------------------------------------------------------------
121# Make sure we're not using a stale configuration
122#------------------------------------------------------------------------
Reid Spencerc3719842004-12-16 18:26:53 +0000123reconfigure:
Reid Spencer11fde542005-01-16 02:20:54 +0000124 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
125 $(Verb) cd $(PROJ_OBJ_ROOT) && \
126 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
127 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000128 fi ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000129 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130 $(ConfigStatusScript)
131
Reid Spencercc2d1e22004-10-30 09:19:36 +0000132.PRECIOUS: $(ConfigStatusScript)
Jim Grosbache5e2c412010-10-01 22:32:12 +0000133$(ConfigStatusScript): $(ConfigureScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000134 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000135 $(Verb) cd $(PROJ_OBJ_ROOT) && \
136 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
137 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000138 fi ; \
Reid Spencer7d277002004-11-29 12:37:44 +0000139 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
140 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000141
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000142#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000143# Make sure the configuration makefile is up to date
144#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000145ifneq ($(MakefileConfigIn),)
146$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000147 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000148 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
149endif
150
151ifneq ($(MakefileCommonIn),)
152$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
153 $(Echo) Regenerating $@
154 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
155endif
Reid Spencer9411c642004-10-26 22:26:33 +0000156
157#------------------------------------------------------------------------
158# If the Makefile in the source tree has been updated, copy it over into the
159# build tree. But, only do this if the source and object makefiles differ
160#------------------------------------------------------------------------
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000161ifndef PROJ_MAKEFILE
162PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
163endif
164
Reid Spencer11fde542005-01-16 02:20:54 +0000165ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000166
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000167Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000168 $(Echo) "Updating Makefile"
169 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000170 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000171
172# Copy the Makefile.* files unless we're in the root directory which avoids
173# the copying of Makefile.config.in or other things that should be explicitly
174# taken care of.
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000175$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
Reid Spencer86606782004-10-26 23:10:00 +0000176 @case '$?' in \
177 *Makefile.rules) ;; \
178 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000179 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000180 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000181 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000182 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000183
Reid Spencer9411c642004-10-26 22:26:33 +0000184endif
185
186#------------------------------------------------------------------------
187# Set up the basic dependencies
188#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000189$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000190
191all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000192clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000193clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000194install:: install-local
195uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000196install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000197install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000198
199###############################################################################
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +0000200# LLVMC: Provide rules for compiling llvmc-based driver
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000201###############################################################################
202
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000203ifdef LLVMC_BASED_DRIVER
204
205TOOLNAME = $(LLVMC_BASED_DRIVER)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000206
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +0000207LLVMLIBS = CompilerDriver.a
Charles Davis53ca1f32010-11-29 19:44:50 +0000208LINK_COMPONENTS = support
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000209
210endif # LLVMC_BASED_DRIVER
211
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000212###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000213# VARIABLES: Set up various variables based on configuration data
214###############################################################################
215
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000216# Variable for if this make is for a "cleaning" target
217ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
218 IS_CLEANING_TARGET=1
219endif
220
Reid Spencer3a561f52004-10-23 20:04:14 +0000221#--------------------------------------------------------------------
222# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000223#--------------------------------------------------------------------
224
Reid Spencer0a522b12007-07-10 07:19:53 +0000225CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000226ifeq ($(ENABLE_OPTIMIZED),1)
227 BuildMode := Release
228 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000229 ifneq ($(HOST_OS),FreeBSD)
230 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000231 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000232 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000233 endif
234
235 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000236 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
237 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000238 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000239 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
240 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000241 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
242 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
243 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000244 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000245 BuildMode := $(BuildMode)+Debug
246 CXX.Flags += -g
247 C.Flags += -g
248 LD.Flags += -g
249 KEEP_SYMBOLS := 1
250 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000251else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000252 ifdef NO_DEBUG_SYMBOLS
253 BuildMode := Unoptimized
254 CXX.Flags +=
255 C.Flags +=
256 LD.Flags +=
257 KEEP_SYMBOLS := 1
258 else
259 BuildMode := Debug
260 CXX.Flags += -g
261 C.Flags += -g
262 LD.Flags += -g
263 KEEP_SYMBOLS := 1
264 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000265endif
266
267ifeq ($(ENABLE_PROFILING),1)
268 BuildMode := $(BuildMode)+Profile
269 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
270 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
271 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
272 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000273endif
274
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000275#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
276# CXX.Flags += -fvisibility-inlines-hidden
277#endif
278
Chris Lattnerc96d5082010-01-24 20:20:40 +0000279ifdef ENABLE_EXPENSIVE_CHECKS
280 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
281 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
282 REQUIRES_RTTI := 1
283endif
284
Reid Spencer99655e12006-08-25 19:54:53 +0000285# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000286ifndef REQUIRES_EH
287 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000288else
289 # If the library requires EH, it also requires RTTI.
290 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000291endif
Reid Spencer99655e12006-08-25 19:54:53 +0000292
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000293ifdef REQUIRES_FRAME_POINTER
294 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
295 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
296 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
297endif
298
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000299# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000300ifneq ($(REQUIRES_RTTI), 1)
301 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000302endif
303
Peter Collingbourneed50d382010-10-22 12:54:34 +0000304ifeq ($(ENABLE_COVERAGE),1)
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000305 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000306 CXX.Flags += -ftest-coverage -fprofile-arcs
307 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000308endif
309
Reid Spencer854071c2006-04-10 16:46:04 +0000310# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
311# then disable assertions by defining the appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000312ifeq ($(DISABLE_ASSERTIONS),1)
313 CPP.Defines += -DNDEBUG
314else
Duncan Sands8246adc2010-07-07 07:48:00 +0000315 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000316 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000317endif
318
Misha Brukmanef5dc702009-01-08 02:11:55 +0000319# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
320# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000321# appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000322ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
David Greenea696d242007-06-28 19:36:08 +0000323 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000324 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000325endif
326
Nick Lewyckya15dc032009-02-26 07:44:16 +0000327# LOADABLE_MODULE implies several other things so we force them to be
328# defined/on.
329ifdef LOADABLE_MODULE
330 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000331 LINK_LIBS_IN_SHARED := 1
332endif
333
334ifdef SHARED_LIBRARY
335 ENABLE_PIC := 1
336 PIC_FLAG = "(PIC)"
337endif
338
Reid Spencer89b0d992006-12-16 22:07:52 +0000339ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000340 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000341 # Nothing. Win32 defaults to PIC and warns when given -fPIC
342 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000343 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000344 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000345 CXX.Flags += -fno-common
346 C.Flags += -fno-common
347 else
348 # Linux and others; pass -fPIC
349 CXX.Flags += -fPIC
350 C.Flags += -fPIC
351 endif
352 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000353else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000354 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000355 CXX.Flags += -mdynamic-no-pic
356 C.Flags += -mdynamic-no-pic
357 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000358endif
359
Daniel Dunbardd464df2010-05-10 20:11:56 +0000360# Support makefile variable to disable any kind of timestamp/non-deterministic
361# info from being used in the build.
362ifeq ($(ENABLE_TIMESTAMPS),1)
363 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
364else
365 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
366endif
367
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000368ifeq ($(HOST_OS),MingW)
369 # Work around PR4957
370 CPP.Defines += -D__NO_CTYPE_INLINE
371 ifeq ($(LLVM_CROSS_COMPILING),1)
372 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
373 ifdef TOOLNAME
374 LD.Flags += -Wl,--allow-multiple-definition
375 endif
376 endif
377endif
378
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000379CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000380CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000381AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000382
Chris Lattner16620fc2006-07-27 18:19:51 +0000383# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000384ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000385 CXX.Flags += -mieee
386 CPP.BaseFlags += -mieee
387ifeq ($(ENABLE_PIC),0)
388 CXX.Flags += -fPIC
389 CPP.BaseFlags += -fPIC
390endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000391
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000392 LD.Flags += -Wl,--no-relax
393endif
394
NAKAMURA Takumib9dec1f2010-11-26 09:32:02 +0000395# GNU ld/PECOFF accepts but ignores them below;
396# --version-script
397# --export-dynamic
398# --rpath
399# FIXME: autoconf should be aware of them.
400ifneq (,$(filter $(HOST_OS),Cygwin MingW))
401 HAVE_LINK_VERSION_SCRIPT := 0
402 RPATH :=
403 RDYNAMIC := -Wl,--export-all-symbols
404endif
405
Reid Spencer3a561f52004-10-23 20:04:14 +0000406#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000407# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000408#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000409TargetMode :=
410ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000411 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000412endif
413
414ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000415ObjDir := $(ObjRootDir)
416LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
417ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
418ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
419LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
420LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
421LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000422
Reid Spencer3a561f52004-10-23 20:04:14 +0000423#--------------------------------------------------------------------
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000424# Locations of shared libraries
425#--------------------------------------------------------------------
426
427SharedPrefix := lib
428SharedLibDir := $(LibDir)
429LLVMSharedLibDir := $(LLVMLibDir)
430
431# Win32.DLL prefers to be located on the "PATH" of binaries.
432ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
433 SharedLibDir := $(ToolDir)
434 LLVMSharedLibDir := $(LLVMToolDir)
435
436 ifeq ($(HOST_OS),Cygwin)
437 SharedPrefix := cyg
438 else
439 SharedPrefix :=
440 endif
441endif
442
443#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000444# LLVM Capable Compiler
445#--------------------------------------------------------------------
446
447ifeq ($(LLVMCC_OPTION),llvm-gcc)
448 LLVMCC := $(LLVMGCC)
449 LLVMCXX := $(LLVMGXX)
450else
451 ifeq ($(LLVMCC_OPTION),clang)
452 ifneq ($(CLANGPATH),)
453 LLVMCC := $(CLANGPATH)
454 LLVMCXX := $(CLANGXXPATH)
455 else
456 ifeq ($(ENABLE_BUILT_CLANG),1)
457 LLVMCC := $(LLVMToolDir)/clang
458 LLVMCXX := $(LLVMToolDir)/clang++
459 endif
460 endif
461 endif
462endif
463
464#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000465# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000466#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000467EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
468Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000469ifndef LLVMAS
470LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
471endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000472ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000473 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000474 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000475 else
476 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
477 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000478endif
Misha Brukmanef5dc702009-01-08 02:11:55 +0000479LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencer43eb96c2007-02-09 15:52:07 +0000480ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000481LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000482endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000483ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000484LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
485endif
486ifndef LLI
487LLI := $(LLVMToolDir)/lli$(EXEEXT)
488endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000489ifndef LLC
490LLC := $(LLVMToolDir)/llc$(EXEEXT)
491endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000492ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000493LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000494endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000495ifndef LBUGPOINT
496LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
497endif
Reid Spencere46687c2006-12-03 21:01:45 +0000498
Reid Spencer3a561f52004-10-23 20:04:14 +0000499#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000500# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000501#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000502
Anton Korobeynikove55db742009-08-18 00:40:33 +0000503ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000504 DARWIN_VERSION := `sw_vers -productVersion`
505 # Strip a number like 10.4.7 to 10.4
506 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
507 # Get "4" out of 10.4 for later pieces in the makefile.
508 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000509
Daniel Dunbar7bc0f272010-12-08 01:48:05 +0000510 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
511 SharedLinkOptions := -dynamiclib
Evan Chenga5e225e2009-09-08 18:52:20 +0000512 ifneq ($(ARCH),ARM)
513 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
514 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000515else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000516 SharedLinkOptions=-shared
Scott Michel87af5f02009-03-12 21:03:53 +0000517endif
518
Anton Korobeynikove55db742009-08-18 00:40:33 +0000519ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000520 ifneq ($(ARCH),ARM)
521 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
522 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000523endif
524
Reid Spencer492c2932005-01-11 04:31:07 +0000525ifdef SHARED_LIBRARY
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000526ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000527ifneq ($(HOST_OS),Darwin)
528 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
John Criswell82f4a5a2003-07-31 20:58:51 +0000529endif
Scott Michel87af5f02009-03-12 21:03:53 +0000530endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000531endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000532
Reid Spencercceed9f2004-11-08 17:32:12 +0000533ifdef TOOL_VERBOSE
534 C.Flags += -v
535 CXX.Flags += -v
536 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000537 VERBOSE := 1
538endif
539
Reid Spencer3a561f52004-10-23 20:04:14 +0000540# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000541ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000542 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000543 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000544 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000545else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000546 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000547endif
548
Vikram S. Advefeeae582002-09-18 11:55:13 +0000549# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000550ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000551 Strip := $(PLATFORMSTRIPOPTS)
552 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000553 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000554endif
555
Rafael Espindola31552a92010-10-15 00:58:12 +0000556ifdef TOOL_NO_EXPORTS
557 DynamicFlags :=
558else
559 DynamicFlag := $(RDYNAMIC)
560endif
561
Reid Spencer3a561f52004-10-23 20:04:14 +0000562# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000563ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
564ifneq ($(HOST_OS), Darwin)
Reid Spencer4d71b662004-10-22 21:01:56 +0000565ifdef TOOLNAME
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000566 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
567 ifdef EXAMPLE_TOOL
Rafael Espindola31552a92010-10-15 00:58:12 +0000568 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000569 else
Rafael Espindola31552a92010-10-15 00:58:12 +0000570 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000571 endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000572endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000573else
574ifneq ($(DARWIN_MAJVERS),4)
575 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
Nick Lewyckya15dc032009-02-26 07:44:16 +0000576endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000577endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000578endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000579
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000580
Reid Spencer3a561f52004-10-23 20:04:14 +0000581#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000582# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000583#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000584
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000585ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000586CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000587endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000588CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
589 $(EXTRA_OPTIONS)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000590# Enable cast-qual for C++; the workaround is to use const_cast.
591CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000592
Anton Korobeynikove55db742009-08-18 00:40:33 +0000593ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000594 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000595endif
596
Chris Lattner73faa392006-05-30 16:38:06 +0000597# If we are building a universal binary on Mac OS/X, pass extra options. This
598# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000599# apps.
600#
601# The following can be optionally specified:
602# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
603# For Mac OS/X 10.4 Intel machines, the traditional one is:
604# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
605# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
606# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
607# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000608ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000609 ifndef UNIVERSAL_ARCH
610 UNIVERSAL_ARCH := i386 ppc
611 endif
612 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
613 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000614 ifdef UNIVERSAL_SDK_PATH
615 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000616 endif
617
618 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000619 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000620else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000621 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000622 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000623 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000624 else
625 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000626 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000627 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000628 endif
629 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000630endif
631
Anton Korobeynikove55db742009-08-18 00:40:33 +0000632ifeq ($(HOST_OS),SunOS)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000633CPP.BaseFlags += -include llvm/Support/Solaris.h
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000634endif
635
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000636ifeq ($(HOST_OS),AuroraUX)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000637CPP.BaseFlags += -include llvm/Support/Solaris.h
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000638endif # !HOST_OS - AuroraUX.
639
Misha Brukmanef5dc702009-01-08 02:11:55 +0000640LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman63f97202008-10-17 01:33:43 +0000641CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000642# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000643CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
644 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000645 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
646 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
647 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000648
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000649ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000650 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000651 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000652 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
653 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000654 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000655 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000656 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000657 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
Eric Christopher9c932042011-03-07 04:25:12 +0000658 $(LD.Flags) $(LDFLAGS) \
659 $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000660else
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000661 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000662 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000663 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000664 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000665 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner6be92662009-06-16 23:00:42 +0000666 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher9c932042011-03-07 04:25:12 +0000667 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
668 $(LDFLAGS) $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000669endif
670
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000671BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000672 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000673Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000674 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000675
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000676BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000677 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000678
Misha Brukmanef5dc702009-01-08 02:11:55 +0000679ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
680ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000681DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000682
683# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
684# paths. In this case, the SYSPATH function (defined in
685# Makefile.config) transforms Unix paths into Windows paths.
686TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000687 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000688 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
689 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
690
Reid Spencercc2d1e22004-10-30 09:19:36 +0000691Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000692LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000693ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000694Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000695else
Reid Spencer3a561f52004-10-23 20:04:14 +0000696Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000697endif
698
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000699AliasTool = ln -s
700
Chris Lattner00950542001-06-06 20:29:01 +0000701#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000702# Get the list of source files and compute object file
703# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000704#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000705
706ifndef SOURCES
707 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000708 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000709else
Chris Lattner89681112006-01-27 22:13:12 +0000710 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000711endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000712
Chris Lattner89681112006-01-27 22:13:12 +0000713ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000714Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000715endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000716
Chris Lattner89681112006-01-27 22:13:12 +0000717BaseNameSources := $(sort $(basename $(Sources)))
718
719ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000720ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
721
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000722#----------------------------------------------------------
723# For Mingw MSYS bash and Python/w32:
724#
725# $(ECHOPATH) prints DOSish pathstring.
726# ex) $(ECHOPATH) /include/sys/types.h
727# --> C:/mingw/include/sys/types.h
728# built-in "echo" does not transform path to DOSish path.
729#
730# FIXME: It would not be needed when MSYS's python
731# were provided.
732#----------------------------------------------------------
733
734ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
735 ECHOPATH := $(Verb)python -u -c "import sys;print ' '.join(sys.argv[1:])"
736else
737 ECHOPATH := $(Verb)$(ECHO)
738endif
739
Reid Spencer3a561f52004-10-23 20:04:14 +0000740###############################################################################
741# DIRECTORIES: Handle recursive descent of directory structure
742###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000743
Chris Lattner00950542001-06-06 20:29:01 +0000744#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000745# Provide rules to make install dirs. This must be early
746# in the file so they get built before dependencies
747#---------------------------------------------------------
748
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000749$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000750 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000751
Reid Spencercc2d1e22004-10-30 09:19:36 +0000752# To create other directories, as needed, and timestamp their creation
753%/.dir:
754 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000755 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000756
Reid Spencer815cbcf2004-11-18 10:03:46 +0000757.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
758.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000759
760#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000761# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000762#---------------------------------------------------------
763
Misha Brukmanef5dc702009-01-08 02:11:55 +0000764SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000765ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000766SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000767
768ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000769$(RecursiveTargets)::
770 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000771 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000772 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000773 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000774 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000775 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000776 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000777 done
Chris Lattner82033602006-07-26 20:22:26 +0000778else
779$(RecursiveTargets)::
780 $(Verb) for dir in $(DIRS); do \
781 ($(MAKE) -C $$dir $@ ) || exit 1; \
782 done
783endif
784
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000785endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000786
Reid Spencer3a561f52004-10-23 20:04:14 +0000787#---------------------------------------------------------
788# Handle the EXPERIMENTAL_DIRS options ensuring success
789# after each directory is built.
790#---------------------------------------------------------
791ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000792$(RecursiveTargets)::
793 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000794 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000795 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000796 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000797 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000798 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000799 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000800 done
801endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000802
Reid Spencer25e8a702005-12-21 23:17:06 +0000803#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000804# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
805#-----------------------------------------------------------
806ifdef OPTIONAL_PARALLEL_DIRS
807 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
808endif
809
810#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000811# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000812#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000813ifdef PARALLEL_DIRS
814
Reid Spencercc2d1e22004-10-30 09:19:36 +0000815SubDirs += $(PARALLEL_DIRS)
816
Reid Spencer44cb1b32004-12-03 20:08:48 +0000817# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000818all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
819clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000820clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000821install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000822uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000823install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000824unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000825
Reid Spencer345235ca2004-12-04 22:34:09 +0000826ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000827
Reid Spencer345235ca2004-12-04 22:34:09 +0000828$(ParallelTargets) :
Daniel Dunbar546023f2010-06-08 20:10:13 +0000829 $(Verb) if ([ ! -f $(@D)/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000830 command test $(@D)/Makefile -ot \
Chris Lattner381cd022010-06-15 21:35:22 +0000831 $(PROJ_SRC_DIR)/$(@D)/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000832 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000833 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000834 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000835 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000836endif
837
Reid Spencer3a561f52004-10-23 20:04:14 +0000838#---------------------------------------------------------
839# Handle the OPTIONAL_DIRS options for directores that may
840# or may not exist.
841#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000842ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000843
Reid Spencercc2d1e22004-10-30 09:19:36 +0000844SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000845
Chris Lattner82033602006-07-26 20:22:26 +0000846ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000847$(RecursiveTargets)::
848 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000849 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000850 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000851 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000852 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000853 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000854 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000855 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000856 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000857 done
Chris Lattner82033602006-07-26 20:22:26 +0000858else
859$(RecursiveTargets)::
860 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Stephen Wilsonc1566322011-02-20 03:51:07 +0000861 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
862 ($(MAKE) -C$$dir $@ ) || exit 1; \
863 fi \
Chris Lattner82033602006-07-26 20:22:26 +0000864 done
865endif
John Criswell2a6530f2003-06-27 16:58:44 +0000866endif
867
Reid Spencerfc945082004-08-20 09:20:05 +0000868#---------------------------------------------------------
869# Handle the CONFIG_FILES options
870#---------------------------------------------------------
871ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000872
Reid Spencera2a31bf2007-02-06 18:53:14 +0000873ifdef NO_INSTALL
874install-local::
875 $(Echo) Install circumvented with NO_INSTALL
876uninstall-local::
877 $(Echo) UnInstall circumvented with NO_INSTALL
878else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000879install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
880 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000881 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000882 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000883 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000884 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000885 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000886 else \
887 $(ECHO) Error: cannot find config file $${file}. ; \
888 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000889 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000890
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000891uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000892 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000893 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000894 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000895 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000896endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000897
Reid Spencerfc945082004-08-20 09:20:05 +0000898endif
899
Reid Spencer3a561f52004-10-23 20:04:14 +0000900###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +0000901# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000902###############################################################################
903
904#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000905# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000906# libraries needed when linking. There are "Proj" libs
907# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000908# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000909#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000910
Chris Lattneref0d0f12006-09-04 04:47:21 +0000911ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000912ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
913ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000914ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
915ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
916endif
917
918ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000919LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
920LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000921LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000922LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000923endif
924
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000925# Loadable module for Win32 requires all symbols resolved for linking.
926# Then all symbols in LLVM.dll will be available.
927ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000928 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000929 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
930 LINK_COMPONENTS += all
931 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000932 endif
933endif
934
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000935ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000936ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000937
938# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
939# clean in tools, then do a make in tools (instead of at the top level).
940$(LLVM_CONFIG):
941 @echo "*** llvm-config doesn't exist - rebuilding it."
942 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000943
Chris Lattner0a1db822006-09-04 05:23:20 +0000944$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
945
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000946ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000947# We can take the "auto-import" feature to get rid of using dllimport.
948ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
949LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
950 -L $(SharedLibDir)
951endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000952LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000953LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000954else
Chris Lattnerf636aa92010-09-01 16:11:17 +0000955
956ifndef NO_LLVM_CONFIG
957LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
958ifeq ($(LLVMConfigLibs),Error)
959$(error llvm-config --libs failed)
960endif
961LLVMLibsOptions += $(LLVMConfigLibs)
962LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
963ifeq ($(LLVMConfigLibfiles),Error)
964$(error llvm-config --libfiles failed)
965endif
966LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
967endif
968
Chris Lattneref0d0f12006-09-04 04:47:21 +0000969endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000970endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000971endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000972
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000973# Set up the library exports file.
974ifdef EXPORTED_SYMBOL_FILE
975
976# First, set up the native export file, which may differ from the source
977# export file.
978
979ifeq ($(HOST_OS),Darwin)
980# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +0000981NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +0000982$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +0000983 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000984clean-local::
985 -$(Verb) $(RM) -f $(NativeExportsFile)
986else
Dan Gohmanda612d62010-06-01 14:56:56 +0000987ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
988# Gold and BFD ld require a version script rather than a plain list.
989NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
990$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
991 $(Verb) echo "{" > $@
992 $(Verb) grep -q "\<" $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +0000993 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +0000994ifneq ($(HOST_OS),OpenBSD)
Dan Gohmanda612d62010-06-01 14:56:56 +0000995 $(Verb) echo " local: *;" >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +0000996endif
Dan Gohmanda612d62010-06-01 14:56:56 +0000997 $(Verb) echo "};" >> $@
998clean-local::
999 -$(Verb) $(RM) -f $(NativeExportsFile)
1000else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001001ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +00001002# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001003NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001004$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1005 $(Echo) Generating $(notdir $@)
1006 $(Verb) $(ECHO) "EXPORTS" > $@
1007 $(Verb) $(CAT) $< >> $@
1008clean-local::
1009 -$(Verb) $(RM) -f $(NativeExportsFile)
1010else
Dan Gohman9a7570c2010-09-03 17:29:33 +00001011# Default behavior: just use the exports file verbatim.
1012NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1013endif
1014endif
1015endif
1016
1017# Now add the linker command-line options to use the native export file.
1018
1019# Darwin
1020ifeq ($(HOST_OS),Darwin)
1021LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1022endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001023
Dan Gohmane05f6092010-04-16 22:58:15 +00001024# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001025ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1026LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001027endif
1028
Dan Gohman9a7570c2010-09-03 17:29:33 +00001029# Windows
1030ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1031# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1032SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001033endif
1034
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001035endif
1036
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001037###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001038# Library Build Rules: Four ways to build a library
1039###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001040
Reid Spencer7980ea42004-12-05 05:17:22 +00001041#---------------------------------------------------------
1042# Bytecode Module Targets:
1043# If the user set MODULE_NAME then they want to build a
1044# bytecode module from the sources. We compile all the
1045# sources and link it together into a single bytecode
1046# module.
1047#---------------------------------------------------------
1048
1049ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001050ifeq ($(strip $(LLVMCC)),)
1051$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001052else
Reid Spencer7980ea42004-12-05 05:17:22 +00001053
1054Module := $(LibDir)/$(MODULE_NAME).bc
Daniel Dunbar112257d2010-02-23 09:28:50 +00001055LinkModule := $(LLVMLD) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +00001056
Reid Spencer7980ea42004-12-05 05:17:22 +00001057
1058ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001059LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001060endif
1061
Reid Spencer43eb96c2007-02-09 15:52:07 +00001062$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001063 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001064 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1065
1066all-local:: $(Module)
1067
1068clean-local::
1069ifneq ($(strip $(Module)),)
1070 -$(Verb) $(RM) -f $(Module)
1071endif
1072
Reid Spencerab3690b2004-12-13 07:38:07 +00001073ifdef BYTECODE_DESTINATION
1074ModuleDestDir := $(BYTECODE_DESTINATION)
1075else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001076ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001077endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001078
Reid Spencera2a31bf2007-02-06 18:53:14 +00001079ifdef NO_INSTALL
1080install-local::
1081 $(Echo) Install circumvented with NO_INSTALL
1082uninstall-local::
1083 $(Echo) Uninstall circumvented with NO_INSTALL
1084else
Reid Spencerab3690b2004-12-13 07:38:07 +00001085DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1086
1087install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001088install-local:: $(DestModule)
1089
Misha Brukmanef5dc702009-01-08 02:11:55 +00001090$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001091 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001092 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001093
1094uninstall-local::
1095 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1096 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001097endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001098
1099endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001100endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001101
Reid Spencer3a561f52004-10-23 20:04:14 +00001102# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001103ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001104
Misha Brukmanf547a122009-08-17 15:31:24 +00001105# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001106LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001107ifdef LOADABLE_MODULE
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001108BaseLibName.A := $(LIBRARYNAME).a
1109BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001110else
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001111BaseLibName.A := lib$(LIBRARYNAME).a
1112BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001113endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001114LibName.A := $(LibDir)/$(BaseLibName.A)
1115LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001116LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001117LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001118
Reid Spencer3a561f52004-10-23 20:04:14 +00001119#---------------------------------------------------------
1120# Shared Library Targets:
1121# If the user asked for a shared library to be built
1122# with the SHARED_LIBRARY variable, then we provide
1123# targets for building them.
1124#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001125ifdef SHARED_LIBRARY
1126
Nick Lewyckya15dc032009-02-26 07:44:16 +00001127all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001128
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001129ifdef EXPORTED_SYMBOL_FILE
1130$(LibName.SO): $(NativeExportsFile)
1131endif
1132
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001133ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001134ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001135SharedLibKindMessage := "Loadable Module"
Daniel Dunbar7bc0f272010-12-08 01:48:05 +00001136SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
Reid Spencer42fe4552006-08-07 23:12:15 +00001137else
1138SharedLibKindMessage := "Shared Library"
1139endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001140$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001141 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001142 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001143 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001144 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001145else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001146$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001147 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001148 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001149endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001150
1151clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001152ifneq ($(strip $(LibName.SO)),)
1153 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001154endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001155
Reid Spencera2a31bf2007-02-06 18:53:14 +00001156ifdef NO_INSTALL
1157install-local::
1158 $(Echo) Install circumvented with NO_INSTALL
1159uninstall-local::
1160 $(Echo) Uninstall circumvented with NO_INSTALL
1161else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001162
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001163# Win32.DLL prefers to be located on the "PATH" of binaries.
1164ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1165DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001166else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001167DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001168endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001169DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001170
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001171install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001172
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001173$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001174 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001175 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001176
Misha Brukmanef5dc702009-01-08 02:11:55 +00001177uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001178 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001179 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001180endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001181endif
1182
Reid Spencer3a561f52004-10-23 20:04:14 +00001183#---------------------------------------------------------
1184# Bytecode Library Targets:
1185# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001186# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001187# targets for building them.
1188#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001189ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001190ifeq ($(strip $(LLVMCC)),)
1191$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001192else
Reid Spencer4d71b662004-10-22 21:01:56 +00001193
Reid Spencer9a2f1372004-12-02 09:28:21 +00001194all-local:: $(LibName.BCA)
1195
1196ifdef EXPORTED_SYMBOL_FILE
Daniel Dunbar112257d2010-02-23 09:28:50 +00001197BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001198
Reid Spencer43eb96c2007-02-09 15:52:07 +00001199$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001200 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001201 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1202 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001203 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001204 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001205 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001206else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001207$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001208 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001209 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001210 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001211 $(Verb) $(LArchive) $@ $(ObjectsBC)
1212
Reid Spencer4d71b662004-10-22 21:01:56 +00001213endif
1214
Reid Spencer3a561f52004-10-23 20:04:14 +00001215clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001216ifneq ($(strip $(LibName.BCA)),)
1217 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001218endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001219
Reid Spencer8f094f32004-12-13 07:28:21 +00001220ifdef BYTECODE_DESTINATION
1221BytecodeDestDir := $(BYTECODE_DESTINATION)
1222else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001223BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001224endif
1225
Daniel Dunbard62031e2009-05-12 05:35:40 +00001226DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001227
Reid Spencer44cb1b32004-12-03 20:08:48 +00001228install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001229
Reid Spencera2a31bf2007-02-06 18:53:14 +00001230ifdef NO_INSTALL
1231install-local::
1232 $(Echo) Install circumvented with NO_INSTALL
1233uninstall-local::
1234 $(Echo) Uninstall circumvented with NO_INSTALL
1235else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001236install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001237
Mike Stumpb445d742009-02-12 23:45:11 +00001238$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001239 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001240 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001241
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001242uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001243 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001244 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001245endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001246endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001247endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001248
Reid Spencercc2d1e22004-10-30 09:19:36 +00001249#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001250# Library Targets:
1251# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1252# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001253#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001254ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001255ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001256ifndef LOADABLE_MODULE
1257BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001258endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001259endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001260endif
Chris Lattner760da062003-03-14 20:25:22 +00001261
Reid Spencercc2d1e22004-10-30 09:19:36 +00001262#---------------------------------------------------------
1263# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001264# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001265# then we provide targets for building them.
1266#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001267ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001268
Reid Spencercc2d1e22004-10-30 09:19:36 +00001269all-local:: $(LibName.A)
1270
Reid Spencerf2ac1892004-12-16 07:36:08 +00001271$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001272 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001273 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001274 $(Verb) $(Archive) $@ $(ObjectsO)
1275 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001276
Reid Spencer3a561f52004-10-23 20:04:14 +00001277clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001278ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001279 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001280endif
1281
Reid Spencera2a31bf2007-02-06 18:53:14 +00001282ifdef NO_INSTALL
1283install-local::
1284 $(Echo) Install circumvented with NO_INSTALL
1285uninstall-local::
1286 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001287else
1288ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001289install-local::
1290 $(Echo) Install circumvented with NO_INSTALL
1291uninstall-local::
1292 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001293else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001294DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001295
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001296install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001297
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001298$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001299 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001300 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001301 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001302
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001303uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001304 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001305 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001306endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001307endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001308endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001309
1310# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001311endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001312
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001313###############################################################################
1314# Tool Build Rules: Build executable tool based on TOOLNAME option
1315###############################################################################
1316
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001317ifdef TOOLNAME
1318
Reid Spencercc2d1e22004-10-30 09:19:36 +00001319#---------------------------------------------------------
1320# Set up variables for building a tool.
1321#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001322TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001323ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001324ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001325else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001326ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1327endif
1328
1329# TOOLALIAS is a name to symlink (or copy) the tool to.
1330ifdef TOOLALIAS
1331ifdef EXAMPLE_TOOL
1332ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1333else
1334ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1335endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001336endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001337
Reid Spencercc2d1e22004-10-30 09:19:36 +00001338#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001339# Prune Exports
1340#---------------------------------------------------------
1341
1342# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1343# not exporting all of the weak symbols from the binary. This reduces dyld
1344# startup time by 4x on darwin in some cases.
1345ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001346ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001347
1348# Tiger tools don't support this.
1349ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001350LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001351endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001352endif
Chris Lattner61863a32009-02-26 17:47:49 +00001353
Anton Korobeynikove55db742009-08-18 00:40:33 +00001354ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001355ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001356 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001357endif
1358endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001359endif
Chris Lattner61863a32009-02-26 17:47:49 +00001360
Devang Patel83be4512010-07-15 20:57:09 +00001361#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001362# Tool Order File Support
1363#---------------------------------------------------------
1364
1365ifeq ($(HOST_OS),Darwin)
1366ifdef TOOL_ORDER_FINE
1367
1368LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1369
1370endif
1371endif
1372
1373#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001374# Tool Version Info Support
1375#---------------------------------------------------------
1376
1377ifeq ($(HOST_OS),Darwin)
1378ifdef TOOL_INFO_PLIST
1379
1380LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1381
1382$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1383
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001384$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001385 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1386 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1387 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1388 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1389 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1390 $< > $@
1391
1392endif
1393endif
Chris Lattner61863a32009-02-26 17:47:49 +00001394
1395#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001396# Provide targets for building the tools
1397#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001398all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001399
Reid Spencer3a561f52004-10-23 20:04:14 +00001400clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001401ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001402 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001403endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001404ifneq ($(strip $(ToolAliasBuildPath)),)
1405 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1406endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001407
Reid Spencer815cbcf2004-11-18 10:03:46 +00001408ifdef EXAMPLE_TOOL
1409$(ToolBuildPath): $(ExmplDir)/.dir
1410else
1411$(ToolBuildPath): $(ToolDir)/.dir
1412endif
1413
Chris Lattnera7868af2006-09-04 06:39:52 +00001414$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001415 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001416 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001417 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001418 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001419 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001420
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001421ifneq ($(strip $(ToolAliasBuildPath)),)
1422$(ToolAliasBuildPath): $(ToolBuildPath)
1423 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1424 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1425 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001426 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001427 $(StripWarnMsg)
1428endif
1429
Reid Spencera2a31bf2007-02-06 18:53:14 +00001430ifdef NO_INSTALL
1431install-local::
1432 $(Echo) Install circumvented with NO_INSTALL
1433uninstall-local::
1434 $(Echo) Uninstall circumvented with NO_INSTALL
1435else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001436DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001437
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001438install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001439
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001440$(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001441 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001442 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001443
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001444uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001445 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001446 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001447
1448# TOOLALIAS install.
1449ifdef TOOLALIAS
Chris Lattner97d7b102010-03-10 21:27:53 +00001450DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001451
1452install-local:: $(DestToolAlias)
1453
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001454$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001455 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1456 $(Verb) $(RM) -f $(DestToolAlias)
1457 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1458
1459uninstall-local::
1460 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1461 -$(Verb) $(RM) -f $(DestToolAlias)
1462endif
1463
Reid Spencera2a31bf2007-02-06 18:53:14 +00001464endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001465endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001466
Reid Spencercc2d1e22004-10-30 09:19:36 +00001467###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001468# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001469###############################################################################
1470
Duraid Madina197ab872006-02-15 03:23:26 +00001471# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001472ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001473 DISABLE_AUTO_DEPENDENCIES=1
1474endif
1475
Reid Spencercc2d1e22004-10-30 09:19:36 +00001476# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001477ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001478
Reid Spencercc2d1e22004-10-30 09:19:36 +00001479#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001480# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001481#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001482
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001483DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001484 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001485
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001486# If the build succeeded, move the dependency file over, otherwise
1487# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001488DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1489 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1490
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001491$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001492 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001493 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001494 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001495
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001496$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001497 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1498 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1499 $(DEPEND_MOVEFILE)
1500
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001501$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001502 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001503 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001504 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001505
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001506$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001507 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001508 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001509 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001510
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001511$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001512 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1513 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1514 $(DEPEND_MOVEFILE)
1515
Reid Spencercc2d1e22004-10-30 09:19:36 +00001516#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001517# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001518#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001519
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001520BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1521 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1522
1523# If the build succeeded, move the dependency file over, otherwise
1524# remove it.
1525BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1526 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1527
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001528$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001529 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001530 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Duncan Sands8ed69262010-11-25 21:14:55 +00001531 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001532 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001533
Greg Clayton43bc79a2010-07-13 18:47:09 +00001534$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1535 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1536 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Duncan Sands8ed69262010-11-25 21:14:55 +00001537 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001538 $(BC_DEPEND_MOVEFILE)
1539
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001540$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001541 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001542 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Duncan Sands8ed69262010-11-25 21:14:55 +00001543 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001544 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001545
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001546$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001547 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001548 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Duncan Sands8ed69262010-11-25 21:14:55 +00001549 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001550 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001551
Greg Clayton43bc79a2010-07-13 18:47:09 +00001552$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1553 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1554 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Duncan Sands8ed69262010-11-25 21:14:55 +00001555 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001556 $(BC_DEPEND_MOVEFILE)
1557
Reid Spencercc2d1e22004-10-30 09:19:36 +00001558# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001559else
1560
Nick Lewyckya15dc032009-02-26 07:44:16 +00001561$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001562 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001563 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001564
Greg Clayton43bc79a2010-07-13 18:47:09 +00001565$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1566 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1567 $(Compile.CXX) $< -o $@
1568
Nick Lewyckya15dc032009-02-26 07:44:16 +00001569$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001570 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001571 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001572
Nick Lewyckya15dc032009-02-26 07:44:16 +00001573$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001574 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001575 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001576
Greg Clayton43bc79a2010-07-13 18:47:09 +00001577$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1578 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1579 $(Compile.C) $< -o $@
1580
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001581$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001582 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Duncan Sands8ed69262010-11-25 21:14:55 +00001583 $(BCCompile.CXX) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
Reid Spencer4d71b662004-10-22 21:01:56 +00001584
Greg Clayton43bc79a2010-07-13 18:47:09 +00001585$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1586 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
Duncan Sands8ed69262010-11-25 21:14:55 +00001587 $(BCCompile.CXX) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001588
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001589$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001590 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Duncan Sands8ed69262010-11-25 21:14:55 +00001591 $(BCCompile.CXX) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001592
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001593$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001594 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Duncan Sands8ed69262010-11-25 21:14:55 +00001595 $(BCCompile.C) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
Brian Gaeke44909cf2003-12-10 00:26:28 +00001596
Greg Clayton43bc79a2010-07-13 18:47:09 +00001597$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1598 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
Duncan Sands8ed69262010-11-25 21:14:55 +00001599 $(BCCompile.C) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001600
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001601endif
1602
Chris Lattner8eb12de2006-06-21 21:01:20 +00001603
1604## Rules for building preprocessed (.i/.ii) outputs.
1605$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1606 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1607 $(Verb) $(Preprocess.CXX) $< -o $@
1608
Greg Clayton43bc79a2010-07-13 18:47:09 +00001609$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1610 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1611 $(Verb) $(Preprocess.CXX) $< -o $@
1612
Chris Lattner8eb12de2006-06-21 21:01:20 +00001613$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1614 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1615 $(Verb) $(Preprocess.CXX) $< -o $@
1616
Reid Spencer44136722006-12-10 04:56:38 +00001617$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001618 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1619 $(Verb) $(Preprocess.C) $< -o $@
1620
Greg Clayton43bc79a2010-07-13 18:47:09 +00001621$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1622 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1623 $(Verb) $(Preprocess.C) $< -o $@
1624
Chris Lattner8eb12de2006-06-21 21:01:20 +00001625
1626$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1627 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001628 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001629
Greg Clayton43bc79a2010-07-13 18:47:09 +00001630$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1631 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1632 $(Compile.CXX) $< -o $@ -S
1633
Chris Lattner8eb12de2006-06-21 21:01:20 +00001634$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1635 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001636 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001637
1638$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1639 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001640 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001641
Greg Clayton43bc79a2010-07-13 18:47:09 +00001642$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1643 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1644 $(Compile.C) $< -o $@ -S
1645
Reid Spencer8b2e1412006-11-17 03:32:33 +00001646
Chris Lattner89681112006-01-27 22:13:12 +00001647# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001648ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001649$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001650 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001651 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001652else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001653$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001654 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001655 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001656endif
1657
Chris Lattner89681112006-01-27 22:13:12 +00001658
Reid Spencercc2d1e22004-10-30 09:19:36 +00001659#---------------------------------------------------------
1660# Provide rule to build .bc files from .ll sources,
1661# regardless of dependencies
1662#---------------------------------------------------------
1663$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001664 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001665 $(Verb) $(LLVMAS) $< -f -o $@
1666
1667###############################################################################
1668# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1669###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001670
Reid Spencer4d71b662004-10-22 21:01:56 +00001671ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001672TABLEGEN_INC_FILES_COMMON = 1
1673endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001674
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001675ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001676TABLEGEN_INC_FILES_COMMON = 1
1677endif
1678
1679ifdef TABLEGEN_INC_FILES_COMMON
1680
Reid Spencercc2d1e22004-10-30 09:19:36 +00001681INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001682INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1683.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001684
Misha Brukmanef5dc702009-01-08 02:11:55 +00001685# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001686# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1687# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001688# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001689# dependencies of the .inc files are, unless the contents of the .inc file
1690# changes.
1691$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001692 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001693
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001694endif # TABLEGEN_INC_FILES_COMMON
1695
1696ifdef TARGET
1697
1698TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1699 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1700 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1701 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1702 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1703 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1704 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1705
Rafael Espindola075630a2009-03-10 17:58:54 +00001706# All of these files depend on tblgen and the .td files.
1707$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1708
Chris Lattner3c473472004-12-16 17:28:50 +00001709$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1710$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001711 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001712 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001713
Chris Lattner3c473472004-12-16 17:28:50 +00001714$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1715$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001716 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001717 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001718
Chris Lattner3c473472004-12-16 17:28:50 +00001719$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1720$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001721 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001722 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001723
Chris Lattner3c473472004-12-16 17:28:50 +00001724$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1725$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001726 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001727 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001728
Chris Lattner3c473472004-12-16 17:28:50 +00001729$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1730$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001731 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001732 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001733
Chris Lattner3c473472004-12-16 17:28:50 +00001734$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1735$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001736 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001737 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001738
Chris Lattner02a4f902004-12-16 17:34:04 +00001739$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1740$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1741 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001742 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001743
Daniel Dunbarc464e512009-07-13 18:35:35 +00001744$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1745$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1746 $(Echo) "Building $(<F) assembly matcher with tblgen"
1747 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1748
Jim Grosbachbd29a362010-11-03 23:46:01 +00001749$(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
1750$(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1751 $(Echo) "Building $(<F) MC code emitter with tblgen"
1752 $(Verb) $(TableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
1753
Chris Lattner3c473472004-12-16 17:28:50 +00001754$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1755$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001756 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001757 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001758
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001759$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1760$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001761 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001762 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001763
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001764$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1765$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1766 $(Echo) "Building $(<F) disassembly tables with tblgen"
1767 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1768
Sean Callanan95fcebd2010-01-29 00:21:04 +00001769$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1770$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1771 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1772 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1773
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001774$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1775$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1776 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1777 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1778
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001779$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1780$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1781 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001782 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001783
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001784$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1785$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1786 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001787 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001788
Dale Johannesen49de9822009-02-05 01:49:45 +00001789$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001790$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1791 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesen49de9822009-02-05 01:49:45 +00001792 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1793
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001794$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1795 $(Echo) "Building $(<F) decoder tables with tblgen"
1796 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1797
1798
Reid Spencer3a561f52004-10-23 20:04:14 +00001799clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001800 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001801
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001802endif # TARGET
1803
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001804ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001805
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001806TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1807 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001808
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001809TDCommon := $(strip $(wildcard \
1810 $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001811
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001812TDFiles := $(TDSrc) $(TDCommon)
1813
1814$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1815
1816$(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
1817 $(Echo) "Building LLVMC compilation graph description with tblgen"
Mikhail Glushenkova73e5862010-10-23 07:32:53 +00001818 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001819
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001820clean-local::
1821 -$(Verb) $(RM) -f $(INCFiles)
1822
1823endif # LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001824
Reid Spencercc2d1e22004-10-30 09:19:36 +00001825###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001826# OTHER RULES: Other rules needed
1827###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001828
Chris Lattner30440c62003-01-16 21:06:18 +00001829# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001830ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001831%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001832 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001833else
1834%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001835 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001836endif
Chris Lattner30440c62003-01-16 21:06:18 +00001837
John Criswell7f336952003-09-06 14:44:17 +00001838# This rules ensures that header files that are removed still have a rule for
1839# which they can be "generated." This allows make to ignore them and
1840# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001841%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001842%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001843
Reid Spencercc2d1e22004-10-30 09:19:36 +00001844# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001845# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001846# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001847clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001848ifneq ($(strip $(ObjRootDir)),)
1849 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001850endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001851 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001852ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001853 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001854endif
John Criswell7a73b802003-06-30 21:59:07 +00001855
Reid Spencer3d659492004-11-02 16:36:03 +00001856clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001857 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001858
Reid Spencer12d79512004-11-12 02:27:36 +00001859
Reid Spencer3a561f52004-10-23 20:04:14 +00001860###############################################################################
1861# DEPENDENCIES: Include the dependency files if we should
1862###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001863ifndef DISABLE_AUTO_DEPENDENCIES
1864
Reid Spencer3a561f52004-10-23 20:04:14 +00001865# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001866ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001867
Reid Spencer3a561f52004-10-23 20:04:14 +00001868# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001869DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001870DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1871
1872# Include bitcode dependency files if using bitcode libraries
1873ifdef BYTECODE_LIBRARY
1874DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1875endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001876
Reid Spencer491a6cd2007-07-23 08:20:46 +00001877-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001878
John Criswelld741bcf2003-08-12 18:51:51 +00001879endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001880
Misha Brukmanef5dc702009-01-08 02:11:55 +00001881endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001882
Reid Spencer151f8ba2004-10-25 08:27:37 +00001883###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001884# CHECK: Running the test suite
1885###############################################################################
1886
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001887check::
Reid Spencer11fde542005-01-16 02:20:54 +00001888 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1889 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001890 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001891 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001892 TESTSUITE=$(TESTSUITE) ; \
1893 else \
1894 $(EchoCmd) No Makefile in test directory ; \
1895 fi ; \
1896 else \
1897 $(EchoCmd) No test directory ; \
1898 fi
1899
Daniel Dunbar666b4022010-08-02 00:05:18 +00001900check-lit:: check
1901
1902check-dg::
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001903 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1904 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1905 $(EchoCmd) Running test suite ; \
Daniel Dunbar666b4022010-08-02 00:05:18 +00001906 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001907 else \
1908 $(EchoCmd) No Makefile in test directory ; \
1909 fi ; \
1910 else \
1911 $(EchoCmd) No test directory ; \
1912 fi
1913
Daniel Dunbar34185792009-09-20 06:17:21 +00001914check-all::
1915 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1916 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1917 $(EchoCmd) Running test suite ; \
1918 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1919 else \
1920 $(EchoCmd) No Makefile in test directory ; \
1921 fi ; \
1922 else \
1923 $(EchoCmd) No test directory ; \
1924 fi
1925
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001926###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001927# UNITTESTS: Running the unittests test suite
1928###############################################################################
1929
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001930unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001931 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1932 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1933 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001934 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001935 else \
1936 $(EchoCmd) No Makefile in unittests directory ; \
1937 fi ; \
1938 else \
1939 $(EchoCmd) No unittests directory ; \
1940 fi
1941
1942###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001943# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001944###############################################################################
1945
Reid Spencere45ebfa2004-10-26 07:09:33 +00001946#------------------------------------------------------------------------
1947# Define distribution related variables
1948#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001949DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1950DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1951TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1952DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1953DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1954DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001955DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1956 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001957 Makefile.config.in configure autoconf
1958DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001959 $(PROJ_SRC_DIR)/*.h \
1960 $(PROJ_SRC_DIR)/*.td \
1961 $(PROJ_SRC_DIR)/*.def \
1962 $(PROJ_SRC_DIR)/*.ll \
1963 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001964DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001965DistSources = $(Sources) $(EXTRA_DIST)
1966DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001967
Reid Spencere45ebfa2004-10-26 07:09:33 +00001968#------------------------------------------------------------------------
1969# We MUST build distribution with OBJ_DIR != SRC_DIR
1970#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001971ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001972dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001973 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001974
Reid Spencere45ebfa2004-10-26 07:09:33 +00001975else
1976
Reid Spencere45ebfa2004-10-26 07:09:33 +00001977#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001978# Prevent attempt to run dist targets from anywhere but the top level
1979#------------------------------------------------------------------------
1980ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001981dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001982 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001983else
1984
1985#------------------------------------------------------------------------
1986# Provide the top level targets
1987#------------------------------------------------------------------------
1988
Reid Spencercc2d1e22004-10-30 09:19:36 +00001989dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001990
Reid Spencer345235ca2004-12-04 22:34:09 +00001991$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001992 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001993 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001994 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001995
Reid Spencercc2d1e22004-10-30 09:19:36 +00001996dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001997
Reid Spencer345235ca2004-12-04 22:34:09 +00001998$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001999 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002000 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002001 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002002
Reid Spencercc2d1e22004-10-30 09:19:36 +00002003dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002004
Reid Spencer345235ca2004-12-04 22:34:09 +00002005$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002006 $(Echo) Packing zipped distribution file.
2007 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00002008 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002009
Misha Brukmanef5dc702009-01-08 02:11:55 +00002010dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002011 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002012
Reid Spencerf8f57402005-01-28 19:52:32 +00002013DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00002014
Reid Spencer345235ca2004-12-04 22:34:09 +00002015dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002016 $(Echo) Checking distribution tar file.
2017 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002018 $(RM) -rf $(DistCheckDir) ; \
2019 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00002020 $(Verb) $(MKDIR) $(DistCheckDir)
2021 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002022 $(MKDIR) $(DistCheckDir)/build && \
2023 $(MKDIR) $(DistCheckDir)/install && \
2024 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2025 cd build && \
2026 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00002027 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00002028 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002029 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00002030 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002031 $(MAKE) install && \
2032 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002033 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002034 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002035
2036dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002037 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002038 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2039 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002040
2041endif
2042
2043#------------------------------------------------------------------------
2044# Provide the recursive distdir target for building the distribution directory
2045#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002046distdir: $(DistDir)/.makedistdir
2047$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002048 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002049 if test -d "$(DistDir)" ; then \
2050 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2051 exit 1 ; \
2052 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002053 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002054 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002055 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002056 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002057 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002058 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002059 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002060 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2061 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002062 for file in $(DistFiles) ; do \
2063 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002064 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002065 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2066 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002067 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002068 file=`echo "$$file" | \
2069 sed "s#^$$srcrootstrip/##"` \
2070 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002071 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002072 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2073 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2074 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002075 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002076 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002077 fi ; \
2078 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002079 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2080 to_dir="$(DistDir)/$$dir"; \
2081 $(MKDIR) "$$to_dir" ; \
2082 else \
2083 to_dir="$(DistDir)"; \
2084 fi; \
2085 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2086 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002087 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002088 fi ; \
2089 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002090 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2091 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002092 cd $(PROJ_SRC_DIR) ; \
2093 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2094 ( cd $$to_dir ; $(TAR) xf - ) ; \
2095 cd $(PROJ_OBJ_DIR) ; \
2096 else \
2097 cd $$from_dir ; \
2098 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2099 ( cd $$to_dir ; $(TAR) xf - ) ; \
2100 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002101 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002102 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002103 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002104 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002105 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002106 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002107 $(EchoCmd) "===== WARNING: Distribution Source " \
2108 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002109 elif test "$(Verb)" != '@' ; then \
2110 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002111 fi; \
2112 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002113 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002114 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002115 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002116 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002117 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002118 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002119 fi; \
2120 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002121 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002122 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002123 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2124 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002125 $(MAKE) dist-hook ; \
2126 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2127 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2128 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2129 -o ! -type d ! -perm -444 -exec \
2130 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2131 || chmod -R a+r $(DistDir) ; \
2132 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002133
Reid Spencercc2d1e22004-10-30 09:19:36 +00002134# This is invoked by distdir target, define it as a no-op to avoid errors if not
2135# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002136dist-hook::
2137
Reid Spencere53e3972004-10-22 23:06:30 +00002138endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002139
2140###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002141# TOP LEVEL - targets only to apply at the top level directory
2142###############################################################################
2143
2144ifeq ($(LEVEL),.)
2145
2146#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002147# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002148#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002149ifdef NO_INSTALL
2150install-local::
2151 $(Echo) Install circumvented with NO_INSTALL
2152uninstall-local::
2153 $(Echo) Uninstall circumvented with NO_INSTALL
2154else
Reid Spencere5487ba2004-10-24 07:53:21 +00002155install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002156 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002157 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002158 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002159 cd $(PROJ_SRC_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002160 for hdr in `find . -type f \
2161 '(' -name LICENSE.TXT \
2162 -o -name '*.def' \
2163 -o -name '*.h' \
2164 -o -name '*.inc' \
2165 -o -name '*.td' \
2166 ')' -print | grep -v CVS | \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002167 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002168 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002169 if test \! -d "$$instdir" ; then \
2170 $(EchoCmd) Making install directory $$instdir ; \
2171 $(MKDIR) $$instdir ;\
2172 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002173 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002174 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002175 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002176ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002177 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002178 cd $(PROJ_OBJ_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002179 for hdr in `find . -type f \
2180 '(' -name LICENSE.TXT \
2181 -o -name '*.def' \
2182 -o -name '*.h' \
2183 -o -name '*.inc' \
2184 -o -name '*.td' \
2185 ')' -print | grep -v CVS | \
2186 grep -v .svn` ; do \
2187 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2188 if test \! -d "$$instdir" ; then \
2189 $(EchoCmd) Making install directory $$instdir ; \
2190 $(MKDIR) $$instdir ;\
2191 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002192 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002193 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002194 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002195endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002196
2197uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002198 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002199 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2200 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002201 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002202 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002203 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002204 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002205 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002206 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002207 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002208 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002209endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002210endif
2211
Chris Lattner03840ac2007-04-14 23:35:45 +00002212check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002213 @echo searching for overlength lines in files: $(Sources)
2214 @echo
2215 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002216 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002217
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002218check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002219 @echo searching for tabs in files: $(Sources)
2220 @echo
2221 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002222 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002223
Reid Spencer6548bf12007-05-02 21:29:39 +00002224check-footprint:
2225 @ls -l $(LibDir) | awk '\
2226 BEGIN { sum = 0; } \
2227 { sum += $$5; } \
2228 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2229 @ls -l $(ToolDir) | awk '\
2230 BEGIN { sum = 0; } \
2231 { sum += $$5; } \
2232 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002233#------------------------------------------------------------------------
2234# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002235#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002236printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002237 $(Echo) "BuildMode : " '$(BuildMode)'
2238 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2239 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2240 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2241 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2242 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2243 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2244 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2245 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2246 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2247 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002248 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002249 $(Echo) "UserTargets : " '$(UserTargets)'
2250 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2251 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2252 $(Echo) "ObjDir : " '$(ObjDir)'
2253 $(Echo) "LibDir : " '$(LibDir)'
2254 $(Echo) "ToolDir : " '$(ToolDir)'
2255 $(Echo) "ExmplDir : " '$(ExmplDir)'
2256 $(Echo) "Sources : " '$(Sources)'
2257 $(Echo) "TDFiles : " '$(TDFiles)'
2258 $(Echo) "INCFiles : " '$(INCFiles)'
2259 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002260 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002261 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2262 $(Echo) "Compile.C : " '$(Compile.C)'
2263 $(Echo) "Archive : " '$(Archive)'
2264 $(Echo) "YaccFiles : " '$(YaccFiles)'
2265 $(Echo) "LexFiles : " '$(LexFiles)'
2266 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002267 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002268 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002269 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2270 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002271
2272###
2273# Debugging
2274
Daniel Dunbar3c898122009-03-06 22:23:25 +00002275# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002276# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002277make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002278 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))