blob: 644c356370daaf0806deb2d7dd73cb5d639e764d [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
Daniel Dunbare29c3162011-11-03 22:46:21 +000060#------------------------------------------------------------------------
61# LLVMBuild Integration
62#------------------------------------------------------------------------
63#
64# We use llvm-build to generate all the data required by the Makefile based
65# build system in one swoop:
66#
67# - We generate a file (a Makefile fragment) in the object root which contains
68# all the definitions that are required by Makefiles across the entire
69# project.
70#
71# - We generate the library table used by llvm-config.
72#
73# - We generate the dependencies for the Makefile fragment, so that we will
74# automatically reconfigure outselves.
75
76# The path to the llvm-build tool itself.
77LLVMBuildTool := $(PROJ_SRC_ROOT)/utils/llvm-build/llvm-build
78
79# The files we are going to generate using llvm-build.
80LLVMBuildMakeFrag := $(PROJ_OBJ_ROOT)/Makefile.llvmbuild
81LLVMConfigLibraryDependenciesInc := \
Daniel Dunbarcb497b82011-12-01 20:18:09 +000082 $(PROJ_OBJ_ROOT)/tools/llvm-config/LibraryDependencies.inc
Daniel Dunbare29c3162011-11-03 22:46:21 +000083
Daniel Dunbara7de1d62011-11-12 00:18:02 +000084# This is for temporary backwards compatibility.
85ifndef TARGET_NATIVE_ARCH
86TARGET_NATIVE_ARCH := $(ARCH)
87endif
88
Daniel Dunbare29c3162011-11-03 22:46:21 +000089# The rule to create the LLVMBuild Makefile fragment as well as the llvm-config
90# library table.
91#
92# Note that this target gets its real dependencies generated for us by
93# llvm-build.
Daniel Dunbar28088532011-11-09 18:48:22 +000094#
95# We include a dependency on this Makefile to ensure that changes to the
96# generation command get picked up.
Daniel Dunbar8979f4e2012-02-02 23:27:32 +000097$(LLVMBuildMakeFrag): $(PROJ_SRC_ROOT)/Makefile.rules \
98 $(PROJ_OBJ_ROOT)/Makefile.config
Daniel Dunbard5574f62011-11-03 23:01:50 +000099 $(Echo) Constructing LLVMBuild project information.
100 $(Verb) $(LLVMBuildTool) \
Daniel Dunbara7de1d62011-11-12 00:18:02 +0000101 --native-target "$(TARGET_NATIVE_ARCH)" \
Daniel Dunbar83337302011-11-10 01:16:48 +0000102 --enable-targets "$(TARGETS_TO_BUILD)" \
Preston Gurd75493542012-05-07 19:38:40 +0000103 --enable-optional-components "$(OPTIONAL_COMPONENTS)" \
Daniel Dunbare29c3162011-11-03 22:46:21 +0000104 --write-library-table $(LLVMConfigLibraryDependenciesInc) \
105 --write-make-fragment $(LLVMBuildMakeFrag)
106
Daniel Dunbar28088532011-11-09 18:48:22 +0000107# For completeness, let Make know how the extra files are generated.
108$(LLVMConfigLibraryDependenciesInc): $(LLVMBuildMakeFrag)
109
Daniel Dunbare29c3162011-11-03 22:46:21 +0000110# Include the generated Makefile fragment.
111#
112# We currently only include the dependencies for the fragment itself if we are
113# at the top-level. Otherwise, recursive invocations would ends up doing
114# substantially more redundant stat'ing.
115#
116# This means that we won't properly regenerate things for developers used to
117# building from a subdirectory, but that is always somewhat unreliable.
118ifeq ($(LEVEL),.)
119LLVMBUILD_INCLUDE_DEPENDENCIES := 1
Daniel Dunbar2e5b88e2012-02-02 23:27:34 +0000120
121# Clean the generated makefile fragment at the top-level.
122clean-local::
123 -$(Verb) $(RM) -f $(LLVMBuildMakeFrag)
Daniel Dunbare29c3162011-11-03 22:46:21 +0000124endif
125-include $(LLVMBuildMakeFrag)
126
Reid Spencer9411c642004-10-26 22:26:33 +0000127################################################################################
128# PRECONDITIONS: that which must be built/checked first
129################################################################################
130
Reid Spencer44cb1b32004-12-03 20:08:48 +0000131SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencer11fde542005-01-16 02:20:54 +0000132 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
133ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
134ConfigureScript := $(PROJ_SRC_ROOT)/configure
135ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
136MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
137MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
138MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
139MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
140PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
141ifneq ($(MakefileCommonIn),)
142PreConditions += $(MakefileCommon)
143endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000144
Reid Spencer11fde542005-01-16 02:20:54 +0000145ifneq ($(MakefileConfigIn),)
146PreConditions += $(MakefileConfig)
147endif
Reid Spencer9411c642004-10-26 22:26:33 +0000148
Reid Spencerca739c62005-08-25 04:59:49 +0000149preconditions: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000150
151#------------------------------------------------------------------------
152# Make sure the BUILT_SOURCES are built first
153#------------------------------------------------------------------------
Reid Spencer07a549a2004-12-16 07:15:16 +0000154$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +0000155
Reid Spencer9bb399c2007-02-07 19:13:19 +0000156clean-all-local::
Reid Spencer9411c642004-10-26 22:26:33 +0000157ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000158 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +0000159endif
160
Reid Spencer11fde542005-01-16 02:20:54 +0000161ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer31f95242004-12-16 08:00:46 +0000162spotless:
Reid Spencer31f95242004-12-16 08:00:46 +0000163 $(Verb) if test -x config.status ; then \
Reid Spencer11fde542005-01-16 02:20:54 +0000164 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000165 $(MKDIR) .spotless.save ; \
166 $(MV) config.status .spotless.save ; \
167 $(MV) mklib .spotless.save ; \
168 $(MV) projects .spotless.save ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000169 $(RM) -rf * ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000170 $(MV) .spotless.save/config.status . ; \
171 $(MV) .spotless.save/mklib . ; \
172 $(MV) .spotless.save/projects . ; \
173 $(RM) -rf .spotless.save ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000174 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000175 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
176 $(ConfigStatusScript) ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000177 else \
Reid Spencer11fde542005-01-16 02:20:54 +0000178 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer31f95242004-12-16 08:00:46 +0000179 fi
Reid Spencer25e8a702005-12-21 23:17:06 +0000180else
181spotless:
182 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer31f95242004-12-16 08:00:46 +0000183endif
184
Reid Spencercc2d1e22004-10-30 09:19:36 +0000185$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencer80f0ef72004-10-28 00:41:43 +0000186
Reid Spencer9411c642004-10-26 22:26:33 +0000187#------------------------------------------------------------------------
188# Make sure we're not using a stale configuration
189#------------------------------------------------------------------------
Reid Spencerc3719842004-12-16 18:26:53 +0000190reconfigure:
Reid Spencer11fde542005-01-16 02:20:54 +0000191 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
192 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencerc3719842004-12-16 18:26:53 +0000193 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
194 $(ConfigStatusScript)
195
Reid Spencercc2d1e22004-10-30 09:19:36 +0000196.PRECIOUS: $(ConfigStatusScript)
Jim Grosbache5e2c412010-10-01 22:32:12 +0000197$(ConfigStatusScript): $(ConfigureScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000198 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000199 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencer7d277002004-11-29 12:37:44 +0000200 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
201 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000202
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000203#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000204# Make sure the configuration makefile is up to date
205#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000206ifneq ($(MakefileConfigIn),)
207$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000208 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000209 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
210endif
211
212ifneq ($(MakefileCommonIn),)
213$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
214 $(Echo) Regenerating $@
215 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
216endif
Reid Spencer9411c642004-10-26 22:26:33 +0000217
218#------------------------------------------------------------------------
219# If the Makefile in the source tree has been updated, copy it over into the
220# build tree. But, only do this if the source and object makefiles differ
221#------------------------------------------------------------------------
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000222ifndef PROJ_MAKEFILE
223PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
224endif
225
Reid Spencer11fde542005-01-16 02:20:54 +0000226ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000227
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000228Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000229 $(Echo) "Updating Makefile"
230 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000231 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000232
233# Copy the Makefile.* files unless we're in the root directory which avoids
234# the copying of Makefile.config.in or other things that should be explicitly
235# taken care of.
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000236$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
Reid Spencer86606782004-10-26 23:10:00 +0000237 @case '$?' in \
238 *Makefile.rules) ;; \
239 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000240 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000241 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000242 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000243 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000244
Reid Spencer9411c642004-10-26 22:26:33 +0000245endif
246
247#------------------------------------------------------------------------
248# Set up the basic dependencies
249#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000250$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000251
252all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000253clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000254clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000255install:: install-local
256uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000257install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000258install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000259
260###############################################################################
261# VARIABLES: Set up various variables based on configuration data
262###############################################################################
263
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000264# Variable for if this make is for a "cleaning" target
265ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
266 IS_CLEANING_TARGET=1
267endif
268
Reid Spencer3a561f52004-10-23 20:04:14 +0000269#--------------------------------------------------------------------
270# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000271#--------------------------------------------------------------------
272
Reid Spencer0a522b12007-07-10 07:19:53 +0000273CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000274ifeq ($(ENABLE_OPTIMIZED),1)
275 BuildMode := Release
276 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000277 ifneq ($(HOST_OS),FreeBSD)
278 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000279 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000280 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000281 endif
282
283 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000284 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
285 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000286 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000287 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
288 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000289 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
290 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
291 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000292 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000293 BuildMode := $(BuildMode)+Debug
294 CXX.Flags += -g
295 C.Flags += -g
296 LD.Flags += -g
297 KEEP_SYMBOLS := 1
298 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000299else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000300 ifdef NO_DEBUG_SYMBOLS
301 BuildMode := Unoptimized
302 CXX.Flags +=
303 C.Flags +=
304 LD.Flags +=
305 KEEP_SYMBOLS := 1
306 else
307 BuildMode := Debug
308 CXX.Flags += -g
309 C.Flags += -g
310 LD.Flags += -g
311 KEEP_SYMBOLS := 1
312 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000313endif
314
Eric Christopherbee515f2011-11-11 22:51:42 +0000315ifeq ($(ENABLE_LIBCPP),1)
316 CXX.Flags += -stdlib=libc++
317 LD.Flags += -stdlib=libc++
318endif
Chris Lattner16969802011-11-10 21:12:28 +0000319
David Greenedbefd0c2009-04-17 14:49:22 +0000320ifeq ($(ENABLE_PROFILING),1)
321 BuildMode := $(BuildMode)+Profile
322 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
323 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
324 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
325 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000326endif
327
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000328ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000329 CXX.Flags += -fvisibility-inlines-hidden
330endif
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000331
Chris Lattnerc96d5082010-01-24 20:20:40 +0000332ifdef ENABLE_EXPENSIVE_CHECKS
333 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
334 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
335 REQUIRES_RTTI := 1
336endif
337
Reid Spencer99655e12006-08-25 19:54:53 +0000338# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000339ifndef REQUIRES_EH
340 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000341else
342 # If the library requires EH, it also requires RTTI.
343 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000344endif
Reid Spencer99655e12006-08-25 19:54:53 +0000345
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000346ifdef REQUIRES_FRAME_POINTER
347 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
348 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
349 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
350endif
351
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000352# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000353ifneq ($(REQUIRES_RTTI), 1)
354 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000355endif
356
Peter Collingbourneed50d382010-10-22 12:54:34 +0000357ifeq ($(ENABLE_COVERAGE),1)
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000358 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000359 CXX.Flags += -ftest-coverage -fprofile-arcs
360 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000361endif
362
Reid Spencer854071c2006-04-10 16:46:04 +0000363# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
364# then disable assertions by defining the appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000365ifeq ($(DISABLE_ASSERTIONS),1)
366 CPP.Defines += -DNDEBUG
367else
Duncan Sands8246adc2010-07-07 07:48:00 +0000368 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000369 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000370endif
371
Misha Brukmanef5dc702009-01-08 02:11:55 +0000372# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
373# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000374# appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000375ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
David Greenea696d242007-06-28 19:36:08 +0000376 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000377 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000378endif
379
Nick Lewyckya15dc032009-02-26 07:44:16 +0000380# LOADABLE_MODULE implies several other things so we force them to be
381# defined/on.
382ifdef LOADABLE_MODULE
383 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000384 LINK_LIBS_IN_SHARED := 1
385endif
386
387ifdef SHARED_LIBRARY
388 ENABLE_PIC := 1
389 PIC_FLAG = "(PIC)"
390endif
391
Reid Spencer89b0d992006-12-16 22:07:52 +0000392ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000393 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000394 # Nothing. Win32 defaults to PIC and warns when given -fPIC
395 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000396 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000397 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000398 CXX.Flags += -fno-common
399 C.Flags += -fno-common
400 else
401 # Linux and others; pass -fPIC
402 CXX.Flags += -fPIC
403 C.Flags += -fPIC
404 endif
405 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000406else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000407 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000408 CXX.Flags += -mdynamic-no-pic
409 C.Flags += -mdynamic-no-pic
410 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000411endif
412
Daniel Dunbardd464df2010-05-10 20:11:56 +0000413# Support makefile variable to disable any kind of timestamp/non-deterministic
414# info from being used in the build.
415ifeq ($(ENABLE_TIMESTAMPS),1)
416 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
417else
418 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
419endif
420
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000421ifeq ($(HOST_OS),MingW)
422 # Work around PR4957
423 CPP.Defines += -D__NO_CTYPE_INLINE
424 ifeq ($(LLVM_CROSS_COMPILING),1)
425 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
426 ifdef TOOLNAME
427 LD.Flags += -Wl,--allow-multiple-definition
428 endif
429 endif
430endif
431
Chris Lattner1bdedb92011-04-09 06:01:28 +0000432CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000433CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000434AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000435
Chris Lattner16620fc2006-07-27 18:19:51 +0000436# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000437ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000438 CXX.Flags += -mieee
439 CPP.BaseFlags += -mieee
440ifeq ($(ENABLE_PIC),0)
441 CXX.Flags += -fPIC
442 CPP.BaseFlags += -fPIC
443endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000444
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000445 LD.Flags += -Wl,--no-relax
446endif
447
NAKAMURA Takumib9dec1f2010-11-26 09:32:02 +0000448# GNU ld/PECOFF accepts but ignores them below;
449# --version-script
450# --export-dynamic
451# --rpath
452# FIXME: autoconf should be aware of them.
453ifneq (,$(filter $(HOST_OS),Cygwin MingW))
454 HAVE_LINK_VERSION_SCRIPT := 0
455 RPATH :=
456 RDYNAMIC := -Wl,--export-all-symbols
457endif
458
Reid Spencer3a561f52004-10-23 20:04:14 +0000459#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000460# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000461#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000462TargetMode :=
463ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000464 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000465endif
466
467ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000468ObjDir := $(ObjRootDir)
469LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
470ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
471ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
472LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
473LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
474LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000475
Reid Spencer3a561f52004-10-23 20:04:14 +0000476#--------------------------------------------------------------------
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000477# Locations of shared libraries
478#--------------------------------------------------------------------
479
480SharedPrefix := lib
481SharedLibDir := $(LibDir)
482LLVMSharedLibDir := $(LLVMLibDir)
483
484# Win32.DLL prefers to be located on the "PATH" of binaries.
485ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
486 SharedLibDir := $(ToolDir)
487 LLVMSharedLibDir := $(LLVMToolDir)
488
489 ifeq ($(HOST_OS),Cygwin)
490 SharedPrefix := cyg
491 else
492 SharedPrefix :=
493 endif
494endif
495
496#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000497# LLVM Capable Compiler
498#--------------------------------------------------------------------
499
Chris Lattner70d77002011-04-09 19:53:16 +0000500ifneq ($(findstring llvm-gcc,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000501 LLVMCC := $(LLVMGCC)
502 LLVMCXX := $(LLVMGXX)
503else
Chris Lattner70d77002011-04-09 19:53:16 +0000504 ifneq ($(findstring clang,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000505 ifneq ($(CLANGPATH),)
506 LLVMCC := $(CLANGPATH)
507 LLVMCXX := $(CLANGXXPATH)
508 else
509 ifeq ($(ENABLE_BUILT_CLANG),1)
510 LLVMCC := $(LLVMToolDir)/clang
511 LLVMCXX := $(LLVMToolDir)/clang++
512 endif
513 endif
514 endif
515endif
516
517#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000518# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000519#--------------------------------------------------------------------
Daniel Dunbar01b825d2011-11-11 22:59:45 +0000520EchoCmd := $(ECHO) llvm[$(MAKELEVEL)]:
521ifdef BUILD_DIRS_ONLY
522EchoCmd := $(EchoCmd) "(build tools)":
523endif
524
525Echo := @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000526ifndef LLVMAS
527LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
528endif
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000529ifndef LLVM_TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000530 ifeq ($(LLVM_CROSS_COMPILING),1)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000531 LLVM_TBLGEN := $(BuildLLVMToolDir)/llvm-tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000532 else
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000533 LLVM_TBLGEN := $(LLVMToolDir)/llvm-tblgen$(EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000534 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000535endif
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000536ifeq ($(LLVM_CROSS_COMPILING),1)
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000537 LLVM_CONFIG := $(BuildLLVMToolDir)/llvm-config$(BUILD_EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000538else
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000539 LLVM_CONFIG := $(LLVMToolDir)/llvm-config$(EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000540endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000541ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000542LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
543endif
544ifndef LLI
545LLI := $(LLVMToolDir)/lli$(EXEEXT)
546endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000547ifndef LLC
548LLC := $(LLVMToolDir)/llc$(EXEEXT)
549endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000550ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000551LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000552endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000553ifndef LBUGPOINT
554LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
555endif
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +0000556ifndef LLVMLINK
557LLVMLINK := $(LLVMToolDir)/llvm-link$(EXEEXT)
558endif
Reid Spencere46687c2006-12-03 21:01:45 +0000559
Reid Spencer3a561f52004-10-23 20:04:14 +0000560#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000561# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000562#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000563
Anton Korobeynikove55db742009-08-18 00:40:33 +0000564ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000565 DARWIN_VERSION := `sw_vers -productVersion`
566 # Strip a number like 10.4.7 to 10.4
567 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
568 # Get "4" out of 10.4 for later pieces in the makefile.
569 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000570
Daniel Dunbar7bc0f272010-12-08 01:48:05 +0000571 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
572 SharedLinkOptions := -dynamiclib
Evan Chenga5e225e2009-09-08 18:52:20 +0000573 ifneq ($(ARCH),ARM)
574 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
575 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000576else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000577 SharedLinkOptions=-shared
Scott Michel87af5f02009-03-12 21:03:53 +0000578endif
579
Anton Korobeynikove55db742009-08-18 00:40:33 +0000580ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000581 ifneq ($(ARCH),ARM)
582 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
583 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000584endif
585
Reid Spencer492c2932005-01-11 04:31:07 +0000586ifdef SHARED_LIBRARY
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000587ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000588ifneq ($(HOST_OS),Darwin)
589 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
John Criswell82f4a5a2003-07-31 20:58:51 +0000590endif
Scott Michel87af5f02009-03-12 21:03:53 +0000591endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000592endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000593
Reid Spencercceed9f2004-11-08 17:32:12 +0000594ifdef TOOL_VERBOSE
595 C.Flags += -v
596 CXX.Flags += -v
597 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000598 VERBOSE := 1
599endif
600
Reid Spencer3a561f52004-10-23 20:04:14 +0000601# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000602ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000603 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000604 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000605 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000606else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000607 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000608endif
609
Vikram S. Advefeeae582002-09-18 11:55:13 +0000610# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000611ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000612 Strip := $(PLATFORMSTRIPOPTS)
613 StripWarnMsg := "(without symbols)"
Charles Davis13460c92011-10-26 02:28:32 +0000614 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000615endif
616
Rafael Espindola31552a92010-10-15 00:58:12 +0000617ifdef TOOL_NO_EXPORTS
618 DynamicFlags :=
619else
620 DynamicFlag := $(RDYNAMIC)
621endif
622
Reid Spencer3a561f52004-10-23 20:04:14 +0000623# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000624ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
625ifneq ($(HOST_OS), Darwin)
Reid Spencer4d71b662004-10-22 21:01:56 +0000626ifdef TOOLNAME
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000627 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
628 ifdef EXAMPLE_TOOL
Rafael Espindola31552a92010-10-15 00:58:12 +0000629 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000630 else
Rafael Espindola31552a92010-10-15 00:58:12 +0000631 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000632 endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000633endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000634else
635ifneq ($(DARWIN_MAJVERS),4)
636 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
Nick Lewyckya15dc032009-02-26 07:44:16 +0000637endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000638endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000639endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000640
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000641
Reid Spencer3a561f52004-10-23 20:04:14 +0000642#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000643# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000644#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000645
Daniel Dunbare2a91a72011-06-16 22:30:38 +0000646ifdef EXTRA_LD_OPTIONS
647LD.Flags += $(EXTRA_LD_OPTIONS)
648endif
649
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000650ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000651CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000652endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000653CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
Rafael Espindola9993a3a2012-02-28 23:32:06 +0000654 $(EXTRA_OPTIONS) $(COVERED_SWITCH_DEFAULT)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000655# Enable cast-qual for C++; the workaround is to use const_cast.
656CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000657
Anton Korobeynikove55db742009-08-18 00:40:33 +0000658ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000659 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000660endif
661
Chris Lattner73faa392006-05-30 16:38:06 +0000662# If we are building a universal binary on Mac OS/X, pass extra options. This
663# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000664# apps.
665#
666# The following can be optionally specified:
667# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
668# For Mac OS/X 10.4 Intel machines, the traditional one is:
669# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
670# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
671# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
672# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000673ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000674 ifndef UNIVERSAL_ARCH
675 UNIVERSAL_ARCH := i386 ppc
676 endif
677 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
678 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000679 ifdef UNIVERSAL_SDK_PATH
680 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000681 endif
682
683 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000684 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000685else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000686 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000687 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000688 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000689 else
690 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000691 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000692 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000693 endif
694 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000695endif
696
Anton Korobeynikove55db742009-08-18 00:40:33 +0000697ifeq ($(HOST_OS),SunOS)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000698CPP.BaseFlags += -include llvm/Support/Solaris.h
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000699endif
700
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000701ifeq ($(HOST_OS),AuroraUX)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000702CPP.BaseFlags += -include llvm/Support/Solaris.h
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000703endif # !HOST_OS - AuroraUX.
704
David Meyer107506f2012-02-18 10:03:19 +0000705# On Windows, SharedLibDir != LibDir. The order is important.
706ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
707 LD.Flags += -L$(SharedLibDir) -L$(LibDir) -L$(LLVMToolDir) -L$(LLVMLibDir)
708else
709 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
710endif
711
NAKAMURA Takumie2aa5d52011-10-11 12:51:44 +0000712CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000713# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000714CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
715 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000716 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
717 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
718 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000719
Daniel Dunbar8d694142011-11-03 21:01:32 +0000720ifeq ($(INCLUDE_BUILD_DIR),1)
721 CPP.Flags += -I$(ObjDir)
722endif
723
Daniel Dunbar58194302011-04-11 22:37:39 +0000724# SHOW_DIAGNOSTICS support.
725ifeq ($(SHOW_DIAGNOSTICS),1)
726 Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
727 CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
728else
729 Compile.Wrapper :=
730endif
731
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000732Compile.C = $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000733 $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000734 $(TargetCommonOpts) $(CompileCommonOpts) -c
735Compile.CXX = $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000736 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000737 $(TargetCommonOpts) $(CompileCommonOpts) -c
738Preprocess.CXX= $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000739 $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000740 $(CompileCommonOpts) $(CXX.Flags) -E
741Link = $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000742 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000743 $(LDFLAGS) $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000744
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000745BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000746 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000747Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000748 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000749
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000750BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000751 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000752
Misha Brukmanef5dc702009-01-08 02:11:55 +0000753ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
754ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000755DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000756
757# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
758# paths. In this case, the SYSPATH function (defined in
759# Makefile.config) transforms Unix paths into Windows paths.
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000760TableGen.Flags= -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000761 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000762 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
763 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000764LLVMTableGen = $(LLVM_TBLGEN) $(TableGen.Flags)
Chris Lattner6e0a5292008-01-15 23:27:40 +0000765
Reid Spencercc2d1e22004-10-30 09:19:36 +0000766Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000767LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000768ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000769Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000770else
Reid Spencer3a561f52004-10-23 20:04:14 +0000771Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000772endif
773
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000774AliasTool = ln -s
775
Chris Lattner00950542001-06-06 20:29:01 +0000776#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000777# Get the list of source files and compute object file
778# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000779#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000780
781ifndef SOURCES
782 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000783 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000784else
Chris Lattner89681112006-01-27 22:13:12 +0000785 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000786endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000787
Chris Lattner89681112006-01-27 22:13:12 +0000788ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000789Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000790endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000791
Chris Lattner89681112006-01-27 22:13:12 +0000792BaseNameSources := $(sort $(basename $(Sources)))
793
794ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000795ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
796
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000797#----------------------------------------------------------
798# For Mingw MSYS bash and Python/w32:
799#
800# $(ECHOPATH) prints DOSish pathstring.
801# ex) $(ECHOPATH) /include/sys/types.h
802# --> C:/mingw/include/sys/types.h
803# built-in "echo" does not transform path to DOSish path.
804#
805# FIXME: It would not be needed when MSYS's python
806# were provided.
807#----------------------------------------------------------
808
809ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
810 ECHOPATH := $(Verb)python -u -c "import sys;print ' '.join(sys.argv[1:])"
811else
812 ECHOPATH := $(Verb)$(ECHO)
813endif
814
Reid Spencer3a561f52004-10-23 20:04:14 +0000815###############################################################################
816# DIRECTORIES: Handle recursive descent of directory structure
817###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000818
Chris Lattner00950542001-06-06 20:29:01 +0000819#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000820# Provide rules to make install dirs. This must be early
821# in the file so they get built before dependencies
822#---------------------------------------------------------
823
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000824$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000825 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000826
Reid Spencercc2d1e22004-10-30 09:19:36 +0000827# To create other directories, as needed, and timestamp their creation
828%/.dir:
829 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000830 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000831
Reid Spencer815cbcf2004-11-18 10:03:46 +0000832.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
833.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000834
835#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000836# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000837#---------------------------------------------------------
838
Misha Brukmanef5dc702009-01-08 02:11:55 +0000839SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000840ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000841SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000842
843ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000844$(RecursiveTargets)::
845 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000846 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000847 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000848 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000849 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000850 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000851 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000852 done
Chris Lattner82033602006-07-26 20:22:26 +0000853else
854$(RecursiveTargets)::
855 $(Verb) for dir in $(DIRS); do \
856 ($(MAKE) -C $$dir $@ ) || exit 1; \
857 done
858endif
859
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000860endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000861
Reid Spencer3a561f52004-10-23 20:04:14 +0000862#---------------------------------------------------------
863# Handle the EXPERIMENTAL_DIRS options ensuring success
864# after each directory is built.
865#---------------------------------------------------------
866ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000867$(RecursiveTargets)::
868 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000869 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000870 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000871 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000872 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000873 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000874 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000875 done
876endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000877
Reid Spencer25e8a702005-12-21 23:17:06 +0000878#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000879# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
880#-----------------------------------------------------------
881ifdef OPTIONAL_PARALLEL_DIRS
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000882 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) -o -f $(T)/Makefile && echo "$(T)"))
Mike Stump0a268912009-01-24 00:00:41 +0000883endif
884
885#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000886# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000887#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000888ifdef PARALLEL_DIRS
889
Reid Spencercc2d1e22004-10-30 09:19:36 +0000890SubDirs += $(PARALLEL_DIRS)
891
Reid Spencer44cb1b32004-12-03 20:08:48 +0000892# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000893all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
894clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000895clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000896install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000897uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000898install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000899unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000900
Reid Spencer345235ca2004-12-04 22:34:09 +0000901ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000902
Reid Spencer345235ca2004-12-04 22:34:09 +0000903$(ParallelTargets) :
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000904 $(Verb) \
905 SD=$(PROJ_SRC_DIR)/$(@D); \
906 DD=$(@D); \
907 if [ ! -f $$SD/Makefile ]; then \
908 SD=$(@D); \
909 DD=$(notdir $(@D)); \
910 fi; \
911 if ([ ! -f $$DD/Makefile ] || \
912 command test $$DD/Makefile -ot \
913 $$SD/Makefile ); then \
914 $(MKDIR) $$DD; \
915 $(CP) $$SD/Makefile $$DD/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000916 fi; \
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000917 $(MAKE) -C $$DD $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000918endif
919
Reid Spencer3a561f52004-10-23 20:04:14 +0000920#---------------------------------------------------------
921# Handle the OPTIONAL_DIRS options for directores that may
922# or may not exist.
923#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000924ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000925
Reid Spencercc2d1e22004-10-30 09:19:36 +0000926SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000927
Chris Lattner82033602006-07-26 20:22:26 +0000928ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000929$(RecursiveTargets)::
930 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000931 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000932 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000933 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000934 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000935 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000936 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000937 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000938 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000939 done
Chris Lattner82033602006-07-26 20:22:26 +0000940else
941$(RecursiveTargets)::
942 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Stephen Wilsonc1566322011-02-20 03:51:07 +0000943 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
944 ($(MAKE) -C$$dir $@ ) || exit 1; \
945 fi \
Chris Lattner82033602006-07-26 20:22:26 +0000946 done
947endif
John Criswell2a6530f2003-06-27 16:58:44 +0000948endif
949
Reid Spencerfc945082004-08-20 09:20:05 +0000950#---------------------------------------------------------
951# Handle the CONFIG_FILES options
952#---------------------------------------------------------
953ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000954
Reid Spencera2a31bf2007-02-06 18:53:14 +0000955ifdef NO_INSTALL
956install-local::
957 $(Echo) Install circumvented with NO_INSTALL
958uninstall-local::
959 $(Echo) UnInstall circumvented with NO_INSTALL
960else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000961install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
962 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000963 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000964 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000965 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000966 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000967 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000968 else \
969 $(ECHO) Error: cannot find config file $${file}. ; \
970 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000971 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000972
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000973uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000974 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000975 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000976 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000977 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000978endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000979
Reid Spencerfc945082004-08-20 09:20:05 +0000980endif
981
Reid Spencer3a561f52004-10-23 20:04:14 +0000982###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +0000983# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000984###############################################################################
985
986#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000987# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000988# libraries needed when linking. There are "Proj" libs
989# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000990# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000991#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000992
Chris Lattneref0d0f12006-09-04 04:47:21 +0000993ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000994ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
995ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000996ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
997ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
998endif
999
1000ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001001LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
1002LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001003LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001004LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +00001005endif
1006
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001007# Loadable module for Win32 requires all symbols resolved for linking.
1008# Then all symbols in LLVM.dll will be available.
1009ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001010 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001011 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
1012 LINK_COMPONENTS += all
1013 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001014 endif
1015endif
1016
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001017ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +00001018ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +00001019
1020# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
1021# clean in tools, then do a make in tools (instead of at the top level).
1022$(LLVM_CONFIG):
1023 @echo "*** llvm-config doesn't exist - rebuilding it."
1024 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +00001025
Chris Lattner0a1db822006-09-04 05:23:20 +00001026$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
1027
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001028ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001029# We can take the "auto-import" feature to get rid of using dllimport.
1030ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1031LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
1032 -L $(SharedLibDir)
1033endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001034LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001035LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001036else
Chris Lattnerf636aa92010-09-01 16:11:17 +00001037
1038ifndef NO_LLVM_CONFIG
1039LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
1040ifeq ($(LLVMConfigLibs),Error)
1041$(error llvm-config --libs failed)
1042endif
1043LLVMLibsOptions += $(LLVMConfigLibs)
1044LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
1045ifeq ($(LLVMConfigLibfiles),Error)
1046$(error llvm-config --libfiles failed)
1047endif
1048LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
1049endif
1050
Chris Lattneref0d0f12006-09-04 04:47:21 +00001051endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +00001052endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001053endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001054
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001055# Set up the library exports file.
1056ifdef EXPORTED_SYMBOL_FILE
1057
1058# First, set up the native export file, which may differ from the source
1059# export file.
1060
1061ifeq ($(HOST_OS),Darwin)
1062# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +00001063NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +00001064$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001065 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001066clean-local::
1067 -$(Verb) $(RM) -f $(NativeExportsFile)
1068else
Dan Gohmanda612d62010-06-01 14:56:56 +00001069ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1070# Gold and BFD ld require a version script rather than a plain list.
1071NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1072$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1073 $(Verb) echo "{" > $@
Eric Christopher5084fa02012-03-12 20:58:14 +00001074 $(Verb) grep -q '[[:alnum:]_]' $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001075 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001076ifneq ($(HOST_OS),OpenBSD)
Dan Gohmanda612d62010-06-01 14:56:56 +00001077 $(Verb) echo " local: *;" >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001078endif
Dan Gohmanda612d62010-06-01 14:56:56 +00001079 $(Verb) echo "};" >> $@
1080clean-local::
1081 -$(Verb) $(RM) -f $(NativeExportsFile)
1082else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001083ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +00001084# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001085NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001086$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1087 $(Echo) Generating $(notdir $@)
1088 $(Verb) $(ECHO) "EXPORTS" > $@
1089 $(Verb) $(CAT) $< >> $@
1090clean-local::
1091 -$(Verb) $(RM) -f $(NativeExportsFile)
1092else
Dan Gohman9a7570c2010-09-03 17:29:33 +00001093# Default behavior: just use the exports file verbatim.
1094NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1095endif
1096endif
1097endif
1098
1099# Now add the linker command-line options to use the native export file.
1100
1101# Darwin
1102ifeq ($(HOST_OS),Darwin)
1103LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1104endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001105
Dan Gohmane05f6092010-04-16 22:58:15 +00001106# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001107ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1108LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001109endif
1110
Dan Gohman9a7570c2010-09-03 17:29:33 +00001111# Windows
1112ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1113# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1114SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001115endif
1116
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001117endif
1118
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001119###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001120# Library Build Rules: Four ways to build a library
1121###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001122
Reid Spencer7980ea42004-12-05 05:17:22 +00001123#---------------------------------------------------------
1124# Bytecode Module Targets:
1125# If the user set MODULE_NAME then they want to build a
1126# bytecode module from the sources. We compile all the
1127# sources and link it together into a single bytecode
1128# module.
1129#---------------------------------------------------------
1130
1131ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001132ifeq ($(strip $(LLVMCC)),)
1133$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001134else
Reid Spencer7980ea42004-12-05 05:17:22 +00001135
1136Module := $(LibDir)/$(MODULE_NAME).bc
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001137LinkModule := $(LLVMLINK)
Reid Spencerbbd5e432006-04-12 18:21:35 +00001138
Reid Spencer7980ea42004-12-05 05:17:22 +00001139
1140ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001141LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001142endif
1143
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001144$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001145 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001146 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1147
1148all-local:: $(Module)
1149
1150clean-local::
1151ifneq ($(strip $(Module)),)
1152 -$(Verb) $(RM) -f $(Module)
1153endif
1154
Reid Spencerab3690b2004-12-13 07:38:07 +00001155ifdef BYTECODE_DESTINATION
1156ModuleDestDir := $(BYTECODE_DESTINATION)
1157else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001158ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001159endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001160
Reid Spencera2a31bf2007-02-06 18:53:14 +00001161ifdef NO_INSTALL
1162install-local::
1163 $(Echo) Install circumvented with NO_INSTALL
1164uninstall-local::
1165 $(Echo) Uninstall circumvented with NO_INSTALL
1166else
Reid Spencerab3690b2004-12-13 07:38:07 +00001167DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1168
1169install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001170install-local:: $(DestModule)
1171
Misha Brukmanef5dc702009-01-08 02:11:55 +00001172$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001173 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001174 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001175
1176uninstall-local::
1177 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1178 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001179endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001180
1181endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001182endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001183
Reid Spencer3a561f52004-10-23 20:04:14 +00001184# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001185ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001186
Misha Brukmanf547a122009-08-17 15:31:24 +00001187# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001188LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001189ifdef LOADABLE_MODULE
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001190BaseLibName.A := $(LIBRARYNAME).a
1191BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001192else
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001193BaseLibName.A := lib$(LIBRARYNAME).a
1194BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001195endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001196LibName.A := $(LibDir)/$(BaseLibName.A)
1197LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001198LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001199LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001200
Reid Spencer3a561f52004-10-23 20:04:14 +00001201#---------------------------------------------------------
1202# Shared Library Targets:
1203# If the user asked for a shared library to be built
1204# with the SHARED_LIBRARY variable, then we provide
1205# targets for building them.
1206#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001207ifdef SHARED_LIBRARY
1208
Nick Lewyckya15dc032009-02-26 07:44:16 +00001209all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001210
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001211ifdef EXPORTED_SYMBOL_FILE
1212$(LibName.SO): $(NativeExportsFile)
1213endif
1214
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001215ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001216ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001217SharedLibKindMessage := "Loadable Module"
Daniel Dunbar7bc0f272010-12-08 01:48:05 +00001218SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
Reid Spencer42fe4552006-08-07 23:12:15 +00001219else
1220SharedLibKindMessage := "Shared Library"
1221endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001222$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001223 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001224 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001225 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001226 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001227else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001228$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001229 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001230 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001231endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001232
1233clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001234ifneq ($(strip $(LibName.SO)),)
1235 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001236endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001237
Reid Spencera2a31bf2007-02-06 18:53:14 +00001238ifdef NO_INSTALL
1239install-local::
1240 $(Echo) Install circumvented with NO_INSTALL
1241uninstall-local::
1242 $(Echo) Uninstall circumvented with NO_INSTALL
1243else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001244
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001245# Win32.DLL prefers to be located on the "PATH" of binaries.
1246ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1247DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001248else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001249DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001250endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001251DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001252
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001253install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001254
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001255$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001256 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001257 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001258
Misha Brukmanef5dc702009-01-08 02:11:55 +00001259uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001260 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001261 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001262endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001263endif
1264
Reid Spencer3a561f52004-10-23 20:04:14 +00001265#---------------------------------------------------------
1266# Bytecode Library Targets:
1267# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001268# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001269# targets for building them.
1270#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001271ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001272ifeq ($(strip $(LLVMCC)),)
1273$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001274else
Reid Spencer4d71b662004-10-22 21:01:56 +00001275
Reid Spencer9a2f1372004-12-02 09:28:21 +00001276all-local:: $(LibName.BCA)
1277
1278ifdef EXPORTED_SYMBOL_FILE
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001279BCLinkLib = $(LLVMLINK) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001280
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001281$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001282 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001283 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1284 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001285 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001286 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001287 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001288else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001289$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001290 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001291 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001292 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001293 $(Verb) $(LArchive) $@ $(ObjectsBC)
1294
Reid Spencer4d71b662004-10-22 21:01:56 +00001295endif
1296
Reid Spencer3a561f52004-10-23 20:04:14 +00001297clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001298ifneq ($(strip $(LibName.BCA)),)
1299 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001300endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001301
Reid Spencer8f094f32004-12-13 07:28:21 +00001302ifdef BYTECODE_DESTINATION
1303BytecodeDestDir := $(BYTECODE_DESTINATION)
1304else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001305BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001306endif
1307
Daniel Dunbard62031e2009-05-12 05:35:40 +00001308DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001309
Reid Spencer44cb1b32004-12-03 20:08:48 +00001310install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001311
Reid Spencera2a31bf2007-02-06 18:53:14 +00001312ifdef NO_INSTALL
1313install-local::
1314 $(Echo) Install circumvented with NO_INSTALL
1315uninstall-local::
1316 $(Echo) Uninstall circumvented with NO_INSTALL
1317else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001318install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001319
Mike Stumpb445d742009-02-12 23:45:11 +00001320$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001321 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001322 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001323
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001324uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001325 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001326 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001327endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001328endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001329endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001330
Reid Spencercc2d1e22004-10-30 09:19:36 +00001331#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001332# Library Targets:
1333# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1334# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001335#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001336ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001337ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001338ifndef LOADABLE_MODULE
1339BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001340endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001341endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001342endif
Chris Lattner760da062003-03-14 20:25:22 +00001343
Reid Spencercc2d1e22004-10-30 09:19:36 +00001344#---------------------------------------------------------
1345# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001346# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001347# then we provide targets for building them.
1348#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001349ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001350
Reid Spencercc2d1e22004-10-30 09:19:36 +00001351all-local:: $(LibName.A)
1352
Reid Spencerf2ac1892004-12-16 07:36:08 +00001353$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001354 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001355 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001356 $(Verb) $(Archive) $@ $(ObjectsO)
1357 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001358
Reid Spencer3a561f52004-10-23 20:04:14 +00001359clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001360ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001361 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001362endif
1363
Reid Spencera2a31bf2007-02-06 18:53:14 +00001364ifdef NO_INSTALL
1365install-local::
1366 $(Echo) Install circumvented with NO_INSTALL
1367uninstall-local::
1368 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001369else
1370ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001371install-local::
1372 $(Echo) Install circumvented with NO_INSTALL
1373uninstall-local::
1374 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001375else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001376DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001377
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001378install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001379
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001380$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001381 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001382 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001383 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001384
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001385uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001386 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001387 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001388endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001389endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001390endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001391
1392# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001393endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001394
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001395###############################################################################
1396# Tool Build Rules: Build executable tool based on TOOLNAME option
1397###############################################################################
1398
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001399ifdef TOOLNAME
1400
Reid Spencercc2d1e22004-10-30 09:19:36 +00001401#---------------------------------------------------------
1402# Set up variables for building a tool.
1403#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001404TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001405ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001406ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001407else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001408ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1409endif
1410
1411# TOOLALIAS is a name to symlink (or copy) the tool to.
1412ifdef TOOLALIAS
1413ifdef EXAMPLE_TOOL
1414ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1415else
1416ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1417endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001418endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001419
Reid Spencercc2d1e22004-10-30 09:19:36 +00001420#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001421# Prune Exports
1422#---------------------------------------------------------
1423
1424# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1425# not exporting all of the weak symbols from the binary. This reduces dyld
1426# startup time by 4x on darwin in some cases.
1427ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001428ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001429
1430# Tiger tools don't support this.
1431ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001432LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001433endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001434endif
Chris Lattner61863a32009-02-26 17:47:49 +00001435
Sylvestre Ledru6fc30c22012-04-11 15:35:36 +00001436ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD GNU))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001437ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001438 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001439endif
1440endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001441endif
Chris Lattner61863a32009-02-26 17:47:49 +00001442
Devang Patel83be4512010-07-15 20:57:09 +00001443#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001444# Tool Order File Support
1445#---------------------------------------------------------
1446
1447ifeq ($(HOST_OS),Darwin)
Daniel Dunbarade490a2011-06-28 22:30:17 +00001448ifdef TOOL_ORDER_FILE
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001449
1450LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1451
1452endif
1453endif
1454
1455#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001456# Tool Version Info Support
1457#---------------------------------------------------------
1458
1459ifeq ($(HOST_OS),Darwin)
1460ifdef TOOL_INFO_PLIST
1461
1462LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1463
1464$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1465
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001466$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001467 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1468 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1469 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1470 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1471 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1472 $< > $@
1473
1474endif
1475endif
Chris Lattner61863a32009-02-26 17:47:49 +00001476
1477#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001478# Provide targets for building the tools
1479#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001480all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001481
Reid Spencer3a561f52004-10-23 20:04:14 +00001482clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001483ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001484 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001485endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001486ifneq ($(strip $(ToolAliasBuildPath)),)
1487 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1488endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001489
Reid Spencer815cbcf2004-11-18 10:03:46 +00001490ifdef EXAMPLE_TOOL
1491$(ToolBuildPath): $(ExmplDir)/.dir
1492else
1493$(ToolBuildPath): $(ToolDir)/.dir
1494endif
1495
Daniel Dunbar95669052012-03-06 19:07:38 +00001496ifdef CODESIGN_TOOLS
Chris Lattnera7868af2006-09-04 06:39:52 +00001497$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001498 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001499 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001500 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001501 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001502 $(StripWarnMsg)
Daniel Dunbar95669052012-03-06 19:07:38 +00001503 $(Echo) ======= Code-Signing $(BuildMode) Executable $(TOOLNAME)
1504 $(Verb) codesign -s - $@
1505else
1506$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1507 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1508 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1509 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1510 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1511 $(StripWarnMsg)
1512endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001513
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001514ifneq ($(strip $(ToolAliasBuildPath)),)
1515$(ToolAliasBuildPath): $(ToolBuildPath)
1516 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1517 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1518 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001519 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001520 $(StripWarnMsg)
1521endif
1522
Reid Spencera2a31bf2007-02-06 18:53:14 +00001523ifdef NO_INSTALL
1524install-local::
1525 $(Echo) Install circumvented with NO_INSTALL
1526uninstall-local::
1527 $(Echo) Uninstall circumvented with NO_INSTALL
1528else
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001529
1530ifdef INTERNAL_TOOL
1531ToolBinDir = $(DESTDIR)$(PROJ_internal_prefix)/bin
1532else
1533ToolBinDir = $(DESTDIR)$(PROJ_bindir)
1534endif
1535DestTool = $(ToolBinDir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001536
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001537install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001538
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001539$(DestTool): $(ToolBuildPath)
Reid Spencer9af3b292004-11-01 07:50:27 +00001540 $(Echo) Installing $(BuildMode) $(DestTool)
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001541 $(Verb) $(MKDIR) $(ToolBinDir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001542 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001543
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001544uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001545 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001546 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001547
1548# TOOLALIAS install.
1549ifdef TOOLALIAS
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001550DestToolAlias = $(ToolBinDir)/$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001551
1552install-local:: $(DestToolAlias)
1553
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001554$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001555 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1556 $(Verb) $(RM) -f $(DestToolAlias)
1557 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1558
1559uninstall-local::
1560 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1561 -$(Verb) $(RM) -f $(DestToolAlias)
1562endif
1563
Reid Spencera2a31bf2007-02-06 18:53:14 +00001564endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001565endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001566
Reid Spencercc2d1e22004-10-30 09:19:36 +00001567###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001568# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001569###############################################################################
1570
Duraid Madina197ab872006-02-15 03:23:26 +00001571# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001572ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001573 DISABLE_AUTO_DEPENDENCIES=1
1574endif
1575
Reid Spencercc2d1e22004-10-30 09:19:36 +00001576# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001577ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001578
Reid Spencercc2d1e22004-10-30 09:19:36 +00001579#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001580# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001581#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001582
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001583DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001584 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001585
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001586# If the build succeeded, move the dependency file over, otherwise
1587# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001588DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1589 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1590
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001591$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001592 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001593 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001594 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001595
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001596$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001597 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1598 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1599 $(DEPEND_MOVEFILE)
1600
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001601$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001602 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001603 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001604 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001605
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001606$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001607 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001608 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001609 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001610
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001611$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001612 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1613 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1614 $(DEPEND_MOVEFILE)
1615
Reid Spencercc2d1e22004-10-30 09:19:36 +00001616#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001617# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001618#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001619
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001620BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1621 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1622
1623# If the build succeeded, move the dependency file over, otherwise
1624# remove it.
1625BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1626 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1627
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001628$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001629 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001630 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001631 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001632 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001633
Greg Clayton43bc79a2010-07-13 18:47:09 +00001634$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1635 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1636 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001637 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001638 $(BC_DEPEND_MOVEFILE)
1639
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001640$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001641 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001642 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001643 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001644 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001645
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001646$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001647 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001648 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001649 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001650 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001651
Greg Clayton43bc79a2010-07-13 18:47:09 +00001652$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1653 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1654 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001655 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001656 $(BC_DEPEND_MOVEFILE)
1657
Reid Spencercc2d1e22004-10-30 09:19:36 +00001658# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001659else
1660
Nick Lewyckya15dc032009-02-26 07:44:16 +00001661$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001662 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001663 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001664
Greg Clayton43bc79a2010-07-13 18:47:09 +00001665$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1666 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1667 $(Compile.CXX) $< -o $@
1668
Nick Lewyckya15dc032009-02-26 07:44:16 +00001669$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001670 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001671 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001672
Nick Lewyckya15dc032009-02-26 07:44:16 +00001673$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001674 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001675 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001676
Greg Clayton43bc79a2010-07-13 18:47:09 +00001677$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1678 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1679 $(Compile.C) $< -o $@
1680
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001681$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001682 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001683 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Reid Spencer4d71b662004-10-22 21:01:56 +00001684
Greg Clayton43bc79a2010-07-13 18:47:09 +00001685$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1686 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001687 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001688
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001689$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001690 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001691 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001692
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001693$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001694 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001695 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Brian Gaeke44909cf2003-12-10 00:26:28 +00001696
Greg Clayton43bc79a2010-07-13 18:47:09 +00001697$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1698 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001699 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001700
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001701endif
1702
Chris Lattner8eb12de2006-06-21 21:01:20 +00001703
1704## Rules for building preprocessed (.i/.ii) outputs.
1705$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1706 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1707 $(Verb) $(Preprocess.CXX) $< -o $@
1708
Greg Clayton43bc79a2010-07-13 18:47:09 +00001709$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1710 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1711 $(Verb) $(Preprocess.CXX) $< -o $@
1712
Chris Lattner8eb12de2006-06-21 21:01:20 +00001713$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1714 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1715 $(Verb) $(Preprocess.CXX) $< -o $@
1716
Reid Spencer44136722006-12-10 04:56:38 +00001717$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001718 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1719 $(Verb) $(Preprocess.C) $< -o $@
1720
Greg Clayton43bc79a2010-07-13 18:47:09 +00001721$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1722 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1723 $(Verb) $(Preprocess.C) $< -o $@
1724
Chris Lattner8eb12de2006-06-21 21:01:20 +00001725
1726$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1727 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001728 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001729
Greg Clayton43bc79a2010-07-13 18:47:09 +00001730$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1731 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1732 $(Compile.CXX) $< -o $@ -S
1733
Chris Lattner8eb12de2006-06-21 21:01:20 +00001734$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1735 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001736 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001737
1738$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1739 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001740 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001741
Greg Clayton43bc79a2010-07-13 18:47:09 +00001742$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1743 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1744 $(Compile.C) $< -o $@ -S
1745
Reid Spencer8b2e1412006-11-17 03:32:33 +00001746
Chris Lattner89681112006-01-27 22:13:12 +00001747# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001748ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001749$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001750 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001751 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001752else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001753$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001754 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001755 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001756endif
1757
Chris Lattner89681112006-01-27 22:13:12 +00001758
Reid Spencercc2d1e22004-10-30 09:19:36 +00001759#---------------------------------------------------------
1760# Provide rule to build .bc files from .ll sources,
1761# regardless of dependencies
1762#---------------------------------------------------------
1763$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001764 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001765 $(Verb) $(LLVMAS) $< -f -o $@
1766
1767###############################################################################
1768# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1769###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001770
Reid Spencer4d71b662004-10-22 21:01:56 +00001771ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001772TABLEGEN_INC_FILES_COMMON = 1
1773endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001774
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001775ifdef TABLEGEN_INC_FILES_COMMON
1776
Reid Spencercc2d1e22004-10-30 09:19:36 +00001777INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001778INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1779.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001780
Misha Brukmanef5dc702009-01-08 02:11:55 +00001781# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001782# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1783# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001784# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001785# dependencies of the .inc files are, unless the contents of the .inc file
1786# changes.
1787$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001788 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001789
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001790endif # TABLEGEN_INC_FILES_COMMON
1791
1792ifdef TARGET
1793
1794TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1795 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1796 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1797 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1798 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1799 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1800 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1801
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001802# All .inc.tmp files depend on the .td files.
1803$(INCTMPFiles) : $(TDFiles)
Rafael Espindola075630a2009-03-10 17:58:54 +00001804
Chris Lattner3c473472004-12-16 17:28:50 +00001805$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001806$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001807 $(Echo) "Building $(<F) register info implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001808 $(Verb) $(LLVMTableGen) -gen-register-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001809
Chris Lattner3c473472004-12-16 17:28:50 +00001810$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001811$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001812 $(Echo) "Building $(<F) instruction information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001813 $(Verb) $(LLVMTableGen) -gen-instr-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001814
Chris Lattner3c473472004-12-16 17:28:50 +00001815$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001816$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001817 $(Echo) "Building $(<F) assembly writer with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001818 $(Verb) $(LLVMTableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001819
Chris Lattner02a4f902004-12-16 17:34:04 +00001820$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001821$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattner02a4f902004-12-16 17:34:04 +00001822 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001823 $(Verb) $(LLVMTableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001824
Daniel Dunbarc464e512009-07-13 18:35:35 +00001825$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001826$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarc464e512009-07-13 18:35:35 +00001827 $(Echo) "Building $(<F) assembly matcher with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001828 $(Verb) $(LLVMTableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
Daniel Dunbarc464e512009-07-13 18:35:35 +00001829
Jim Grosbachbd29a362010-11-03 23:46:01 +00001830$(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001831$(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbachbd29a362010-11-03 23:46:01 +00001832 $(Echo) "Building $(<F) MC code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001833 $(Verb) $(LLVMTableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
Jim Grosbachbd29a362010-11-03 23:46:01 +00001834
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001835$(TARGET:%=$(ObjDir)/%GenMCPseudoLowering.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001836$(ObjDir)/%GenMCPseudoLowering.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001837 $(Echo) "Building $(<F) MC Pseudo instruction expander with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001838 $(Verb) $(LLVMTableGen) -gen-pseudo-lowering -o $(call SYSPATH, $@) $<
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001839
Chris Lattner3c473472004-12-16 17:28:50 +00001840$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001841$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001842 $(Echo) "Building $(<F) code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001843 $(Verb) $(LLVMTableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001844
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001845$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001846$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001847 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001848 $(Verb) $(LLVMTableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001849
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001850$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001851$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001852 $(Echo) "Building $(<F) disassembly tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001853 $(Verb) $(LLVMTableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001854
Sean Callanan95fcebd2010-01-29 00:21:04 +00001855$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001856$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Sean Callanan95fcebd2010-01-29 00:21:04 +00001857 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001858 $(Verb) $(LLVMTableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
Sean Callanan95fcebd2010-01-29 00:21:04 +00001859
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001860$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001861$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001862 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001863 $(Verb) $(LLVMTableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001864
Evan Cheng385e9302011-07-01 22:36:09 +00001865$(TARGET:%=$(ObjDir)/%GenSubtargetInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001866$(ObjDir)/%GenSubtargetInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001867 $(Echo) "Building $(<F) subtarget information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001868 $(Verb) $(LLVMTableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001869
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001870$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001871$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001872 $(Echo) "Building $(<F) calling convention information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001873 $(Verb) $(LLVMTableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001874
Dale Johannesen49de9822009-02-05 01:49:45 +00001875$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001876$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001877 $(Echo) "Building $(<F) intrinsics information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001878 $(Verb) $(LLVMTableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
Dale Johannesen49de9822009-02-05 01:49:45 +00001879
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001880$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001881 $(Echo) "Building $(<F) decoder tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001882 $(Verb) $(LLVMTableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001883
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +00001884$(ObjDir)/%GenDFAPacketizer.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1885 $(Echo) "Building $(<F) DFA packetizer tables with tblgen"
1886 $(Verb) $(LLVMTableGen) -gen-dfa-packetizer -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001887
Reid Spencer3a561f52004-10-23 20:04:14 +00001888clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001889 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001890
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001891endif # TARGET
1892
Reid Spencercc2d1e22004-10-30 09:19:36 +00001893###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001894# OTHER RULES: Other rules needed
1895###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001896
Chris Lattner30440c62003-01-16 21:06:18 +00001897# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001898ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001899%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001900 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001901else
1902%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001903 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001904endif
Chris Lattner30440c62003-01-16 21:06:18 +00001905
John Criswell7f336952003-09-06 14:44:17 +00001906# This rules ensures that header files that are removed still have a rule for
1907# which they can be "generated." This allows make to ignore them and
1908# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001909%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001910%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001911
Reid Spencercc2d1e22004-10-30 09:19:36 +00001912# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001913# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001914# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001915clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001916ifneq ($(strip $(ObjRootDir)),)
1917 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001918endif
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001919ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001920 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001921endif
John Criswell7a73b802003-06-30 21:59:07 +00001922
Reid Spencer3d659492004-11-02 16:36:03 +00001923clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001924 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001925
Reid Spencer12d79512004-11-12 02:27:36 +00001926
Reid Spencer3a561f52004-10-23 20:04:14 +00001927###############################################################################
1928# DEPENDENCIES: Include the dependency files if we should
1929###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001930ifndef DISABLE_AUTO_DEPENDENCIES
1931
Reid Spencer3a561f52004-10-23 20:04:14 +00001932# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001933ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001934
Reid Spencer3a561f52004-10-23 20:04:14 +00001935# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001936DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001937DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1938
1939# Include bitcode dependency files if using bitcode libraries
1940ifdef BYTECODE_LIBRARY
1941DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1942endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001943
Reid Spencer491a6cd2007-07-23 08:20:46 +00001944-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001945
John Criswelld741bcf2003-08-12 18:51:51 +00001946endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001947
Misha Brukmanef5dc702009-01-08 02:11:55 +00001948endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001949
Reid Spencer151f8ba2004-10-25 08:27:37 +00001950###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001951# CHECK: Running the test suite
1952###############################################################################
1953
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001954check::
Reid Spencer11fde542005-01-16 02:20:54 +00001955 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1956 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001957 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001958 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001959 TESTSUITE=$(TESTSUITE) ; \
1960 else \
1961 $(EchoCmd) No Makefile in test directory ; \
1962 fi ; \
1963 else \
1964 $(EchoCmd) No test directory ; \
1965 fi
1966
Chandler Carruthc1a0af12012-06-28 00:03:13 +00001967# An alias dating from when both lit and DejaGNU test runners were used.
Daniel Dunbar666b4022010-08-02 00:05:18 +00001968check-lit:: check
1969
Daniel Dunbar34185792009-09-20 06:17:21 +00001970check-all::
1971 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1972 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1973 $(EchoCmd) Running test suite ; \
1974 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1975 else \
1976 $(EchoCmd) No Makefile in test directory ; \
1977 fi ; \
1978 else \
1979 $(EchoCmd) No test directory ; \
1980 fi
1981
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001982###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001983# UNITTESTS: Running the unittests test suite
1984###############################################################################
1985
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001986unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001987 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1988 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1989 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001990 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001991 else \
1992 $(EchoCmd) No Makefile in unittests directory ; \
1993 fi ; \
1994 else \
1995 $(EchoCmd) No unittests directory ; \
1996 fi
1997
1998###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001999# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00002000###############################################################################
2001
Reid Spencere45ebfa2004-10-26 07:09:33 +00002002#------------------------------------------------------------------------
2003# Define distribution related variables
2004#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002005DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
2006DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2007TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2008DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
2009DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
2010DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00002011DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
2012 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002013 Makefile.config.in configure autoconf
2014DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00002015 $(PROJ_SRC_DIR)/*.h \
2016 $(PROJ_SRC_DIR)/*.td \
2017 $(PROJ_SRC_DIR)/*.def \
2018 $(PROJ_SRC_DIR)/*.ll \
2019 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00002020DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00002021DistSources = $(Sources) $(EXTRA_DIST)
2022DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00002023
Reid Spencere45ebfa2004-10-26 07:09:33 +00002024#------------------------------------------------------------------------
2025# We MUST build distribution with OBJ_DIR != SRC_DIR
2026#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002027ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00002028dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002029 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00002030
Reid Spencere45ebfa2004-10-26 07:09:33 +00002031else
2032
Reid Spencere45ebfa2004-10-26 07:09:33 +00002033#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00002034# Prevent attempt to run dist targets from anywhere but the top level
2035#------------------------------------------------------------------------
2036ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002037dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00002038 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002039else
2040
2041#------------------------------------------------------------------------
2042# Provide the top level targets
2043#------------------------------------------------------------------------
2044
Reid Spencercc2d1e22004-10-30 09:19:36 +00002045dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002046
Reid Spencer345235ca2004-12-04 22:34:09 +00002047$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002048 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002049 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002050 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00002051
Reid Spencercc2d1e22004-10-30 09:19:36 +00002052dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002053
Reid Spencer345235ca2004-12-04 22:34:09 +00002054$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002055 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002056 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002057 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002058
Reid Spencercc2d1e22004-10-30 09:19:36 +00002059dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002060
Reid Spencer345235ca2004-12-04 22:34:09 +00002061$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002062 $(Echo) Packing zipped distribution file.
2063 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00002064 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002065
Misha Brukmanef5dc702009-01-08 02:11:55 +00002066dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002067 $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002068
Reid Spencerf8f57402005-01-28 19:52:32 +00002069DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00002070
Reid Spencer345235ca2004-12-04 22:34:09 +00002071dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002072 $(Echo) Checking distribution tar file.
2073 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002074 $(RM) -rf $(DistCheckDir) ; \
2075 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00002076 $(Verb) $(MKDIR) $(DistCheckDir)
2077 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002078 $(MKDIR) $(DistCheckDir)/build && \
2079 $(MKDIR) $(DistCheckDir)/install && \
2080 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2081 cd build && \
2082 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00002083 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00002084 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002085 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00002086 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002087 $(MAKE) install && \
2088 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002089 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002090 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002091
2092dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002093 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002094 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2095 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002096
2097endif
2098
2099#------------------------------------------------------------------------
2100# Provide the recursive distdir target for building the distribution directory
2101#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002102distdir: $(DistDir)/.makedistdir
2103$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002104 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002105 if test -d "$(DistDir)" ; then \
2106 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2107 exit 1 ; \
2108 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002109 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002110 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002111 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002112 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002113 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002114 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002115 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002116 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2117 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002118 for file in $(DistFiles) ; do \
2119 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002120 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002121 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2122 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002123 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002124 file=`echo "$$file" | \
2125 sed "s#^$$srcrootstrip/##"` \
2126 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002127 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002128 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2129 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2130 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002131 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002132 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002133 fi ; \
2134 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002135 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2136 to_dir="$(DistDir)/$$dir"; \
2137 $(MKDIR) "$$to_dir" ; \
2138 else \
2139 to_dir="$(DistDir)"; \
2140 fi; \
2141 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2142 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002143 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002144 fi ; \
2145 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002146 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2147 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002148 cd $(PROJ_SRC_DIR) ; \
2149 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2150 ( cd $$to_dir ; $(TAR) xf - ) ; \
2151 cd $(PROJ_OBJ_DIR) ; \
2152 else \
2153 cd $$from_dir ; \
2154 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2155 ( cd $$to_dir ; $(TAR) xf - ) ; \
2156 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002157 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002158 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002159 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002160 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002161 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002162 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002163 $(EchoCmd) "===== WARNING: Distribution Source " \
2164 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002165 elif test "$(Verb)" != '@' ; then \
2166 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002167 fi; \
2168 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002169 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002170 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002171 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002172 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002173 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002174 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002175 fi; \
2176 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002177 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002178 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002179 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2180 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002181 $(MAKE) dist-hook ; \
2182 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2183 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2184 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2185 -o ! -type d ! -perm -444 -exec \
2186 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2187 || chmod -R a+r $(DistDir) ; \
2188 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002189
Reid Spencercc2d1e22004-10-30 09:19:36 +00002190# This is invoked by distdir target, define it as a no-op to avoid errors if not
2191# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002192dist-hook::
2193
Reid Spencere53e3972004-10-22 23:06:30 +00002194endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002195
2196###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002197# TOP LEVEL - targets only to apply at the top level directory
2198###############################################################################
2199
2200ifeq ($(LEVEL),.)
2201
2202#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002203# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002204#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002205ifdef NO_INSTALL
2206install-local::
2207 $(Echo) Install circumvented with NO_INSTALL
2208uninstall-local::
2209 $(Echo) Uninstall circumvented with NO_INSTALL
2210else
Reid Spencere5487ba2004-10-24 07:53:21 +00002211install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002212 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002213 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002214 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002215 cd $(PROJ_SRC_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002216 for hdr in `find . -type f \
2217 '(' -name LICENSE.TXT \
2218 -o -name '*.def' \
2219 -o -name '*.h' \
2220 -o -name '*.inc' \
2221 -o -name '*.td' \
2222 ')' -print | grep -v CVS | \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002223 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002224 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002225 if test \! -d "$$instdir" ; then \
2226 $(EchoCmd) Making install directory $$instdir ; \
2227 $(MKDIR) $$instdir ;\
2228 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002229 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002230 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002231 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002232ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002233 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002234 cd $(PROJ_OBJ_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002235 for hdr in `find . -type f \
2236 '(' -name LICENSE.TXT \
2237 -o -name '*.def' \
2238 -o -name '*.h' \
2239 -o -name '*.inc' \
2240 -o -name '*.td' \
2241 ')' -print | grep -v CVS | \
2242 grep -v .svn` ; do \
2243 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2244 if test \! -d "$$instdir" ; then \
2245 $(EchoCmd) Making install directory $$instdir ; \
2246 $(MKDIR) $$instdir ;\
2247 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002248 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002249 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002250 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002251endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002252
2253uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002254 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002255 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2256 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002257 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002258 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002259 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002260 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002261 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002262 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002263 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002264 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002265endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002266endif
2267
Chris Lattner03840ac2007-04-14 23:35:45 +00002268check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002269 @echo searching for overlength lines in files: $(Sources)
2270 @echo
2271 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002272 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002273
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002274check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002275 @echo searching for tabs in files: $(Sources)
2276 @echo
2277 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002278 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002279
Reid Spencer6548bf12007-05-02 21:29:39 +00002280check-footprint:
2281 @ls -l $(LibDir) | awk '\
2282 BEGIN { sum = 0; } \
2283 { sum += $$5; } \
2284 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2285 @ls -l $(ToolDir) | awk '\
2286 BEGIN { sum = 0; } \
2287 { sum += $$5; } \
2288 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002289#------------------------------------------------------------------------
2290# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002291#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002292printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002293 $(Echo) "BuildMode : " '$(BuildMode)'
2294 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2295 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2296 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2297 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2298 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2299 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2300 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
Bob Wilsonae7e2a42011-11-28 07:59:52 +00002301 $(Echo) "PROJ_internal_prefix : " '$(PROJ_internal_prefix)'
Reid Spencer11fde542005-01-16 02:20:54 +00002302 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2303 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2304 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002305 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002306 $(Echo) "UserTargets : " '$(UserTargets)'
2307 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2308 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2309 $(Echo) "ObjDir : " '$(ObjDir)'
2310 $(Echo) "LibDir : " '$(LibDir)'
2311 $(Echo) "ToolDir : " '$(ToolDir)'
2312 $(Echo) "ExmplDir : " '$(ExmplDir)'
2313 $(Echo) "Sources : " '$(Sources)'
2314 $(Echo) "TDFiles : " '$(TDFiles)'
2315 $(Echo) "INCFiles : " '$(INCFiles)'
2316 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002317 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002318 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2319 $(Echo) "Compile.C : " '$(Compile.C)'
2320 $(Echo) "Archive : " '$(Archive)'
2321 $(Echo) "YaccFiles : " '$(YaccFiles)'
2322 $(Echo) "LexFiles : " '$(LexFiles)'
2323 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002324 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002325 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002326 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2327 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002328
2329###
2330# Debugging
2331
Daniel Dunbar3c898122009-03-06 22:23:25 +00002332# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002333# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002334make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002335 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))