blob: 64e6d2ac5288e2360533b100985837e98cb77a8d [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
208LINK_COMPONENTS = support system
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000209
210endif # LLVMC_BASED_DRIVER
211
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000212###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000213# VARIABLES: Set up various variables based on configuration data
214###############################################################################
215
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000216# Variable for if this make is for a "cleaning" target
217ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
218 IS_CLEANING_TARGET=1
219endif
220
Reid Spencer3a561f52004-10-23 20:04:14 +0000221#--------------------------------------------------------------------
222# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000223#--------------------------------------------------------------------
224
Reid Spencer0a522b12007-07-10 07:19:53 +0000225CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000226ifeq ($(ENABLE_OPTIMIZED),1)
227 BuildMode := Release
228 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000229 ifneq ($(HOST_OS),FreeBSD)
230 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000231 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000232 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000233 endif
234
235 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000236 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
237 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000238 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000239 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
240 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000241 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
242 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
243 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000244 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000245 BuildMode := $(BuildMode)+Debug
246 CXX.Flags += -g
247 C.Flags += -g
248 LD.Flags += -g
249 KEEP_SYMBOLS := 1
250 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000251else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000252 ifdef NO_DEBUG_SYMBOLS
253 BuildMode := Unoptimized
254 CXX.Flags +=
255 C.Flags +=
256 LD.Flags +=
257 KEEP_SYMBOLS := 1
258 else
259 BuildMode := Debug
260 CXX.Flags += -g
261 C.Flags += -g
262 LD.Flags += -g
263 KEEP_SYMBOLS := 1
264 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000265endif
266
267ifeq ($(ENABLE_PROFILING),1)
268 BuildMode := $(BuildMode)+Profile
269 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
270 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
271 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
272 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000273endif
274
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000275#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
276# CXX.Flags += -fvisibility-inlines-hidden
277#endif
278
Chris Lattnerc96d5082010-01-24 20:20:40 +0000279ifdef ENABLE_EXPENSIVE_CHECKS
280 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
281 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
282 REQUIRES_RTTI := 1
283endif
284
Reid Spencer99655e12006-08-25 19:54:53 +0000285# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000286ifndef REQUIRES_EH
287 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000288else
289 # If the library requires EH, it also requires RTTI.
290 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000291endif
Reid Spencer99655e12006-08-25 19:54:53 +0000292
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000293ifdef REQUIRES_FRAME_POINTER
294 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
295 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
296 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
297endif
298
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000299# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000300ifneq ($(REQUIRES_RTTI), 1)
301 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000302endif
303
Peter Collingbourneed50d382010-10-22 12:54:34 +0000304ifeq ($(ENABLE_COVERAGE),1)
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000305 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000306 CXX.Flags += -ftest-coverage -fprofile-arcs
307 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000308endif
309
Reid Spencer854071c2006-04-10 16:46:04 +0000310# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
311# then disable assertions by defining the appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000312ifeq ($(DISABLE_ASSERTIONS),1)
313 CPP.Defines += -DNDEBUG
314else
Duncan Sands8246adc2010-07-07 07:48:00 +0000315 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000316 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000317endif
318
Misha Brukmanef5dc702009-01-08 02:11:55 +0000319# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
320# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000321# appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000322ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
David Greenea696d242007-06-28 19:36:08 +0000323 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000324 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000325endif
326
Nick Lewyckya15dc032009-02-26 07:44:16 +0000327# LOADABLE_MODULE implies several other things so we force them to be
328# defined/on.
329ifdef LOADABLE_MODULE
330 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000331 LINK_LIBS_IN_SHARED := 1
332endif
333
334ifdef SHARED_LIBRARY
335 ENABLE_PIC := 1
336 PIC_FLAG = "(PIC)"
337endif
338
Reid Spencer89b0d992006-12-16 22:07:52 +0000339ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000340 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000341 # Nothing. Win32 defaults to PIC and warns when given -fPIC
342 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000343 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000344 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000345 CXX.Flags += -fno-common
346 C.Flags += -fno-common
347 else
348 # Linux and others; pass -fPIC
349 CXX.Flags += -fPIC
350 C.Flags += -fPIC
351 endif
352 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000353else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000354 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000355 CXX.Flags += -mdynamic-no-pic
356 C.Flags += -mdynamic-no-pic
357 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000358endif
359
Daniel Dunbardd464df2010-05-10 20:11:56 +0000360# Support makefile variable to disable any kind of timestamp/non-deterministic
361# info from being used in the build.
362ifeq ($(ENABLE_TIMESTAMPS),1)
363 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
364else
365 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
366endif
367
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000368ifeq ($(HOST_OS),MingW)
369 # Work around PR4957
370 CPP.Defines += -D__NO_CTYPE_INLINE
371 ifeq ($(LLVM_CROSS_COMPILING),1)
372 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
373 ifdef TOOLNAME
374 LD.Flags += -Wl,--allow-multiple-definition
375 endif
376 endif
377endif
378
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000379CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000380CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000381AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000382
Chris Lattner16620fc2006-07-27 18:19:51 +0000383# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000384ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000385 CXX.Flags += -mieee
386 CPP.BaseFlags += -mieee
387ifeq ($(ENABLE_PIC),0)
388 CXX.Flags += -fPIC
389 CPP.BaseFlags += -fPIC
390endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000391endif
392
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000393ifeq ($(ARCH),Alpha)
394 LD.Flags += -Wl,--no-relax
395endif
396
Reid Spencer3a561f52004-10-23 20:04:14 +0000397#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000398# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000399#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000400TargetMode :=
401ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000402 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000403endif
404
405ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000406ObjDir := $(ObjRootDir)
407LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
408ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
409ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
410LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
411LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
412LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000413
Reid Spencer3a561f52004-10-23 20:04:14 +0000414#--------------------------------------------------------------------
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000415# Locations of shared libraries
416#--------------------------------------------------------------------
417
418SharedPrefix := lib
419SharedLibDir := $(LibDir)
420LLVMSharedLibDir := $(LLVMLibDir)
421
422# Win32.DLL prefers to be located on the "PATH" of binaries.
423ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
424 SharedLibDir := $(ToolDir)
425 LLVMSharedLibDir := $(LLVMToolDir)
426
427 ifeq ($(HOST_OS),Cygwin)
428 SharedPrefix := cyg
429 else
430 SharedPrefix :=
431 endif
432endif
433
434#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000435# LLVM Capable Compiler
436#--------------------------------------------------------------------
437
438ifeq ($(LLVMCC_OPTION),llvm-gcc)
439 LLVMCC := $(LLVMGCC)
440 LLVMCXX := $(LLVMGXX)
441else
442 ifeq ($(LLVMCC_OPTION),clang)
443 ifneq ($(CLANGPATH),)
444 LLVMCC := $(CLANGPATH)
445 LLVMCXX := $(CLANGXXPATH)
446 else
447 ifeq ($(ENABLE_BUILT_CLANG),1)
448 LLVMCC := $(LLVMToolDir)/clang
449 LLVMCXX := $(LLVMToolDir)/clang++
450 endif
451 endif
452 endif
453endif
454
455#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000456# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000457#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000458EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
459Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000460ifndef LLVMAS
461LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
462endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000463ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000464 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000465 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000466 else
467 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
468 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000469endif
Misha Brukmanef5dc702009-01-08 02:11:55 +0000470LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencer43eb96c2007-02-09 15:52:07 +0000471ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000472LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000473endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000474ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000475LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
476endif
477ifndef LLI
478LLI := $(LLVMToolDir)/lli$(EXEEXT)
479endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000480ifndef LLC
481LLC := $(LLVMToolDir)/llc$(EXEEXT)
482endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000483ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000484LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000485endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000486ifndef LBUGPOINT
487LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
488endif
Reid Spencere46687c2006-12-03 21:01:45 +0000489
Reid Spencer3a561f52004-10-23 20:04:14 +0000490#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000491# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000492#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000493
Anton Korobeynikove55db742009-08-18 00:40:33 +0000494ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000495 DARWIN_VERSION := `sw_vers -productVersion`
496 # Strip a number like 10.4.7 to 10.4
497 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
498 # Get "4" out of 10.4 for later pieces in the makefile.
499 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000500
Dan Gohmane05f6092010-04-16 22:58:15 +0000501 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined,suppress \
Evan Chenga5e225e2009-09-08 18:52:20 +0000502 -dynamiclib
503 ifneq ($(ARCH),ARM)
504 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
505 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000506else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000507 SharedLinkOptions=-shared
Scott Michel87af5f02009-03-12 21:03:53 +0000508endif
509
Anton Korobeynikove55db742009-08-18 00:40:33 +0000510ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000511 ifneq ($(ARCH),ARM)
512 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
513 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000514endif
515
Reid Spencer492c2932005-01-11 04:31:07 +0000516ifdef SHARED_LIBRARY
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000517ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000518ifneq ($(HOST_OS),Darwin)
519 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
520else
Scott Michel87af5f02009-03-12 21:03:53 +0000521ifneq ($(DARWIN_MAJVERS),4)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000522 LD.Flags += $(RPATH) -Wl,$(SharedLibDir)
523endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000524endif
Scott Michel87af5f02009-03-12 21:03:53 +0000525endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000526endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000527
Reid Spencercceed9f2004-11-08 17:32:12 +0000528ifdef TOOL_VERBOSE
529 C.Flags += -v
530 CXX.Flags += -v
531 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000532 VERBOSE := 1
533endif
534
Reid Spencer3a561f52004-10-23 20:04:14 +0000535# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000536ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000537 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000538 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000539 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000540else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000541 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000542endif
543
Vikram S. Advefeeae582002-09-18 11:55:13 +0000544# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000545ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000546 Strip := $(PLATFORMSTRIPOPTS)
547 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000548 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000549endif
550
Rafael Espindola31552a92010-10-15 00:58:12 +0000551ifdef TOOL_NO_EXPORTS
552 DynamicFlags :=
553else
554 DynamicFlag := $(RDYNAMIC)
555endif
556
Reid Spencer3a561f52004-10-23 20:04:14 +0000557# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000558ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
559ifneq ($(HOST_OS), Darwin)
Reid Spencer4d71b662004-10-22 21:01:56 +0000560ifdef TOOLNAME
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000561 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
562 ifdef EXAMPLE_TOOL
Rafael Espindola31552a92010-10-15 00:58:12 +0000563 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000564 else
Rafael Espindola31552a92010-10-15 00:58:12 +0000565 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000566 endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000567endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000568else
569ifneq ($(DARWIN_MAJVERS),4)
570 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
Nick Lewyckya15dc032009-02-26 07:44:16 +0000571endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000572endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000573endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000574
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000575
Reid Spencer3a561f52004-10-23 20:04:14 +0000576#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000577# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000578#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000579
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000580ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000581CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000582endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000583CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
584 $(EXTRA_OPTIONS)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000585# Enable cast-qual for C++; the workaround is to use const_cast.
586CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000587
Anton Korobeynikove55db742009-08-18 00:40:33 +0000588ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000589 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000590endif
591
Chris Lattner73faa392006-05-30 16:38:06 +0000592# If we are building a universal binary on Mac OS/X, pass extra options. This
593# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000594# apps.
595#
596# The following can be optionally specified:
597# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
598# For Mac OS/X 10.4 Intel machines, the traditional one is:
599# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
600# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
601# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
602# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000603ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000604 ifndef UNIVERSAL_ARCH
605 UNIVERSAL_ARCH := i386 ppc
606 endif
607 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
608 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000609 ifdef UNIVERSAL_SDK_PATH
610 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000611 endif
612
613 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000614 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000615else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000616 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000617 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000618 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000619 else
620 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000621 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000622 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000623 endif
624 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000625endif
626
Anton Korobeynikove55db742009-08-18 00:40:33 +0000627ifeq ($(HOST_OS),SunOS)
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000628CPP.BaseFlags += -include llvm/System/Solaris.h
629endif
630
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000631ifeq ($(HOST_OS),AuroraUX)
632CPP.BaseFlags += -include llvm/System/Solaris.h
633endif # !HOST_OS - AuroraUX.
634
Misha Brukmanef5dc702009-01-08 02:11:55 +0000635LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman63f97202008-10-17 01:33:43 +0000636CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000637# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000638CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
639 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000640 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
641 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
642 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000643
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000644ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000645 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000646 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000647 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
648 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000649 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000650 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000651 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000652 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
653 $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000654 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000655else
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000656 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000657 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000658 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000659 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000660 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner6be92662009-06-16 23:00:42 +0000661 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000662 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000663 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000664endif
665
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000666BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000667 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000668Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000669 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000670
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000671BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000672 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000673
Misha Brukmanef5dc702009-01-08 02:11:55 +0000674ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
675ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000676DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000677
678# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
679# paths. In this case, the SYSPATH function (defined in
680# Makefile.config) transforms Unix paths into Windows paths.
681TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000682 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000683 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
684 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
685
Reid Spencercc2d1e22004-10-30 09:19:36 +0000686Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000687LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000688ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000689Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000690else
Reid Spencer3a561f52004-10-23 20:04:14 +0000691Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000692endif
693
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000694AliasTool = ln -s
695
Chris Lattner00950542001-06-06 20:29:01 +0000696#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000697# Get the list of source files and compute object file
698# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000699#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000700
701ifndef SOURCES
702 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000703 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000704else
Chris Lattner89681112006-01-27 22:13:12 +0000705 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000706endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000707
Chris Lattner89681112006-01-27 22:13:12 +0000708ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000709Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000710endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000711
Chris Lattner89681112006-01-27 22:13:12 +0000712BaseNameSources := $(sort $(basename $(Sources)))
713
714ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000715ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
716
Reid Spencer3a561f52004-10-23 20:04:14 +0000717###############################################################################
718# DIRECTORIES: Handle recursive descent of directory structure
719###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000720
Chris Lattner00950542001-06-06 20:29:01 +0000721#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000722# Provide rules to make install dirs. This must be early
723# in the file so they get built before dependencies
724#---------------------------------------------------------
725
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000726$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000727 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000728
Reid Spencercc2d1e22004-10-30 09:19:36 +0000729# To create other directories, as needed, and timestamp their creation
730%/.dir:
731 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000732 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000733
Reid Spencer815cbcf2004-11-18 10:03:46 +0000734.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
735.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000736
737#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000738# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000739#---------------------------------------------------------
740
Misha Brukmanef5dc702009-01-08 02:11:55 +0000741SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000742ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000743SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000744
745ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000746$(RecursiveTargets)::
747 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000748 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000749 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000750 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000751 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000752 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000753 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000754 done
Chris Lattner82033602006-07-26 20:22:26 +0000755else
756$(RecursiveTargets)::
757 $(Verb) for dir in $(DIRS); do \
758 ($(MAKE) -C $$dir $@ ) || exit 1; \
759 done
760endif
761
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000762endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000763
Reid Spencer3a561f52004-10-23 20:04:14 +0000764#---------------------------------------------------------
765# Handle the EXPERIMENTAL_DIRS options ensuring success
766# after each directory is built.
767#---------------------------------------------------------
768ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000769$(RecursiveTargets)::
770 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000771 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000772 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000773 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000774 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000775 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000776 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000777 done
778endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000779
Reid Spencer25e8a702005-12-21 23:17:06 +0000780#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000781# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
782#-----------------------------------------------------------
783ifdef OPTIONAL_PARALLEL_DIRS
784 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
785endif
786
787#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000788# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000789#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000790ifdef PARALLEL_DIRS
791
Reid Spencercc2d1e22004-10-30 09:19:36 +0000792SubDirs += $(PARALLEL_DIRS)
793
Reid Spencer44cb1b32004-12-03 20:08:48 +0000794# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000795all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
796clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000797clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000798install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000799uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000800install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000801unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000802
Reid Spencer345235ca2004-12-04 22:34:09 +0000803ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000804
Reid Spencer345235ca2004-12-04 22:34:09 +0000805$(ParallelTargets) :
Daniel Dunbar546023f2010-06-08 20:10:13 +0000806 $(Verb) if ([ ! -f $(@D)/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000807 command test $(@D)/Makefile -ot \
Chris Lattner381cd022010-06-15 21:35:22 +0000808 $(PROJ_SRC_DIR)/$(@D)/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000809 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000810 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000811 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000812 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000813endif
814
Reid Spencer3a561f52004-10-23 20:04:14 +0000815#---------------------------------------------------------
816# Handle the OPTIONAL_DIRS options for directores that may
817# or may not exist.
818#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000819ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000820
Reid Spencercc2d1e22004-10-30 09:19:36 +0000821SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000822
Chris Lattner82033602006-07-26 20:22:26 +0000823ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000824$(RecursiveTargets)::
825 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000826 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000827 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000828 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000829 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000830 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000831 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000832 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000833 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000834 done
Chris Lattner82033602006-07-26 20:22:26 +0000835else
836$(RecursiveTargets)::
837 $(Verb) for dir in $(OPTIONAL_DIRS); do \
838 ($(MAKE) -C$$dir $@ ) || exit 1; \
839 done
840endif
John Criswell2a6530f2003-06-27 16:58:44 +0000841endif
842
Reid Spencerfc945082004-08-20 09:20:05 +0000843#---------------------------------------------------------
844# Handle the CONFIG_FILES options
845#---------------------------------------------------------
846ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000847
Reid Spencera2a31bf2007-02-06 18:53:14 +0000848ifdef NO_INSTALL
849install-local::
850 $(Echo) Install circumvented with NO_INSTALL
851uninstall-local::
852 $(Echo) UnInstall circumvented with NO_INSTALL
853else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000854install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
855 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000856 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000857 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000858 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000859 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000860 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000861 else \
862 $(ECHO) Error: cannot find config file $${file}. ; \
863 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000864 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000865
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000866uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000867 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000868 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000869 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000870 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000871endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000872
Reid Spencerfc945082004-08-20 09:20:05 +0000873endif
874
Reid Spencer3a561f52004-10-23 20:04:14 +0000875###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +0000876# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000877###############################################################################
878
879#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000880# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000881# libraries needed when linking. There are "Proj" libs
882# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000883# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000884#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000885
Chris Lattneref0d0f12006-09-04 04:47:21 +0000886ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000887ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
888ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000889ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
890ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
891endif
892
893ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000894LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
895LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000896LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000897LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000898endif
899
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000900# Loadable module for Win32 requires all symbols resolved for linking.
901# Then all symbols in LLVM.dll will be available.
902ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000903 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000904 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
905 LINK_COMPONENTS += all
906 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000907 endif
908endif
909
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000910ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000911ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000912
913# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
914# clean in tools, then do a make in tools (instead of at the top level).
915$(LLVM_CONFIG):
916 @echo "*** llvm-config doesn't exist - rebuilding it."
917 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000918
Chris Lattner0a1db822006-09-04 05:23:20 +0000919$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
920
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000921ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000922# We can take the "auto-import" feature to get rid of using dllimport.
923ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
924LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
925 -L $(SharedLibDir)
926endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000927LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000928LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000929else
Chris Lattnerf636aa92010-09-01 16:11:17 +0000930
931ifndef NO_LLVM_CONFIG
932LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
933ifeq ($(LLVMConfigLibs),Error)
934$(error llvm-config --libs failed)
935endif
936LLVMLibsOptions += $(LLVMConfigLibs)
937LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
938ifeq ($(LLVMConfigLibfiles),Error)
939$(error llvm-config --libfiles failed)
940endif
941LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
942endif
943
Chris Lattneref0d0f12006-09-04 04:47:21 +0000944endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000945endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000946endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000947
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000948# Set up the library exports file.
949ifdef EXPORTED_SYMBOL_FILE
950
951# First, set up the native export file, which may differ from the source
952# export file.
953
NAKAMURA Takumi71cacda2010-10-04 02:32:21 +0000954# The option --version-script is not effective on GNU ld win32.
955ifneq (,$(filter $(HOST_OS),Cygwin MingW))
956 HAVE_LINK_VERSION_SCRIPT := 0
957endif
958
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000959ifeq ($(HOST_OS),Darwin)
960# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +0000961NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +0000962$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +0000963 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000964clean-local::
965 -$(Verb) $(RM) -f $(NativeExportsFile)
966else
Dan Gohmanda612d62010-06-01 14:56:56 +0000967ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
968# Gold and BFD ld require a version script rather than a plain list.
969NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
970$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
971 $(Verb) echo "{" > $@
972 $(Verb) grep -q "\<" $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +0000973 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Dan Gohmanda612d62010-06-01 14:56:56 +0000974 $(Verb) echo " local: *;" >> $@
975 $(Verb) echo "};" >> $@
976clean-local::
977 -$(Verb) $(RM) -f $(NativeExportsFile)
978else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000979ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +0000980# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000981NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000982$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
983 $(Echo) Generating $(notdir $@)
984 $(Verb) $(ECHO) "EXPORTS" > $@
985 $(Verb) $(CAT) $< >> $@
986clean-local::
987 -$(Verb) $(RM) -f $(NativeExportsFile)
988else
Dan Gohman9a7570c2010-09-03 17:29:33 +0000989# Default behavior: just use the exports file verbatim.
990NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
991endif
992endif
993endif
994
995# Now add the linker command-line options to use the native export file.
996
997# Darwin
998ifeq ($(HOST_OS),Darwin)
999LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1000endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001001
Dan Gohmane05f6092010-04-16 22:58:15 +00001002# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001003ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1004LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001005endif
1006
Dan Gohman9a7570c2010-09-03 17:29:33 +00001007# Windows
1008ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1009# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1010SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001011endif
1012
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001013endif
1014
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001015###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001016# Library Build Rules: Four ways to build a library
1017###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001018
Reid Spencer7980ea42004-12-05 05:17:22 +00001019#---------------------------------------------------------
1020# Bytecode Module Targets:
1021# If the user set MODULE_NAME then they want to build a
1022# bytecode module from the sources. We compile all the
1023# sources and link it together into a single bytecode
1024# module.
1025#---------------------------------------------------------
1026
1027ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001028ifeq ($(strip $(LLVMCC)),)
1029$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001030else
Reid Spencer7980ea42004-12-05 05:17:22 +00001031
1032Module := $(LibDir)/$(MODULE_NAME).bc
Daniel Dunbar112257d2010-02-23 09:28:50 +00001033LinkModule := $(LLVMLD) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +00001034
Reid Spencer7980ea42004-12-05 05:17:22 +00001035
1036ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001037LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001038endif
1039
Reid Spencer43eb96c2007-02-09 15:52:07 +00001040$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001041 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001042 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1043
1044all-local:: $(Module)
1045
1046clean-local::
1047ifneq ($(strip $(Module)),)
1048 -$(Verb) $(RM) -f $(Module)
1049endif
1050
Reid Spencerab3690b2004-12-13 07:38:07 +00001051ifdef BYTECODE_DESTINATION
1052ModuleDestDir := $(BYTECODE_DESTINATION)
1053else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001054ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001055endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001056
Reid Spencera2a31bf2007-02-06 18:53:14 +00001057ifdef NO_INSTALL
1058install-local::
1059 $(Echo) Install circumvented with NO_INSTALL
1060uninstall-local::
1061 $(Echo) Uninstall circumvented with NO_INSTALL
1062else
Reid Spencerab3690b2004-12-13 07:38:07 +00001063DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1064
1065install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001066install-local:: $(DestModule)
1067
Misha Brukmanef5dc702009-01-08 02:11:55 +00001068$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001069 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001070 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001071
1072uninstall-local::
1073 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1074 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001075endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001076
1077endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001078endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001079
Reid Spencer3a561f52004-10-23 20:04:14 +00001080# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001081ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001082
Misha Brukmanf547a122009-08-17 15:31:24 +00001083# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001084LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001085ifdef LOADABLE_MODULE
Nick Lewyckya15dc032009-02-26 07:44:16 +00001086LibName.A := $(LibDir)/$(LIBRARYNAME).a
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001087LibName.SO := $(SharedLibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001088else
Reid Spencercc2d1e22004-10-30 09:19:36 +00001089LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001090LibName.SO := $(SharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001091endif
Reid Spencercc2d1e22004-10-30 09:19:36 +00001092LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001093LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001094
Reid Spencer3a561f52004-10-23 20:04:14 +00001095#---------------------------------------------------------
1096# Shared Library Targets:
1097# If the user asked for a shared library to be built
1098# with the SHARED_LIBRARY variable, then we provide
1099# targets for building them.
1100#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001101ifdef SHARED_LIBRARY
1102
Nick Lewyckya15dc032009-02-26 07:44:16 +00001103all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001104
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001105ifdef EXPORTED_SYMBOL_FILE
1106$(LibName.SO): $(NativeExportsFile)
1107endif
1108
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001109ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001110ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001111SharedLibKindMessage := "Loadable Module"
Reid Spencer42fe4552006-08-07 23:12:15 +00001112else
1113SharedLibKindMessage := "Shared Library"
1114endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001115$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001116 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001117 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001118 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001119 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001120else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001121$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001122 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001123 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001124endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001125
1126clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001127ifneq ($(strip $(LibName.SO)),)
1128 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001129endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001130
Reid Spencera2a31bf2007-02-06 18:53:14 +00001131ifdef NO_INSTALL
1132install-local::
1133 $(Echo) Install circumvented with NO_INSTALL
1134uninstall-local::
1135 $(Echo) Uninstall circumvented with NO_INSTALL
1136else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001137
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001138# Win32.DLL prefers to be located on the "PATH" of binaries.
1139ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1140DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001141else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001142DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001143endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001144DestSharedLib := $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer4d71b662004-10-22 21:01:56 +00001145
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001146install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001147
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001148$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001149 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001150 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001151
Misha Brukmanef5dc702009-01-08 02:11:55 +00001152uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001153 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001154 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001155endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001156endif
1157
Reid Spencer3a561f52004-10-23 20:04:14 +00001158#---------------------------------------------------------
1159# Bytecode Library Targets:
1160# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001161# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001162# targets for building them.
1163#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001164ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001165ifeq ($(strip $(LLVMCC)),)
1166$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001167else
Reid Spencer4d71b662004-10-22 21:01:56 +00001168
Reid Spencer9a2f1372004-12-02 09:28:21 +00001169all-local:: $(LibName.BCA)
1170
1171ifdef EXPORTED_SYMBOL_FILE
Daniel Dunbar112257d2010-02-23 09:28:50 +00001172BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001173
Reid Spencer43eb96c2007-02-09 15:52:07 +00001174$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001175 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001176 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1177 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001178 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001179 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001180 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001181else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001182$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001183 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001184 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001185 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001186 $(Verb) $(LArchive) $@ $(ObjectsBC)
1187
Reid Spencer4d71b662004-10-22 21:01:56 +00001188endif
1189
Reid Spencer3a561f52004-10-23 20:04:14 +00001190clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001191ifneq ($(strip $(LibName.BCA)),)
1192 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001193endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001194
Reid Spencer8f094f32004-12-13 07:28:21 +00001195ifdef BYTECODE_DESTINATION
1196BytecodeDestDir := $(BYTECODE_DESTINATION)
1197else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001198BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001199endif
1200
Daniel Dunbard62031e2009-05-12 05:35:40 +00001201DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001202
Reid Spencer44cb1b32004-12-03 20:08:48 +00001203install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001204
Reid Spencera2a31bf2007-02-06 18:53:14 +00001205ifdef NO_INSTALL
1206install-local::
1207 $(Echo) Install circumvented with NO_INSTALL
1208uninstall-local::
1209 $(Echo) Uninstall circumvented with NO_INSTALL
1210else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001211install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001212
Mike Stumpb445d742009-02-12 23:45:11 +00001213$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001214 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001215 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001216
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001217uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001218 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001219 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001220endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001221endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001222endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001223
Reid Spencercc2d1e22004-10-30 09:19:36 +00001224#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001225# Library Targets:
1226# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1227# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001228#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001229ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001230ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001231ifndef LOADABLE_MODULE
1232BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001233endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001234endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001235endif
Chris Lattner760da062003-03-14 20:25:22 +00001236
Reid Spencercc2d1e22004-10-30 09:19:36 +00001237#---------------------------------------------------------
1238# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001239# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001240# then we provide targets for building them.
1241#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001242ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001243
Reid Spencercc2d1e22004-10-30 09:19:36 +00001244all-local:: $(LibName.A)
1245
Reid Spencerf2ac1892004-12-16 07:36:08 +00001246$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001247 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001248 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001249 $(Verb) $(Archive) $@ $(ObjectsO)
1250 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001251
Reid Spencer3a561f52004-10-23 20:04:14 +00001252clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001253ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001254 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001255endif
1256
Reid Spencera2a31bf2007-02-06 18:53:14 +00001257ifdef NO_INSTALL
1258install-local::
1259 $(Echo) Install circumvented with NO_INSTALL
1260uninstall-local::
1261 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001262else
1263ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001264install-local::
1265 $(Echo) Install circumvented with NO_INSTALL
1266uninstall-local::
1267 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001268else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001269DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001270
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001271install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001272
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001273$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001274 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001275 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001276 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001277
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001278uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001279 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001280 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001281endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001282endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001283endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001284
1285# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001286endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001287
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001288###############################################################################
1289# Tool Build Rules: Build executable tool based on TOOLNAME option
1290###############################################################################
1291
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001292ifdef TOOLNAME
1293
Reid Spencercc2d1e22004-10-30 09:19:36 +00001294#---------------------------------------------------------
1295# Set up variables for building a tool.
1296#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001297TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001298ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001299ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001300else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001301ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1302endif
1303
1304# TOOLALIAS is a name to symlink (or copy) the tool to.
1305ifdef TOOLALIAS
1306ifdef EXAMPLE_TOOL
1307ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1308else
1309ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1310endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001311endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001312
Reid Spencercc2d1e22004-10-30 09:19:36 +00001313#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001314# Prune Exports
1315#---------------------------------------------------------
1316
1317# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1318# not exporting all of the weak symbols from the binary. This reduces dyld
1319# startup time by 4x on darwin in some cases.
1320ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001321ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001322
1323# Tiger tools don't support this.
1324ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001325LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001326endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001327endif
Chris Lattner61863a32009-02-26 17:47:49 +00001328
Anton Korobeynikove55db742009-08-18 00:40:33 +00001329ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001330ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001331 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001332endif
1333endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001334endif
Chris Lattner61863a32009-02-26 17:47:49 +00001335
Devang Patel83be4512010-07-15 20:57:09 +00001336#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001337# Tool Order File Support
1338#---------------------------------------------------------
1339
1340ifeq ($(HOST_OS),Darwin)
1341ifdef TOOL_ORDER_FINE
1342
1343LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1344
1345endif
1346endif
1347
1348#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001349# Tool Version Info Support
1350#---------------------------------------------------------
1351
1352ifeq ($(HOST_OS),Darwin)
1353ifdef TOOL_INFO_PLIST
1354
1355LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1356
1357$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1358
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001359$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001360 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1361 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1362 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1363 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1364 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1365 $< > $@
1366
1367endif
1368endif
Chris Lattner61863a32009-02-26 17:47:49 +00001369
1370#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001371# Provide targets for building the tools
1372#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001373all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001374
Reid Spencer3a561f52004-10-23 20:04:14 +00001375clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001376ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001377 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001378endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001379ifneq ($(strip $(ToolAliasBuildPath)),)
1380 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1381endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001382
Reid Spencer815cbcf2004-11-18 10:03:46 +00001383ifdef EXAMPLE_TOOL
1384$(ToolBuildPath): $(ExmplDir)/.dir
1385else
1386$(ToolBuildPath): $(ToolDir)/.dir
1387endif
1388
Chris Lattnera7868af2006-09-04 06:39:52 +00001389$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001390 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001391 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001392 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001393 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001394 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001395
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001396ifneq ($(strip $(ToolAliasBuildPath)),)
1397$(ToolAliasBuildPath): $(ToolBuildPath)
1398 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1399 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1400 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001401 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001402 $(StripWarnMsg)
1403endif
1404
Reid Spencera2a31bf2007-02-06 18:53:14 +00001405ifdef NO_INSTALL
1406install-local::
1407 $(Echo) Install circumvented with NO_INSTALL
1408uninstall-local::
1409 $(Echo) Uninstall circumvented with NO_INSTALL
1410else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001411DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001412
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001413install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001414
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001415$(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001416 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001417 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001418
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001419uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001420 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001421 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001422
1423# TOOLALIAS install.
1424ifdef TOOLALIAS
Chris Lattner97d7b102010-03-10 21:27:53 +00001425DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001426
1427install-local:: $(DestToolAlias)
1428
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001429$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001430 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1431 $(Verb) $(RM) -f $(DestToolAlias)
1432 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1433
1434uninstall-local::
1435 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1436 -$(Verb) $(RM) -f $(DestToolAlias)
1437endif
1438
Reid Spencera2a31bf2007-02-06 18:53:14 +00001439endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001440endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001441
Reid Spencercc2d1e22004-10-30 09:19:36 +00001442###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001443# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001444###############################################################################
1445
Duraid Madina197ab872006-02-15 03:23:26 +00001446# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001447ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001448 DISABLE_AUTO_DEPENDENCIES=1
1449endif
1450
Reid Spencercc2d1e22004-10-30 09:19:36 +00001451# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001452ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001453
Reid Spencercc2d1e22004-10-30 09:19:36 +00001454#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001455# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001456#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001457
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001458DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001459 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001460
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001461# If the build succeeded, move the dependency file over, otherwise
1462# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001463DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1464 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1465
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001466$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001467 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001468 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001469 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001470
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001471$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001472 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1473 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1474 $(DEPEND_MOVEFILE)
1475
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001476$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001477 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001478 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001479 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001480
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001481$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001482 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001483 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001484 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001485
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001486$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001487 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1488 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1489 $(DEPEND_MOVEFILE)
1490
Reid Spencercc2d1e22004-10-30 09:19:36 +00001491#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001492# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001493#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001494
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001495BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1496 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1497
1498# If the build succeeded, move the dependency file over, otherwise
1499# remove it.
1500BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1501 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1502
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001503$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001504 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001505 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1506 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1507 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001508
Greg Clayton43bc79a2010-07-13 18:47:09 +00001509$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1510 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1511 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1512 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1513 $(BC_DEPEND_MOVEFILE)
1514
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001515$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001516 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001517 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1518 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1519 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001520
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001521$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001522 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001523 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1524 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1525 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001526
Greg Clayton43bc79a2010-07-13 18:47:09 +00001527$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1528 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1529 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1530 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1531 $(BC_DEPEND_MOVEFILE)
1532
Reid Spencercc2d1e22004-10-30 09:19:36 +00001533# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001534else
1535
Nick Lewyckya15dc032009-02-26 07:44:16 +00001536$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001537 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001538 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001539
Greg Clayton43bc79a2010-07-13 18:47:09 +00001540$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1541 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1542 $(Compile.CXX) $< -o $@
1543
Nick Lewyckya15dc032009-02-26 07:44:16 +00001544$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001545 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001546 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001547
Nick Lewyckya15dc032009-02-26 07:44:16 +00001548$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001549 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001550 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001551
Greg Clayton43bc79a2010-07-13 18:47:09 +00001552$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1553 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1554 $(Compile.C) $< -o $@
1555
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001556$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001557 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001558 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Reid Spencer4d71b662004-10-22 21:01:56 +00001559
Greg Clayton43bc79a2010-07-13 18:47:09 +00001560$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1561 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1562 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1563
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001564$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001565 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001566 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001567
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001568$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001569 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001570 $(BCCompile.C) $< -o $@ -S -emit-llvm
Brian Gaeke44909cf2003-12-10 00:26:28 +00001571
Greg Clayton43bc79a2010-07-13 18:47:09 +00001572$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1573 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1574 $(BCCompile.C) $< -o $@ -S -emit-llvm
1575
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001576endif
1577
Chris Lattner8eb12de2006-06-21 21:01:20 +00001578
1579## Rules for building preprocessed (.i/.ii) outputs.
1580$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1581 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1582 $(Verb) $(Preprocess.CXX) $< -o $@
1583
Greg Clayton43bc79a2010-07-13 18:47:09 +00001584$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1585 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1586 $(Verb) $(Preprocess.CXX) $< -o $@
1587
Chris Lattner8eb12de2006-06-21 21:01:20 +00001588$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1589 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1590 $(Verb) $(Preprocess.CXX) $< -o $@
1591
Reid Spencer44136722006-12-10 04:56:38 +00001592$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001593 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1594 $(Verb) $(Preprocess.C) $< -o $@
1595
Greg Clayton43bc79a2010-07-13 18:47:09 +00001596$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1597 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1598 $(Verb) $(Preprocess.C) $< -o $@
1599
Chris Lattner8eb12de2006-06-21 21:01:20 +00001600
1601$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1602 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001603 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001604
Greg Clayton43bc79a2010-07-13 18:47:09 +00001605$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1606 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1607 $(Compile.CXX) $< -o $@ -S
1608
Chris Lattner8eb12de2006-06-21 21:01:20 +00001609$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1610 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001611 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001612
1613$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1614 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001615 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001616
Greg Clayton43bc79a2010-07-13 18:47:09 +00001617$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1618 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1619 $(Compile.C) $< -o $@ -S
1620
Reid Spencer8b2e1412006-11-17 03:32:33 +00001621
Chris Lattner89681112006-01-27 22:13:12 +00001622# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001623ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001624$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001625 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001626 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001627else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001628$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001629 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001630 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001631endif
1632
Chris Lattner89681112006-01-27 22:13:12 +00001633
Reid Spencercc2d1e22004-10-30 09:19:36 +00001634#---------------------------------------------------------
1635# Provide rule to build .bc files from .ll sources,
1636# regardless of dependencies
1637#---------------------------------------------------------
1638$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001639 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001640 $(Verb) $(LLVMAS) $< -f -o $@
1641
1642###############################################################################
1643# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1644###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001645
Reid Spencer4d71b662004-10-22 21:01:56 +00001646ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001647TABLEGEN_INC_FILES_COMMON = 1
1648endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001649
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001650ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001651TABLEGEN_INC_FILES_COMMON = 1
1652endif
1653
1654ifdef TABLEGEN_INC_FILES_COMMON
1655
Reid Spencercc2d1e22004-10-30 09:19:36 +00001656INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001657INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1658.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001659
Misha Brukmanef5dc702009-01-08 02:11:55 +00001660# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001661# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1662# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001663# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001664# dependencies of the .inc files are, unless the contents of the .inc file
1665# changes.
1666$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001667 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001668
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001669endif # TABLEGEN_INC_FILES_COMMON
1670
1671ifdef TARGET
1672
1673TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1674 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1675 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1676 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1677 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1678 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1679 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1680
Rafael Espindola075630a2009-03-10 17:58:54 +00001681# All of these files depend on tblgen and the .td files.
1682$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1683
Chris Lattner3c473472004-12-16 17:28:50 +00001684$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1685$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001686 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001687 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001688
Chris Lattner3c473472004-12-16 17:28:50 +00001689$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1690$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001691 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001692 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001693
Chris Lattner3c473472004-12-16 17:28:50 +00001694$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1695$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001696 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001697 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001698
Chris Lattner3c473472004-12-16 17:28:50 +00001699$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1700$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001701 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001702 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001703
Chris Lattner3c473472004-12-16 17:28:50 +00001704$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1705$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001706 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001707 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001708
Chris Lattner3c473472004-12-16 17:28:50 +00001709$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1710$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001711 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001712 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001713
Chris Lattner02a4f902004-12-16 17:34:04 +00001714$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1715$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1716 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001717 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001718
Daniel Dunbarc464e512009-07-13 18:35:35 +00001719$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1720$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1721 $(Echo) "Building $(<F) assembly matcher with tblgen"
1722 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1723
Jim Grosbachbd29a362010-11-03 23:46:01 +00001724$(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
1725$(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1726 $(Echo) "Building $(<F) MC code emitter with tblgen"
1727 $(Verb) $(TableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
1728
Chris Lattner3c473472004-12-16 17:28:50 +00001729$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1730$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001731 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001732 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001733
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001734$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1735$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001736 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001737 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001738
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001739$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1740$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1741 $(Echo) "Building $(<F) disassembly tables with tblgen"
1742 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1743
Sean Callanan95fcebd2010-01-29 00:21:04 +00001744$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1745$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1746 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1747 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1748
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001749$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1750$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1751 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1752 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1753
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001754$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1755$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1756 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001757 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001758
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001759$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1760$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1761 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001762 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001763
Dale Johannesen49de9822009-02-05 01:49:45 +00001764$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001765$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1766 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesen49de9822009-02-05 01:49:45 +00001767 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1768
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001769$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1770 $(Echo) "Building $(<F) decoder tables with tblgen"
1771 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1772
1773
Reid Spencer3a561f52004-10-23 20:04:14 +00001774clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001775 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001776
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001777endif # TARGET
1778
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001779ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001780
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001781TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1782 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001783
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001784TDCommon := $(strip $(wildcard \
1785 $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001786
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001787TDFiles := $(TDSrc) $(TDCommon)
1788
1789$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1790
1791$(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
1792 $(Echo) "Building LLVMC compilation graph description with tblgen"
Mikhail Glushenkova73e5862010-10-23 07:32:53 +00001793 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001794
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001795clean-local::
1796 -$(Verb) $(RM) -f $(INCFiles)
1797
1798endif # LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001799
Reid Spencercc2d1e22004-10-30 09:19:36 +00001800###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001801# OTHER RULES: Other rules needed
1802###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001803
Chris Lattner30440c62003-01-16 21:06:18 +00001804# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001805ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001806%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001807 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001808else
1809%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001810 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001811endif
Chris Lattner30440c62003-01-16 21:06:18 +00001812
John Criswell7f336952003-09-06 14:44:17 +00001813# This rules ensures that header files that are removed still have a rule for
1814# which they can be "generated." This allows make to ignore them and
1815# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001816%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001817%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001818
Reid Spencercc2d1e22004-10-30 09:19:36 +00001819# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001820# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001821# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001822clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001823ifneq ($(strip $(ObjRootDir)),)
1824 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001825endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001826 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001827ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001828 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001829endif
John Criswell7a73b802003-06-30 21:59:07 +00001830
Reid Spencer3d659492004-11-02 16:36:03 +00001831clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001832 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001833
Reid Spencer12d79512004-11-12 02:27:36 +00001834
Reid Spencer3a561f52004-10-23 20:04:14 +00001835###############################################################################
1836# DEPENDENCIES: Include the dependency files if we should
1837###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001838ifndef DISABLE_AUTO_DEPENDENCIES
1839
Reid Spencer3a561f52004-10-23 20:04:14 +00001840# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001841ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001842
Reid Spencer3a561f52004-10-23 20:04:14 +00001843# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001844DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001845DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1846
1847# Include bitcode dependency files if using bitcode libraries
1848ifdef BYTECODE_LIBRARY
1849DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1850endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001851
Reid Spencer491a6cd2007-07-23 08:20:46 +00001852-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001853
John Criswelld741bcf2003-08-12 18:51:51 +00001854endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001855
Misha Brukmanef5dc702009-01-08 02:11:55 +00001856endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001857
Reid Spencer151f8ba2004-10-25 08:27:37 +00001858###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001859# CHECK: Running the test suite
1860###############################################################################
1861
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001862check::
Reid Spencer11fde542005-01-16 02:20:54 +00001863 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1864 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001865 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001866 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001867 TESTSUITE=$(TESTSUITE) ; \
1868 else \
1869 $(EchoCmd) No Makefile in test directory ; \
1870 fi ; \
1871 else \
1872 $(EchoCmd) No test directory ; \
1873 fi
1874
Daniel Dunbar666b4022010-08-02 00:05:18 +00001875check-lit:: check
1876
1877check-dg::
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001878 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1879 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1880 $(EchoCmd) Running test suite ; \
Daniel Dunbar666b4022010-08-02 00:05:18 +00001881 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001882 else \
1883 $(EchoCmd) No Makefile in test directory ; \
1884 fi ; \
1885 else \
1886 $(EchoCmd) No test directory ; \
1887 fi
1888
Daniel Dunbar34185792009-09-20 06:17:21 +00001889check-all::
1890 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1891 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1892 $(EchoCmd) Running test suite ; \
1893 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1894 else \
1895 $(EchoCmd) No Makefile in test directory ; \
1896 fi ; \
1897 else \
1898 $(EchoCmd) No test directory ; \
1899 fi
1900
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001901###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001902# UNITTESTS: Running the unittests test suite
1903###############################################################################
1904
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001905unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001906 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1907 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1908 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001909 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001910 else \
1911 $(EchoCmd) No Makefile in unittests directory ; \
1912 fi ; \
1913 else \
1914 $(EchoCmd) No unittests directory ; \
1915 fi
1916
1917###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001918# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001919###############################################################################
1920
Reid Spencere45ebfa2004-10-26 07:09:33 +00001921#------------------------------------------------------------------------
1922# Define distribution related variables
1923#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001924DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1925DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1926TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1927DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1928DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1929DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001930DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1931 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001932 Makefile.config.in configure autoconf
1933DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001934 $(PROJ_SRC_DIR)/*.h \
1935 $(PROJ_SRC_DIR)/*.td \
1936 $(PROJ_SRC_DIR)/*.def \
1937 $(PROJ_SRC_DIR)/*.ll \
1938 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001939DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001940DistSources = $(Sources) $(EXTRA_DIST)
1941DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001942
Reid Spencere45ebfa2004-10-26 07:09:33 +00001943#------------------------------------------------------------------------
1944# We MUST build distribution with OBJ_DIR != SRC_DIR
1945#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001946ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001947dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001948 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001949
Reid Spencere45ebfa2004-10-26 07:09:33 +00001950else
1951
Reid Spencere45ebfa2004-10-26 07:09:33 +00001952#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001953# Prevent attempt to run dist targets from anywhere but the top level
1954#------------------------------------------------------------------------
1955ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001956dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001957 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001958else
1959
1960#------------------------------------------------------------------------
1961# Provide the top level targets
1962#------------------------------------------------------------------------
1963
Reid Spencercc2d1e22004-10-30 09:19:36 +00001964dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001965
Reid Spencer345235ca2004-12-04 22:34:09 +00001966$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001967 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001968 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001969 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001970
Reid Spencercc2d1e22004-10-30 09:19:36 +00001971dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001972
Reid Spencer345235ca2004-12-04 22:34:09 +00001973$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001974 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001975 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001976 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001977
Reid Spencercc2d1e22004-10-30 09:19:36 +00001978dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001979
Reid Spencer345235ca2004-12-04 22:34:09 +00001980$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001981 $(Echo) Packing zipped distribution file.
1982 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00001983 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001984
Misha Brukmanef5dc702009-01-08 02:11:55 +00001985dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001986 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001987
Reid Spencerf8f57402005-01-28 19:52:32 +00001988DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00001989
Reid Spencer345235ca2004-12-04 22:34:09 +00001990dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001991 $(Echo) Checking distribution tar file.
1992 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001993 $(RM) -rf $(DistCheckDir) ; \
1994 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00001995 $(Verb) $(MKDIR) $(DistCheckDir)
1996 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001997 $(MKDIR) $(DistCheckDir)/build && \
1998 $(MKDIR) $(DistCheckDir)/install && \
1999 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2000 cd build && \
2001 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00002002 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00002003 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002004 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00002005 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002006 $(MAKE) install && \
2007 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002008 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002009 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002010
2011dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002012 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002013 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2014 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002015
2016endif
2017
2018#------------------------------------------------------------------------
2019# Provide the recursive distdir target for building the distribution directory
2020#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002021distdir: $(DistDir)/.makedistdir
2022$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002023 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002024 if test -d "$(DistDir)" ; then \
2025 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2026 exit 1 ; \
2027 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002028 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002029 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002030 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002031 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002032 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002033 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002034 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002035 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2036 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002037 for file in $(DistFiles) ; do \
2038 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002039 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002040 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2041 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002042 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002043 file=`echo "$$file" | \
2044 sed "s#^$$srcrootstrip/##"` \
2045 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002046 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002047 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2048 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2049 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002050 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002051 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002052 fi ; \
2053 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002054 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2055 to_dir="$(DistDir)/$$dir"; \
2056 $(MKDIR) "$$to_dir" ; \
2057 else \
2058 to_dir="$(DistDir)"; \
2059 fi; \
2060 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2061 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002062 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002063 fi ; \
2064 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002065 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2066 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002067 cd $(PROJ_SRC_DIR) ; \
2068 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2069 ( cd $$to_dir ; $(TAR) xf - ) ; \
2070 cd $(PROJ_OBJ_DIR) ; \
2071 else \
2072 cd $$from_dir ; \
2073 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2074 ( cd $$to_dir ; $(TAR) xf - ) ; \
2075 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002076 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002077 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002078 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002079 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002080 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002081 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002082 $(EchoCmd) "===== WARNING: Distribution Source " \
2083 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002084 elif test "$(Verb)" != '@' ; then \
2085 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002086 fi; \
2087 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002088 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002089 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002090 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002091 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002092 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002093 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002094 fi; \
2095 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002096 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002097 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002098 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2099 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002100 $(MAKE) dist-hook ; \
2101 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2102 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2103 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2104 -o ! -type d ! -perm -444 -exec \
2105 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2106 || chmod -R a+r $(DistDir) ; \
2107 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002108
Reid Spencercc2d1e22004-10-30 09:19:36 +00002109# This is invoked by distdir target, define it as a no-op to avoid errors if not
2110# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002111dist-hook::
2112
Reid Spencere53e3972004-10-22 23:06:30 +00002113endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002114
2115###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002116# TOP LEVEL - targets only to apply at the top level directory
2117###############################################################################
2118
2119ifeq ($(LEVEL),.)
2120
2121#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002122# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002123#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002124ifdef NO_INSTALL
2125install-local::
2126 $(Echo) Install circumvented with NO_INSTALL
2127uninstall-local::
2128 $(Echo) Uninstall circumvented with NO_INSTALL
2129else
Reid Spencere5487ba2004-10-24 07:53:21 +00002130install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002131 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002132 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002133 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002134 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerc9480642009-01-02 07:16:45 +00002135 for hdr in `find . -type f '!' '(' -name '*~' \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002136 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2137 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002138 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002139 if test \! -d "$$instdir" ; then \
2140 $(EchoCmd) Making install directory $$instdir ; \
2141 $(MKDIR) $$instdir ;\
2142 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002143 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002144 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002145 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002146ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002147 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002148 cd $(PROJ_OBJ_ROOT)/include && \
Reid Spencer443045a2005-12-23 22:27:56 +00002149 for hdr in `find . -type f -print | grep -v CVS` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002150 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002151 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002152 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002153endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002154
2155uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002156 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002157 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2158 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002159 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002160 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002161 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002162 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002163 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002164 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002165 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002166 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002167endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002168endif
2169
Chris Lattner03840ac2007-04-14 23:35:45 +00002170check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002171 @echo searching for overlength lines in files: $(Sources)
2172 @echo
2173 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002174 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002175
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002176check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002177 @echo searching for tabs in files: $(Sources)
2178 @echo
2179 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002180 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002181
Reid Spencer6548bf12007-05-02 21:29:39 +00002182check-footprint:
2183 @ls -l $(LibDir) | awk '\
2184 BEGIN { sum = 0; } \
2185 { sum += $$5; } \
2186 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2187 @ls -l $(ToolDir) | awk '\
2188 BEGIN { sum = 0; } \
2189 { sum += $$5; } \
2190 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002191#------------------------------------------------------------------------
2192# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002193#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002194printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002195 $(Echo) "BuildMode : " '$(BuildMode)'
2196 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2197 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2198 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2199 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2200 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2201 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2202 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2203 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2204 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2205 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002206 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002207 $(Echo) "UserTargets : " '$(UserTargets)'
2208 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2209 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2210 $(Echo) "ObjDir : " '$(ObjDir)'
2211 $(Echo) "LibDir : " '$(LibDir)'
2212 $(Echo) "ToolDir : " '$(ToolDir)'
2213 $(Echo) "ExmplDir : " '$(ExmplDir)'
2214 $(Echo) "Sources : " '$(Sources)'
2215 $(Echo) "TDFiles : " '$(TDFiles)'
2216 $(Echo) "INCFiles : " '$(INCFiles)'
2217 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002218 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002219 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2220 $(Echo) "Compile.C : " '$(Compile.C)'
2221 $(Echo) "Archive : " '$(Archive)'
2222 $(Echo) "YaccFiles : " '$(YaccFiles)'
2223 $(Echo) "LexFiles : " '$(LexFiles)'
2224 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002225 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002226 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002227 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2228 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002229
2230###
2231# Debugging
2232
Daniel Dunbar3c898122009-03-06 22:23:25 +00002233# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002234# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002235make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002236 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))