blob: 0984dc072300462d53a4f65663c55bb9dfde68e7 [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)" \
Daniel Dunbare29c3162011-11-03 22:46:21 +0000103 --write-library-table $(LLVMConfigLibraryDependenciesInc) \
104 --write-make-fragment $(LLVMBuildMakeFrag)
105
Daniel Dunbar28088532011-11-09 18:48:22 +0000106# For completeness, let Make know how the extra files are generated.
107$(LLVMConfigLibraryDependenciesInc): $(LLVMBuildMakeFrag)
108
Daniel Dunbare29c3162011-11-03 22:46:21 +0000109# Include the generated Makefile fragment.
110#
111# We currently only include the dependencies for the fragment itself if we are
112# at the top-level. Otherwise, recursive invocations would ends up doing
113# substantially more redundant stat'ing.
114#
115# This means that we won't properly regenerate things for developers used to
116# building from a subdirectory, but that is always somewhat unreliable.
117ifeq ($(LEVEL),.)
118LLVMBUILD_INCLUDE_DEPENDENCIES := 1
Daniel Dunbar2e5b88e2012-02-02 23:27:34 +0000119
120# Clean the generated makefile fragment at the top-level.
121clean-local::
122 -$(Verb) $(RM) -f $(LLVMBuildMakeFrag)
Daniel Dunbare29c3162011-11-03 22:46:21 +0000123endif
124-include $(LLVMBuildMakeFrag)
125
Reid Spencer9411c642004-10-26 22:26:33 +0000126################################################################################
127# PRECONDITIONS: that which must be built/checked first
128################################################################################
129
Reid Spencer44cb1b32004-12-03 20:08:48 +0000130SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencer11fde542005-01-16 02:20:54 +0000131 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
132ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
133ConfigureScript := $(PROJ_SRC_ROOT)/configure
134ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
135MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
136MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
137MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
138MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
139PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
140ifneq ($(MakefileCommonIn),)
141PreConditions += $(MakefileCommon)
142endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000143
Reid Spencer11fde542005-01-16 02:20:54 +0000144ifneq ($(MakefileConfigIn),)
145PreConditions += $(MakefileConfig)
146endif
Reid Spencer9411c642004-10-26 22:26:33 +0000147
Reid Spencerca739c62005-08-25 04:59:49 +0000148preconditions: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000149
150#------------------------------------------------------------------------
151# Make sure the BUILT_SOURCES are built first
152#------------------------------------------------------------------------
Reid Spencer07a549a2004-12-16 07:15:16 +0000153$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +0000154
Reid Spencer9bb399c2007-02-07 19:13:19 +0000155clean-all-local::
Reid Spencer9411c642004-10-26 22:26:33 +0000156ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000157 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +0000158endif
159
Reid Spencer11fde542005-01-16 02:20:54 +0000160ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer31f95242004-12-16 08:00:46 +0000161spotless:
Reid Spencer31f95242004-12-16 08:00:46 +0000162 $(Verb) if test -x config.status ; then \
Reid Spencer11fde542005-01-16 02:20:54 +0000163 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000164 $(MKDIR) .spotless.save ; \
165 $(MV) config.status .spotless.save ; \
166 $(MV) mklib .spotless.save ; \
167 $(MV) projects .spotless.save ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000168 $(RM) -rf * ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000169 $(MV) .spotless.save/config.status . ; \
170 $(MV) .spotless.save/mklib . ; \
171 $(MV) .spotless.save/projects . ; \
172 $(RM) -rf .spotless.save ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000173 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000174 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
175 $(ConfigStatusScript) ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000176 else \
Reid Spencer11fde542005-01-16 02:20:54 +0000177 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer31f95242004-12-16 08:00:46 +0000178 fi
Reid Spencer25e8a702005-12-21 23:17:06 +0000179else
180spotless:
181 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer31f95242004-12-16 08:00:46 +0000182endif
183
Reid Spencercc2d1e22004-10-30 09:19:36 +0000184$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencer80f0ef72004-10-28 00:41:43 +0000185
Reid Spencer9411c642004-10-26 22:26:33 +0000186#------------------------------------------------------------------------
187# Make sure we're not using a stale configuration
188#------------------------------------------------------------------------
Reid Spencerc3719842004-12-16 18:26:53 +0000189reconfigure:
Reid Spencer11fde542005-01-16 02:20:54 +0000190 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
191 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencerc3719842004-12-16 18:26:53 +0000192 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
193 $(ConfigStatusScript)
194
Reid Spencercc2d1e22004-10-30 09:19:36 +0000195.PRECIOUS: $(ConfigStatusScript)
Jim Grosbache5e2c412010-10-01 22:32:12 +0000196$(ConfigStatusScript): $(ConfigureScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000197 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000198 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencer7d277002004-11-29 12:37:44 +0000199 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
200 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000201
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000202#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000203# Make sure the configuration makefile is up to date
204#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000205ifneq ($(MakefileConfigIn),)
206$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000207 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000208 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
209endif
210
211ifneq ($(MakefileCommonIn),)
212$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
213 $(Echo) Regenerating $@
214 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
215endif
Reid Spencer9411c642004-10-26 22:26:33 +0000216
217#------------------------------------------------------------------------
218# If the Makefile in the source tree has been updated, copy it over into the
219# build tree. But, only do this if the source and object makefiles differ
220#------------------------------------------------------------------------
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000221ifndef PROJ_MAKEFILE
222PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
223endif
224
Reid Spencer11fde542005-01-16 02:20:54 +0000225ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000226
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000227Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000228 $(Echo) "Updating Makefile"
229 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000230 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000231
232# Copy the Makefile.* files unless we're in the root directory which avoids
233# the copying of Makefile.config.in or other things that should be explicitly
234# taken care of.
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000235$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
Reid Spencer86606782004-10-26 23:10:00 +0000236 @case '$?' in \
237 *Makefile.rules) ;; \
238 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000239 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000240 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000241 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000242 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000243
Reid Spencer9411c642004-10-26 22:26:33 +0000244endif
245
246#------------------------------------------------------------------------
247# Set up the basic dependencies
248#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000249$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000250
251all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000252clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000253clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000254install:: install-local
255uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000256install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000257install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000258
259###############################################################################
260# VARIABLES: Set up various variables based on configuration data
261###############################################################################
262
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000263# Variable for if this make is for a "cleaning" target
264ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
265 IS_CLEANING_TARGET=1
266endif
267
Reid Spencer3a561f52004-10-23 20:04:14 +0000268#--------------------------------------------------------------------
269# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000270#--------------------------------------------------------------------
271
Reid Spencer0a522b12007-07-10 07:19:53 +0000272CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000273ifeq ($(ENABLE_OPTIMIZED),1)
274 BuildMode := Release
275 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000276 ifneq ($(HOST_OS),FreeBSD)
277 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000278 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000279 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000280 endif
281
282 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000283 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
284 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000285 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000286 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
287 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000288 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
289 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
290 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000291 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000292 BuildMode := $(BuildMode)+Debug
293 CXX.Flags += -g
294 C.Flags += -g
295 LD.Flags += -g
296 KEEP_SYMBOLS := 1
297 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000298else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000299 ifdef NO_DEBUG_SYMBOLS
300 BuildMode := Unoptimized
301 CXX.Flags +=
302 C.Flags +=
303 LD.Flags +=
304 KEEP_SYMBOLS := 1
305 else
306 BuildMode := Debug
307 CXX.Flags += -g
308 C.Flags += -g
309 LD.Flags += -g
310 KEEP_SYMBOLS := 1
311 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000312endif
313
Eric Christopherbee515f2011-11-11 22:51:42 +0000314ifeq ($(ENABLE_LIBCPP),1)
315 CXX.Flags += -stdlib=libc++
316 LD.Flags += -stdlib=libc++
317endif
Chris Lattner16969802011-11-10 21:12:28 +0000318
David Greenedbefd0c2009-04-17 14:49:22 +0000319ifeq ($(ENABLE_PROFILING),1)
320 BuildMode := $(BuildMode)+Profile
321 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
322 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
323 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
324 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000325endif
326
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000327ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000328 CXX.Flags += -fvisibility-inlines-hidden
329endif
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000330
Chris Lattnerc96d5082010-01-24 20:20:40 +0000331ifdef ENABLE_EXPENSIVE_CHECKS
332 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
333 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
334 REQUIRES_RTTI := 1
335endif
336
Reid Spencer99655e12006-08-25 19:54:53 +0000337# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000338ifndef REQUIRES_EH
339 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000340else
341 # If the library requires EH, it also requires RTTI.
342 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000343endif
Reid Spencer99655e12006-08-25 19:54:53 +0000344
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000345ifdef REQUIRES_FRAME_POINTER
346 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
347 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
348 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
349endif
350
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000351# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000352ifneq ($(REQUIRES_RTTI), 1)
353 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000354endif
355
Peter Collingbourneed50d382010-10-22 12:54:34 +0000356ifeq ($(ENABLE_COVERAGE),1)
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000357 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000358 CXX.Flags += -ftest-coverage -fprofile-arcs
359 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000360endif
361
Reid Spencer854071c2006-04-10 16:46:04 +0000362# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
363# then disable assertions by defining the appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000364ifeq ($(DISABLE_ASSERTIONS),1)
365 CPP.Defines += -DNDEBUG
366else
Duncan Sands8246adc2010-07-07 07:48:00 +0000367 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000368 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000369endif
370
Misha Brukmanef5dc702009-01-08 02:11:55 +0000371# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
372# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000373# appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000374ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
David Greenea696d242007-06-28 19:36:08 +0000375 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000376 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000377endif
378
Nick Lewyckya15dc032009-02-26 07:44:16 +0000379# LOADABLE_MODULE implies several other things so we force them to be
380# defined/on.
381ifdef LOADABLE_MODULE
382 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000383 LINK_LIBS_IN_SHARED := 1
384endif
385
386ifdef SHARED_LIBRARY
387 ENABLE_PIC := 1
388 PIC_FLAG = "(PIC)"
389endif
390
Reid Spencer89b0d992006-12-16 22:07:52 +0000391ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000392 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000393 # Nothing. Win32 defaults to PIC and warns when given -fPIC
394 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000395 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000396 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000397 CXX.Flags += -fno-common
398 C.Flags += -fno-common
399 else
400 # Linux and others; pass -fPIC
401 CXX.Flags += -fPIC
402 C.Flags += -fPIC
403 endif
404 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000405else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000406 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000407 CXX.Flags += -mdynamic-no-pic
408 C.Flags += -mdynamic-no-pic
409 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000410endif
411
Daniel Dunbardd464df2010-05-10 20:11:56 +0000412# Support makefile variable to disable any kind of timestamp/non-deterministic
413# info from being used in the build.
414ifeq ($(ENABLE_TIMESTAMPS),1)
415 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
416else
417 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
418endif
419
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000420ifeq ($(HOST_OS),MingW)
421 # Work around PR4957
422 CPP.Defines += -D__NO_CTYPE_INLINE
423 ifeq ($(LLVM_CROSS_COMPILING),1)
424 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
425 ifdef TOOLNAME
426 LD.Flags += -Wl,--allow-multiple-definition
427 endif
428 endif
429endif
430
Chris Lattner1bdedb92011-04-09 06:01:28 +0000431CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000432CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000433AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000434
Chris Lattner16620fc2006-07-27 18:19:51 +0000435# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000436ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000437 CXX.Flags += -mieee
438 CPP.BaseFlags += -mieee
439ifeq ($(ENABLE_PIC),0)
440 CXX.Flags += -fPIC
441 CPP.BaseFlags += -fPIC
442endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000443
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000444 LD.Flags += -Wl,--no-relax
445endif
446
NAKAMURA Takumib9dec1f2010-11-26 09:32:02 +0000447# GNU ld/PECOFF accepts but ignores them below;
448# --version-script
449# --export-dynamic
450# --rpath
451# FIXME: autoconf should be aware of them.
452ifneq (,$(filter $(HOST_OS),Cygwin MingW))
453 HAVE_LINK_VERSION_SCRIPT := 0
454 RPATH :=
455 RDYNAMIC := -Wl,--export-all-symbols
456endif
457
Reid Spencer3a561f52004-10-23 20:04:14 +0000458#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000459# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000460#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000461TargetMode :=
462ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000463 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000464endif
465
466ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000467ObjDir := $(ObjRootDir)
468LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
469ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
470ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
471LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
472LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
473LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000474
Reid Spencer3a561f52004-10-23 20:04:14 +0000475#--------------------------------------------------------------------
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000476# Locations of shared libraries
477#--------------------------------------------------------------------
478
479SharedPrefix := lib
480SharedLibDir := $(LibDir)
481LLVMSharedLibDir := $(LLVMLibDir)
482
483# Win32.DLL prefers to be located on the "PATH" of binaries.
484ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
485 SharedLibDir := $(ToolDir)
486 LLVMSharedLibDir := $(LLVMToolDir)
487
488 ifeq ($(HOST_OS),Cygwin)
489 SharedPrefix := cyg
490 else
491 SharedPrefix :=
492 endif
493endif
494
495#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000496# LLVM Capable Compiler
497#--------------------------------------------------------------------
498
Chris Lattner70d77002011-04-09 19:53:16 +0000499ifneq ($(findstring llvm-gcc,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000500 LLVMCC := $(LLVMGCC)
501 LLVMCXX := $(LLVMGXX)
502else
Chris Lattner70d77002011-04-09 19:53:16 +0000503 ifneq ($(findstring clang,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000504 ifneq ($(CLANGPATH),)
505 LLVMCC := $(CLANGPATH)
506 LLVMCXX := $(CLANGXXPATH)
507 else
508 ifeq ($(ENABLE_BUILT_CLANG),1)
509 LLVMCC := $(LLVMToolDir)/clang
510 LLVMCXX := $(LLVMToolDir)/clang++
511 endif
512 endif
513 endif
514endif
515
516#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000517# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000518#--------------------------------------------------------------------
Daniel Dunbar01b825d2011-11-11 22:59:45 +0000519EchoCmd := $(ECHO) llvm[$(MAKELEVEL)]:
520ifdef BUILD_DIRS_ONLY
521EchoCmd := $(EchoCmd) "(build tools)":
522endif
523
524Echo := @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000525ifndef LLVMAS
526LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
527endif
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000528ifndef LLVM_TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000529 ifeq ($(LLVM_CROSS_COMPILING),1)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000530 LLVM_TBLGEN := $(BuildLLVMToolDir)/llvm-tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000531 else
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000532 LLVM_TBLGEN := $(LLVMToolDir)/llvm-tblgen$(EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000533 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000534endif
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000535ifeq ($(LLVM_CROSS_COMPILING),1)
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000536 LLVM_CONFIG := $(BuildLLVMToolDir)/llvm-config$(BUILD_EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000537else
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000538 LLVM_CONFIG := $(LLVMToolDir)/llvm-config$(EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000539endif
Reid Spencer43eb96c2007-02-09 15:52:07 +0000540ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000541LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000542endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000543ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000544LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
545endif
546ifndef LLI
547LLI := $(LLVMToolDir)/lli$(EXEEXT)
548endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000549ifndef LLC
550LLC := $(LLVMToolDir)/llc$(EXEEXT)
551endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000552ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000553LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000554endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000555ifndef LBUGPOINT
556LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
557endif
Reid Spencere46687c2006-12-03 21:01:45 +0000558
Reid Spencer3a561f52004-10-23 20:04:14 +0000559#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000560# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000561#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000562
Anton Korobeynikove55db742009-08-18 00:40:33 +0000563ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000564 DARWIN_VERSION := `sw_vers -productVersion`
565 # Strip a number like 10.4.7 to 10.4
566 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
567 # Get "4" out of 10.4 for later pieces in the makefile.
568 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000569
Daniel Dunbar7bc0f272010-12-08 01:48:05 +0000570 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
571 SharedLinkOptions := -dynamiclib
Evan Chenga5e225e2009-09-08 18:52:20 +0000572 ifneq ($(ARCH),ARM)
573 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
574 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000575else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000576 SharedLinkOptions=-shared
Scott Michel87af5f02009-03-12 21:03:53 +0000577endif
578
Anton Korobeynikove55db742009-08-18 00:40:33 +0000579ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000580 ifneq ($(ARCH),ARM)
581 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
582 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000583endif
584
Reid Spencer492c2932005-01-11 04:31:07 +0000585ifdef SHARED_LIBRARY
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000586ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000587ifneq ($(HOST_OS),Darwin)
588 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
John Criswell82f4a5a2003-07-31 20:58:51 +0000589endif
Scott Michel87af5f02009-03-12 21:03:53 +0000590endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000591endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000592
Reid Spencercceed9f2004-11-08 17:32:12 +0000593ifdef TOOL_VERBOSE
594 C.Flags += -v
595 CXX.Flags += -v
596 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000597 VERBOSE := 1
598endif
599
Reid Spencer3a561f52004-10-23 20:04:14 +0000600# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000601ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000602 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000603 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000604 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000605else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000606 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000607endif
608
Vikram S. Advefeeae582002-09-18 11:55:13 +0000609# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000610ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000611 Strip := $(PLATFORMSTRIPOPTS)
612 StripWarnMsg := "(without symbols)"
Charles Davis13460c92011-10-26 02:28:32 +0000613 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000614endif
615
Rafael Espindola31552a92010-10-15 00:58:12 +0000616ifdef TOOL_NO_EXPORTS
617 DynamicFlags :=
618else
619 DynamicFlag := $(RDYNAMIC)
620endif
621
Reid Spencer3a561f52004-10-23 20:04:14 +0000622# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000623ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
624ifneq ($(HOST_OS), Darwin)
Reid Spencer4d71b662004-10-22 21:01:56 +0000625ifdef TOOLNAME
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000626 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
627 ifdef EXAMPLE_TOOL
Rafael Espindola31552a92010-10-15 00:58:12 +0000628 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000629 else
Rafael Espindola31552a92010-10-15 00:58:12 +0000630 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000631 endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000632endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000633else
634ifneq ($(DARWIN_MAJVERS),4)
635 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
Nick Lewyckya15dc032009-02-26 07:44:16 +0000636endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000637endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000638endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000639
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000640
Reid Spencer3a561f52004-10-23 20:04:14 +0000641#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000642# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000643#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000644
Daniel Dunbare2a91a72011-06-16 22:30:38 +0000645ifdef EXTRA_LD_OPTIONS
646LD.Flags += $(EXTRA_LD_OPTIONS)
647endif
648
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000649ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000650CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000651endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000652CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
Rafael Espindola9993a3a2012-02-28 23:32:06 +0000653 $(EXTRA_OPTIONS) $(COVERED_SWITCH_DEFAULT)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000654# Enable cast-qual for C++; the workaround is to use const_cast.
655CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000656
Anton Korobeynikove55db742009-08-18 00:40:33 +0000657ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000658 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000659endif
660
Chris Lattner73faa392006-05-30 16:38:06 +0000661# If we are building a universal binary on Mac OS/X, pass extra options. This
662# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000663# apps.
664#
665# The following can be optionally specified:
666# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
667# For Mac OS/X 10.4 Intel machines, the traditional one is:
668# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
669# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
670# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
671# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000672ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000673 ifndef UNIVERSAL_ARCH
674 UNIVERSAL_ARCH := i386 ppc
675 endif
676 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
677 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000678 ifdef UNIVERSAL_SDK_PATH
679 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000680 endif
681
682 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000683 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000684else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000685 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000686 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000687 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000688 else
689 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000690 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000691 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000692 endif
693 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000694endif
695
Anton Korobeynikove55db742009-08-18 00:40:33 +0000696ifeq ($(HOST_OS),SunOS)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000697CPP.BaseFlags += -include llvm/Support/Solaris.h
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000698endif
699
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000700ifeq ($(HOST_OS),AuroraUX)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000701CPP.BaseFlags += -include llvm/Support/Solaris.h
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000702endif # !HOST_OS - AuroraUX.
703
David Meyer107506f2012-02-18 10:03:19 +0000704# On Windows, SharedLibDir != LibDir. The order is important.
705ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
706 LD.Flags += -L$(SharedLibDir) -L$(LibDir) -L$(LLVMToolDir) -L$(LLVMLibDir)
707else
708 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
709endif
710
NAKAMURA Takumie2aa5d52011-10-11 12:51:44 +0000711CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000712# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000713CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
714 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000715 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
716 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
717 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000718
Daniel Dunbar8d694142011-11-03 21:01:32 +0000719ifeq ($(INCLUDE_BUILD_DIR),1)
720 CPP.Flags += -I$(ObjDir)
721endif
722
Daniel Dunbar58194302011-04-11 22:37:39 +0000723# SHOW_DIAGNOSTICS support.
724ifeq ($(SHOW_DIAGNOSTICS),1)
725 Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
726 CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
727else
728 Compile.Wrapper :=
729endif
730
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000731Compile.C = $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000732 $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000733 $(TargetCommonOpts) $(CompileCommonOpts) -c
734Compile.CXX = $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000735 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000736 $(TargetCommonOpts) $(CompileCommonOpts) -c
737Preprocess.CXX= $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000738 $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000739 $(CompileCommonOpts) $(CXX.Flags) -E
740Link = $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000741 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000742 $(LDFLAGS) $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000743
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000744BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000745 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000746Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000747 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000748
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000749BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000750 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000751
Misha Brukmanef5dc702009-01-08 02:11:55 +0000752ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
753ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000754DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000755
756# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
757# paths. In this case, the SYSPATH function (defined in
758# Makefile.config) transforms Unix paths into Windows paths.
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000759TableGen.Flags= -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000760 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000761 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
762 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000763LLVMTableGen = $(LLVM_TBLGEN) $(TableGen.Flags)
Chris Lattner6e0a5292008-01-15 23:27:40 +0000764
Reid Spencercc2d1e22004-10-30 09:19:36 +0000765Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000766LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000767ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000768Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000769else
Reid Spencer3a561f52004-10-23 20:04:14 +0000770Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000771endif
772
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000773AliasTool = ln -s
774
Chris Lattner00950542001-06-06 20:29:01 +0000775#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000776# Get the list of source files and compute object file
777# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000778#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000779
780ifndef SOURCES
781 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000782 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000783else
Chris Lattner89681112006-01-27 22:13:12 +0000784 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000785endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000786
Chris Lattner89681112006-01-27 22:13:12 +0000787ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000788Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000789endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000790
Chris Lattner89681112006-01-27 22:13:12 +0000791BaseNameSources := $(sort $(basename $(Sources)))
792
793ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000794ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
795
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000796#----------------------------------------------------------
797# For Mingw MSYS bash and Python/w32:
798#
799# $(ECHOPATH) prints DOSish pathstring.
800# ex) $(ECHOPATH) /include/sys/types.h
801# --> C:/mingw/include/sys/types.h
802# built-in "echo" does not transform path to DOSish path.
803#
804# FIXME: It would not be needed when MSYS's python
805# were provided.
806#----------------------------------------------------------
807
808ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
809 ECHOPATH := $(Verb)python -u -c "import sys;print ' '.join(sys.argv[1:])"
810else
811 ECHOPATH := $(Verb)$(ECHO)
812endif
813
Reid Spencer3a561f52004-10-23 20:04:14 +0000814###############################################################################
815# DIRECTORIES: Handle recursive descent of directory structure
816###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000817
Chris Lattner00950542001-06-06 20:29:01 +0000818#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000819# Provide rules to make install dirs. This must be early
820# in the file so they get built before dependencies
821#---------------------------------------------------------
822
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000823$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000824 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000825
Reid Spencercc2d1e22004-10-30 09:19:36 +0000826# To create other directories, as needed, and timestamp their creation
827%/.dir:
828 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000829 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000830
Reid Spencer815cbcf2004-11-18 10:03:46 +0000831.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
832.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000833
834#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000835# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000836#---------------------------------------------------------
837
Misha Brukmanef5dc702009-01-08 02:11:55 +0000838SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000839ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000840SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000841
842ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000843$(RecursiveTargets)::
844 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000845 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000846 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000847 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000848 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000849 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000850 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000851 done
Chris Lattner82033602006-07-26 20:22:26 +0000852else
853$(RecursiveTargets)::
854 $(Verb) for dir in $(DIRS); do \
855 ($(MAKE) -C $$dir $@ ) || exit 1; \
856 done
857endif
858
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000859endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000860
Reid Spencer3a561f52004-10-23 20:04:14 +0000861#---------------------------------------------------------
862# Handle the EXPERIMENTAL_DIRS options ensuring success
863# after each directory is built.
864#---------------------------------------------------------
865ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000866$(RecursiveTargets)::
867 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000868 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000869 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000870 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000871 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000872 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000873 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000874 done
875endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000876
Reid Spencer25e8a702005-12-21 23:17:06 +0000877#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000878# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
879#-----------------------------------------------------------
880ifdef OPTIONAL_PARALLEL_DIRS
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000881 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 +0000882endif
883
884#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000885# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000886#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000887ifdef PARALLEL_DIRS
888
Reid Spencercc2d1e22004-10-30 09:19:36 +0000889SubDirs += $(PARALLEL_DIRS)
890
Reid Spencer44cb1b32004-12-03 20:08:48 +0000891# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000892all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
893clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000894clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000895install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000896uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000897install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000898unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000899
Reid Spencer345235ca2004-12-04 22:34:09 +0000900ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000901
Reid Spencer345235ca2004-12-04 22:34:09 +0000902$(ParallelTargets) :
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000903 $(Verb) \
904 SD=$(PROJ_SRC_DIR)/$(@D); \
905 DD=$(@D); \
906 if [ ! -f $$SD/Makefile ]; then \
907 SD=$(@D); \
908 DD=$(notdir $(@D)); \
909 fi; \
910 if ([ ! -f $$DD/Makefile ] || \
911 command test $$DD/Makefile -ot \
912 $$SD/Makefile ); then \
913 $(MKDIR) $$DD; \
914 $(CP) $$SD/Makefile $$DD/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000915 fi; \
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000916 $(MAKE) -C $$DD $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000917endif
918
Reid Spencer3a561f52004-10-23 20:04:14 +0000919#---------------------------------------------------------
920# Handle the OPTIONAL_DIRS options for directores that may
921# or may not exist.
922#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000923ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000924
Reid Spencercc2d1e22004-10-30 09:19:36 +0000925SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000926
Chris Lattner82033602006-07-26 20:22:26 +0000927ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000928$(RecursiveTargets)::
929 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000930 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000931 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000932 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000933 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000934 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000935 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000936 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000937 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000938 done
Chris Lattner82033602006-07-26 20:22:26 +0000939else
940$(RecursiveTargets)::
941 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Stephen Wilsonc1566322011-02-20 03:51:07 +0000942 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
943 ($(MAKE) -C$$dir $@ ) || exit 1; \
944 fi \
Chris Lattner82033602006-07-26 20:22:26 +0000945 done
946endif
John Criswell2a6530f2003-06-27 16:58:44 +0000947endif
948
Reid Spencerfc945082004-08-20 09:20:05 +0000949#---------------------------------------------------------
950# Handle the CONFIG_FILES options
951#---------------------------------------------------------
952ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000953
Reid Spencera2a31bf2007-02-06 18:53:14 +0000954ifdef NO_INSTALL
955install-local::
956 $(Echo) Install circumvented with NO_INSTALL
957uninstall-local::
958 $(Echo) UnInstall circumvented with NO_INSTALL
959else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000960install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
961 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000962 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000963 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000964 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000965 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000966 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000967 else \
968 $(ECHO) Error: cannot find config file $${file}. ; \
969 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000970 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000971
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000972uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000973 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000974 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000975 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000976 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000977endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000978
Reid Spencerfc945082004-08-20 09:20:05 +0000979endif
980
Reid Spencer3a561f52004-10-23 20:04:14 +0000981###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +0000982# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000983###############################################################################
984
985#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000986# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000987# libraries needed when linking. There are "Proj" libs
988# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000989# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000990#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000991
Chris Lattneref0d0f12006-09-04 04:47:21 +0000992ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000993ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
994ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000995ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
996ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
997endif
998
999ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001000LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
1001LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001002LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001003LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +00001004endif
1005
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001006# Loadable module for Win32 requires all symbols resolved for linking.
1007# Then all symbols in LLVM.dll will be available.
1008ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001009 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001010 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
1011 LINK_COMPONENTS += all
1012 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001013 endif
1014endif
1015
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001016ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +00001017ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +00001018
1019# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
1020# clean in tools, then do a make in tools (instead of at the top level).
1021$(LLVM_CONFIG):
1022 @echo "*** llvm-config doesn't exist - rebuilding it."
1023 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +00001024
Chris Lattner0a1db822006-09-04 05:23:20 +00001025$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
1026
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001027ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001028# We can take the "auto-import" feature to get rid of using dllimport.
1029ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1030LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
1031 -L $(SharedLibDir)
1032endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001033LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001034LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001035else
Chris Lattnerf636aa92010-09-01 16:11:17 +00001036
1037ifndef NO_LLVM_CONFIG
1038LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
1039ifeq ($(LLVMConfigLibs),Error)
1040$(error llvm-config --libs failed)
1041endif
1042LLVMLibsOptions += $(LLVMConfigLibs)
1043LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
1044ifeq ($(LLVMConfigLibfiles),Error)
1045$(error llvm-config --libfiles failed)
1046endif
1047LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
1048endif
1049
Chris Lattneref0d0f12006-09-04 04:47:21 +00001050endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +00001051endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001052endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001053
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001054# Set up the library exports file.
1055ifdef EXPORTED_SYMBOL_FILE
1056
1057# First, set up the native export file, which may differ from the source
1058# export file.
1059
1060ifeq ($(HOST_OS),Darwin)
1061# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +00001062NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +00001063$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001064 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001065clean-local::
1066 -$(Verb) $(RM) -f $(NativeExportsFile)
1067else
Dan Gohmanda612d62010-06-01 14:56:56 +00001068ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1069# Gold and BFD ld require a version script rather than a plain list.
1070NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1071$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1072 $(Verb) echo "{" > $@
Eric Christopher5084fa02012-03-12 20:58:14 +00001073 $(Verb) grep -q '[[:alnum:]_]' $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001074 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001075ifneq ($(HOST_OS),OpenBSD)
Dan Gohmanda612d62010-06-01 14:56:56 +00001076 $(Verb) echo " local: *;" >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001077endif
Dan Gohmanda612d62010-06-01 14:56:56 +00001078 $(Verb) echo "};" >> $@
1079clean-local::
1080 -$(Verb) $(RM) -f $(NativeExportsFile)
1081else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001082ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +00001083# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001084NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001085$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1086 $(Echo) Generating $(notdir $@)
1087 $(Verb) $(ECHO) "EXPORTS" > $@
1088 $(Verb) $(CAT) $< >> $@
1089clean-local::
1090 -$(Verb) $(RM) -f $(NativeExportsFile)
1091else
Dan Gohman9a7570c2010-09-03 17:29:33 +00001092# Default behavior: just use the exports file verbatim.
1093NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1094endif
1095endif
1096endif
1097
1098# Now add the linker command-line options to use the native export file.
1099
1100# Darwin
1101ifeq ($(HOST_OS),Darwin)
1102LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1103endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001104
Dan Gohmane05f6092010-04-16 22:58:15 +00001105# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001106ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1107LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001108endif
1109
Dan Gohman9a7570c2010-09-03 17:29:33 +00001110# Windows
1111ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1112# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1113SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001114endif
1115
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001116endif
1117
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001118###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001119# Library Build Rules: Four ways to build a library
1120###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001121
Reid Spencer7980ea42004-12-05 05:17:22 +00001122#---------------------------------------------------------
1123# Bytecode Module Targets:
1124# If the user set MODULE_NAME then they want to build a
1125# bytecode module from the sources. We compile all the
1126# sources and link it together into a single bytecode
1127# module.
1128#---------------------------------------------------------
1129
1130ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001131ifeq ($(strip $(LLVMCC)),)
1132$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001133else
Reid Spencer7980ea42004-12-05 05:17:22 +00001134
1135Module := $(LibDir)/$(MODULE_NAME).bc
Daniel Dunbar112257d2010-02-23 09:28:50 +00001136LinkModule := $(LLVMLD) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +00001137
Reid Spencer7980ea42004-12-05 05:17:22 +00001138
1139ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001140LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001141endif
1142
Reid Spencer43eb96c2007-02-09 15:52:07 +00001143$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001144 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001145 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1146
1147all-local:: $(Module)
1148
1149clean-local::
1150ifneq ($(strip $(Module)),)
1151 -$(Verb) $(RM) -f $(Module)
1152endif
1153
Reid Spencerab3690b2004-12-13 07:38:07 +00001154ifdef BYTECODE_DESTINATION
1155ModuleDestDir := $(BYTECODE_DESTINATION)
1156else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001157ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001158endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001159
Reid Spencera2a31bf2007-02-06 18:53:14 +00001160ifdef NO_INSTALL
1161install-local::
1162 $(Echo) Install circumvented with NO_INSTALL
1163uninstall-local::
1164 $(Echo) Uninstall circumvented with NO_INSTALL
1165else
Reid Spencerab3690b2004-12-13 07:38:07 +00001166DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1167
1168install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001169install-local:: $(DestModule)
1170
Misha Brukmanef5dc702009-01-08 02:11:55 +00001171$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001172 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001173 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001174
1175uninstall-local::
1176 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1177 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001178endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001179
1180endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001181endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001182
Reid Spencer3a561f52004-10-23 20:04:14 +00001183# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001184ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001185
Misha Brukmanf547a122009-08-17 15:31:24 +00001186# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001187LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001188ifdef LOADABLE_MODULE
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001189BaseLibName.A := $(LIBRARYNAME).a
1190BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001191else
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001192BaseLibName.A := lib$(LIBRARYNAME).a
1193BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001194endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001195LibName.A := $(LibDir)/$(BaseLibName.A)
1196LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001197LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001198LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001199
Reid Spencer3a561f52004-10-23 20:04:14 +00001200#---------------------------------------------------------
1201# Shared Library Targets:
1202# If the user asked for a shared library to be built
1203# with the SHARED_LIBRARY variable, then we provide
1204# targets for building them.
1205#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001206ifdef SHARED_LIBRARY
1207
Nick Lewyckya15dc032009-02-26 07:44:16 +00001208all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001209
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001210ifdef EXPORTED_SYMBOL_FILE
1211$(LibName.SO): $(NativeExportsFile)
1212endif
1213
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001214ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001215ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001216SharedLibKindMessage := "Loadable Module"
Daniel Dunbar7bc0f272010-12-08 01:48:05 +00001217SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
Reid Spencer42fe4552006-08-07 23:12:15 +00001218else
1219SharedLibKindMessage := "Shared Library"
1220endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001221$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001222 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001223 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001224 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001225 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001226else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001227$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001228 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001229 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001230endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001231
1232clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001233ifneq ($(strip $(LibName.SO)),)
1234 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001235endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001236
Reid Spencera2a31bf2007-02-06 18:53:14 +00001237ifdef NO_INSTALL
1238install-local::
1239 $(Echo) Install circumvented with NO_INSTALL
1240uninstall-local::
1241 $(Echo) Uninstall circumvented with NO_INSTALL
1242else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001243
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001244# Win32.DLL prefers to be located on the "PATH" of binaries.
1245ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1246DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001247else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001248DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001249endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001250DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001251
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001252install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001253
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001254$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001255 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001256 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001257
Misha Brukmanef5dc702009-01-08 02:11:55 +00001258uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001259 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001260 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001261endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001262endif
1263
Reid Spencer3a561f52004-10-23 20:04:14 +00001264#---------------------------------------------------------
1265# Bytecode Library Targets:
1266# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001267# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001268# targets for building them.
1269#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001270ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001271ifeq ($(strip $(LLVMCC)),)
1272$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001273else
Reid Spencer4d71b662004-10-22 21:01:56 +00001274
Reid Spencer9a2f1372004-12-02 09:28:21 +00001275all-local:: $(LibName.BCA)
1276
1277ifdef EXPORTED_SYMBOL_FILE
Daniel Dunbar112257d2010-02-23 09:28:50 +00001278BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001279
Reid Spencer43eb96c2007-02-09 15:52:07 +00001280$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001281 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001282 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1283 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001284 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001285 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001286 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001287else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001288$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001289 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001290 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001291 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001292 $(Verb) $(LArchive) $@ $(ObjectsBC)
1293
Reid Spencer4d71b662004-10-22 21:01:56 +00001294endif
1295
Reid Spencer3a561f52004-10-23 20:04:14 +00001296clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001297ifneq ($(strip $(LibName.BCA)),)
1298 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001299endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001300
Reid Spencer8f094f32004-12-13 07:28:21 +00001301ifdef BYTECODE_DESTINATION
1302BytecodeDestDir := $(BYTECODE_DESTINATION)
1303else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001304BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001305endif
1306
Daniel Dunbard62031e2009-05-12 05:35:40 +00001307DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001308
Reid Spencer44cb1b32004-12-03 20:08:48 +00001309install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001310
Reid Spencera2a31bf2007-02-06 18:53:14 +00001311ifdef NO_INSTALL
1312install-local::
1313 $(Echo) Install circumvented with NO_INSTALL
1314uninstall-local::
1315 $(Echo) Uninstall circumvented with NO_INSTALL
1316else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001317install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001318
Mike Stumpb445d742009-02-12 23:45:11 +00001319$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001320 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001321 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001322
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001323uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001324 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001325 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001326endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001327endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001328endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001329
Reid Spencercc2d1e22004-10-30 09:19:36 +00001330#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001331# Library Targets:
1332# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1333# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001334#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001335ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001336ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001337ifndef LOADABLE_MODULE
1338BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001339endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001340endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001341endif
Chris Lattner760da062003-03-14 20:25:22 +00001342
Reid Spencercc2d1e22004-10-30 09:19:36 +00001343#---------------------------------------------------------
1344# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001345# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001346# then we provide targets for building them.
1347#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001348ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001349
Reid Spencercc2d1e22004-10-30 09:19:36 +00001350all-local:: $(LibName.A)
1351
Reid Spencerf2ac1892004-12-16 07:36:08 +00001352$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001353 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001354 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001355 $(Verb) $(Archive) $@ $(ObjectsO)
1356 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001357
Reid Spencer3a561f52004-10-23 20:04:14 +00001358clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001359ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001360 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001361endif
1362
Reid Spencera2a31bf2007-02-06 18:53:14 +00001363ifdef NO_INSTALL
1364install-local::
1365 $(Echo) Install circumvented with NO_INSTALL
1366uninstall-local::
1367 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001368else
1369ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001370install-local::
1371 $(Echo) Install circumvented with NO_INSTALL
1372uninstall-local::
1373 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001374else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001375DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001376
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001377install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001378
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001379$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001380 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001381 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001382 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001383
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001384uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001385 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001386 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001387endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001388endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001389endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001390
1391# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001392endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001393
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001394###############################################################################
1395# Tool Build Rules: Build executable tool based on TOOLNAME option
1396###############################################################################
1397
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001398ifdef TOOLNAME
1399
Reid Spencercc2d1e22004-10-30 09:19:36 +00001400#---------------------------------------------------------
1401# Set up variables for building a tool.
1402#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001403TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001404ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001405ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001406else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001407ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1408endif
1409
1410# TOOLALIAS is a name to symlink (or copy) the tool to.
1411ifdef TOOLALIAS
1412ifdef EXAMPLE_TOOL
1413ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1414else
1415ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1416endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001417endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001418
Reid Spencercc2d1e22004-10-30 09:19:36 +00001419#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001420# Prune Exports
1421#---------------------------------------------------------
1422
1423# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1424# not exporting all of the weak symbols from the binary. This reduces dyld
1425# startup time by 4x on darwin in some cases.
1426ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001427ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001428
1429# Tiger tools don't support this.
1430ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001431LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001432endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001433endif
Chris Lattner61863a32009-02-26 17:47:49 +00001434
Sylvestre Ledru6fc30c22012-04-11 15:35:36 +00001435ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD GNU))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001436ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001437 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001438endif
1439endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001440endif
Chris Lattner61863a32009-02-26 17:47:49 +00001441
Devang Patel83be4512010-07-15 20:57:09 +00001442#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001443# Tool Order File Support
1444#---------------------------------------------------------
1445
1446ifeq ($(HOST_OS),Darwin)
Daniel Dunbarade490a2011-06-28 22:30:17 +00001447ifdef TOOL_ORDER_FILE
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001448
1449LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1450
1451endif
1452endif
1453
1454#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001455# Tool Version Info Support
1456#---------------------------------------------------------
1457
1458ifeq ($(HOST_OS),Darwin)
1459ifdef TOOL_INFO_PLIST
1460
1461LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1462
1463$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1464
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001465$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001466 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1467 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1468 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1469 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1470 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1471 $< > $@
1472
1473endif
1474endif
Chris Lattner61863a32009-02-26 17:47:49 +00001475
1476#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001477# Provide targets for building the tools
1478#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001479all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001480
Reid Spencer3a561f52004-10-23 20:04:14 +00001481clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001482ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001483 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001484endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001485ifneq ($(strip $(ToolAliasBuildPath)),)
1486 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1487endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001488
Reid Spencer815cbcf2004-11-18 10:03:46 +00001489ifdef EXAMPLE_TOOL
1490$(ToolBuildPath): $(ExmplDir)/.dir
1491else
1492$(ToolBuildPath): $(ToolDir)/.dir
1493endif
1494
Daniel Dunbar95669052012-03-06 19:07:38 +00001495ifdef CODESIGN_TOOLS
Chris Lattnera7868af2006-09-04 06:39:52 +00001496$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001497 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001498 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001499 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001500 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001501 $(StripWarnMsg)
Daniel Dunbar95669052012-03-06 19:07:38 +00001502 $(Echo) ======= Code-Signing $(BuildMode) Executable $(TOOLNAME)
1503 $(Verb) codesign -s - $@
1504else
1505$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1506 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1507 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1508 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1509 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1510 $(StripWarnMsg)
1511endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001512
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001513ifneq ($(strip $(ToolAliasBuildPath)),)
1514$(ToolAliasBuildPath): $(ToolBuildPath)
1515 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1516 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1517 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001518 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001519 $(StripWarnMsg)
1520endif
1521
Reid Spencera2a31bf2007-02-06 18:53:14 +00001522ifdef NO_INSTALL
1523install-local::
1524 $(Echo) Install circumvented with NO_INSTALL
1525uninstall-local::
1526 $(Echo) Uninstall circumvented with NO_INSTALL
1527else
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001528
1529ifdef INTERNAL_TOOL
1530ToolBinDir = $(DESTDIR)$(PROJ_internal_prefix)/bin
1531else
1532ToolBinDir = $(DESTDIR)$(PROJ_bindir)
1533endif
1534DestTool = $(ToolBinDir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001535
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001536install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001537
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001538$(DestTool): $(ToolBuildPath)
Reid Spencer9af3b292004-11-01 07:50:27 +00001539 $(Echo) Installing $(BuildMode) $(DestTool)
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001540 $(Verb) $(MKDIR) $(ToolBinDir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001541 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001542
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001543uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001544 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001545 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001546
1547# TOOLALIAS install.
1548ifdef TOOLALIAS
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001549DestToolAlias = $(ToolBinDir)/$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001550
1551install-local:: $(DestToolAlias)
1552
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001553$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001554 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1555 $(Verb) $(RM) -f $(DestToolAlias)
1556 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1557
1558uninstall-local::
1559 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1560 -$(Verb) $(RM) -f $(DestToolAlias)
1561endif
1562
Reid Spencera2a31bf2007-02-06 18:53:14 +00001563endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001564endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001565
Reid Spencercc2d1e22004-10-30 09:19:36 +00001566###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001567# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001568###############################################################################
1569
Duraid Madina197ab872006-02-15 03:23:26 +00001570# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001571ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001572 DISABLE_AUTO_DEPENDENCIES=1
1573endif
1574
Reid Spencercc2d1e22004-10-30 09:19:36 +00001575# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001576ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001577
Reid Spencercc2d1e22004-10-30 09:19:36 +00001578#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001579# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001580#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001581
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001582DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001583 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001584
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001585# If the build succeeded, move the dependency file over, otherwise
1586# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001587DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1588 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1589
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001590$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001591 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001592 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001593 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001594
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001595$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001596 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1597 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1598 $(DEPEND_MOVEFILE)
1599
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001600$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001601 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001602 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001603 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001604
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001605$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001606 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001607 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001608 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001609
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001610$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001611 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1612 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1613 $(DEPEND_MOVEFILE)
1614
Reid Spencercc2d1e22004-10-30 09:19:36 +00001615#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001616# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001617#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001618
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001619BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1620 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1621
1622# If the build succeeded, move the dependency file over, otherwise
1623# remove it.
1624BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1625 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1626
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001627$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001628 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001629 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001630 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001631 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001632
Greg Clayton43bc79a2010-07-13 18:47:09 +00001633$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1634 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1635 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001636 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001637 $(BC_DEPEND_MOVEFILE)
1638
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001639$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001640 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001641 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001642 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001643 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001644
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001645$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001646 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001647 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001648 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001649 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001650
Greg Clayton43bc79a2010-07-13 18:47:09 +00001651$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1652 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1653 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001654 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001655 $(BC_DEPEND_MOVEFILE)
1656
Reid Spencercc2d1e22004-10-30 09:19:36 +00001657# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001658else
1659
Nick Lewyckya15dc032009-02-26 07:44:16 +00001660$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001661 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001662 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001663
Greg Clayton43bc79a2010-07-13 18:47:09 +00001664$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1665 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1666 $(Compile.CXX) $< -o $@
1667
Nick Lewyckya15dc032009-02-26 07:44:16 +00001668$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001669 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001670 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001671
Nick Lewyckya15dc032009-02-26 07:44:16 +00001672$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001673 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001674 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001675
Greg Clayton43bc79a2010-07-13 18:47:09 +00001676$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1677 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1678 $(Compile.C) $< -o $@
1679
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001680$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001681 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001682 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Reid Spencer4d71b662004-10-22 21:01:56 +00001683
Greg Clayton43bc79a2010-07-13 18:47:09 +00001684$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1685 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001686 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001687
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001688$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001689 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001690 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001691
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001692$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001693 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001694 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Brian Gaeke44909cf2003-12-10 00:26:28 +00001695
Greg Clayton43bc79a2010-07-13 18:47:09 +00001696$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1697 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001698 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001699
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001700endif
1701
Chris Lattner8eb12de2006-06-21 21:01:20 +00001702
1703## Rules for building preprocessed (.i/.ii) outputs.
1704$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1705 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1706 $(Verb) $(Preprocess.CXX) $< -o $@
1707
Greg Clayton43bc79a2010-07-13 18:47:09 +00001708$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1709 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1710 $(Verb) $(Preprocess.CXX) $< -o $@
1711
Chris Lattner8eb12de2006-06-21 21:01:20 +00001712$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1713 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1714 $(Verb) $(Preprocess.CXX) $< -o $@
1715
Reid Spencer44136722006-12-10 04:56:38 +00001716$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001717 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1718 $(Verb) $(Preprocess.C) $< -o $@
1719
Greg Clayton43bc79a2010-07-13 18:47:09 +00001720$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1721 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1722 $(Verb) $(Preprocess.C) $< -o $@
1723
Chris Lattner8eb12de2006-06-21 21:01:20 +00001724
1725$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1726 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001727 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001728
Greg Clayton43bc79a2010-07-13 18:47:09 +00001729$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1730 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1731 $(Compile.CXX) $< -o $@ -S
1732
Chris Lattner8eb12de2006-06-21 21:01:20 +00001733$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1734 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001735 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001736
1737$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1738 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001739 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001740
Greg Clayton43bc79a2010-07-13 18:47:09 +00001741$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1742 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1743 $(Compile.C) $< -o $@ -S
1744
Reid Spencer8b2e1412006-11-17 03:32:33 +00001745
Chris Lattner89681112006-01-27 22:13:12 +00001746# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001747ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001748$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001749 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001750 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001751else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001752$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001753 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001754 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001755endif
1756
Chris Lattner89681112006-01-27 22:13:12 +00001757
Reid Spencercc2d1e22004-10-30 09:19:36 +00001758#---------------------------------------------------------
1759# Provide rule to build .bc files from .ll sources,
1760# regardless of dependencies
1761#---------------------------------------------------------
1762$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001763 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001764 $(Verb) $(LLVMAS) $< -f -o $@
1765
1766###############################################################################
1767# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1768###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001769
Reid Spencer4d71b662004-10-22 21:01:56 +00001770ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001771TABLEGEN_INC_FILES_COMMON = 1
1772endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001773
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001774ifdef TABLEGEN_INC_FILES_COMMON
1775
Reid Spencercc2d1e22004-10-30 09:19:36 +00001776INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001777INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1778.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001779
Misha Brukmanef5dc702009-01-08 02:11:55 +00001780# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001781# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1782# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001783# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001784# dependencies of the .inc files are, unless the contents of the .inc file
1785# changes.
1786$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001787 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001788
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001789endif # TABLEGEN_INC_FILES_COMMON
1790
1791ifdef TARGET
1792
1793TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1794 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1795 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1796 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1797 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1798 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1799 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1800
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001801# All .inc.tmp files depend on the .td files.
1802$(INCTMPFiles) : $(TDFiles)
Rafael Espindola075630a2009-03-10 17:58:54 +00001803
Chris Lattner3c473472004-12-16 17:28:50 +00001804$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001805$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001806 $(Echo) "Building $(<F) register info implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001807 $(Verb) $(LLVMTableGen) -gen-register-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001808
Chris Lattner3c473472004-12-16 17:28:50 +00001809$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001810$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001811 $(Echo) "Building $(<F) instruction information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001812 $(Verb) $(LLVMTableGen) -gen-instr-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001813
Chris Lattner3c473472004-12-16 17:28:50 +00001814$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001815$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001816 $(Echo) "Building $(<F) assembly writer with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001817 $(Verb) $(LLVMTableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001818
Chris Lattner02a4f902004-12-16 17:34:04 +00001819$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001820$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattner02a4f902004-12-16 17:34:04 +00001821 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001822 $(Verb) $(LLVMTableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001823
Daniel Dunbarc464e512009-07-13 18:35:35 +00001824$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001825$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarc464e512009-07-13 18:35:35 +00001826 $(Echo) "Building $(<F) assembly matcher with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001827 $(Verb) $(LLVMTableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
Daniel Dunbarc464e512009-07-13 18:35:35 +00001828
Jim Grosbachbd29a362010-11-03 23:46:01 +00001829$(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001830$(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbachbd29a362010-11-03 23:46:01 +00001831 $(Echo) "Building $(<F) MC code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001832 $(Verb) $(LLVMTableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
Jim Grosbachbd29a362010-11-03 23:46:01 +00001833
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001834$(TARGET:%=$(ObjDir)/%GenMCPseudoLowering.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001835$(ObjDir)/%GenMCPseudoLowering.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001836 $(Echo) "Building $(<F) MC Pseudo instruction expander with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001837 $(Verb) $(LLVMTableGen) -gen-pseudo-lowering -o $(call SYSPATH, $@) $<
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001838
Chris Lattner3c473472004-12-16 17:28:50 +00001839$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001840$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001841 $(Echo) "Building $(<F) code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001842 $(Verb) $(LLVMTableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001843
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001844$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001845$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001846 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001847 $(Verb) $(LLVMTableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001848
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001849$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001850$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001851 $(Echo) "Building $(<F) disassembly tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001852 $(Verb) $(LLVMTableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001853
Sean Callanan95fcebd2010-01-29 00:21:04 +00001854$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001855$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Sean Callanan95fcebd2010-01-29 00:21:04 +00001856 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001857 $(Verb) $(LLVMTableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
Sean Callanan95fcebd2010-01-29 00:21:04 +00001858
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001859$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001860$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001861 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001862 $(Verb) $(LLVMTableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001863
Evan Cheng385e9302011-07-01 22:36:09 +00001864$(TARGET:%=$(ObjDir)/%GenSubtargetInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001865$(ObjDir)/%GenSubtargetInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001866 $(Echo) "Building $(<F) subtarget information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001867 $(Verb) $(LLVMTableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001868
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001869$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001870$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001871 $(Echo) "Building $(<F) calling convention information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001872 $(Verb) $(LLVMTableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001873
Dale Johannesen49de9822009-02-05 01:49:45 +00001874$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001875$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001876 $(Echo) "Building $(<F) intrinsics information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001877 $(Verb) $(LLVMTableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
Dale Johannesen49de9822009-02-05 01:49:45 +00001878
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001879$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001880 $(Echo) "Building $(<F) decoder tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001881 $(Verb) $(LLVMTableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001882
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +00001883$(ObjDir)/%GenDFAPacketizer.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1884 $(Echo) "Building $(<F) DFA packetizer tables with tblgen"
1885 $(Verb) $(LLVMTableGen) -gen-dfa-packetizer -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001886
Reid Spencer3a561f52004-10-23 20:04:14 +00001887clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001888 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001889
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001890endif # TARGET
1891
Reid Spencercc2d1e22004-10-30 09:19:36 +00001892###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001893# OTHER RULES: Other rules needed
1894###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001895
Chris Lattner30440c62003-01-16 21:06:18 +00001896# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001897ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001898%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001899 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001900else
1901%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001902 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001903endif
Chris Lattner30440c62003-01-16 21:06:18 +00001904
John Criswell7f336952003-09-06 14:44:17 +00001905# This rules ensures that header files that are removed still have a rule for
1906# which they can be "generated." This allows make to ignore them and
1907# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001908%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001909%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001910
Reid Spencercc2d1e22004-10-30 09:19:36 +00001911# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001912# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001913# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001914clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001915ifneq ($(strip $(ObjRootDir)),)
1916 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001917endif
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001918ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001919 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001920endif
John Criswell7a73b802003-06-30 21:59:07 +00001921
Reid Spencer3d659492004-11-02 16:36:03 +00001922clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001923 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001924
Reid Spencer12d79512004-11-12 02:27:36 +00001925
Reid Spencer3a561f52004-10-23 20:04:14 +00001926###############################################################################
1927# DEPENDENCIES: Include the dependency files if we should
1928###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001929ifndef DISABLE_AUTO_DEPENDENCIES
1930
Reid Spencer3a561f52004-10-23 20:04:14 +00001931# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001932ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001933
Reid Spencer3a561f52004-10-23 20:04:14 +00001934# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001935DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001936DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1937
1938# Include bitcode dependency files if using bitcode libraries
1939ifdef BYTECODE_LIBRARY
1940DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1941endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001942
Reid Spencer491a6cd2007-07-23 08:20:46 +00001943-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001944
John Criswelld741bcf2003-08-12 18:51:51 +00001945endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001946
Misha Brukmanef5dc702009-01-08 02:11:55 +00001947endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001948
Reid Spencer151f8ba2004-10-25 08:27:37 +00001949###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001950# CHECK: Running the test suite
1951###############################################################################
1952
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001953check::
Reid Spencer11fde542005-01-16 02:20:54 +00001954 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1955 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001956 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001957 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001958 TESTSUITE=$(TESTSUITE) ; \
1959 else \
1960 $(EchoCmd) No Makefile in test directory ; \
1961 fi ; \
1962 else \
1963 $(EchoCmd) No test directory ; \
1964 fi
1965
Daniel Dunbar666b4022010-08-02 00:05:18 +00001966check-lit:: check
1967
1968check-dg::
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001969 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1970 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1971 $(EchoCmd) Running test suite ; \
Daniel Dunbar666b4022010-08-02 00:05:18 +00001972 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001973 else \
1974 $(EchoCmd) No Makefile in test directory ; \
1975 fi ; \
1976 else \
1977 $(EchoCmd) No test directory ; \
1978 fi
1979
Daniel Dunbar34185792009-09-20 06:17:21 +00001980check-all::
1981 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1982 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1983 $(EchoCmd) Running test suite ; \
1984 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1985 else \
1986 $(EchoCmd) No Makefile in test directory ; \
1987 fi ; \
1988 else \
1989 $(EchoCmd) No test directory ; \
1990 fi
1991
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001992###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001993# UNITTESTS: Running the unittests test suite
1994###############################################################################
1995
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001996unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001997 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1998 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1999 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00002000 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00002001 else \
2002 $(EchoCmd) No Makefile in unittests directory ; \
2003 fi ; \
2004 else \
2005 $(EchoCmd) No unittests directory ; \
2006 fi
2007
2008###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00002009# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00002010###############################################################################
2011
Reid Spencere45ebfa2004-10-26 07:09:33 +00002012#------------------------------------------------------------------------
2013# Define distribution related variables
2014#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002015DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
2016DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2017TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2018DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
2019DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
2020DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00002021DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
2022 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002023 Makefile.config.in configure autoconf
2024DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00002025 $(PROJ_SRC_DIR)/*.h \
2026 $(PROJ_SRC_DIR)/*.td \
2027 $(PROJ_SRC_DIR)/*.def \
2028 $(PROJ_SRC_DIR)/*.ll \
2029 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00002030DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00002031DistSources = $(Sources) $(EXTRA_DIST)
2032DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00002033
Reid Spencere45ebfa2004-10-26 07:09:33 +00002034#------------------------------------------------------------------------
2035# We MUST build distribution with OBJ_DIR != SRC_DIR
2036#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002037ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00002038dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002039 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00002040
Reid Spencere45ebfa2004-10-26 07:09:33 +00002041else
2042
Reid Spencere45ebfa2004-10-26 07:09:33 +00002043#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00002044# Prevent attempt to run dist targets from anywhere but the top level
2045#------------------------------------------------------------------------
2046ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002047dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00002048 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002049else
2050
2051#------------------------------------------------------------------------
2052# Provide the top level targets
2053#------------------------------------------------------------------------
2054
Reid Spencercc2d1e22004-10-30 09:19:36 +00002055dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002056
Reid Spencer345235ca2004-12-04 22:34:09 +00002057$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002058 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002059 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002060 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00002061
Reid Spencercc2d1e22004-10-30 09:19:36 +00002062dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002063
Reid Spencer345235ca2004-12-04 22:34:09 +00002064$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002065 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002066 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002067 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002068
Reid Spencercc2d1e22004-10-30 09:19:36 +00002069dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002070
Reid Spencer345235ca2004-12-04 22:34:09 +00002071$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002072 $(Echo) Packing zipped distribution file.
2073 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00002074 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002075
Misha Brukmanef5dc702009-01-08 02:11:55 +00002076dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002077 $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002078
Reid Spencerf8f57402005-01-28 19:52:32 +00002079DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00002080
Reid Spencer345235ca2004-12-04 22:34:09 +00002081dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002082 $(Echo) Checking distribution tar file.
2083 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002084 $(RM) -rf $(DistCheckDir) ; \
2085 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00002086 $(Verb) $(MKDIR) $(DistCheckDir)
2087 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002088 $(MKDIR) $(DistCheckDir)/build && \
2089 $(MKDIR) $(DistCheckDir)/install && \
2090 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2091 cd build && \
2092 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00002093 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00002094 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002095 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00002096 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002097 $(MAKE) install && \
2098 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002099 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002100 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002101
2102dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002103 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002104 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2105 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002106
2107endif
2108
2109#------------------------------------------------------------------------
2110# Provide the recursive distdir target for building the distribution directory
2111#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002112distdir: $(DistDir)/.makedistdir
2113$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002114 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002115 if test -d "$(DistDir)" ; then \
2116 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2117 exit 1 ; \
2118 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002119 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002120 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002121 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002122 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002123 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002124 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002125 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002126 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2127 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002128 for file in $(DistFiles) ; do \
2129 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002130 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002131 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2132 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002133 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002134 file=`echo "$$file" | \
2135 sed "s#^$$srcrootstrip/##"` \
2136 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002137 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002138 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2139 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2140 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002141 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002142 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002143 fi ; \
2144 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002145 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2146 to_dir="$(DistDir)/$$dir"; \
2147 $(MKDIR) "$$to_dir" ; \
2148 else \
2149 to_dir="$(DistDir)"; \
2150 fi; \
2151 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2152 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002153 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002154 fi ; \
2155 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002156 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2157 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002158 cd $(PROJ_SRC_DIR) ; \
2159 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2160 ( cd $$to_dir ; $(TAR) xf - ) ; \
2161 cd $(PROJ_OBJ_DIR) ; \
2162 else \
2163 cd $$from_dir ; \
2164 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2165 ( cd $$to_dir ; $(TAR) xf - ) ; \
2166 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002167 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002168 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002169 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002170 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002171 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002172 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002173 $(EchoCmd) "===== WARNING: Distribution Source " \
2174 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002175 elif test "$(Verb)" != '@' ; then \
2176 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002177 fi; \
2178 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002179 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002180 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002181 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002182 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002183 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002184 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002185 fi; \
2186 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002187 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002188 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002189 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2190 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002191 $(MAKE) dist-hook ; \
2192 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2193 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2194 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2195 -o ! -type d ! -perm -444 -exec \
2196 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2197 || chmod -R a+r $(DistDir) ; \
2198 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002199
Reid Spencercc2d1e22004-10-30 09:19:36 +00002200# This is invoked by distdir target, define it as a no-op to avoid errors if not
2201# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002202dist-hook::
2203
Reid Spencere53e3972004-10-22 23:06:30 +00002204endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002205
2206###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002207# TOP LEVEL - targets only to apply at the top level directory
2208###############################################################################
2209
2210ifeq ($(LEVEL),.)
2211
2212#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002213# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002214#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002215ifdef NO_INSTALL
2216install-local::
2217 $(Echo) Install circumvented with NO_INSTALL
2218uninstall-local::
2219 $(Echo) Uninstall circumvented with NO_INSTALL
2220else
Reid Spencere5487ba2004-10-24 07:53:21 +00002221install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002222 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002223 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002224 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002225 cd $(PROJ_SRC_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002226 for hdr in `find . -type f \
2227 '(' -name LICENSE.TXT \
2228 -o -name '*.def' \
2229 -o -name '*.h' \
2230 -o -name '*.inc' \
2231 -o -name '*.td' \
2232 ')' -print | grep -v CVS | \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002233 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002234 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002235 if test \! -d "$$instdir" ; then \
2236 $(EchoCmd) Making install directory $$instdir ; \
2237 $(MKDIR) $$instdir ;\
2238 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002239 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002240 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002241 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002242ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002243 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002244 cd $(PROJ_OBJ_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002245 for hdr in `find . -type f \
2246 '(' -name LICENSE.TXT \
2247 -o -name '*.def' \
2248 -o -name '*.h' \
2249 -o -name '*.inc' \
2250 -o -name '*.td' \
2251 ')' -print | grep -v CVS | \
2252 grep -v .svn` ; do \
2253 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2254 if test \! -d "$$instdir" ; then \
2255 $(EchoCmd) Making install directory $$instdir ; \
2256 $(MKDIR) $$instdir ;\
2257 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002258 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002259 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002260 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002261endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002262
2263uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002264 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002265 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2266 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002267 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002268 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002269 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002270 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002271 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002272 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002273 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002274 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002275endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002276endif
2277
Chris Lattner03840ac2007-04-14 23:35:45 +00002278check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002279 @echo searching for overlength lines in files: $(Sources)
2280 @echo
2281 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002282 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002283
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002284check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002285 @echo searching for tabs in files: $(Sources)
2286 @echo
2287 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002288 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002289
Reid Spencer6548bf12007-05-02 21:29:39 +00002290check-footprint:
2291 @ls -l $(LibDir) | awk '\
2292 BEGIN { sum = 0; } \
2293 { sum += $$5; } \
2294 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2295 @ls -l $(ToolDir) | awk '\
2296 BEGIN { sum = 0; } \
2297 { sum += $$5; } \
2298 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002299#------------------------------------------------------------------------
2300# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002301#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002302printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002303 $(Echo) "BuildMode : " '$(BuildMode)'
2304 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2305 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2306 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2307 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2308 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2309 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2310 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
Bob Wilsonae7e2a42011-11-28 07:59:52 +00002311 $(Echo) "PROJ_internal_prefix : " '$(PROJ_internal_prefix)'
Reid Spencer11fde542005-01-16 02:20:54 +00002312 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2313 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2314 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002315 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002316 $(Echo) "UserTargets : " '$(UserTargets)'
2317 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2318 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2319 $(Echo) "ObjDir : " '$(ObjDir)'
2320 $(Echo) "LibDir : " '$(LibDir)'
2321 $(Echo) "ToolDir : " '$(ToolDir)'
2322 $(Echo) "ExmplDir : " '$(ExmplDir)'
2323 $(Echo) "Sources : " '$(Sources)'
2324 $(Echo) "TDFiles : " '$(TDFiles)'
2325 $(Echo) "INCFiles : " '$(INCFiles)'
2326 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002327 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002328 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2329 $(Echo) "Compile.C : " '$(Compile.C)'
2330 $(Echo) "Archive : " '$(Archive)'
2331 $(Echo) "YaccFiles : " '$(YaccFiles)'
2332 $(Echo) "LexFiles : " '$(LexFiles)'
2333 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002334 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002335 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002336 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2337 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002338
2339###
2340# Debugging
2341
Daniel Dunbar3c898122009-03-06 22:23:25 +00002342# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002343# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002344make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002345 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))