blob: 71d4307abae0bbd08f963c00ff5a4726550b29e5 [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
Chris Lattner1bdedb92011-04-09 06:01:28 +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
Chris Lattner70d77002011-04-09 19:53:16 +0000447ifneq ($(findstring llvm-gcc,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000448 LLVMCC := $(LLVMGCC)
449 LLVMCXX := $(LLVMGXX)
450else
Chris Lattner70d77002011-04-09 19:53:16 +0000451 ifneq ($(findstring clang,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000452 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 Dunbar58194302011-04-11 22:37:39 +0000649# SHOW_DIAGNOSTICS support.
650ifeq ($(SHOW_DIAGNOSTICS),1)
651 Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
652 CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
653else
654 Compile.Wrapper :=
655endif
656
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000657ifeq ($(BUILD_COMPONENT), 1)
Daniel Dunbar58194302011-04-11 22:37:39 +0000658 Compile.C = $(Compile.Wrapper) \
659 $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000660 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar58194302011-04-11 22:37:39 +0000661 Compile.CXX = $(Compile.Wrapper) \
662 $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000663 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000664 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar58194302011-04-11 22:37:39 +0000665 Preprocess.CXX= $(Compile.Wrapper) \
666 $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000667 $(CompileCommonOpts) $(CXX.Flags) -E
Daniel Dunbar58194302011-04-11 22:37:39 +0000668 Link = $(Compile.Wrapper) \
669 $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
Eric Christopher9c932042011-03-07 04:25:12 +0000670 $(LD.Flags) $(LDFLAGS) \
671 $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000672else
Daniel Dunbar58194302011-04-11 22:37:39 +0000673 Compile.C = $(Compile.Wrapper) \
674 $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000675 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar58194302011-04-11 22:37:39 +0000676 Compile.CXX = $(Compile.Wrapper) \
677 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000678 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar58194302011-04-11 22:37:39 +0000679 Preprocess.CXX= $(Compile.Wrapper) \
680 $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner6be92662009-06-16 23:00:42 +0000681 $(CompileCommonOpts) $(CXX.Flags) -E
Daniel Dunbar58194302011-04-11 22:37:39 +0000682 Link = $(Compile.Wrapper) \
683 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
Eric Christopher9c932042011-03-07 04:25:12 +0000684 $(LDFLAGS) $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000685endif
686
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000687BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000688 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000689Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000690 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000691
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000692BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000693 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000694
Misha Brukmanef5dc702009-01-08 02:11:55 +0000695ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
696ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000697DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000698
699# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
700# paths. In this case, the SYSPATH function (defined in
701# Makefile.config) transforms Unix paths into Windows paths.
702TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000703 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000704 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
705 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
706
Reid Spencercc2d1e22004-10-30 09:19:36 +0000707Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000708LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000709ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000710Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000711else
Reid Spencer3a561f52004-10-23 20:04:14 +0000712Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000713endif
714
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000715AliasTool = ln -s
716
Chris Lattner00950542001-06-06 20:29:01 +0000717#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000718# Get the list of source files and compute object file
719# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000720#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000721
722ifndef SOURCES
723 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000724 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000725else
Chris Lattner89681112006-01-27 22:13:12 +0000726 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000727endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000728
Chris Lattner89681112006-01-27 22:13:12 +0000729ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000730Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000731endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000732
Chris Lattner89681112006-01-27 22:13:12 +0000733BaseNameSources := $(sort $(basename $(Sources)))
734
735ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000736ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
737
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000738#----------------------------------------------------------
739# For Mingw MSYS bash and Python/w32:
740#
741# $(ECHOPATH) prints DOSish pathstring.
742# ex) $(ECHOPATH) /include/sys/types.h
743# --> C:/mingw/include/sys/types.h
744# built-in "echo" does not transform path to DOSish path.
745#
746# FIXME: It would not be needed when MSYS's python
747# were provided.
748#----------------------------------------------------------
749
750ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
751 ECHOPATH := $(Verb)python -u -c "import sys;print ' '.join(sys.argv[1:])"
752else
753 ECHOPATH := $(Verb)$(ECHO)
754endif
755
Reid Spencer3a561f52004-10-23 20:04:14 +0000756###############################################################################
757# DIRECTORIES: Handle recursive descent of directory structure
758###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000759
Chris Lattner00950542001-06-06 20:29:01 +0000760#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000761# Provide rules to make install dirs. This must be early
762# in the file so they get built before dependencies
763#---------------------------------------------------------
764
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000765$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000766 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000767
Reid Spencercc2d1e22004-10-30 09:19:36 +0000768# To create other directories, as needed, and timestamp their creation
769%/.dir:
770 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000771 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000772
Reid Spencer815cbcf2004-11-18 10:03:46 +0000773.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
774.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000775
776#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000777# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000778#---------------------------------------------------------
779
Misha Brukmanef5dc702009-01-08 02:11:55 +0000780SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000781ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000782SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000783
784ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000785$(RecursiveTargets)::
786 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000787 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000788 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000789 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000790 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000791 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000792 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000793 done
Chris Lattner82033602006-07-26 20:22:26 +0000794else
795$(RecursiveTargets)::
796 $(Verb) for dir in $(DIRS); do \
797 ($(MAKE) -C $$dir $@ ) || exit 1; \
798 done
799endif
800
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000801endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000802
Reid Spencer3a561f52004-10-23 20:04:14 +0000803#---------------------------------------------------------
804# Handle the EXPERIMENTAL_DIRS options ensuring success
805# after each directory is built.
806#---------------------------------------------------------
807ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000808$(RecursiveTargets)::
809 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000810 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000811 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000812 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000813 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000814 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000815 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000816 done
817endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000818
Reid Spencer25e8a702005-12-21 23:17:06 +0000819#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000820# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
821#-----------------------------------------------------------
822ifdef OPTIONAL_PARALLEL_DIRS
823 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
824endif
825
826#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000827# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000828#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000829ifdef PARALLEL_DIRS
830
Reid Spencercc2d1e22004-10-30 09:19:36 +0000831SubDirs += $(PARALLEL_DIRS)
832
Reid Spencer44cb1b32004-12-03 20:08:48 +0000833# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000834all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
835clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000836clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000837install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000838uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000839install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000840unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000841
Reid Spencer345235ca2004-12-04 22:34:09 +0000842ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000843
Reid Spencer345235ca2004-12-04 22:34:09 +0000844$(ParallelTargets) :
Daniel Dunbar546023f2010-06-08 20:10:13 +0000845 $(Verb) if ([ ! -f $(@D)/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000846 command test $(@D)/Makefile -ot \
Chris Lattner381cd022010-06-15 21:35:22 +0000847 $(PROJ_SRC_DIR)/$(@D)/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000848 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000849 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000850 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000851 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000852endif
853
Reid Spencer3a561f52004-10-23 20:04:14 +0000854#---------------------------------------------------------
855# Handle the OPTIONAL_DIRS options for directores that may
856# or may not exist.
857#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000858ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000859
Reid Spencercc2d1e22004-10-30 09:19:36 +0000860SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000861
Chris Lattner82033602006-07-26 20:22:26 +0000862ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000863$(RecursiveTargets)::
864 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000865 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000866 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000867 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000868 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000869 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000870 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000871 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000872 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000873 done
Chris Lattner82033602006-07-26 20:22:26 +0000874else
875$(RecursiveTargets)::
876 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Stephen Wilsonc1566322011-02-20 03:51:07 +0000877 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
878 ($(MAKE) -C$$dir $@ ) || exit 1; \
879 fi \
Chris Lattner82033602006-07-26 20:22:26 +0000880 done
881endif
John Criswell2a6530f2003-06-27 16:58:44 +0000882endif
883
Reid Spencerfc945082004-08-20 09:20:05 +0000884#---------------------------------------------------------
885# Handle the CONFIG_FILES options
886#---------------------------------------------------------
887ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000888
Reid Spencera2a31bf2007-02-06 18:53:14 +0000889ifdef NO_INSTALL
890install-local::
891 $(Echo) Install circumvented with NO_INSTALL
892uninstall-local::
893 $(Echo) UnInstall circumvented with NO_INSTALL
894else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000895install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
896 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000897 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000898 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000899 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000900 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000901 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000902 else \
903 $(ECHO) Error: cannot find config file $${file}. ; \
904 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000905 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000906
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000907uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000908 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000909 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000910 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000911 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000912endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000913
Reid Spencerfc945082004-08-20 09:20:05 +0000914endif
915
Reid Spencer3a561f52004-10-23 20:04:14 +0000916###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +0000917# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000918###############################################################################
919
920#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000921# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000922# libraries needed when linking. There are "Proj" libs
923# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000924# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000925#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000926
Chris Lattneref0d0f12006-09-04 04:47:21 +0000927ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000928ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
929ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000930ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
931ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
932endif
933
934ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000935LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
936LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000937LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000938LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000939endif
940
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000941# Loadable module for Win32 requires all symbols resolved for linking.
942# Then all symbols in LLVM.dll will be available.
943ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000944 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000945 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
946 LINK_COMPONENTS += all
947 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000948 endif
949endif
950
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000951ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000952ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000953
954# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
955# clean in tools, then do a make in tools (instead of at the top level).
956$(LLVM_CONFIG):
957 @echo "*** llvm-config doesn't exist - rebuilding it."
958 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000959
Chris Lattner0a1db822006-09-04 05:23:20 +0000960$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
961
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000962ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000963# We can take the "auto-import" feature to get rid of using dllimport.
964ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
965LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
966 -L $(SharedLibDir)
967endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000968LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000969LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000970else
Chris Lattnerf636aa92010-09-01 16:11:17 +0000971
972ifndef NO_LLVM_CONFIG
973LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
974ifeq ($(LLVMConfigLibs),Error)
975$(error llvm-config --libs failed)
976endif
977LLVMLibsOptions += $(LLVMConfigLibs)
978LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
979ifeq ($(LLVMConfigLibfiles),Error)
980$(error llvm-config --libfiles failed)
981endif
982LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
983endif
984
Chris Lattneref0d0f12006-09-04 04:47:21 +0000985endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000986endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000987endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000988
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000989# Set up the library exports file.
990ifdef EXPORTED_SYMBOL_FILE
991
992# First, set up the native export file, which may differ from the source
993# export file.
994
995ifeq ($(HOST_OS),Darwin)
996# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +0000997NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +0000998$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +0000999 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001000clean-local::
1001 -$(Verb) $(RM) -f $(NativeExportsFile)
1002else
Dan Gohmanda612d62010-06-01 14:56:56 +00001003ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1004# Gold and BFD ld require a version script rather than a plain list.
1005NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1006$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1007 $(Verb) echo "{" > $@
1008 $(Verb) grep -q "\<" $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001009 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001010ifneq ($(HOST_OS),OpenBSD)
Dan Gohmanda612d62010-06-01 14:56:56 +00001011 $(Verb) echo " local: *;" >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001012endif
Dan Gohmanda612d62010-06-01 14:56:56 +00001013 $(Verb) echo "};" >> $@
1014clean-local::
1015 -$(Verb) $(RM) -f $(NativeExportsFile)
1016else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001017ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +00001018# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001019NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001020$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1021 $(Echo) Generating $(notdir $@)
1022 $(Verb) $(ECHO) "EXPORTS" > $@
1023 $(Verb) $(CAT) $< >> $@
1024clean-local::
1025 -$(Verb) $(RM) -f $(NativeExportsFile)
1026else
Dan Gohman9a7570c2010-09-03 17:29:33 +00001027# Default behavior: just use the exports file verbatim.
1028NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1029endif
1030endif
1031endif
1032
1033# Now add the linker command-line options to use the native export file.
1034
1035# Darwin
1036ifeq ($(HOST_OS),Darwin)
1037LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1038endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001039
Dan Gohmane05f6092010-04-16 22:58:15 +00001040# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001041ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1042LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001043endif
1044
Dan Gohman9a7570c2010-09-03 17:29:33 +00001045# Windows
1046ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1047# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1048SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001049endif
1050
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001051endif
1052
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001053###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001054# Library Build Rules: Four ways to build a library
1055###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001056
Reid Spencer7980ea42004-12-05 05:17:22 +00001057#---------------------------------------------------------
1058# Bytecode Module Targets:
1059# If the user set MODULE_NAME then they want to build a
1060# bytecode module from the sources. We compile all the
1061# sources and link it together into a single bytecode
1062# module.
1063#---------------------------------------------------------
1064
1065ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001066ifeq ($(strip $(LLVMCC)),)
1067$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001068else
Reid Spencer7980ea42004-12-05 05:17:22 +00001069
1070Module := $(LibDir)/$(MODULE_NAME).bc
Daniel Dunbar112257d2010-02-23 09:28:50 +00001071LinkModule := $(LLVMLD) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +00001072
Reid Spencer7980ea42004-12-05 05:17:22 +00001073
1074ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001075LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001076endif
1077
Reid Spencer43eb96c2007-02-09 15:52:07 +00001078$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001079 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001080 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1081
1082all-local:: $(Module)
1083
1084clean-local::
1085ifneq ($(strip $(Module)),)
1086 -$(Verb) $(RM) -f $(Module)
1087endif
1088
Reid Spencerab3690b2004-12-13 07:38:07 +00001089ifdef BYTECODE_DESTINATION
1090ModuleDestDir := $(BYTECODE_DESTINATION)
1091else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001092ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001093endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001094
Reid Spencera2a31bf2007-02-06 18:53:14 +00001095ifdef NO_INSTALL
1096install-local::
1097 $(Echo) Install circumvented with NO_INSTALL
1098uninstall-local::
1099 $(Echo) Uninstall circumvented with NO_INSTALL
1100else
Reid Spencerab3690b2004-12-13 07:38:07 +00001101DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1102
1103install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001104install-local:: $(DestModule)
1105
Misha Brukmanef5dc702009-01-08 02:11:55 +00001106$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001107 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001108 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001109
1110uninstall-local::
1111 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1112 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001113endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001114
1115endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001116endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001117
Reid Spencer3a561f52004-10-23 20:04:14 +00001118# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001119ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001120
Misha Brukmanf547a122009-08-17 15:31:24 +00001121# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001122LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001123ifdef LOADABLE_MODULE
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001124BaseLibName.A := $(LIBRARYNAME).a
1125BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001126else
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001127BaseLibName.A := lib$(LIBRARYNAME).a
1128BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001129endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001130LibName.A := $(LibDir)/$(BaseLibName.A)
1131LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001132LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001133LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001134
Reid Spencer3a561f52004-10-23 20:04:14 +00001135#---------------------------------------------------------
1136# Shared Library Targets:
1137# If the user asked for a shared library to be built
1138# with the SHARED_LIBRARY variable, then we provide
1139# targets for building them.
1140#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001141ifdef SHARED_LIBRARY
1142
Nick Lewyckya15dc032009-02-26 07:44:16 +00001143all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001144
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001145ifdef EXPORTED_SYMBOL_FILE
1146$(LibName.SO): $(NativeExportsFile)
1147endif
1148
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001149ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001150ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001151SharedLibKindMessage := "Loadable Module"
Daniel Dunbar7bc0f272010-12-08 01:48:05 +00001152SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
Reid Spencer42fe4552006-08-07 23:12:15 +00001153else
1154SharedLibKindMessage := "Shared Library"
1155endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001156$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001157 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001158 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001159 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001160 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001161else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001162$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001163 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001164 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001165endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001166
1167clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001168ifneq ($(strip $(LibName.SO)),)
1169 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001170endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001171
Reid Spencera2a31bf2007-02-06 18:53:14 +00001172ifdef NO_INSTALL
1173install-local::
1174 $(Echo) Install circumvented with NO_INSTALL
1175uninstall-local::
1176 $(Echo) Uninstall circumvented with NO_INSTALL
1177else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001178
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001179# Win32.DLL prefers to be located on the "PATH" of binaries.
1180ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1181DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001182else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001183DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001184endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001185DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001186
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001187install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001188
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001189$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001190 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001191 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001192
Misha Brukmanef5dc702009-01-08 02:11:55 +00001193uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001194 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001195 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001196endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001197endif
1198
Reid Spencer3a561f52004-10-23 20:04:14 +00001199#---------------------------------------------------------
1200# Bytecode Library Targets:
1201# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001202# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001203# targets for building them.
1204#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001205ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001206ifeq ($(strip $(LLVMCC)),)
1207$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001208else
Reid Spencer4d71b662004-10-22 21:01:56 +00001209
Reid Spencer9a2f1372004-12-02 09:28:21 +00001210all-local:: $(LibName.BCA)
1211
1212ifdef EXPORTED_SYMBOL_FILE
Daniel Dunbar112257d2010-02-23 09:28:50 +00001213BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001214
Reid Spencer43eb96c2007-02-09 15:52:07 +00001215$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001216 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001217 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1218 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001219 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001220 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001221 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001222else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001223$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001224 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001225 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001226 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001227 $(Verb) $(LArchive) $@ $(ObjectsBC)
1228
Reid Spencer4d71b662004-10-22 21:01:56 +00001229endif
1230
Reid Spencer3a561f52004-10-23 20:04:14 +00001231clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001232ifneq ($(strip $(LibName.BCA)),)
1233 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001234endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001235
Reid Spencer8f094f32004-12-13 07:28:21 +00001236ifdef BYTECODE_DESTINATION
1237BytecodeDestDir := $(BYTECODE_DESTINATION)
1238else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001239BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001240endif
1241
Daniel Dunbard62031e2009-05-12 05:35:40 +00001242DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001243
Reid Spencer44cb1b32004-12-03 20:08:48 +00001244install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001245
Reid Spencera2a31bf2007-02-06 18:53:14 +00001246ifdef NO_INSTALL
1247install-local::
1248 $(Echo) Install circumvented with NO_INSTALL
1249uninstall-local::
1250 $(Echo) Uninstall circumvented with NO_INSTALL
1251else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001252install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001253
Mike Stumpb445d742009-02-12 23:45:11 +00001254$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001255 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001256 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001257
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001258uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001259 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001260 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001261endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001262endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001263endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001264
Reid Spencercc2d1e22004-10-30 09:19:36 +00001265#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001266# Library Targets:
1267# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1268# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001269#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001270ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001271ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001272ifndef LOADABLE_MODULE
1273BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001274endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001275endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001276endif
Chris Lattner760da062003-03-14 20:25:22 +00001277
Reid Spencercc2d1e22004-10-30 09:19:36 +00001278#---------------------------------------------------------
1279# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001280# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001281# then we provide targets for building them.
1282#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001283ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001284
Reid Spencercc2d1e22004-10-30 09:19:36 +00001285all-local:: $(LibName.A)
1286
Reid Spencerf2ac1892004-12-16 07:36:08 +00001287$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001288 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001289 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001290 $(Verb) $(Archive) $@ $(ObjectsO)
1291 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001292
Reid Spencer3a561f52004-10-23 20:04:14 +00001293clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001294ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001295 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001296endif
1297
Reid Spencera2a31bf2007-02-06 18:53:14 +00001298ifdef NO_INSTALL
1299install-local::
1300 $(Echo) Install circumvented with NO_INSTALL
1301uninstall-local::
1302 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001303else
1304ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001305install-local::
1306 $(Echo) Install circumvented with NO_INSTALL
1307uninstall-local::
1308 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001309else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001310DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001311
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001312install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001313
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001314$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001315 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001316 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001317 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001318
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001319uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001320 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001321 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001322endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001323endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001324endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001325
1326# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001327endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001328
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001329###############################################################################
1330# Tool Build Rules: Build executable tool based on TOOLNAME option
1331###############################################################################
1332
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001333ifdef TOOLNAME
1334
Reid Spencercc2d1e22004-10-30 09:19:36 +00001335#---------------------------------------------------------
1336# Set up variables for building a tool.
1337#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001338TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001339ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001340ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001341else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001342ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1343endif
1344
1345# TOOLALIAS is a name to symlink (or copy) the tool to.
1346ifdef TOOLALIAS
1347ifdef EXAMPLE_TOOL
1348ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1349else
1350ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1351endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001352endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001353
Reid Spencercc2d1e22004-10-30 09:19:36 +00001354#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001355# Prune Exports
1356#---------------------------------------------------------
1357
1358# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1359# not exporting all of the weak symbols from the binary. This reduces dyld
1360# startup time by 4x on darwin in some cases.
1361ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001362ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001363
1364# Tiger tools don't support this.
1365ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001366LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001367endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001368endif
Chris Lattner61863a32009-02-26 17:47:49 +00001369
Anton Korobeynikove55db742009-08-18 00:40:33 +00001370ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001371ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001372 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001373endif
1374endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001375endif
Chris Lattner61863a32009-02-26 17:47:49 +00001376
Devang Patel83be4512010-07-15 20:57:09 +00001377#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001378# Tool Order File Support
1379#---------------------------------------------------------
1380
1381ifeq ($(HOST_OS),Darwin)
1382ifdef TOOL_ORDER_FINE
1383
1384LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1385
1386endif
1387endif
1388
1389#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001390# Tool Version Info Support
1391#---------------------------------------------------------
1392
1393ifeq ($(HOST_OS),Darwin)
1394ifdef TOOL_INFO_PLIST
1395
1396LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1397
1398$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1399
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001400$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001401 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1402 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1403 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1404 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1405 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1406 $< > $@
1407
1408endif
1409endif
Chris Lattner61863a32009-02-26 17:47:49 +00001410
1411#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001412# Provide targets for building the tools
1413#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001414all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001415
Reid Spencer3a561f52004-10-23 20:04:14 +00001416clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001417ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001418 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001419endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001420ifneq ($(strip $(ToolAliasBuildPath)),)
1421 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1422endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001423
Reid Spencer815cbcf2004-11-18 10:03:46 +00001424ifdef EXAMPLE_TOOL
1425$(ToolBuildPath): $(ExmplDir)/.dir
1426else
1427$(ToolBuildPath): $(ToolDir)/.dir
1428endif
1429
Chris Lattnera7868af2006-09-04 06:39:52 +00001430$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001431 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001432 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001433 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001434 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001435 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001436
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001437ifneq ($(strip $(ToolAliasBuildPath)),)
1438$(ToolAliasBuildPath): $(ToolBuildPath)
1439 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1440 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1441 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001442 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001443 $(StripWarnMsg)
1444endif
1445
Reid Spencera2a31bf2007-02-06 18:53:14 +00001446ifdef NO_INSTALL
1447install-local::
1448 $(Echo) Install circumvented with NO_INSTALL
1449uninstall-local::
1450 $(Echo) Uninstall circumvented with NO_INSTALL
1451else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001452DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001453
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001454install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001455
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001456$(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001457 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001458 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001459
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001460uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001461 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001462 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001463
1464# TOOLALIAS install.
1465ifdef TOOLALIAS
Chris Lattner97d7b102010-03-10 21:27:53 +00001466DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001467
1468install-local:: $(DestToolAlias)
1469
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001470$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001471 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1472 $(Verb) $(RM) -f $(DestToolAlias)
1473 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1474
1475uninstall-local::
1476 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1477 -$(Verb) $(RM) -f $(DestToolAlias)
1478endif
1479
Reid Spencera2a31bf2007-02-06 18:53:14 +00001480endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001481endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001482
Reid Spencercc2d1e22004-10-30 09:19:36 +00001483###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001484# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001485###############################################################################
1486
Duraid Madina197ab872006-02-15 03:23:26 +00001487# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001488ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001489 DISABLE_AUTO_DEPENDENCIES=1
1490endif
1491
Reid Spencercc2d1e22004-10-30 09:19:36 +00001492# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001493ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001494
Reid Spencercc2d1e22004-10-30 09:19:36 +00001495#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001496# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001497#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001498
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001499DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001500 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001501
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001502# If the build succeeded, move the dependency file over, otherwise
1503# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001504DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1505 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1506
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001507$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001508 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001509 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001510 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001511
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001512$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001513 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1514 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1515 $(DEPEND_MOVEFILE)
1516
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001517$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001518 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001519 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001520 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001521
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001522$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001523 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001524 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001525 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001526
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001527$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001528 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1529 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1530 $(DEPEND_MOVEFILE)
1531
Reid Spencercc2d1e22004-10-30 09:19:36 +00001532#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001533# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001534#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001535
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001536BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1537 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1538
1539# If the build succeeded, move the dependency file over, otherwise
1540# remove it.
1541BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1542 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1543
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001544$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001545 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001546 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001547 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001548 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001549
Greg Clayton43bc79a2010-07-13 18:47:09 +00001550$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1551 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1552 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001553 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001554 $(BC_DEPEND_MOVEFILE)
1555
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001556$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001557 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001558 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001559 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001560 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001561
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001562$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001563 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001564 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001565 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001566 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001567
Greg Clayton43bc79a2010-07-13 18:47:09 +00001568$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1569 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1570 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001571 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001572 $(BC_DEPEND_MOVEFILE)
1573
Reid Spencercc2d1e22004-10-30 09:19:36 +00001574# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001575else
1576
Nick Lewyckya15dc032009-02-26 07:44:16 +00001577$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001578 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001579 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001580
Greg Clayton43bc79a2010-07-13 18:47:09 +00001581$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1582 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1583 $(Compile.CXX) $< -o $@
1584
Nick Lewyckya15dc032009-02-26 07:44:16 +00001585$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001586 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001587 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001588
Nick Lewyckya15dc032009-02-26 07:44:16 +00001589$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001590 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001591 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001592
Greg Clayton43bc79a2010-07-13 18:47:09 +00001593$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1594 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1595 $(Compile.C) $< -o $@
1596
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001597$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001598 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001599 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Reid Spencer4d71b662004-10-22 21:01:56 +00001600
Greg Clayton43bc79a2010-07-13 18:47:09 +00001601$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1602 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001603 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001604
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001605$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001606 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001607 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001608
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001609$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001610 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001611 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Brian Gaeke44909cf2003-12-10 00:26:28 +00001612
Greg Clayton43bc79a2010-07-13 18:47:09 +00001613$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1614 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001615 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001616
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001617endif
1618
Chris Lattner8eb12de2006-06-21 21:01:20 +00001619
1620## Rules for building preprocessed (.i/.ii) outputs.
1621$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1622 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1623 $(Verb) $(Preprocess.CXX) $< -o $@
1624
Greg Clayton43bc79a2010-07-13 18:47:09 +00001625$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1626 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1627 $(Verb) $(Preprocess.CXX) $< -o $@
1628
Chris Lattner8eb12de2006-06-21 21:01:20 +00001629$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1630 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1631 $(Verb) $(Preprocess.CXX) $< -o $@
1632
Reid Spencer44136722006-12-10 04:56:38 +00001633$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001634 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1635 $(Verb) $(Preprocess.C) $< -o $@
1636
Greg Clayton43bc79a2010-07-13 18:47:09 +00001637$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1638 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1639 $(Verb) $(Preprocess.C) $< -o $@
1640
Chris Lattner8eb12de2006-06-21 21:01:20 +00001641
1642$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1643 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001644 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001645
Greg Clayton43bc79a2010-07-13 18:47:09 +00001646$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1647 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1648 $(Compile.CXX) $< -o $@ -S
1649
Chris Lattner8eb12de2006-06-21 21:01:20 +00001650$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1651 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001652 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001653
1654$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1655 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001656 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001657
Greg Clayton43bc79a2010-07-13 18:47:09 +00001658$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1659 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1660 $(Compile.C) $< -o $@ -S
1661
Reid Spencer8b2e1412006-11-17 03:32:33 +00001662
Chris Lattner89681112006-01-27 22:13:12 +00001663# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001664ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001665$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001666 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001667 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001668else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001669$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001670 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001671 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001672endif
1673
Chris Lattner89681112006-01-27 22:13:12 +00001674
Reid Spencercc2d1e22004-10-30 09:19:36 +00001675#---------------------------------------------------------
1676# Provide rule to build .bc files from .ll sources,
1677# regardless of dependencies
1678#---------------------------------------------------------
1679$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001680 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001681 $(Verb) $(LLVMAS) $< -f -o $@
1682
1683###############################################################################
1684# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1685###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001686
Reid Spencer4d71b662004-10-22 21:01:56 +00001687ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001688TABLEGEN_INC_FILES_COMMON = 1
1689endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001690
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001691ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001692TABLEGEN_INC_FILES_COMMON = 1
1693endif
1694
1695ifdef TABLEGEN_INC_FILES_COMMON
1696
Reid Spencercc2d1e22004-10-30 09:19:36 +00001697INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001698INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1699.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001700
Misha Brukmanef5dc702009-01-08 02:11:55 +00001701# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001702# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1703# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001704# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001705# dependencies of the .inc files are, unless the contents of the .inc file
1706# changes.
1707$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001708 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001709
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001710endif # TABLEGEN_INC_FILES_COMMON
1711
1712ifdef TARGET
1713
1714TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1715 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1716 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1717 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1718 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1719 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1720 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1721
Rafael Espindola075630a2009-03-10 17:58:54 +00001722# All of these files depend on tblgen and the .td files.
1723$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1724
Chris Lattner3c473472004-12-16 17:28:50 +00001725$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1726$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001727 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001728 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001729
Chris Lattner3c473472004-12-16 17:28:50 +00001730$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1731$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001732 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001733 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001734
Chris Lattner3c473472004-12-16 17:28:50 +00001735$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1736$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001737 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001738 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001739
Chris Lattner3c473472004-12-16 17:28:50 +00001740$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1741$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001742 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001743 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001744
Chris Lattner3c473472004-12-16 17:28:50 +00001745$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1746$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001747 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001748 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001749
Chris Lattner3c473472004-12-16 17:28:50 +00001750$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1751$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001752 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001753 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001754
Chris Lattner02a4f902004-12-16 17:34:04 +00001755$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1756$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1757 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001758 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001759
Daniel Dunbarc464e512009-07-13 18:35:35 +00001760$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1761$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1762 $(Echo) "Building $(<F) assembly matcher with tblgen"
1763 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1764
Jim Grosbachbd29a362010-11-03 23:46:01 +00001765$(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
1766$(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1767 $(Echo) "Building $(<F) MC code emitter with tblgen"
1768 $(Verb) $(TableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
1769
Chris Lattner3c473472004-12-16 17:28:50 +00001770$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1771$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001772 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001773 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001774
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001775$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1776$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001777 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001778 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001779
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001780$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1781$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1782 $(Echo) "Building $(<F) disassembly tables with tblgen"
1783 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1784
Sean Callanan95fcebd2010-01-29 00:21:04 +00001785$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1786$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1787 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1788 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1789
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001790$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1791$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1792 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1793 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1794
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001795$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1796$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1797 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001798 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001799
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001800$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1801$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1802 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001803 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001804
Dale Johannesen49de9822009-02-05 01:49:45 +00001805$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001806$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1807 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesen49de9822009-02-05 01:49:45 +00001808 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1809
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001810$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1811 $(Echo) "Building $(<F) decoder tables with tblgen"
1812 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1813
1814
Reid Spencer3a561f52004-10-23 20:04:14 +00001815clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001816 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001817
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001818endif # TARGET
1819
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001820ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001821
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001822TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1823 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001824
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001825TDCommon := $(strip $(wildcard \
1826 $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001827
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001828TDFiles := $(TDSrc) $(TDCommon)
1829
1830$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1831
1832$(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
1833 $(Echo) "Building LLVMC compilation graph description with tblgen"
Mikhail Glushenkova73e5862010-10-23 07:32:53 +00001834 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001835
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001836clean-local::
1837 -$(Verb) $(RM) -f $(INCFiles)
1838
1839endif # LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001840
Reid Spencercc2d1e22004-10-30 09:19:36 +00001841###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001842# OTHER RULES: Other rules needed
1843###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001844
Chris Lattner30440c62003-01-16 21:06:18 +00001845# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001846ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001847%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001848 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001849else
1850%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001851 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001852endif
Chris Lattner30440c62003-01-16 21:06:18 +00001853
John Criswell7f336952003-09-06 14:44:17 +00001854# This rules ensures that header files that are removed still have a rule for
1855# which they can be "generated." This allows make to ignore them and
1856# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001857%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001858%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001859
Reid Spencercc2d1e22004-10-30 09:19:36 +00001860# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001861# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001862# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001863clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001864ifneq ($(strip $(ObjRootDir)),)
1865 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001866endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001867 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001868ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001869 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001870endif
John Criswell7a73b802003-06-30 21:59:07 +00001871
Reid Spencer3d659492004-11-02 16:36:03 +00001872clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001873 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001874
Reid Spencer12d79512004-11-12 02:27:36 +00001875
Reid Spencer3a561f52004-10-23 20:04:14 +00001876###############################################################################
1877# DEPENDENCIES: Include the dependency files if we should
1878###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001879ifndef DISABLE_AUTO_DEPENDENCIES
1880
Reid Spencer3a561f52004-10-23 20:04:14 +00001881# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001882ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001883
Reid Spencer3a561f52004-10-23 20:04:14 +00001884# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001885DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001886DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1887
1888# Include bitcode dependency files if using bitcode libraries
1889ifdef BYTECODE_LIBRARY
1890DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1891endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001892
Reid Spencer491a6cd2007-07-23 08:20:46 +00001893-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001894
John Criswelld741bcf2003-08-12 18:51:51 +00001895endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001896
Misha Brukmanef5dc702009-01-08 02:11:55 +00001897endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001898
Reid Spencer151f8ba2004-10-25 08:27:37 +00001899###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001900# CHECK: Running the test suite
1901###############################################################################
1902
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001903check::
Reid Spencer11fde542005-01-16 02:20:54 +00001904 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1905 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001906 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001907 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001908 TESTSUITE=$(TESTSUITE) ; \
1909 else \
1910 $(EchoCmd) No Makefile in test directory ; \
1911 fi ; \
1912 else \
1913 $(EchoCmd) No test directory ; \
1914 fi
1915
Daniel Dunbar666b4022010-08-02 00:05:18 +00001916check-lit:: check
1917
1918check-dg::
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001919 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1920 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1921 $(EchoCmd) Running test suite ; \
Daniel Dunbar666b4022010-08-02 00:05:18 +00001922 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001923 else \
1924 $(EchoCmd) No Makefile in test directory ; \
1925 fi ; \
1926 else \
1927 $(EchoCmd) No test directory ; \
1928 fi
1929
Daniel Dunbar34185792009-09-20 06:17:21 +00001930check-all::
1931 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1932 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1933 $(EchoCmd) Running test suite ; \
1934 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1935 else \
1936 $(EchoCmd) No Makefile in test directory ; \
1937 fi ; \
1938 else \
1939 $(EchoCmd) No test directory ; \
1940 fi
1941
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001942###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001943# UNITTESTS: Running the unittests test suite
1944###############################################################################
1945
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001946unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001947 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1948 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1949 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001950 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001951 else \
1952 $(EchoCmd) No Makefile in unittests directory ; \
1953 fi ; \
1954 else \
1955 $(EchoCmd) No unittests directory ; \
1956 fi
1957
1958###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001959# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001960###############################################################################
1961
Reid Spencere45ebfa2004-10-26 07:09:33 +00001962#------------------------------------------------------------------------
1963# Define distribution related variables
1964#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001965DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1966DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1967TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1968DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1969DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1970DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001971DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1972 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001973 Makefile.config.in configure autoconf
1974DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001975 $(PROJ_SRC_DIR)/*.h \
1976 $(PROJ_SRC_DIR)/*.td \
1977 $(PROJ_SRC_DIR)/*.def \
1978 $(PROJ_SRC_DIR)/*.ll \
1979 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001980DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001981DistSources = $(Sources) $(EXTRA_DIST)
1982DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001983
Reid Spencere45ebfa2004-10-26 07:09:33 +00001984#------------------------------------------------------------------------
1985# We MUST build distribution with OBJ_DIR != SRC_DIR
1986#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001987ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001988dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001989 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001990
Reid Spencere45ebfa2004-10-26 07:09:33 +00001991else
1992
Reid Spencere45ebfa2004-10-26 07:09:33 +00001993#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001994# Prevent attempt to run dist targets from anywhere but the top level
1995#------------------------------------------------------------------------
1996ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001997dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001998 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001999else
2000
2001#------------------------------------------------------------------------
2002# Provide the top level targets
2003#------------------------------------------------------------------------
2004
Reid Spencercc2d1e22004-10-30 09:19:36 +00002005dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002006
Reid Spencer345235ca2004-12-04 22:34:09 +00002007$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002008 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002009 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002010 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00002011
Reid Spencercc2d1e22004-10-30 09:19:36 +00002012dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002013
Reid Spencer345235ca2004-12-04 22:34:09 +00002014$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002015 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002016 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002017 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002018
Reid Spencercc2d1e22004-10-30 09:19:36 +00002019dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002020
Reid Spencer345235ca2004-12-04 22:34:09 +00002021$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002022 $(Echo) Packing zipped distribution file.
2023 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00002024 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002025
Misha Brukmanef5dc702009-01-08 02:11:55 +00002026dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002027 $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002028
Reid Spencerf8f57402005-01-28 19:52:32 +00002029DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00002030
Reid Spencer345235ca2004-12-04 22:34:09 +00002031dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002032 $(Echo) Checking distribution tar file.
2033 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002034 $(RM) -rf $(DistCheckDir) ; \
2035 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00002036 $(Verb) $(MKDIR) $(DistCheckDir)
2037 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002038 $(MKDIR) $(DistCheckDir)/build && \
2039 $(MKDIR) $(DistCheckDir)/install && \
2040 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2041 cd build && \
2042 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00002043 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00002044 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002045 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00002046 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002047 $(MAKE) install && \
2048 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002049 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002050 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002051
2052dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002053 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002054 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2055 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002056
2057endif
2058
2059#------------------------------------------------------------------------
2060# Provide the recursive distdir target for building the distribution directory
2061#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002062distdir: $(DistDir)/.makedistdir
2063$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002064 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002065 if test -d "$(DistDir)" ; then \
2066 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2067 exit 1 ; \
2068 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002069 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002070 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002071 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002072 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002073 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002074 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002075 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002076 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2077 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002078 for file in $(DistFiles) ; do \
2079 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002080 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002081 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2082 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002083 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002084 file=`echo "$$file" | \
2085 sed "s#^$$srcrootstrip/##"` \
2086 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002087 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002088 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2089 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2090 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002091 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002092 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002093 fi ; \
2094 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002095 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2096 to_dir="$(DistDir)/$$dir"; \
2097 $(MKDIR) "$$to_dir" ; \
2098 else \
2099 to_dir="$(DistDir)"; \
2100 fi; \
2101 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2102 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002103 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002104 fi ; \
2105 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002106 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2107 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002108 cd $(PROJ_SRC_DIR) ; \
2109 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2110 ( cd $$to_dir ; $(TAR) xf - ) ; \
2111 cd $(PROJ_OBJ_DIR) ; \
2112 else \
2113 cd $$from_dir ; \
2114 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2115 ( cd $$to_dir ; $(TAR) xf - ) ; \
2116 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002117 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002118 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002119 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002120 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002121 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002122 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002123 $(EchoCmd) "===== WARNING: Distribution Source " \
2124 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002125 elif test "$(Verb)" != '@' ; then \
2126 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002127 fi; \
2128 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002129 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002130 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002131 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002132 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002133 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002134 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002135 fi; \
2136 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002137 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002138 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002139 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2140 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002141 $(MAKE) dist-hook ; \
2142 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2143 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2144 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2145 -o ! -type d ! -perm -444 -exec \
2146 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2147 || chmod -R a+r $(DistDir) ; \
2148 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002149
Reid Spencercc2d1e22004-10-30 09:19:36 +00002150# This is invoked by distdir target, define it as a no-op to avoid errors if not
2151# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002152dist-hook::
2153
Reid Spencere53e3972004-10-22 23:06:30 +00002154endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002155
2156###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002157# TOP LEVEL - targets only to apply at the top level directory
2158###############################################################################
2159
2160ifeq ($(LEVEL),.)
2161
2162#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002163# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002164#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002165ifdef NO_INSTALL
2166install-local::
2167 $(Echo) Install circumvented with NO_INSTALL
2168uninstall-local::
2169 $(Echo) Uninstall circumvented with NO_INSTALL
2170else
Reid Spencere5487ba2004-10-24 07:53:21 +00002171install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002172 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002173 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002174 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002175 cd $(PROJ_SRC_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002176 for hdr in `find . -type f \
2177 '(' -name LICENSE.TXT \
2178 -o -name '*.def' \
2179 -o -name '*.h' \
2180 -o -name '*.inc' \
2181 -o -name '*.td' \
2182 ')' -print | grep -v CVS | \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002183 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002184 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002185 if test \! -d "$$instdir" ; then \
2186 $(EchoCmd) Making install directory $$instdir ; \
2187 $(MKDIR) $$instdir ;\
2188 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002189 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002190 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002191 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002192ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002193 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002194 cd $(PROJ_OBJ_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002195 for hdr in `find . -type f \
2196 '(' -name LICENSE.TXT \
2197 -o -name '*.def' \
2198 -o -name '*.h' \
2199 -o -name '*.inc' \
2200 -o -name '*.td' \
2201 ')' -print | grep -v CVS | \
2202 grep -v .svn` ; do \
2203 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2204 if test \! -d "$$instdir" ; then \
2205 $(EchoCmd) Making install directory $$instdir ; \
2206 $(MKDIR) $$instdir ;\
2207 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002208 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002209 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002210 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002211endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002212
2213uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002214 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002215 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2216 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002217 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002218 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002219 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002220 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002221 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002222 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002223 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002224 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002225endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002226endif
2227
Chris Lattner03840ac2007-04-14 23:35:45 +00002228check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002229 @echo searching for overlength lines in files: $(Sources)
2230 @echo
2231 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002232 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002233
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002234check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002235 @echo searching for tabs in files: $(Sources)
2236 @echo
2237 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002238 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002239
Reid Spencer6548bf12007-05-02 21:29:39 +00002240check-footprint:
2241 @ls -l $(LibDir) | awk '\
2242 BEGIN { sum = 0; } \
2243 { sum += $$5; } \
2244 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2245 @ls -l $(ToolDir) | awk '\
2246 BEGIN { sum = 0; } \
2247 { sum += $$5; } \
2248 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002249#------------------------------------------------------------------------
2250# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002251#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002252printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002253 $(Echo) "BuildMode : " '$(BuildMode)'
2254 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2255 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2256 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2257 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2258 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2259 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2260 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2261 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2262 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2263 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002264 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002265 $(Echo) "UserTargets : " '$(UserTargets)'
2266 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2267 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2268 $(Echo) "ObjDir : " '$(ObjDir)'
2269 $(Echo) "LibDir : " '$(LibDir)'
2270 $(Echo) "ToolDir : " '$(ToolDir)'
2271 $(Echo) "ExmplDir : " '$(ExmplDir)'
2272 $(Echo) "Sources : " '$(Sources)'
2273 $(Echo) "TDFiles : " '$(TDFiles)'
2274 $(Echo) "INCFiles : " '$(INCFiles)'
2275 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002276 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002277 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2278 $(Echo) "Compile.C : " '$(Compile.C)'
2279 $(Echo) "Archive : " '$(Archive)'
2280 $(Echo) "YaccFiles : " '$(YaccFiles)'
2281 $(Echo) "LexFiles : " '$(LexFiles)'
2282 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002283 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002284 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002285 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2286 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002287
2288###
2289# Debugging
2290
Daniel Dunbar3c898122009-03-06 22:23:25 +00002291# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002292# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002293make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002294 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))