blob: ee17b999fb420c5952fc3d7b36ac1ac38c5f17f3 [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
Anton Korobeynikov7a677a32009-08-14 18:53:19 +0000132# FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
Daniel Dunbar25a619f2009-08-13 17:22:49 +0000133# up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
134
Reid Spencercc2d1e22004-10-30 09:19:36 +0000135.PRECIOUS: $(ConfigStatusScript)
Anton Korobeynikov7a677a32009-08-14 18:53:19 +0000136$(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(LLVM_SRC_ROOT)/lib/Target/MSP430/AsmPrinter/Makefile
Reid Spencercc2d1e22004-10-30 09:19:36 +0000137 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000138 $(Verb) cd $(PROJ_OBJ_ROOT) && \
139 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
140 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000141 fi ; \
Reid Spencer7d277002004-11-29 12:37:44 +0000142 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
143 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000144
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000145#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000146# Make sure the configuration makefile is up to date
147#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000148ifneq ($(MakefileConfigIn),)
149$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000150 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000151 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
152endif
153
154ifneq ($(MakefileCommonIn),)
155$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
156 $(Echo) Regenerating $@
157 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
158endif
Reid Spencer9411c642004-10-26 22:26:33 +0000159
160#------------------------------------------------------------------------
161# If the Makefile in the source tree has been updated, copy it over into the
162# build tree. But, only do this if the source and object makefiles differ
163#------------------------------------------------------------------------
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000164ifndef PROJ_MAKEFILE
165PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
166endif
167
Reid Spencer11fde542005-01-16 02:20:54 +0000168ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000169
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000170Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000171 $(Echo) "Updating Makefile"
172 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000173 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000174
175# Copy the Makefile.* files unless we're in the root directory which avoids
176# the copying of Makefile.config.in or other things that should be explicitly
177# taken care of.
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000178$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
Reid Spencer86606782004-10-26 23:10:00 +0000179 @case '$?' in \
180 *Makefile.rules) ;; \
181 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000182 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000183 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000184 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000185 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000186
Reid Spencer9411c642004-10-26 22:26:33 +0000187endif
188
189#------------------------------------------------------------------------
190# Set up the basic dependencies
191#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000192$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000193
194all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000195clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000196clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000197install:: install-local
198uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000199install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000200install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000201
202###############################################################################
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +0000203# LLVMC: Provide rules for compiling llvmc-based driver
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000204###############################################################################
205
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000206ifdef LLVMC_BASED_DRIVER
207
208TOOLNAME = $(LLVMC_BASED_DRIVER)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000209
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +0000210LLVMLIBS = CompilerDriver.a
211LINK_COMPONENTS = support system
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000212
213endif # LLVMC_BASED_DRIVER
214
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000215###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000216# VARIABLES: Set up various variables based on configuration data
217###############################################################################
218
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000219# Variable for if this make is for a "cleaning" target
220ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
221 IS_CLEANING_TARGET=1
222endif
223
Reid Spencer3a561f52004-10-23 20:04:14 +0000224#--------------------------------------------------------------------
225# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000226#--------------------------------------------------------------------
227
Reid Spencer0a522b12007-07-10 07:19:53 +0000228CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000229ifeq ($(ENABLE_OPTIMIZED),1)
230 BuildMode := Release
231 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000232 ifneq ($(HOST_OS),FreeBSD)
233 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000234 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000235 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000236 endif
237
238 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000239 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
240 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000241 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000242 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
243 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000244 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
245 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
246 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000247 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000248 BuildMode := $(BuildMode)+Debug
249 CXX.Flags += -g
250 C.Flags += -g
251 LD.Flags += -g
252 KEEP_SYMBOLS := 1
253 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000254else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000255 ifdef NO_DEBUG_SYMBOLS
256 BuildMode := Unoptimized
257 CXX.Flags +=
258 C.Flags +=
259 LD.Flags +=
260 KEEP_SYMBOLS := 1
261 else
262 BuildMode := Debug
263 CXX.Flags += -g
264 C.Flags += -g
265 LD.Flags += -g
266 KEEP_SYMBOLS := 1
267 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000268endif
269
270ifeq ($(ENABLE_PROFILING),1)
271 BuildMode := $(BuildMode)+Profile
272 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
273 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
274 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
275 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000276endif
277
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000278#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
279# CXX.Flags += -fvisibility-inlines-hidden
280#endif
281
Chris Lattnerc96d5082010-01-24 20:20:40 +0000282ifdef ENABLE_EXPENSIVE_CHECKS
283 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
284 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
285 REQUIRES_RTTI := 1
286endif
287
Reid Spencer99655e12006-08-25 19:54:53 +0000288# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000289ifndef REQUIRES_EH
290 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000291else
292 # If the library requires EH, it also requires RTTI.
293 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000294endif
Reid Spencer99655e12006-08-25 19:54:53 +0000295
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000296ifdef REQUIRES_FRAME_POINTER
297 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
298 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
299 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
300endif
301
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000302# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000303ifneq ($(REQUIRES_RTTI), 1)
304 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000305endif
306
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000307ifdef ENABLE_COVERAGE
308 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000309 CXX.Flags += -ftest-coverage -fprofile-arcs
310 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000311endif
312
Reid Spencer854071c2006-04-10 16:46:04 +0000313# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
314# then disable assertions by defining the appropriate preprocessor symbols.
Duncan Sands8246adc2010-07-07 07:48:00 +0000315ifndef DISABLE_ASSERTIONS
316 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000317 CPP.Defines += -D_DEBUG
Duncan Sands8246adc2010-07-07 07:48:00 +0000318else
319 CPP.Defines += -DNDEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000320endif
321
Misha Brukmanef5dc702009-01-08 02:11:55 +0000322# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
323# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000324# appropriate preprocessor symbols.
David Greenea696d242007-06-28 19:36:08 +0000325ifdef ENABLE_EXPENSIVE_CHECKS
326 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000327 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000328endif
329
Nick Lewyckya15dc032009-02-26 07:44:16 +0000330# LOADABLE_MODULE implies several other things so we force them to be
331# defined/on.
332ifdef LOADABLE_MODULE
333 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000334 LINK_LIBS_IN_SHARED := 1
335endif
336
337ifdef SHARED_LIBRARY
338 ENABLE_PIC := 1
339 PIC_FLAG = "(PIC)"
340endif
341
Reid Spencer89b0d992006-12-16 22:07:52 +0000342ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000343 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000344 # Nothing. Win32 defaults to PIC and warns when given -fPIC
345 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000346 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000347 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000348 CXX.Flags += -fno-common
349 C.Flags += -fno-common
350 else
351 # Linux and others; pass -fPIC
352 CXX.Flags += -fPIC
353 C.Flags += -fPIC
354 endif
355 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000356else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000357 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000358 CXX.Flags += -mdynamic-no-pic
359 C.Flags += -mdynamic-no-pic
360 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000361endif
362
Daniel Dunbardd464df2010-05-10 20:11:56 +0000363# Support makefile variable to disable any kind of timestamp/non-deterministic
364# info from being used in the build.
365ifeq ($(ENABLE_TIMESTAMPS),1)
366 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
367else
368 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
369endif
370
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000371ifeq ($(HOST_OS),MingW)
372 # Work around PR4957
373 CPP.Defines += -D__NO_CTYPE_INLINE
374 ifeq ($(LLVM_CROSS_COMPILING),1)
375 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
376 ifdef TOOLNAME
377 LD.Flags += -Wl,--allow-multiple-definition
378 endif
379 endif
380endif
381
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000382CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000383CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000384AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000385
Chris Lattner16620fc2006-07-27 18:19:51 +0000386# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000387ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000388 CXX.Flags += -mieee
389 CPP.BaseFlags += -mieee
390ifeq ($(ENABLE_PIC),0)
391 CXX.Flags += -fPIC
392 CPP.BaseFlags += -fPIC
393endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000394endif
395
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000396ifeq ($(ARCH),Alpha)
397 LD.Flags += -Wl,--no-relax
398endif
399
Reid Spencer3a561f52004-10-23 20:04:14 +0000400#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000401# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000402#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000403TargetMode :=
404ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000405 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000406endif
407
408ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000409ObjDir := $(ObjRootDir)
410LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
411ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
412ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
413LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
414LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
415LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000416
Reid Spencer3a561f52004-10-23 20:04:14 +0000417#--------------------------------------------------------------------
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000418# Locations of shared libraries
419#--------------------------------------------------------------------
420
421SharedPrefix := lib
422SharedLibDir := $(LibDir)
423LLVMSharedLibDir := $(LLVMLibDir)
424
425# Win32.DLL prefers to be located on the "PATH" of binaries.
426ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
427 SharedLibDir := $(ToolDir)
428 LLVMSharedLibDir := $(LLVMToolDir)
429
430 ifeq ($(HOST_OS),Cygwin)
431 SharedPrefix := cyg
432 else
433 SharedPrefix :=
434 endif
435endif
436
437#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000438# LLVM Capable Compiler
439#--------------------------------------------------------------------
440
441ifeq ($(LLVMCC_OPTION),llvm-gcc)
442 LLVMCC := $(LLVMGCC)
443 LLVMCXX := $(LLVMGXX)
444else
445 ifeq ($(LLVMCC_OPTION),clang)
446 ifneq ($(CLANGPATH),)
447 LLVMCC := $(CLANGPATH)
448 LLVMCXX := $(CLANGXXPATH)
449 else
450 ifeq ($(ENABLE_BUILT_CLANG),1)
451 LLVMCC := $(LLVMToolDir)/clang
452 LLVMCXX := $(LLVMToolDir)/clang++
453 endif
454 endif
455 endif
456endif
457
458#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000459# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000460#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000461EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
462Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000463ifndef LLVMAS
464LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
465endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000466ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000467 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000468 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000469 else
470 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
471 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000472endif
Misha Brukmanef5dc702009-01-08 02:11:55 +0000473LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencer43eb96c2007-02-09 15:52:07 +0000474ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000475LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000476endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000477ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000478LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
479endif
480ifndef LLI
481LLI := $(LLVMToolDir)/lli$(EXEEXT)
482endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000483ifndef LLC
484LLC := $(LLVMToolDir)/llc$(EXEEXT)
485endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000486ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000487LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000488endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000489ifndef LBUGPOINT
490LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
491endif
Reid Spencere46687c2006-12-03 21:01:45 +0000492
Reid Spencer3a561f52004-10-23 20:04:14 +0000493#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000494# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000495#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000496
Anton Korobeynikove55db742009-08-18 00:40:33 +0000497ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000498 DARWIN_VERSION := `sw_vers -productVersion`
499 # Strip a number like 10.4.7 to 10.4
500 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
501 # Get "4" out of 10.4 for later pieces in the makefile.
502 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000503
Dan Gohmane05f6092010-04-16 22:58:15 +0000504 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined,suppress \
Evan Chenga5e225e2009-09-08 18:52:20 +0000505 -dynamiclib
506 ifneq ($(ARCH),ARM)
507 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
508 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000509else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000510 SharedLinkOptions=-shared
Scott Michel87af5f02009-03-12 21:03:53 +0000511endif
512
Anton Korobeynikove55db742009-08-18 00:40:33 +0000513ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000514 ifneq ($(ARCH),ARM)
515 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
516 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000517endif
518
Reid Spencer492c2932005-01-11 04:31:07 +0000519ifdef SHARED_LIBRARY
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000520ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000521ifneq ($(HOST_OS),Darwin)
522 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
523else
Scott Michel87af5f02009-03-12 21:03:53 +0000524ifneq ($(DARWIN_MAJVERS),4)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000525 LD.Flags += $(RPATH) -Wl,$(SharedLibDir)
526endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000527endif
Scott Michel87af5f02009-03-12 21:03:53 +0000528endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000529endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000530
Reid Spencercceed9f2004-11-08 17:32:12 +0000531ifdef TOOL_VERBOSE
532 C.Flags += -v
533 CXX.Flags += -v
534 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000535 VERBOSE := 1
536endif
537
Reid Spencer3a561f52004-10-23 20:04:14 +0000538# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000539ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000540 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000541 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000542 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000543else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000544 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000545endif
546
Vikram S. Advefeeae582002-09-18 11:55:13 +0000547# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000548ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000549 Strip := $(PLATFORMSTRIPOPTS)
550 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000551 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000552endif
553
Reid Spencer3a561f52004-10-23 20:04:14 +0000554# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000555ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
556ifneq ($(HOST_OS), Darwin)
Reid Spencer4d71b662004-10-22 21:01:56 +0000557ifdef TOOLNAME
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000558 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
559 ifdef EXAMPLE_TOOL
560 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
561 else
562 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
563 endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000564endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000565else
566ifneq ($(DARWIN_MAJVERS),4)
567 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
Nick Lewyckya15dc032009-02-26 07:44:16 +0000568endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000569endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000570endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000571
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000572
Reid Spencer3a561f52004-10-23 20:04:14 +0000573#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000574# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000575#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000576
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000577ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000578CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000579endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000580CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
581 $(EXTRA_OPTIONS)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000582# Enable cast-qual for C++; the workaround is to use const_cast.
583CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000584
Anton Korobeynikove55db742009-08-18 00:40:33 +0000585ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000586 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000587endif
588
Chris Lattner73faa392006-05-30 16:38:06 +0000589# If we are building a universal binary on Mac OS/X, pass extra options. This
590# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000591# apps.
592#
593# The following can be optionally specified:
594# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
595# For Mac OS/X 10.4 Intel machines, the traditional one is:
596# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
597# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
598# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
599# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000600ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000601 ifndef UNIVERSAL_ARCH
602 UNIVERSAL_ARCH := i386 ppc
603 endif
604 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
605 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000606 ifdef UNIVERSAL_SDK_PATH
607 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000608 endif
609
610 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000611 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000612else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000613 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000614 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000615 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000616 else
617 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000618 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000619 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000620 endif
621 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000622endif
623
Anton Korobeynikove55db742009-08-18 00:40:33 +0000624ifeq ($(HOST_OS),SunOS)
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000625CPP.BaseFlags += -include llvm/System/Solaris.h
626endif
627
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000628ifeq ($(HOST_OS),AuroraUX)
629CPP.BaseFlags += -include llvm/System/Solaris.h
630endif # !HOST_OS - AuroraUX.
631
Misha Brukmanef5dc702009-01-08 02:11:55 +0000632LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman63f97202008-10-17 01:33:43 +0000633CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000634# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000635CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
636 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000637 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
638 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
639 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000640
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000641ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000642 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000643 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000644 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
645 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000646 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000647 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000648 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000649 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
650 $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000651 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000652else
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000653 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000654 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000655 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000656 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000657 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner6be92662009-06-16 23:00:42 +0000658 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000659 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000660 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000661endif
662
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000663BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000664 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000665Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000666 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000667
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000668BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000669 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000670
Misha Brukmanef5dc702009-01-08 02:11:55 +0000671ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
672ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000673DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000674
675# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
676# paths. In this case, the SYSPATH function (defined in
677# Makefile.config) transforms Unix paths into Windows paths.
678TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000679 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000680 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
681 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
682
Reid Spencercc2d1e22004-10-30 09:19:36 +0000683Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000684LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000685ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000686Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000687else
Reid Spencer3a561f52004-10-23 20:04:14 +0000688Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000689endif
690
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000691AliasTool = ln -s
692
Chris Lattner00950542001-06-06 20:29:01 +0000693#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000694# Get the list of source files and compute object file
695# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000696#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000697
698ifndef SOURCES
699 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000700 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000701else
Chris Lattner89681112006-01-27 22:13:12 +0000702 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000703endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000704
Chris Lattner89681112006-01-27 22:13:12 +0000705ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000706Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000707endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000708
Chris Lattner89681112006-01-27 22:13:12 +0000709BaseNameSources := $(sort $(basename $(Sources)))
710
711ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000712ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
713
Reid Spencer3a561f52004-10-23 20:04:14 +0000714###############################################################################
715# DIRECTORIES: Handle recursive descent of directory structure
716###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000717
Chris Lattner00950542001-06-06 20:29:01 +0000718#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000719# Provide rules to make install dirs. This must be early
720# in the file so they get built before dependencies
721#---------------------------------------------------------
722
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000723$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000724 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000725
Reid Spencercc2d1e22004-10-30 09:19:36 +0000726# To create other directories, as needed, and timestamp their creation
727%/.dir:
728 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000729 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000730
Reid Spencer815cbcf2004-11-18 10:03:46 +0000731.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
732.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000733
734#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000735# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000736#---------------------------------------------------------
737
Misha Brukmanef5dc702009-01-08 02:11:55 +0000738SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000739ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000740SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000741
742ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000743$(RecursiveTargets)::
744 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000745 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000746 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000747 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000748 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000749 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000750 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000751 done
Chris Lattner82033602006-07-26 20:22:26 +0000752else
753$(RecursiveTargets)::
754 $(Verb) for dir in $(DIRS); do \
755 ($(MAKE) -C $$dir $@ ) || exit 1; \
756 done
757endif
758
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000759endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000760
Reid Spencer3a561f52004-10-23 20:04:14 +0000761#---------------------------------------------------------
762# Handle the EXPERIMENTAL_DIRS options ensuring success
763# after each directory is built.
764#---------------------------------------------------------
765ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000766$(RecursiveTargets)::
767 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000768 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000769 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000770 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000771 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000772 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000773 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000774 done
775endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000776
Reid Spencer25e8a702005-12-21 23:17:06 +0000777#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000778# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
779#-----------------------------------------------------------
780ifdef OPTIONAL_PARALLEL_DIRS
781 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
782endif
783
784#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000785# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000786#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000787ifdef PARALLEL_DIRS
788
Reid Spencercc2d1e22004-10-30 09:19:36 +0000789SubDirs += $(PARALLEL_DIRS)
790
Reid Spencer44cb1b32004-12-03 20:08:48 +0000791# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000792all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
793clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000794clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000795install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000796uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000797install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000798unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000799
Reid Spencer345235ca2004-12-04 22:34:09 +0000800ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000801
Reid Spencer345235ca2004-12-04 22:34:09 +0000802$(ParallelTargets) :
Daniel Dunbar546023f2010-06-08 20:10:13 +0000803 $(Verb) if ([ ! -f $(@D)/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000804 command test $(@D)/Makefile -ot \
Chris Lattner381cd022010-06-15 21:35:22 +0000805 $(PROJ_SRC_DIR)/$(@D)/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000806 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000807 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000808 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000809 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000810endif
811
Reid Spencer3a561f52004-10-23 20:04:14 +0000812#---------------------------------------------------------
813# Handle the OPTIONAL_DIRS options for directores that may
814# or may not exist.
815#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000816ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000817
Reid Spencercc2d1e22004-10-30 09:19:36 +0000818SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000819
Chris Lattner82033602006-07-26 20:22:26 +0000820ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000821$(RecursiveTargets)::
822 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000823 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000824 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000825 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000826 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000827 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000828 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000829 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000830 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000831 done
Chris Lattner82033602006-07-26 20:22:26 +0000832else
833$(RecursiveTargets)::
834 $(Verb) for dir in $(OPTIONAL_DIRS); do \
835 ($(MAKE) -C$$dir $@ ) || exit 1; \
836 done
837endif
John Criswell2a6530f2003-06-27 16:58:44 +0000838endif
839
Reid Spencerfc945082004-08-20 09:20:05 +0000840#---------------------------------------------------------
841# Handle the CONFIG_FILES options
842#---------------------------------------------------------
843ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000844
Reid Spencera2a31bf2007-02-06 18:53:14 +0000845ifdef NO_INSTALL
846install-local::
847 $(Echo) Install circumvented with NO_INSTALL
848uninstall-local::
849 $(Echo) UnInstall circumvented with NO_INSTALL
850else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000851install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
852 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000853 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000854 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000855 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000856 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000857 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000858 else \
859 $(ECHO) Error: cannot find config file $${file}. ; \
860 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000861 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000862
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000863uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000864 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000865 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000866 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000867 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000868endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000869
Reid Spencerfc945082004-08-20 09:20:05 +0000870endif
871
Reid Spencer3a561f52004-10-23 20:04:14 +0000872###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +0000873# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000874###############################################################################
875
876#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000877# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000878# libraries needed when linking. There are "Proj" libs
879# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000880# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000881#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000882
Chris Lattneref0d0f12006-09-04 04:47:21 +0000883ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000884ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
885ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000886ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
887ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
888endif
889
890ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000891LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
892LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000893LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000894LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000895endif
896
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000897# Loadable module for Win32 requires all symbols resolved for linking.
898# Then all symbols in LLVM.dll will be available.
899ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000900 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000901 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
902 LINK_COMPONENTS += all
903 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000904 endif
905endif
906
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000907ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000908ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000909
910# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
911# clean in tools, then do a make in tools (instead of at the top level).
912$(LLVM_CONFIG):
913 @echo "*** llvm-config doesn't exist - rebuilding it."
914 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000915
Chris Lattner0a1db822006-09-04 05:23:20 +0000916$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
917
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000918ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000919# We can take the "auto-import" feature to get rid of using dllimport.
920ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
921LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
922 -L $(SharedLibDir)
923endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000924LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000925LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000926else
Chris Lattnerf636aa92010-09-01 16:11:17 +0000927
928ifndef NO_LLVM_CONFIG
929LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
930ifeq ($(LLVMConfigLibs),Error)
931$(error llvm-config --libs failed)
932endif
933LLVMLibsOptions += $(LLVMConfigLibs)
934LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
935ifeq ($(LLVMConfigLibfiles),Error)
936$(error llvm-config --libfiles failed)
937endif
938LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
939endif
940
Chris Lattneref0d0f12006-09-04 04:47:21 +0000941endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000942endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000943endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000944
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000945# Set up the library exports file.
946ifdef EXPORTED_SYMBOL_FILE
947
948# First, set up the native export file, which may differ from the source
949# export file.
950
951ifeq ($(HOST_OS),Darwin)
952# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +0000953NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +0000954$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +0000955 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000956clean-local::
957 -$(Verb) $(RM) -f $(NativeExportsFile)
958else
Dan Gohmanda612d62010-06-01 14:56:56 +0000959ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
960# Gold and BFD ld require a version script rather than a plain list.
961NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
962$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
963 $(Verb) echo "{" > $@
964 $(Verb) grep -q "\<" $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +0000965 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Dan Gohmanda612d62010-06-01 14:56:56 +0000966 $(Verb) echo " local: *;" >> $@
967 $(Verb) echo "};" >> $@
968clean-local::
969 -$(Verb) $(RM) -f $(NativeExportsFile)
970else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000971ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +0000972# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000973NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000974$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
975 $(Echo) Generating $(notdir $@)
976 $(Verb) $(ECHO) "EXPORTS" > $@
977 $(Verb) $(CAT) $< >> $@
978clean-local::
979 -$(Verb) $(RM) -f $(NativeExportsFile)
980else
Dan Gohman9a7570c2010-09-03 17:29:33 +0000981# Default behavior: just use the exports file verbatim.
982NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
983endif
984endif
985endif
986
987# Now add the linker command-line options to use the native export file.
988
989# Darwin
990ifeq ($(HOST_OS),Darwin)
991LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
992endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000993
Dan Gohmane05f6092010-04-16 22:58:15 +0000994# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +0000995ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
996LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000997endif
998
Dan Gohman9a7570c2010-09-03 17:29:33 +0000999# Windows
1000ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1001# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1002SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001003endif
1004
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001005endif
1006
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001007###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001008# Library Build Rules: Four ways to build a library
1009###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001010
Reid Spencer7980ea42004-12-05 05:17:22 +00001011#---------------------------------------------------------
1012# Bytecode Module Targets:
1013# If the user set MODULE_NAME then they want to build a
1014# bytecode module from the sources. We compile all the
1015# sources and link it together into a single bytecode
1016# module.
1017#---------------------------------------------------------
1018
1019ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001020ifeq ($(strip $(LLVMCC)),)
1021$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001022else
Reid Spencer7980ea42004-12-05 05:17:22 +00001023
1024Module := $(LibDir)/$(MODULE_NAME).bc
Daniel Dunbar112257d2010-02-23 09:28:50 +00001025LinkModule := $(LLVMLD) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +00001026
Reid Spencer7980ea42004-12-05 05:17:22 +00001027
1028ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001029LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001030endif
1031
Reid Spencer43eb96c2007-02-09 15:52:07 +00001032$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001033 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001034 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1035
1036all-local:: $(Module)
1037
1038clean-local::
1039ifneq ($(strip $(Module)),)
1040 -$(Verb) $(RM) -f $(Module)
1041endif
1042
Reid Spencerab3690b2004-12-13 07:38:07 +00001043ifdef BYTECODE_DESTINATION
1044ModuleDestDir := $(BYTECODE_DESTINATION)
1045else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001046ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001047endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001048
Reid Spencera2a31bf2007-02-06 18:53:14 +00001049ifdef NO_INSTALL
1050install-local::
1051 $(Echo) Install circumvented with NO_INSTALL
1052uninstall-local::
1053 $(Echo) Uninstall circumvented with NO_INSTALL
1054else
Reid Spencerab3690b2004-12-13 07:38:07 +00001055DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1056
1057install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001058install-local:: $(DestModule)
1059
Misha Brukmanef5dc702009-01-08 02:11:55 +00001060$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001061 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001062 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001063
1064uninstall-local::
1065 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1066 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001067endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001068
1069endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001070endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001071
Reid Spencer3a561f52004-10-23 20:04:14 +00001072# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001073ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001074
Misha Brukmanf547a122009-08-17 15:31:24 +00001075# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001076LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001077ifdef LOADABLE_MODULE
Nick Lewyckya15dc032009-02-26 07:44:16 +00001078LibName.A := $(LibDir)/$(LIBRARYNAME).a
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001079LibName.SO := $(SharedLibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001080else
Reid Spencercc2d1e22004-10-30 09:19:36 +00001081LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001082LibName.SO := $(SharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001083endif
Reid Spencercc2d1e22004-10-30 09:19:36 +00001084LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001085LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001086
Reid Spencer3a561f52004-10-23 20:04:14 +00001087#---------------------------------------------------------
1088# Shared Library Targets:
1089# If the user asked for a shared library to be built
1090# with the SHARED_LIBRARY variable, then we provide
1091# targets for building them.
1092#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001093ifdef SHARED_LIBRARY
1094
Nick Lewyckya15dc032009-02-26 07:44:16 +00001095all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001096
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001097ifdef EXPORTED_SYMBOL_FILE
1098$(LibName.SO): $(NativeExportsFile)
1099endif
1100
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001101ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001102ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001103SharedLibKindMessage := "Loadable Module"
Reid Spencer42fe4552006-08-07 23:12:15 +00001104else
1105SharedLibKindMessage := "Shared Library"
1106endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001107$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001108 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001109 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001110 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001111 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001112else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001113$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001114 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001115 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001116endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001117
1118clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001119ifneq ($(strip $(LibName.SO)),)
1120 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001121endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001122
Reid Spencera2a31bf2007-02-06 18:53:14 +00001123ifdef NO_INSTALL
1124install-local::
1125 $(Echo) Install circumvented with NO_INSTALL
1126uninstall-local::
1127 $(Echo) Uninstall circumvented with NO_INSTALL
1128else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001129
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001130# Win32.DLL prefers to be located on the "PATH" of binaries.
1131ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1132DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001133else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001134DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001135endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001136DestSharedLib := $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer4d71b662004-10-22 21:01:56 +00001137
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001138install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001139
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001140$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001141 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001142 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001143
Misha Brukmanef5dc702009-01-08 02:11:55 +00001144uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001145 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001146 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001147endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001148endif
1149
Reid Spencer3a561f52004-10-23 20:04:14 +00001150#---------------------------------------------------------
1151# Bytecode Library Targets:
1152# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001153# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001154# targets for building them.
1155#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001156ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001157ifeq ($(strip $(LLVMCC)),)
1158$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001159else
Reid Spencer4d71b662004-10-22 21:01:56 +00001160
Reid Spencer9a2f1372004-12-02 09:28:21 +00001161all-local:: $(LibName.BCA)
1162
1163ifdef EXPORTED_SYMBOL_FILE
Daniel Dunbar112257d2010-02-23 09:28:50 +00001164BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001165
Reid Spencer43eb96c2007-02-09 15:52:07 +00001166$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001167 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001168 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1169 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001170 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001171 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001172 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001173else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001174$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
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 $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001177 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001178 $(Verb) $(LArchive) $@ $(ObjectsBC)
1179
Reid Spencer4d71b662004-10-22 21:01:56 +00001180endif
1181
Reid Spencer3a561f52004-10-23 20:04:14 +00001182clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001183ifneq ($(strip $(LibName.BCA)),)
1184 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001185endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001186
Reid Spencer8f094f32004-12-13 07:28:21 +00001187ifdef BYTECODE_DESTINATION
1188BytecodeDestDir := $(BYTECODE_DESTINATION)
1189else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001190BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001191endif
1192
Daniel Dunbard62031e2009-05-12 05:35:40 +00001193DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001194
Reid Spencer44cb1b32004-12-03 20:08:48 +00001195install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001196
Reid Spencera2a31bf2007-02-06 18:53:14 +00001197ifdef NO_INSTALL
1198install-local::
1199 $(Echo) Install circumvented with NO_INSTALL
1200uninstall-local::
1201 $(Echo) Uninstall circumvented with NO_INSTALL
1202else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001203install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001204
Mike Stumpb445d742009-02-12 23:45:11 +00001205$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001206 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001207 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001208
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001209uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001210 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001211 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001212endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001213endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001214endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001215
Reid Spencercc2d1e22004-10-30 09:19:36 +00001216#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001217# Library Targets:
1218# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1219# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001220#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001221ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001222ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001223ifndef LOADABLE_MODULE
1224BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001225endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001226endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001227endif
Chris Lattner760da062003-03-14 20:25:22 +00001228
Reid Spencercc2d1e22004-10-30 09:19:36 +00001229#---------------------------------------------------------
1230# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001231# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001232# then we provide targets for building them.
1233#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001234ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001235
Reid Spencercc2d1e22004-10-30 09:19:36 +00001236all-local:: $(LibName.A)
1237
Reid Spencerf2ac1892004-12-16 07:36:08 +00001238$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001239 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001240 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001241 $(Verb) $(Archive) $@ $(ObjectsO)
1242 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001243
Reid Spencer3a561f52004-10-23 20:04:14 +00001244clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001245ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001246 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001247endif
1248
Reid Spencera2a31bf2007-02-06 18:53:14 +00001249ifdef NO_INSTALL
1250install-local::
1251 $(Echo) Install circumvented with NO_INSTALL
1252uninstall-local::
1253 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001254else
1255ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001256install-local::
1257 $(Echo) Install circumvented with NO_INSTALL
1258uninstall-local::
1259 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001260else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001261DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001262
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001263install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001264
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001265$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001266 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001267 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001268 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001269
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001270uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001271 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001272 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001273endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001274endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001275endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001276
1277# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001278endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001279
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001280###############################################################################
1281# Tool Build Rules: Build executable tool based on TOOLNAME option
1282###############################################################################
1283
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001284ifdef TOOLNAME
1285
Reid Spencercc2d1e22004-10-30 09:19:36 +00001286#---------------------------------------------------------
1287# Set up variables for building a tool.
1288#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001289TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001290ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001291ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001292else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001293ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1294endif
1295
1296# TOOLALIAS is a name to symlink (or copy) the tool to.
1297ifdef TOOLALIAS
1298ifdef EXAMPLE_TOOL
1299ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1300else
1301ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1302endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001303endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001304
Reid Spencercc2d1e22004-10-30 09:19:36 +00001305#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001306# Prune Exports
1307#---------------------------------------------------------
1308
1309# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1310# not exporting all of the weak symbols from the binary. This reduces dyld
1311# startup time by 4x on darwin in some cases.
1312ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001313ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001314
1315# Tiger tools don't support this.
1316ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001317LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001318endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001319endif
Chris Lattner61863a32009-02-26 17:47:49 +00001320
Anton Korobeynikove55db742009-08-18 00:40:33 +00001321ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001322ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001323 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001324endif
1325endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001326endif
Chris Lattner61863a32009-02-26 17:47:49 +00001327
Devang Patel83be4512010-07-15 20:57:09 +00001328#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001329# Tool Order File Support
1330#---------------------------------------------------------
1331
1332ifeq ($(HOST_OS),Darwin)
1333ifdef TOOL_ORDER_FINE
1334
1335LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1336
1337endif
1338endif
1339
1340#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001341# Tool Version Info Support
1342#---------------------------------------------------------
1343
1344ifeq ($(HOST_OS),Darwin)
1345ifdef TOOL_INFO_PLIST
1346
1347LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1348
1349$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1350
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001351$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001352 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1353 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1354 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1355 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1356 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1357 $< > $@
1358
1359endif
1360endif
Chris Lattner61863a32009-02-26 17:47:49 +00001361
1362#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001363# Provide targets for building the tools
1364#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001365all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001366
Reid Spencer3a561f52004-10-23 20:04:14 +00001367clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001368ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001369 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001370endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001371ifneq ($(strip $(ToolAliasBuildPath)),)
1372 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1373endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001374
Reid Spencer815cbcf2004-11-18 10:03:46 +00001375ifdef EXAMPLE_TOOL
1376$(ToolBuildPath): $(ExmplDir)/.dir
1377else
1378$(ToolBuildPath): $(ToolDir)/.dir
1379endif
1380
Chris Lattnera7868af2006-09-04 06:39:52 +00001381$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001382 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001383 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001384 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001385 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001386 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001387
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001388ifneq ($(strip $(ToolAliasBuildPath)),)
1389$(ToolAliasBuildPath): $(ToolBuildPath)
1390 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1391 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1392 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001393 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001394 $(StripWarnMsg)
1395endif
1396
Reid Spencera2a31bf2007-02-06 18:53:14 +00001397ifdef NO_INSTALL
1398install-local::
1399 $(Echo) Install circumvented with NO_INSTALL
1400uninstall-local::
1401 $(Echo) Uninstall circumvented with NO_INSTALL
1402else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001403DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001404
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001405install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001406
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001407$(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001408 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001409 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001410
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001411uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001412 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001413 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001414
1415# TOOLALIAS install.
1416ifdef TOOLALIAS
Chris Lattner97d7b102010-03-10 21:27:53 +00001417DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001418
1419install-local:: $(DestToolAlias)
1420
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001421$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001422 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1423 $(Verb) $(RM) -f $(DestToolAlias)
1424 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1425
1426uninstall-local::
1427 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1428 -$(Verb) $(RM) -f $(DestToolAlias)
1429endif
1430
Reid Spencera2a31bf2007-02-06 18:53:14 +00001431endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001432endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001433
Reid Spencercc2d1e22004-10-30 09:19:36 +00001434###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001435# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001436###############################################################################
1437
Duraid Madina197ab872006-02-15 03:23:26 +00001438# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001439ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001440 DISABLE_AUTO_DEPENDENCIES=1
1441endif
1442
Reid Spencercc2d1e22004-10-30 09:19:36 +00001443# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001444ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001445
Reid Spencercc2d1e22004-10-30 09:19:36 +00001446#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001447# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001448#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001449
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001450DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001451 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001452
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001453# If the build succeeded, move the dependency file over, otherwise
1454# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001455DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1456 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1457
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001458$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001459 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001460 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001461 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001462
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001463$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001464 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1465 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1466 $(DEPEND_MOVEFILE)
1467
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001468$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001469 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001470 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001471 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001472
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001473$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001474 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001475 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001476 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001477
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001478$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001479 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1480 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1481 $(DEPEND_MOVEFILE)
1482
Reid Spencercc2d1e22004-10-30 09:19:36 +00001483#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001484# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001485#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001486
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001487BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1488 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1489
1490# If the build succeeded, move the dependency file over, otherwise
1491# remove it.
1492BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1493 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1494
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001495$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001496 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001497 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1498 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1499 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001500
Greg Clayton43bc79a2010-07-13 18:47:09 +00001501$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1502 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1503 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1504 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1505 $(BC_DEPEND_MOVEFILE)
1506
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001507$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001508 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001509 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1510 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1511 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001512
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001513$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001514 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001515 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1516 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1517 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001518
Greg Clayton43bc79a2010-07-13 18:47:09 +00001519$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1520 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1521 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1522 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1523 $(BC_DEPEND_MOVEFILE)
1524
Reid Spencercc2d1e22004-10-30 09:19:36 +00001525# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001526else
1527
Nick Lewyckya15dc032009-02-26 07:44:16 +00001528$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001529 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001530 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001531
Greg Clayton43bc79a2010-07-13 18:47:09 +00001532$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1533 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1534 $(Compile.CXX) $< -o $@
1535
Nick Lewyckya15dc032009-02-26 07:44:16 +00001536$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001537 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001538 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001539
Nick Lewyckya15dc032009-02-26 07:44:16 +00001540$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001541 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001542 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001543
Greg Clayton43bc79a2010-07-13 18:47:09 +00001544$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1545 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1546 $(Compile.C) $< -o $@
1547
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001548$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001549 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001550 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Reid Spencer4d71b662004-10-22 21:01:56 +00001551
Greg Clayton43bc79a2010-07-13 18:47:09 +00001552$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1553 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1554 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1555
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001556$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001557 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001558 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001559
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001560$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001561 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001562 $(BCCompile.C) $< -o $@ -S -emit-llvm
Brian Gaeke44909cf2003-12-10 00:26:28 +00001563
Greg Clayton43bc79a2010-07-13 18:47:09 +00001564$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1565 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1566 $(BCCompile.C) $< -o $@ -S -emit-llvm
1567
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001568endif
1569
Chris Lattner8eb12de2006-06-21 21:01:20 +00001570
1571## Rules for building preprocessed (.i/.ii) outputs.
1572$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1573 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1574 $(Verb) $(Preprocess.CXX) $< -o $@
1575
Greg Clayton43bc79a2010-07-13 18:47:09 +00001576$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1577 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1578 $(Verb) $(Preprocess.CXX) $< -o $@
1579
Chris Lattner8eb12de2006-06-21 21:01:20 +00001580$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1581 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1582 $(Verb) $(Preprocess.CXX) $< -o $@
1583
Reid Spencer44136722006-12-10 04:56:38 +00001584$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001585 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1586 $(Verb) $(Preprocess.C) $< -o $@
1587
Greg Clayton43bc79a2010-07-13 18:47:09 +00001588$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1589 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1590 $(Verb) $(Preprocess.C) $< -o $@
1591
Chris Lattner8eb12de2006-06-21 21:01:20 +00001592
1593$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1594 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001595 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001596
Greg Clayton43bc79a2010-07-13 18:47:09 +00001597$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1598 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1599 $(Compile.CXX) $< -o $@ -S
1600
Chris Lattner8eb12de2006-06-21 21:01:20 +00001601$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1602 $(Echo) "Compiling $*.cc 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
1605$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1606 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001607 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001608
Greg Clayton43bc79a2010-07-13 18:47:09 +00001609$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1610 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1611 $(Compile.C) $< -o $@ -S
1612
Reid Spencer8b2e1412006-11-17 03:32:33 +00001613
Chris Lattner89681112006-01-27 22:13:12 +00001614# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001615ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001616$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001617 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001618 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001619else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001620$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001621 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001622 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001623endif
1624
Chris Lattner89681112006-01-27 22:13:12 +00001625
Reid Spencercc2d1e22004-10-30 09:19:36 +00001626#---------------------------------------------------------
1627# Provide rule to build .bc files from .ll sources,
1628# regardless of dependencies
1629#---------------------------------------------------------
1630$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001631 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001632 $(Verb) $(LLVMAS) $< -f -o $@
1633
1634###############################################################################
1635# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1636###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001637
Reid Spencer4d71b662004-10-22 21:01:56 +00001638ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001639TABLEGEN_INC_FILES_COMMON = 1
1640endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001641
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001642ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001643TABLEGEN_INC_FILES_COMMON = 1
1644endif
1645
1646ifdef TABLEGEN_INC_FILES_COMMON
1647
Reid Spencercc2d1e22004-10-30 09:19:36 +00001648INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001649INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1650.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001651
Misha Brukmanef5dc702009-01-08 02:11:55 +00001652# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001653# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1654# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001655# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001656# dependencies of the .inc files are, unless the contents of the .inc file
1657# changes.
1658$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001659 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001660
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001661endif # TABLEGEN_INC_FILES_COMMON
1662
1663ifdef TARGET
1664
1665TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1666 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1667 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1668 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1669 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1670 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1671 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1672
Rafael Espindola075630a2009-03-10 17:58:54 +00001673# All of these files depend on tblgen and the .td files.
1674$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1675
Chris Lattner3c473472004-12-16 17:28:50 +00001676$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1677$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001678 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001679 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001680
Chris Lattner3c473472004-12-16 17:28:50 +00001681$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1682$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001683 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001684 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001685
Chris Lattner3c473472004-12-16 17:28:50 +00001686$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1687$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001688 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001689 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001690
Chris Lattner3c473472004-12-16 17:28:50 +00001691$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1692$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001693 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001694 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001695
Chris Lattner3c473472004-12-16 17:28:50 +00001696$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1697$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001698 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001699 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001700
Chris Lattner3c473472004-12-16 17:28:50 +00001701$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1702$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001703 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001704 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001705
Chris Lattner02a4f902004-12-16 17:34:04 +00001706$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1707$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1708 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001709 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001710
Daniel Dunbarc464e512009-07-13 18:35:35 +00001711$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1712$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1713 $(Echo) "Building $(<F) assembly matcher with tblgen"
1714 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1715
Chris Lattner3c473472004-12-16 17:28:50 +00001716$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1717$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001718 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001719 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001720
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001721$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1722$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001723 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001724 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001725
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001726$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1727$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1728 $(Echo) "Building $(<F) disassembly tables with tblgen"
1729 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1730
Sean Callanan95fcebd2010-01-29 00:21:04 +00001731$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1732$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1733 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1734 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1735
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001736$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1737$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1738 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1739 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1740
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001741$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1742$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1743 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001744 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001745
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001746$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1747$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1748 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001749 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001750
Dale Johannesen49de9822009-02-05 01:49:45 +00001751$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001752$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1753 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesen49de9822009-02-05 01:49:45 +00001754 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1755
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001756$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1757 $(Echo) "Building $(<F) decoder tables with tblgen"
1758 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1759
1760
Reid Spencer3a561f52004-10-23 20:04:14 +00001761clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001762 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001763
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001764endif # TARGET
1765
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001766ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001767
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001768TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1769 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001770
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001771TDCommon := $(strip $(wildcard \
1772 $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001773
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001774TDFiles := $(TDSrc) $(TDCommon)
1775
1776$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1777
1778$(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
1779 $(Echo) "Building LLVMC compilation graph description with tblgen"
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001780 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1781
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001782clean-local::
1783 -$(Verb) $(RM) -f $(INCFiles)
1784
1785endif # LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001786
Reid Spencercc2d1e22004-10-30 09:19:36 +00001787###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001788# OTHER RULES: Other rules needed
1789###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001790
Chris Lattner30440c62003-01-16 21:06:18 +00001791# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001792ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001793%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001794 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001795else
1796%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001797 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001798endif
Chris Lattner30440c62003-01-16 21:06:18 +00001799
John Criswell7f336952003-09-06 14:44:17 +00001800# This rules ensures that header files that are removed still have a rule for
1801# which they can be "generated." This allows make to ignore them and
1802# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001803%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001804%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001805
Reid Spencercc2d1e22004-10-30 09:19:36 +00001806# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001807# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001808# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001809clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001810ifneq ($(strip $(ObjRootDir)),)
1811 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001812endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001813 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001814ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001815 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001816endif
John Criswell7a73b802003-06-30 21:59:07 +00001817
Reid Spencer3d659492004-11-02 16:36:03 +00001818clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001819 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001820
Reid Spencer12d79512004-11-12 02:27:36 +00001821
Reid Spencer3a561f52004-10-23 20:04:14 +00001822###############################################################################
1823# DEPENDENCIES: Include the dependency files if we should
1824###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001825ifndef DISABLE_AUTO_DEPENDENCIES
1826
Reid Spencer3a561f52004-10-23 20:04:14 +00001827# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001828ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001829
Reid Spencer3a561f52004-10-23 20:04:14 +00001830# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001831DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001832DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1833
1834# Include bitcode dependency files if using bitcode libraries
1835ifdef BYTECODE_LIBRARY
1836DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1837endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001838
Reid Spencer491a6cd2007-07-23 08:20:46 +00001839-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001840
John Criswelld741bcf2003-08-12 18:51:51 +00001841endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001842
Misha Brukmanef5dc702009-01-08 02:11:55 +00001843endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001844
Reid Spencer151f8ba2004-10-25 08:27:37 +00001845###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001846# CHECK: Running the test suite
1847###############################################################################
1848
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001849check::
Reid Spencer11fde542005-01-16 02:20:54 +00001850 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1851 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001852 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001853 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001854 TESTSUITE=$(TESTSUITE) ; \
1855 else \
1856 $(EchoCmd) No Makefile in test directory ; \
1857 fi ; \
1858 else \
1859 $(EchoCmd) No test directory ; \
1860 fi
1861
Daniel Dunbar666b4022010-08-02 00:05:18 +00001862check-lit:: check
1863
1864check-dg::
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001865 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1866 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1867 $(EchoCmd) Running test suite ; \
Daniel Dunbar666b4022010-08-02 00:05:18 +00001868 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001869 else \
1870 $(EchoCmd) No Makefile in test directory ; \
1871 fi ; \
1872 else \
1873 $(EchoCmd) No test directory ; \
1874 fi
1875
Daniel Dunbar34185792009-09-20 06:17:21 +00001876check-all::
1877 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1878 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1879 $(EchoCmd) Running test suite ; \
1880 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1881 else \
1882 $(EchoCmd) No Makefile in test directory ; \
1883 fi ; \
1884 else \
1885 $(EchoCmd) No test directory ; \
1886 fi
1887
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001888###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001889# UNITTESTS: Running the unittests test suite
1890###############################################################################
1891
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001892unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001893 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1894 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1895 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001896 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001897 else \
1898 $(EchoCmd) No Makefile in unittests directory ; \
1899 fi ; \
1900 else \
1901 $(EchoCmd) No unittests directory ; \
1902 fi
1903
1904###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001905# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001906###############################################################################
1907
Reid Spencere45ebfa2004-10-26 07:09:33 +00001908#------------------------------------------------------------------------
1909# Define distribution related variables
1910#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001911DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1912DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1913TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1914DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1915DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1916DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001917DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1918 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001919 Makefile.config.in configure autoconf
1920DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001921 $(PROJ_SRC_DIR)/*.h \
1922 $(PROJ_SRC_DIR)/*.td \
1923 $(PROJ_SRC_DIR)/*.def \
1924 $(PROJ_SRC_DIR)/*.ll \
1925 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001926DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001927DistSources = $(Sources) $(EXTRA_DIST)
1928DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001929
Reid Spencere45ebfa2004-10-26 07:09:33 +00001930#------------------------------------------------------------------------
1931# We MUST build distribution with OBJ_DIR != SRC_DIR
1932#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001933ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001934dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001935 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001936
Reid Spencere45ebfa2004-10-26 07:09:33 +00001937else
1938
Reid Spencere45ebfa2004-10-26 07:09:33 +00001939#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001940# Prevent attempt to run dist targets from anywhere but the top level
1941#------------------------------------------------------------------------
1942ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001943dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001944 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001945else
1946
1947#------------------------------------------------------------------------
1948# Provide the top level targets
1949#------------------------------------------------------------------------
1950
Reid Spencercc2d1e22004-10-30 09:19:36 +00001951dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001952
Reid Spencer345235ca2004-12-04 22:34:09 +00001953$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001954 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001955 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001956 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001957
Reid Spencercc2d1e22004-10-30 09:19:36 +00001958dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001959
Reid Spencer345235ca2004-12-04 22:34:09 +00001960$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001961 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001962 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001963 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001964
Reid Spencercc2d1e22004-10-30 09:19:36 +00001965dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001966
Reid Spencer345235ca2004-12-04 22:34:09 +00001967$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001968 $(Echo) Packing zipped distribution file.
1969 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00001970 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001971
Misha Brukmanef5dc702009-01-08 02:11:55 +00001972dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001973 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001974
Reid Spencerf8f57402005-01-28 19:52:32 +00001975DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00001976
Reid Spencer345235ca2004-12-04 22:34:09 +00001977dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001978 $(Echo) Checking distribution tar file.
1979 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001980 $(RM) -rf $(DistCheckDir) ; \
1981 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00001982 $(Verb) $(MKDIR) $(DistCheckDir)
1983 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001984 $(MKDIR) $(DistCheckDir)/build && \
1985 $(MKDIR) $(DistCheckDir)/install && \
1986 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1987 cd build && \
1988 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00001989 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00001990 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001991 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00001992 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001993 $(MAKE) install && \
1994 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001995 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001996 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001997
1998dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001999 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002000 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2001 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002002
2003endif
2004
2005#------------------------------------------------------------------------
2006# Provide the recursive distdir target for building the distribution directory
2007#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002008distdir: $(DistDir)/.makedistdir
2009$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002010 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002011 if test -d "$(DistDir)" ; then \
2012 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2013 exit 1 ; \
2014 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002015 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002016 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002017 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002018 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002019 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002020 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002021 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002022 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2023 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002024 for file in $(DistFiles) ; do \
2025 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002026 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002027 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2028 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002029 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002030 file=`echo "$$file" | \
2031 sed "s#^$$srcrootstrip/##"` \
2032 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002033 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002034 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2035 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2036 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002037 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002038 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002039 fi ; \
2040 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002041 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2042 to_dir="$(DistDir)/$$dir"; \
2043 $(MKDIR) "$$to_dir" ; \
2044 else \
2045 to_dir="$(DistDir)"; \
2046 fi; \
2047 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2048 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002049 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002050 fi ; \
2051 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002052 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2053 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002054 cd $(PROJ_SRC_DIR) ; \
2055 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2056 ( cd $$to_dir ; $(TAR) xf - ) ; \
2057 cd $(PROJ_OBJ_DIR) ; \
2058 else \
2059 cd $$from_dir ; \
2060 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2061 ( cd $$to_dir ; $(TAR) xf - ) ; \
2062 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002063 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002064 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002065 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002066 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002067 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002068 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002069 $(EchoCmd) "===== WARNING: Distribution Source " \
2070 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002071 elif test "$(Verb)" != '@' ; then \
2072 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002073 fi; \
2074 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002075 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002076 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002077 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002078 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002079 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002080 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002081 fi; \
2082 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002083 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002084 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002085 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2086 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002087 $(MAKE) dist-hook ; \
2088 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2089 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2090 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2091 -o ! -type d ! -perm -444 -exec \
2092 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2093 || chmod -R a+r $(DistDir) ; \
2094 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002095
Reid Spencercc2d1e22004-10-30 09:19:36 +00002096# This is invoked by distdir target, define it as a no-op to avoid errors if not
2097# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002098dist-hook::
2099
Reid Spencere53e3972004-10-22 23:06:30 +00002100endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002101
2102###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002103# TOP LEVEL - targets only to apply at the top level directory
2104###############################################################################
2105
2106ifeq ($(LEVEL),.)
2107
2108#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002109# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002110#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002111ifdef NO_INSTALL
2112install-local::
2113 $(Echo) Install circumvented with NO_INSTALL
2114uninstall-local::
2115 $(Echo) Uninstall circumvented with NO_INSTALL
2116else
Reid Spencere5487ba2004-10-24 07:53:21 +00002117install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002118 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002119 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002120 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002121 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerc9480642009-01-02 07:16:45 +00002122 for hdr in `find . -type f '!' '(' -name '*~' \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002123 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2124 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002125 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002126 if test \! -d "$$instdir" ; then \
2127 $(EchoCmd) Making install directory $$instdir ; \
2128 $(MKDIR) $$instdir ;\
2129 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002130 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002131 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002132 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002133ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002134 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002135 cd $(PROJ_OBJ_ROOT)/include && \
Reid Spencer443045a2005-12-23 22:27:56 +00002136 for hdr in `find . -type f -print | grep -v CVS` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002137 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002138 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002139 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002140endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002141
2142uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002143 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002144 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2145 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002146 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002147 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002148 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002149 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002150 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002151 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002152 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002153 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002154endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002155endif
2156
Chris Lattner03840ac2007-04-14 23:35:45 +00002157check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002158 @echo searching for overlength lines in files: $(Sources)
2159 @echo
2160 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002161 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002162
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002163check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002164 @echo searching for tabs in files: $(Sources)
2165 @echo
2166 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002167 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002168
Reid Spencer6548bf12007-05-02 21:29:39 +00002169check-footprint:
2170 @ls -l $(LibDir) | awk '\
2171 BEGIN { sum = 0; } \
2172 { sum += $$5; } \
2173 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2174 @ls -l $(ToolDir) | awk '\
2175 BEGIN { sum = 0; } \
2176 { sum += $$5; } \
2177 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002178#------------------------------------------------------------------------
2179# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002180#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002181printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002182 $(Echo) "BuildMode : " '$(BuildMode)'
2183 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2184 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2185 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2186 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2187 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2188 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2189 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2190 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2191 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2192 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002193 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002194 $(Echo) "UserTargets : " '$(UserTargets)'
2195 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2196 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2197 $(Echo) "ObjDir : " '$(ObjDir)'
2198 $(Echo) "LibDir : " '$(LibDir)'
2199 $(Echo) "ToolDir : " '$(ToolDir)'
2200 $(Echo) "ExmplDir : " '$(ExmplDir)'
2201 $(Echo) "Sources : " '$(Sources)'
2202 $(Echo) "TDFiles : " '$(TDFiles)'
2203 $(Echo) "INCFiles : " '$(INCFiles)'
2204 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002205 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002206 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2207 $(Echo) "Compile.C : " '$(Compile.C)'
2208 $(Echo) "Archive : " '$(Archive)'
2209 $(Echo) "YaccFiles : " '$(YaccFiles)'
2210 $(Echo) "LexFiles : " '$(LexFiles)'
2211 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002212 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002213 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002214 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2215 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002216
2217###
2218# Debugging
2219
Daniel Dunbar3c898122009-03-06 22:23:25 +00002220# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002221# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002222make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002223 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))