blob: 1bc78f1bf1e5994d9738b1a84d3f2e77de8adf73 [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.
Saleem Abdulrasool3ef8b0a2013-01-30 04:07:37 +0000100 $(Verb)$(PYTHON) $(LLVMBuildTool) \
Daniel Dunbara7de1d62011-11-12 00:18:02 +0000101 --native-target "$(TARGET_NATIVE_ARCH)" \
Daniel Dunbar83337302011-11-10 01:16:48 +0000102 --enable-targets "$(TARGETS_TO_BUILD)" \
Preston Gurd75493542012-05-07 19:38:40 +0000103 --enable-optional-components "$(OPTIONAL_COMPONENTS)" \
Daniel Dunbare29c3162011-11-03 22:46:21 +0000104 --write-library-table $(LLVMConfigLibraryDependenciesInc) \
105 --write-make-fragment $(LLVMBuildMakeFrag)
106
Daniel Dunbar28088532011-11-09 18:48:22 +0000107# For completeness, let Make know how the extra files are generated.
108$(LLVMConfigLibraryDependenciesInc): $(LLVMBuildMakeFrag)
109
Daniel Dunbare29c3162011-11-03 22:46:21 +0000110# Include the generated Makefile fragment.
111#
112# We currently only include the dependencies for the fragment itself if we are
113# at the top-level. Otherwise, recursive invocations would ends up doing
114# substantially more redundant stat'ing.
115#
116# This means that we won't properly regenerate things for developers used to
117# building from a subdirectory, but that is always somewhat unreliable.
118ifeq ($(LEVEL),.)
119LLVMBUILD_INCLUDE_DEPENDENCIES := 1
Daniel Dunbar2e5b88e2012-02-02 23:27:34 +0000120
121# Clean the generated makefile fragment at the top-level.
122clean-local::
123 -$(Verb) $(RM) -f $(LLVMBuildMakeFrag)
Daniel Dunbare29c3162011-11-03 22:46:21 +0000124endif
125-include $(LLVMBuildMakeFrag)
126
Reid Spencer9411c642004-10-26 22:26:33 +0000127################################################################################
128# PRECONDITIONS: that which must be built/checked first
129################################################################################
130
Reid Spencer44cb1b32004-12-03 20:08:48 +0000131SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencer11fde542005-01-16 02:20:54 +0000132 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
133ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
134ConfigureScript := $(PROJ_SRC_ROOT)/configure
135ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
136MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
137MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
138MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
139MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
140PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
141ifneq ($(MakefileCommonIn),)
142PreConditions += $(MakefileCommon)
143endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000144
Reid Spencer11fde542005-01-16 02:20:54 +0000145ifneq ($(MakefileConfigIn),)
146PreConditions += $(MakefileConfig)
147endif
Reid Spencer9411c642004-10-26 22:26:33 +0000148
Reid Spencerca739c62005-08-25 04:59:49 +0000149preconditions: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000150
151#------------------------------------------------------------------------
152# Make sure the BUILT_SOURCES are built first
153#------------------------------------------------------------------------
Reid Spencer07a549a2004-12-16 07:15:16 +0000154$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +0000155
Reid Spencer9bb399c2007-02-07 19:13:19 +0000156clean-all-local::
Reid Spencer9411c642004-10-26 22:26:33 +0000157ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000158 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +0000159endif
160
Reid Spencer11fde542005-01-16 02:20:54 +0000161ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer31f95242004-12-16 08:00:46 +0000162spotless:
Reid Spencer31f95242004-12-16 08:00:46 +0000163 $(Verb) if test -x config.status ; then \
Reid Spencer11fde542005-01-16 02:20:54 +0000164 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000165 $(MKDIR) .spotless.save ; \
166 $(MV) config.status .spotless.save ; \
167 $(MV) mklib .spotless.save ; \
168 $(MV) projects .spotless.save ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000169 $(RM) -rf * ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000170 $(MV) .spotless.save/config.status . ; \
171 $(MV) .spotless.save/mklib . ; \
172 $(MV) .spotless.save/projects . ; \
173 $(RM) -rf .spotless.save ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000174 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000175 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
176 $(ConfigStatusScript) ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000177 else \
Reid Spencer11fde542005-01-16 02:20:54 +0000178 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer31f95242004-12-16 08:00:46 +0000179 fi
Reid Spencer25e8a702005-12-21 23:17:06 +0000180else
181spotless:
182 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer31f95242004-12-16 08:00:46 +0000183endif
184
Reid Spencercc2d1e22004-10-30 09:19:36 +0000185$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencer80f0ef72004-10-28 00:41:43 +0000186
Reid Spencer9411c642004-10-26 22:26:33 +0000187#------------------------------------------------------------------------
188# Make sure we're not using a stale configuration
189#------------------------------------------------------------------------
Reid Spencerc3719842004-12-16 18:26:53 +0000190reconfigure:
Reid Spencer11fde542005-01-16 02:20:54 +0000191 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
192 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencerc3719842004-12-16 18:26:53 +0000193 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
194 $(ConfigStatusScript)
195
Reid Spencercc2d1e22004-10-30 09:19:36 +0000196.PRECIOUS: $(ConfigStatusScript)
Jim Grosbache5e2c412010-10-01 22:32:12 +0000197$(ConfigStatusScript): $(ConfigureScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000198 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000199 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencer7d277002004-11-29 12:37:44 +0000200 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
201 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000202
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000203#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000204# Make sure the configuration makefile is up to date
205#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000206ifneq ($(MakefileConfigIn),)
207$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000208 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000209 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
210endif
211
212ifneq ($(MakefileCommonIn),)
213$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
214 $(Echo) Regenerating $@
215 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
216endif
Reid Spencer9411c642004-10-26 22:26:33 +0000217
218#------------------------------------------------------------------------
219# If the Makefile in the source tree has been updated, copy it over into the
220# build tree. But, only do this if the source and object makefiles differ
221#------------------------------------------------------------------------
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000222ifndef PROJ_MAKEFILE
223PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
224endif
225
Reid Spencer11fde542005-01-16 02:20:54 +0000226ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000227
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000228Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000229 $(Echo) "Updating Makefile"
230 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000231 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000232
233# Copy the Makefile.* files unless we're in the root directory which avoids
234# the copying of Makefile.config.in or other things that should be explicitly
235# taken care of.
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000236$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
Reid Spencer86606782004-10-26 23:10:00 +0000237 @case '$?' in \
238 *Makefile.rules) ;; \
239 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000240 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000241 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000242 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000243 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000244
Reid Spencer9411c642004-10-26 22:26:33 +0000245endif
246
247#------------------------------------------------------------------------
248# Set up the basic dependencies
249#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000250$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000251
252all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000253clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000254clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000255install:: install-local
256uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000257install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000258install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000259
260###############################################################################
261# VARIABLES: Set up various variables based on configuration data
262###############################################################################
263
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000264# Variable for if this make is for a "cleaning" target
265ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
266 IS_CLEANING_TARGET=1
267endif
268
Reid Spencer3a561f52004-10-23 20:04:14 +0000269#--------------------------------------------------------------------
270# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000271#--------------------------------------------------------------------
272
Reid Spencer0a522b12007-07-10 07:19:53 +0000273CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000274ifeq ($(ENABLE_OPTIMIZED),1)
275 BuildMode := Release
276 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000277 ifneq ($(HOST_OS),FreeBSD)
Sylvestre Ledruba62f2f2013-07-01 08:07:52 +0000278 ifneq ($(HOST_OS),GNU/kFreeBSD)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000279 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000280 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000281 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000282 endif
Sylvestre Ledruba62f2f2013-07-01 08:07:52 +0000283 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000284
David Greenedbefd0c2009-04-17 14:49:22 +0000285 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
286 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
287 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000288 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000289 BuildMode := $(BuildMode)+Debug
290 CXX.Flags += -g
291 C.Flags += -g
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000292 KEEP_SYMBOLS := 1
293 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000294else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000295 ifdef NO_DEBUG_SYMBOLS
296 BuildMode := Unoptimized
297 CXX.Flags +=
298 C.Flags +=
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000299 KEEP_SYMBOLS := 1
300 else
301 BuildMode := Debug
Eric Christopher1baa3812013-06-25 01:12:25 +0000302 ifeq ($(ENABLE_SPLIT_DWARF), 1)
303 CXX.Flags += -gsplit-dwarf
304 C.Flags += -gsplit-dwarf
305 else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000306 CXX.Flags += -g
307 C.Flags += -g
Eric Christopher1baa3812013-06-25 01:12:25 +0000308 endif
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000309 KEEP_SYMBOLS := 1
310 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000311endif
312
Eric Christopherbee515f2011-11-11 22:51:42 +0000313ifeq ($(ENABLE_LIBCPP),1)
314 CXX.Flags += -stdlib=libc++
315 LD.Flags += -stdlib=libc++
316endif
Chris Lattner16969802011-11-10 21:12:28 +0000317
Eric Christopher82120022012-08-03 19:47:14 +0000318ifeq ($(ENABLE_CXX11),1)
319 CXX.Flags += -std=c++11
320endif
321
Eric Christopher09a88732012-08-03 19:58:20 +0000322ifeq ($(ENABLE_WERROR),1)
323 CXX.Flags += -Werror
324 C.Flags += -Werror
325endif
326
David Greenedbefd0c2009-04-17 14:49:22 +0000327ifeq ($(ENABLE_PROFILING),1)
328 BuildMode := $(BuildMode)+Profile
329 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
330 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
Eric Christophera619be82013-06-25 00:40:03 +0000331 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg
David Greenedbefd0c2009-04-17 14:49:22 +0000332 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000333endif
334
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000335ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000336 CXX.Flags += -fvisibility-inlines-hidden
337endif
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000338
Chris Lattnerc96d5082010-01-24 20:20:40 +0000339ifdef ENABLE_EXPENSIVE_CHECKS
340 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
341 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
342 REQUIRES_RTTI := 1
343endif
344
Reid Spencer99655e12006-08-25 19:54:53 +0000345# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000346ifndef REQUIRES_EH
347 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000348else
349 # If the library requires EH, it also requires RTTI.
350 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000351endif
Reid Spencer99655e12006-08-25 19:54:53 +0000352
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000353ifdef REQUIRES_FRAME_POINTER
354 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
355 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
356 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
357endif
358
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000359# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000360ifneq ($(REQUIRES_RTTI), 1)
361 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000362endif
363
Peter Collingbourneed50d382010-10-22 12:54:34 +0000364ifeq ($(ENABLE_COVERAGE),1)
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000365 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000366 CXX.Flags += -ftest-coverage -fprofile-arcs
367 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000368endif
369
Reid Spencer854071c2006-04-10 16:46:04 +0000370# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
371# then disable assertions by defining the appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000372ifeq ($(DISABLE_ASSERTIONS),1)
373 CPP.Defines += -DNDEBUG
374else
Duncan Sands8246adc2010-07-07 07:48:00 +0000375 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000376 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000377endif
378
Misha Brukmanef5dc702009-01-08 02:11:55 +0000379# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
380# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000381# appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000382ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
David Greenea696d242007-06-28 19:36:08 +0000383 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000384 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000385endif
386
Nick Lewyckya15dc032009-02-26 07:44:16 +0000387# LOADABLE_MODULE implies several other things so we force them to be
388# defined/on.
389ifdef LOADABLE_MODULE
390 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000391 LINK_LIBS_IN_SHARED := 1
392endif
393
394ifdef SHARED_LIBRARY
395 ENABLE_PIC := 1
396 PIC_FLAG = "(PIC)"
397endif
398
Reid Spencer89b0d992006-12-16 22:07:52 +0000399ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000400 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000401 # Nothing. Win32 defaults to PIC and warns when given -fPIC
402 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000403 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000404 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000405 CXX.Flags += -fno-common
406 C.Flags += -fno-common
407 else
408 # Linux and others; pass -fPIC
409 CXX.Flags += -fPIC
410 C.Flags += -fPIC
411 endif
412 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000413else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000414 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000415 CXX.Flags += -mdynamic-no-pic
416 C.Flags += -mdynamic-no-pic
417 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000418endif
419
Daniel Dunbardd464df2010-05-10 20:11:56 +0000420# Support makefile variable to disable any kind of timestamp/non-deterministic
421# info from being used in the build.
422ifeq ($(ENABLE_TIMESTAMPS),1)
423 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
424else
425 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
426endif
427
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000428ifeq ($(HOST_OS),MingW)
429 # Work around PR4957
430 CPP.Defines += -D__NO_CTYPE_INLINE
431 ifeq ($(LLVM_CROSS_COMPILING),1)
432 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
433 ifdef TOOLNAME
434 LD.Flags += -Wl,--allow-multiple-definition
435 endif
436 endif
437endif
438
Chris Lattner1bdedb92011-04-09 06:01:28 +0000439CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000440CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000441AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000442
Chris Lattner16620fc2006-07-27 18:19:51 +0000443# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000444ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000445 CXX.Flags += -mieee
446 CPP.BaseFlags += -mieee
447ifeq ($(ENABLE_PIC),0)
448 CXX.Flags += -fPIC
449 CPP.BaseFlags += -fPIC
450endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000451
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000452 LD.Flags += -Wl,--no-relax
453endif
454
NAKAMURA Takumib9dec1f2010-11-26 09:32:02 +0000455# GNU ld/PECOFF accepts but ignores them below;
456# --version-script
457# --export-dynamic
458# --rpath
459# FIXME: autoconf should be aware of them.
460ifneq (,$(filter $(HOST_OS),Cygwin MingW))
461 HAVE_LINK_VERSION_SCRIPT := 0
462 RPATH :=
463 RDYNAMIC := -Wl,--export-all-symbols
464endif
465
Reid Spencer3a561f52004-10-23 20:04:14 +0000466#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000467# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000468#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000469TargetMode :=
470ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000471 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000472endif
473
474ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000475ObjDir := $(ObjRootDir)
476LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
477ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
478ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
479LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
480LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
481LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000482
Reid Spencer3a561f52004-10-23 20:04:14 +0000483#--------------------------------------------------------------------
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000484# Locations of shared libraries
485#--------------------------------------------------------------------
486
487SharedPrefix := lib
488SharedLibDir := $(LibDir)
489LLVMSharedLibDir := $(LLVMLibDir)
490
491# Win32.DLL prefers to be located on the "PATH" of binaries.
492ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
493 SharedLibDir := $(ToolDir)
494 LLVMSharedLibDir := $(LLVMToolDir)
495
496 ifeq ($(HOST_OS),Cygwin)
497 SharedPrefix := cyg
498 else
499 SharedPrefix :=
500 endif
501endif
502
503#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000504# LLVM Capable Compiler
505#--------------------------------------------------------------------
506
Chris Lattner70d77002011-04-09 19:53:16 +0000507ifneq ($(findstring llvm-gcc,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000508 LLVMCC := $(LLVMGCC)
509 LLVMCXX := $(LLVMGXX)
510else
Chris Lattner70d77002011-04-09 19:53:16 +0000511 ifneq ($(findstring clang,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000512 ifneq ($(CLANGPATH),)
513 LLVMCC := $(CLANGPATH)
514 LLVMCXX := $(CLANGXXPATH)
515 else
516 ifeq ($(ENABLE_BUILT_CLANG),1)
517 LLVMCC := $(LLVMToolDir)/clang
518 LLVMCXX := $(LLVMToolDir)/clang++
519 endif
520 endif
521 endif
522endif
523
524#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000525# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000526#--------------------------------------------------------------------
Daniel Dunbar01b825d2011-11-11 22:59:45 +0000527EchoCmd := $(ECHO) llvm[$(MAKELEVEL)]:
528ifdef BUILD_DIRS_ONLY
529EchoCmd := $(EchoCmd) "(build tools)":
530endif
531
532Echo := @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000533ifndef LLVMAS
534LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
535endif
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000536ifndef LLVM_TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000537 ifeq ($(LLVM_CROSS_COMPILING),1)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000538 LLVM_TBLGEN := $(BuildLLVMToolDir)/llvm-tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000539 else
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000540 LLVM_TBLGEN := $(LLVMToolDir)/llvm-tblgen$(EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000541 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000542endif
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000543ifeq ($(LLVM_CROSS_COMPILING),1)
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000544 LLVM_CONFIG := $(BuildLLVMToolDir)/llvm-config$(BUILD_EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000545else
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000546 LLVM_CONFIG := $(LLVMToolDir)/llvm-config$(EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000547endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000548ifndef LLVMDIS
Eric Christopher164a3082012-08-28 01:17:46 +0000549LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000550endif
551ifndef LLI
Eric Christopher164a3082012-08-28 01:17:46 +0000552LLI := $(LLVMToolDir)/lli$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000553endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000554ifndef LLC
Eric Christopher164a3082012-08-28 01:17:46 +0000555LLC := $(LLVMToolDir)/llc$(EXEEXT)
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000556endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000557ifndef LOPT
Eric Christopher164a3082012-08-28 01:17:46 +0000558LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000559endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000560ifndef LBUGPOINT
Eric Christopher164a3082012-08-28 01:17:46 +0000561LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000562endif
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +0000563ifndef LLVMLINK
Eric Christopher164a3082012-08-28 01:17:46 +0000564LLVMLINK := $(LLVMToolDir)/llvm-link$(EXEEXT)
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +0000565endif
Reid Spencere46687c2006-12-03 21:01:45 +0000566
Reid Spencer3a561f52004-10-23 20:04:14 +0000567#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000568# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000569#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000570
Anton Korobeynikove55db742009-08-18 00:40:33 +0000571ifeq ($(HOST_OS),Darwin)
Bob Wilsonf3ad95a2012-10-12 21:48:14 +0000572 ifdef MACOSX_DEPLOYMENT_TARGET
573 DARWIN_VERSION := $(MACOSX_DEPLOYMENT_TARGET)
574 else
Scott Michel87af5f02009-03-12 21:03:53 +0000575 DARWIN_VERSION := `sw_vers -productVersion`
Bob Wilsonf3ad95a2012-10-12 21:48:14 +0000576 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000577 # Strip a number like 10.4.7 to 10.4
578 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
579 # Get "4" out of 10.4 for later pieces in the makefile.
580 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000581
Daniel Dunbar7bc0f272010-12-08 01:48:05 +0000582 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
583 SharedLinkOptions := -dynamiclib
Bob Wilsoncdb0a582013-02-05 17:29:03 +0000584 ifdef DEPLOYMENT_TARGET
585 SharedLinkOptions += $(DEPLOYMENT_TARGET)
586 else
587 ifneq ($(ARCH),ARM)
588 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
589 endif
Evan Chenga5e225e2009-09-08 18:52:20 +0000590 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000591else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000592 SharedLinkOptions=-shared
Scott Michel87af5f02009-03-12 21:03:53 +0000593endif
594
Anton Korobeynikove55db742009-08-18 00:40:33 +0000595ifeq ($(TARGET_OS),Darwin)
Bob Wilsoncdb0a582013-02-05 17:29:03 +0000596 ifdef DEPLOYMENT_TARGET
597 TargetCommonOpts += $(DEPLOYMENT_TARGET)
598 else
599 ifneq ($(ARCH),ARM)
600 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
601 endif
Evan Chenga5e225e2009-09-08 18:52:20 +0000602 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000603endif
604
Reid Spencer492c2932005-01-11 04:31:07 +0000605ifdef SHARED_LIBRARY
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000606ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000607ifneq ($(HOST_OS),Darwin)
608 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
John Criswell82f4a5a2003-07-31 20:58:51 +0000609endif
Scott Michel87af5f02009-03-12 21:03:53 +0000610endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000611endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000612
Reid Spencercceed9f2004-11-08 17:32:12 +0000613ifdef TOOL_VERBOSE
614 C.Flags += -v
615 CXX.Flags += -v
616 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000617 VERBOSE := 1
618endif
619
Reid Spencer3a561f52004-10-23 20:04:14 +0000620# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000621ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000622 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000623 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000624 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000625else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000626 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000627endif
628
Vikram S. Advefeeae582002-09-18 11:55:13 +0000629# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000630ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000631 Strip := $(PLATFORMSTRIPOPTS)
632 StripWarnMsg := "(without symbols)"
Charles Davis13460c92011-10-26 02:28:32 +0000633 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000634endif
635
Rafael Espindola31552a92010-10-15 00:58:12 +0000636ifdef TOOL_NO_EXPORTS
637 DynamicFlags :=
638else
639 DynamicFlag := $(RDYNAMIC)
640endif
641
Reid Spencer3a561f52004-10-23 20:04:14 +0000642# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000643ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Bill Wendling0a031172012-10-05 00:22:46 +0000644 ifneq ($(HOST_OS), Darwin)
645 ifdef TOOLNAME
Rafael Espindola1529f0c2013-05-23 02:53:22 +0000646 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib' $(DynamicFlag)
Rafael Espindolab58484e2013-05-23 02:38:50 +0000647 endif
648 else
649 ifneq ($(DARWIN_MAJVERS),4)
650 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
651 endif
652 ifeq ($(RC_XBS),YES)
653 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
654 LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile)
Bill Wendling0a031172012-10-05 00:22:46 +0000655 endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000656 endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000657endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000658
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000659
Reid Spencer3a561f52004-10-23 20:04:14 +0000660#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000661# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000662#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000663
Daniel Dunbare2a91a72011-06-16 22:30:38 +0000664ifdef EXTRA_LD_OPTIONS
665LD.Flags += $(EXTRA_LD_OPTIONS)
666endif
667
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000668ifndef NO_PEDANTIC
Eric Christopherc6aa8342013-03-15 00:43:00 +0000669CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000670endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000671CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
David Greened2f82162013-01-09 22:11:13 +0000672 $(EXTRA_OPTIONS) $(COVERED_SWITCH_DEFAULT) \
David Greene9778d5c2013-01-18 23:22:52 +0000673 $(NO_UNINITIALIZED) $(NO_MAYBE_UNINITIALIZED) \
674 $(NO_MISSING_FIELD_INITIALIZERS)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000675# Enable cast-qual for C++; the workaround is to use const_cast.
Eric Christophere83a6f32013-05-14 21:52:01 +0000676CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000677
Anton Korobeynikove55db742009-08-18 00:40:33 +0000678ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000679 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000680endif
681
Chris Lattner73faa392006-05-30 16:38:06 +0000682# If we are building a universal binary on Mac OS/X, pass extra options. This
683# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000684# apps.
685#
686# The following can be optionally specified:
687# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
688# For Mac OS/X 10.4 Intel machines, the traditional one is:
689# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
690# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
691# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
692# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000693ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000694 ifndef UNIVERSAL_ARCH
695 UNIVERSAL_ARCH := i386 ppc
696 endif
697 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
Eric Christopherea641222013-06-24 23:20:04 +0000698 TargetCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000699 ifdef UNIVERSAL_SDK_PATH
Eric Christopherea641222013-06-24 23:20:04 +0000700 TargetCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000701 endif
702
703 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000704 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000705else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000706 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000707 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000708 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000709 else
710 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000711 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000712 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000713 endif
714 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000715endif
716
Anton Korobeynikove55db742009-08-18 00:40:33 +0000717ifeq ($(HOST_OS),SunOS)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000718CPP.BaseFlags += -include llvm/Support/Solaris.h
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000719endif
720
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000721ifeq ($(HOST_OS),AuroraUX)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000722CPP.BaseFlags += -include llvm/Support/Solaris.h
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000723endif # !HOST_OS - AuroraUX.
724
David Meyer107506f2012-02-18 10:03:19 +0000725# On Windows, SharedLibDir != LibDir. The order is important.
726ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
727 LD.Flags += -L$(SharedLibDir) -L$(LibDir) -L$(LLVMToolDir) -L$(LLVMLibDir)
728else
729 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
730endif
731
NAKAMURA Takumie2aa5d52011-10-11 12:51:44 +0000732CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000733# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000734CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
735 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000736 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
737 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
738 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000739
Daniel Dunbar8d694142011-11-03 21:01:32 +0000740ifeq ($(INCLUDE_BUILD_DIR),1)
741 CPP.Flags += -I$(ObjDir)
742endif
743
Daniel Dunbar58194302011-04-11 22:37:39 +0000744# SHOW_DIAGNOSTICS support.
745ifeq ($(SHOW_DIAGNOSTICS),1)
746 Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
747 CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
748else
749 Compile.Wrapper :=
750endif
751
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000752Compile.C = $(Compile.Wrapper) \
Eric Christopher42dffa52012-08-03 17:45:31 +0000753 $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000754 $(TargetCommonOpts) $(CompileCommonOpts) -c
755Compile.CXX = $(Compile.Wrapper) \
Eric Christopher42dffa52012-08-03 17:45:31 +0000756 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000757 $(TargetCommonOpts) $(CompileCommonOpts) -c
758Preprocess.CXX= $(Compile.Wrapper) \
Eric Christopher42dffa52012-08-03 17:45:31 +0000759 $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000760 $(CompileCommonOpts) $(CXX.Flags) -E
761Link = $(Compile.Wrapper) \
Bob Wilson105b1c82013-06-27 06:09:14 +0000762 $(CXX) $(CXXFLAGS) $(LD.Flags) $(LDFLAGS) \
763 $(TargetCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000764
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000765BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000766 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000767Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000768 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000769
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000770BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000771 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000772
Misha Brukmanef5dc702009-01-08 02:11:55 +0000773ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
774ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000775DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000776
777# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
778# paths. In this case, the SYSPATH function (defined in
779# Makefile.config) transforms Unix paths into Windows paths.
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000780TableGen.Flags= -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000781 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000782 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
783 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000784LLVMTableGen = $(LLVM_TBLGEN) $(TableGen.Flags)
Chris Lattner6e0a5292008-01-15 23:27:40 +0000785
Reid Spencercc2d1e22004-10-30 09:19:36 +0000786Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000787LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000788ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000789Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000790else
Reid Spencer3a561f52004-10-23 20:04:14 +0000791Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000792endif
793
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000794AliasTool = ln -s
795
Chris Lattner00950542001-06-06 20:29:01 +0000796#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000797# Get the list of source files and compute object file
798# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000799#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000800
801ifndef SOURCES
802 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000803 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000804else
Chris Lattner89681112006-01-27 22:13:12 +0000805 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000806endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000807
Chris Lattner89681112006-01-27 22:13:12 +0000808ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000809Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000810endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000811
Chris Lattner89681112006-01-27 22:13:12 +0000812BaseNameSources := $(sort $(basename $(Sources)))
813
814ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000815ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
816
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000817#----------------------------------------------------------
818# For Mingw MSYS bash and Python/w32:
819#
820# $(ECHOPATH) prints DOSish pathstring.
821# ex) $(ECHOPATH) /include/sys/types.h
822# --> C:/mingw/include/sys/types.h
823# built-in "echo" does not transform path to DOSish path.
824#
825# FIXME: It would not be needed when MSYS's python
826# were provided.
827#----------------------------------------------------------
828
829ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
Saleem Abdulrasool3ef8b0a2013-01-30 04:07:37 +0000830 ECHOPATH := $(Verb)$(PYTHON) -u -c "import sys;print ' '.join(sys.argv[1:])"
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000831else
832 ECHOPATH := $(Verb)$(ECHO)
833endif
834
Reid Spencer3a561f52004-10-23 20:04:14 +0000835###############################################################################
836# DIRECTORIES: Handle recursive descent of directory structure
837###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000838
Chris Lattner00950542001-06-06 20:29:01 +0000839#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000840# Provide rules to make install dirs. This must be early
841# in the file so they get built before dependencies
842#---------------------------------------------------------
843
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000844$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000845 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000846
Reid Spencercc2d1e22004-10-30 09:19:36 +0000847# To create other directories, as needed, and timestamp their creation
848%/.dir:
849 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000850 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000851
Reid Spencer815cbcf2004-11-18 10:03:46 +0000852.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
853.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000854
855#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000856# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000857#---------------------------------------------------------
858
Misha Brukmanef5dc702009-01-08 02:11:55 +0000859SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000860ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000861SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000862
863ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000864$(RecursiveTargets)::
865 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000866 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000867 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000868 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000869 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000870 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000871 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000872 done
Chris Lattner82033602006-07-26 20:22:26 +0000873else
874$(RecursiveTargets)::
875 $(Verb) for dir in $(DIRS); do \
876 ($(MAKE) -C $$dir $@ ) || exit 1; \
877 done
878endif
879
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000880endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000881
Reid Spencer3a561f52004-10-23 20:04:14 +0000882#---------------------------------------------------------
883# Handle the EXPERIMENTAL_DIRS options ensuring success
884# after each directory is built.
885#---------------------------------------------------------
886ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000887$(RecursiveTargets)::
888 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000889 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000890 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000891 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000892 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000893 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000894 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000895 done
896endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000897
Reid Spencer25e8a702005-12-21 23:17:06 +0000898#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000899# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
900#-----------------------------------------------------------
901ifdef OPTIONAL_PARALLEL_DIRS
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000902 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 +0000903endif
904
905#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000906# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000907#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000908ifdef PARALLEL_DIRS
909
Reid Spencercc2d1e22004-10-30 09:19:36 +0000910SubDirs += $(PARALLEL_DIRS)
911
Reid Spencer44cb1b32004-12-03 20:08:48 +0000912# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000913all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
914clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000915clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000916install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000917uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000918install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000919unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000920
Reid Spencer345235ca2004-12-04 22:34:09 +0000921ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000922
Reid Spencer345235ca2004-12-04 22:34:09 +0000923$(ParallelTargets) :
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000924 $(Verb) \
925 SD=$(PROJ_SRC_DIR)/$(@D); \
926 DD=$(@D); \
927 if [ ! -f $$SD/Makefile ]; then \
928 SD=$(@D); \
929 DD=$(notdir $(@D)); \
930 fi; \
931 if ([ ! -f $$DD/Makefile ] || \
932 command test $$DD/Makefile -ot \
933 $$SD/Makefile ); then \
934 $(MKDIR) $$DD; \
935 $(CP) $$SD/Makefile $$DD/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000936 fi; \
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000937 $(MAKE) -C $$DD $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000938endif
939
Reid Spencer3a561f52004-10-23 20:04:14 +0000940#---------------------------------------------------------
941# Handle the OPTIONAL_DIRS options for directores that may
942# or may not exist.
943#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000944ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000945
Reid Spencercc2d1e22004-10-30 09:19:36 +0000946SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000947
Chris Lattner82033602006-07-26 20:22:26 +0000948ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000949$(RecursiveTargets)::
950 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000951 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000952 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000953 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000954 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000955 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000956 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000957 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000958 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000959 done
Chris Lattner82033602006-07-26 20:22:26 +0000960else
961$(RecursiveTargets)::
962 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Stephen Wilsonc1566322011-02-20 03:51:07 +0000963 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
964 ($(MAKE) -C$$dir $@ ) || exit 1; \
965 fi \
Chris Lattner82033602006-07-26 20:22:26 +0000966 done
967endif
John Criswell2a6530f2003-06-27 16:58:44 +0000968endif
969
Reid Spencerfc945082004-08-20 09:20:05 +0000970#---------------------------------------------------------
971# Handle the CONFIG_FILES options
972#---------------------------------------------------------
973ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000974
Reid Spencera2a31bf2007-02-06 18:53:14 +0000975ifdef NO_INSTALL
976install-local::
977 $(Echo) Install circumvented with NO_INSTALL
978uninstall-local::
979 $(Echo) UnInstall circumvented with NO_INSTALL
980else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000981install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
982 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000983 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000984 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000985 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000986 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000987 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000988 else \
989 $(ECHO) Error: cannot find config file $${file}. ; \
990 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000991 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000992
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000993uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000994 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000995 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000996 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000997 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000998endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000999
Reid Spencerfc945082004-08-20 09:20:05 +00001000endif
1001
Reid Spencer3a561f52004-10-23 20:04:14 +00001002###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +00001003# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001004###############################################################################
1005
1006#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001007# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +00001008# libraries needed when linking. There are "Proj" libs
1009# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +00001010# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001011#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +00001012
Chris Lattneref0d0f12006-09-04 04:47:21 +00001013ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001014ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
1015ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +00001016ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
1017ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
1018endif
1019
1020ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001021LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
1022LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001023LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001024LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +00001025endif
1026
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001027# Loadable module for Win32 requires all symbols resolved for linking.
1028# Then all symbols in LLVM.dll will be available.
1029ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001030 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001031 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
1032 LINK_COMPONENTS += all
1033 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001034 endif
1035endif
1036
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001037ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +00001038ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +00001039
1040# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
1041# clean in tools, then do a make in tools (instead of at the top level).
1042$(LLVM_CONFIG):
1043 @echo "*** llvm-config doesn't exist - rebuilding it."
1044 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +00001045
Chris Lattner0a1db822006-09-04 05:23:20 +00001046$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
1047
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001048ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001049# We can take the "auto-import" feature to get rid of using dllimport.
1050ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1051LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
1052 -L $(SharedLibDir)
1053endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001054LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001055LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001056else
Chris Lattnerf636aa92010-09-01 16:11:17 +00001057
1058ifndef NO_LLVM_CONFIG
1059LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
1060ifeq ($(LLVMConfigLibs),Error)
1061$(error llvm-config --libs failed)
1062endif
1063LLVMLibsOptions += $(LLVMConfigLibs)
1064LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
1065ifeq ($(LLVMConfigLibfiles),Error)
1066$(error llvm-config --libfiles failed)
1067endif
1068LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
1069endif
1070
Chris Lattneref0d0f12006-09-04 04:47:21 +00001071endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +00001072endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001073endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001074
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001075# Set up the library exports file.
1076ifdef EXPORTED_SYMBOL_FILE
1077
1078# First, set up the native export file, which may differ from the source
1079# export file.
1080
1081ifeq ($(HOST_OS),Darwin)
1082# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +00001083NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +00001084$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001085 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001086clean-local::
1087 -$(Verb) $(RM) -f $(NativeExportsFile)
1088else
Dan Gohmanda612d62010-06-01 14:56:56 +00001089ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1090# Gold and BFD ld require a version script rather than a plain list.
1091NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1092$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1093 $(Verb) echo "{" > $@
Eric Christopher5084fa02012-03-12 20:58:14 +00001094 $(Verb) grep -q '[[:alnum:]_]' $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001095 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001096ifneq ($(HOST_OS),OpenBSD)
Dan Gohmanda612d62010-06-01 14:56:56 +00001097 $(Verb) echo " local: *;" >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001098endif
Dan Gohmanda612d62010-06-01 14:56:56 +00001099 $(Verb) echo "};" >> $@
1100clean-local::
1101 -$(Verb) $(RM) -f $(NativeExportsFile)
1102else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001103ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +00001104# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001105NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001106$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1107 $(Echo) Generating $(notdir $@)
1108 $(Verb) $(ECHO) "EXPORTS" > $@
1109 $(Verb) $(CAT) $< >> $@
1110clean-local::
1111 -$(Verb) $(RM) -f $(NativeExportsFile)
1112else
Dan Gohman9a7570c2010-09-03 17:29:33 +00001113# Default behavior: just use the exports file verbatim.
1114NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1115endif
1116endif
1117endif
1118
1119# Now add the linker command-line options to use the native export file.
1120
1121# Darwin
1122ifeq ($(HOST_OS),Darwin)
1123LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1124endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001125
Dan Gohmane05f6092010-04-16 22:58:15 +00001126# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001127ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1128LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001129endif
1130
Dan Gohman9a7570c2010-09-03 17:29:33 +00001131# Windows
1132ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1133# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1134SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001135endif
1136
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001137endif
1138
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001139###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001140# Library Build Rules: Four ways to build a library
1141###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001142
Reid Spencer7980ea42004-12-05 05:17:22 +00001143#---------------------------------------------------------
1144# Bytecode Module Targets:
1145# If the user set MODULE_NAME then they want to build a
1146# bytecode module from the sources. We compile all the
1147# sources and link it together into a single bytecode
1148# module.
1149#---------------------------------------------------------
1150
1151ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001152ifeq ($(strip $(LLVMCC)),)
1153$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001154else
Reid Spencer7980ea42004-12-05 05:17:22 +00001155
1156Module := $(LibDir)/$(MODULE_NAME).bc
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001157LinkModule := $(LLVMLINK)
Reid Spencerbbd5e432006-04-12 18:21:35 +00001158
Reid Spencer7980ea42004-12-05 05:17:22 +00001159
1160ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001161LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001162endif
1163
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001164$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001165 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001166 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1167
1168all-local:: $(Module)
1169
1170clean-local::
1171ifneq ($(strip $(Module)),)
1172 -$(Verb) $(RM) -f $(Module)
1173endif
1174
Reid Spencerab3690b2004-12-13 07:38:07 +00001175ifdef BYTECODE_DESTINATION
1176ModuleDestDir := $(BYTECODE_DESTINATION)
1177else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001178ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001179endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001180
Reid Spencera2a31bf2007-02-06 18:53:14 +00001181ifdef NO_INSTALL
1182install-local::
1183 $(Echo) Install circumvented with NO_INSTALL
1184uninstall-local::
1185 $(Echo) Uninstall circumvented with NO_INSTALL
1186else
Reid Spencerab3690b2004-12-13 07:38:07 +00001187DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1188
1189install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001190install-local:: $(DestModule)
1191
Misha Brukmanef5dc702009-01-08 02:11:55 +00001192$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001193 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001194 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001195
1196uninstall-local::
1197 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1198 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001199endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001200
1201endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001202endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001203
Reid Spencer3a561f52004-10-23 20:04:14 +00001204# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001205ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001206
Misha Brukmanf547a122009-08-17 15:31:24 +00001207# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001208LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001209ifdef LOADABLE_MODULE
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001210BaseLibName.A := $(LIBRARYNAME).a
1211BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001212else
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001213BaseLibName.A := lib$(LIBRARYNAME).a
1214BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001215endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001216LibName.A := $(LibDir)/$(BaseLibName.A)
1217LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001218LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001219LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001220
Reid Spencer3a561f52004-10-23 20:04:14 +00001221#---------------------------------------------------------
1222# Shared Library Targets:
1223# If the user asked for a shared library to be built
1224# with the SHARED_LIBRARY variable, then we provide
1225# targets for building them.
1226#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001227ifdef SHARED_LIBRARY
1228
Nick Lewyckya15dc032009-02-26 07:44:16 +00001229all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001230
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001231ifdef EXPORTED_SYMBOL_FILE
1232$(LibName.SO): $(NativeExportsFile)
1233endif
1234
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001235ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001236ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001237SharedLibKindMessage := "Loadable Module"
Daniel Dunbar7bc0f272010-12-08 01:48:05 +00001238SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
Reid Spencer42fe4552006-08-07 23:12:15 +00001239else
1240SharedLibKindMessage := "Shared Library"
1241endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001242$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001243 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001244 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001245 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001246 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001247else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001248$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001249 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001250 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001251endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001252
1253clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001254ifneq ($(strip $(LibName.SO)),)
1255 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001256endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001257
Reid Spencera2a31bf2007-02-06 18:53:14 +00001258ifdef NO_INSTALL
1259install-local::
1260 $(Echo) Install circumvented with NO_INSTALL
1261uninstall-local::
1262 $(Echo) Uninstall circumvented with NO_INSTALL
1263else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001264
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001265# Win32.DLL prefers to be located on the "PATH" of binaries.
1266ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1267DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001268else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001269DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001270endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001271DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001272
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001273install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001274
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001275$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001276 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001277 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001278
Misha Brukmanef5dc702009-01-08 02:11:55 +00001279uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001280 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001281 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001282endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001283endif
1284
Reid Spencer3a561f52004-10-23 20:04:14 +00001285#---------------------------------------------------------
1286# Bytecode Library Targets:
1287# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001288# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001289# targets for building them.
1290#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001291ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001292ifeq ($(strip $(LLVMCC)),)
1293$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001294else
Reid Spencer4d71b662004-10-22 21:01:56 +00001295
Reid Spencer9a2f1372004-12-02 09:28:21 +00001296all-local:: $(LibName.BCA)
1297
1298ifdef EXPORTED_SYMBOL_FILE
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001299BCLinkLib = $(LLVMLINK) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001300
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001301$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001302 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001303 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1304 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001305 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001306 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001307 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001308else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001309$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001310 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001311 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001312 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001313 $(Verb) $(LArchive) $@ $(ObjectsBC)
1314
Reid Spencer4d71b662004-10-22 21:01:56 +00001315endif
1316
Reid Spencer3a561f52004-10-23 20:04:14 +00001317clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001318ifneq ($(strip $(LibName.BCA)),)
1319 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001320endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001321
Reid Spencer8f094f32004-12-13 07:28:21 +00001322ifdef BYTECODE_DESTINATION
1323BytecodeDestDir := $(BYTECODE_DESTINATION)
1324else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001325BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001326endif
1327
Daniel Dunbard62031e2009-05-12 05:35:40 +00001328DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001329
Reid Spencer44cb1b32004-12-03 20:08:48 +00001330install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001331
Reid Spencera2a31bf2007-02-06 18:53:14 +00001332ifdef NO_INSTALL
1333install-local::
1334 $(Echo) Install circumvented with NO_INSTALL
1335uninstall-local::
1336 $(Echo) Uninstall circumvented with NO_INSTALL
1337else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001338install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001339
Mike Stumpb445d742009-02-12 23:45:11 +00001340$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001341 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001342 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001343
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001344uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001345 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001346 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001347endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001348endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001349endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001350
Reid Spencercc2d1e22004-10-30 09:19:36 +00001351#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001352# Library Targets:
1353# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1354# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001355#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001356ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001357ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001358ifndef LOADABLE_MODULE
1359BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001360endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001361endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001362endif
Chris Lattner760da062003-03-14 20:25:22 +00001363
Reid Spencercc2d1e22004-10-30 09:19:36 +00001364#---------------------------------------------------------
1365# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001366# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001367# then we provide targets for building them.
1368#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001369ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001370
Reid Spencercc2d1e22004-10-30 09:19:36 +00001371all-local:: $(LibName.A)
1372
Reid Spencerf2ac1892004-12-16 07:36:08 +00001373$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001374 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001375 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001376 $(Verb) $(Archive) $@ $(ObjectsO)
1377 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001378
Reid Spencer3a561f52004-10-23 20:04:14 +00001379clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001380ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001381 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001382endif
1383
Reid Spencera2a31bf2007-02-06 18:53:14 +00001384ifdef NO_INSTALL
1385install-local::
1386 $(Echo) Install circumvented with NO_INSTALL
1387uninstall-local::
1388 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001389else
1390ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001391install-local::
1392 $(Echo) Install circumvented with NO_INSTALL
1393uninstall-local::
1394 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001395else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001396DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001397
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001398install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001399
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001400$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001401 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001402 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001403 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001404
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001405uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001406 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001407 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001408endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001409endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001410endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001411
1412# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001413endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001414
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001415###############################################################################
1416# Tool Build Rules: Build executable tool based on TOOLNAME option
1417###############################################################################
1418
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001419ifdef TOOLNAME
1420
Reid Spencercc2d1e22004-10-30 09:19:36 +00001421#---------------------------------------------------------
1422# Set up variables for building a tool.
1423#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001424TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001425ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001426ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001427else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001428ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1429endif
1430
1431# TOOLALIAS is a name to symlink (or copy) the tool to.
1432ifdef TOOLALIAS
1433ifdef EXAMPLE_TOOL
1434ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1435else
1436ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1437endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001438endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001439
Reid Spencercc2d1e22004-10-30 09:19:36 +00001440#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001441# Prune Exports
1442#---------------------------------------------------------
1443
1444# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1445# not exporting all of the weak symbols from the binary. This reduces dyld
1446# startup time by 4x on darwin in some cases.
1447ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001448ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001449
1450# Tiger tools don't support this.
1451ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001452LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001453endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001454endif
Chris Lattner61863a32009-02-26 17:47:49 +00001455
Sylvestre Ledruba62f2f2013-07-01 08:07:52 +00001456ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD GNU/kFreeBSD GNU))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001457ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001458 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001459endif
1460endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001461endif
Chris Lattner61863a32009-02-26 17:47:49 +00001462
Devang Patel83be4512010-07-15 20:57:09 +00001463#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001464# Tool Order File Support
1465#---------------------------------------------------------
1466
1467ifeq ($(HOST_OS),Darwin)
Daniel Dunbarade490a2011-06-28 22:30:17 +00001468ifdef TOOL_ORDER_FILE
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001469
1470LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1471
1472endif
1473endif
1474
1475#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001476# Tool Version Info Support
1477#---------------------------------------------------------
1478
1479ifeq ($(HOST_OS),Darwin)
1480ifdef TOOL_INFO_PLIST
1481
1482LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1483
1484$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1485
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001486$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001487 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1488 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1489 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1490 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1491 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1492 $< > $@
1493
1494endif
1495endif
Chris Lattner61863a32009-02-26 17:47:49 +00001496
1497#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001498# Provide targets for building the tools
1499#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001500all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001501
Reid Spencer3a561f52004-10-23 20:04:14 +00001502clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001503ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001504 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001505endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001506ifneq ($(strip $(ToolAliasBuildPath)),)
1507 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1508endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001509
Reid Spencer815cbcf2004-11-18 10:03:46 +00001510ifdef EXAMPLE_TOOL
1511$(ToolBuildPath): $(ExmplDir)/.dir
1512else
1513$(ToolBuildPath): $(ToolDir)/.dir
1514endif
1515
Daniel Dunbar95669052012-03-06 19:07:38 +00001516ifdef CODESIGN_TOOLS
Filipe Cabecinhasaa271612013-04-25 01:17:54 +00001517TOOL_CODESIGN_IDENTITY ?= -
1518
Chris Lattnera7868af2006-09-04 06:39:52 +00001519$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001520 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001521 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001522 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001523 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001524 $(StripWarnMsg)
Daniel Dunbar95669052012-03-06 19:07:38 +00001525 $(Echo) ======= Code-Signing $(BuildMode) Executable $(TOOLNAME)
Filipe Cabecinhasaa271612013-04-25 01:17:54 +00001526 $(Verb) codesign -s $(TOOL_CODESIGN_IDENTITY) $@
Daniel Dunbar95669052012-03-06 19:07:38 +00001527else
1528$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1529 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1530 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1531 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1532 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1533 $(StripWarnMsg)
1534endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001535
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001536ifneq ($(strip $(ToolAliasBuildPath)),)
1537$(ToolAliasBuildPath): $(ToolBuildPath)
1538 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1539 $(Verb) $(RM) -f $(ToolAliasBuildPath)
Jordan Rose81be6bf2012-10-04 00:47:59 +00001540 $(Verb) $(AliasTool) $(notdir $(ToolBuildPath)) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001541 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001542 $(StripWarnMsg)
1543endif
1544
Reid Spencera2a31bf2007-02-06 18:53:14 +00001545ifdef NO_INSTALL
1546install-local::
1547 $(Echo) Install circumvented with NO_INSTALL
1548uninstall-local::
1549 $(Echo) Uninstall circumvented with NO_INSTALL
1550else
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001551
1552ifdef INTERNAL_TOOL
1553ToolBinDir = $(DESTDIR)$(PROJ_internal_prefix)/bin
1554else
1555ToolBinDir = $(DESTDIR)$(PROJ_bindir)
1556endif
Jordan Rose92080522012-10-01 18:40:32 +00001557DestTool = $(ToolBinDir)/$(program_prefix)$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001558
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001559install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001560
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001561$(DestTool): $(ToolBuildPath)
Reid Spencer9af3b292004-11-01 07:50:27 +00001562 $(Echo) Installing $(BuildMode) $(DestTool)
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001563 $(Verb) $(MKDIR) $(ToolBinDir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001564 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001565
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001566uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001567 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001568 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001569
1570# TOOLALIAS install.
1571ifdef TOOLALIAS
Jordan Rose92080522012-10-01 18:40:32 +00001572DestToolAlias = $(ToolBinDir)/$(program_prefix)$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001573
1574install-local:: $(DestToolAlias)
1575
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001576$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001577 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1578 $(Verb) $(RM) -f $(DestToolAlias)
Jordan Rose81be6bf2012-10-04 00:47:59 +00001579 $(Verb) $(AliasTool) $(notdir $(DestTool)) $(DestToolAlias)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001580
1581uninstall-local::
1582 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1583 -$(Verb) $(RM) -f $(DestToolAlias)
1584endif
1585
Reid Spencera2a31bf2007-02-06 18:53:14 +00001586endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001587endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001588
Reid Spencercc2d1e22004-10-30 09:19:36 +00001589###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001590# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001591###############################################################################
1592
Duraid Madina197ab872006-02-15 03:23:26 +00001593# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001594ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001595 DISABLE_AUTO_DEPENDENCIES=1
1596endif
1597
Reid Spencercc2d1e22004-10-30 09:19:36 +00001598# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001599ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001600
Reid Spencercc2d1e22004-10-30 09:19:36 +00001601#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001602# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001603#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001604
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001605DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001606 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001607
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001608# If the build succeeded, move the dependency file over, otherwise
1609# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001610DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1611 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1612
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001613$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001614 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001615 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001616 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001617
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001618$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001619 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1620 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1621 $(DEPEND_MOVEFILE)
1622
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001623$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001624 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001625 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001626 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001627
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001628$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001629 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001630 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001631 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001632
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001633$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001634 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1635 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1636 $(DEPEND_MOVEFILE)
1637
Reid Spencercc2d1e22004-10-30 09:19:36 +00001638#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001639# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001640#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001641
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001642BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1643 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1644
1645# If the build succeeded, move the dependency file over, otherwise
1646# remove it.
1647BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1648 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1649
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001650$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001651 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001652 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001653 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001654 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001655
Greg Clayton43bc79a2010-07-13 18:47:09 +00001656$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1657 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1658 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001659 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001660 $(BC_DEPEND_MOVEFILE)
1661
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001662$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001663 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001664 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001665 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001666 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001667
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001668$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001669 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001670 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001671 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001672 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001673
Greg Clayton43bc79a2010-07-13 18:47:09 +00001674$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1675 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1676 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001677 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001678 $(BC_DEPEND_MOVEFILE)
1679
Reid Spencercc2d1e22004-10-30 09:19:36 +00001680# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001681else
1682
Nick Lewyckya15dc032009-02-26 07:44:16 +00001683$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001684 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001685 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001686
Greg Clayton43bc79a2010-07-13 18:47:09 +00001687$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1688 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1689 $(Compile.CXX) $< -o $@
1690
Nick Lewyckya15dc032009-02-26 07:44:16 +00001691$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001692 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001693 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001694
Nick Lewyckya15dc032009-02-26 07:44:16 +00001695$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001696 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001697 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001698
Greg Clayton43bc79a2010-07-13 18:47:09 +00001699$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1700 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1701 $(Compile.C) $< -o $@
1702
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001703$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001704 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001705 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Reid Spencer4d71b662004-10-22 21:01:56 +00001706
Greg Clayton43bc79a2010-07-13 18:47:09 +00001707$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1708 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001709 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001710
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001711$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001712 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001713 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001714
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001715$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001716 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001717 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Brian Gaeke44909cf2003-12-10 00:26:28 +00001718
Greg Clayton43bc79a2010-07-13 18:47:09 +00001719$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1720 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001721 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001722
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001723endif
1724
Chris Lattner8eb12de2006-06-21 21:01:20 +00001725
1726## Rules for building preprocessed (.i/.ii) outputs.
1727$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1728 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1729 $(Verb) $(Preprocess.CXX) $< -o $@
1730
Greg Clayton43bc79a2010-07-13 18:47:09 +00001731$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1732 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1733 $(Verb) $(Preprocess.CXX) $< -o $@
1734
Chris Lattner8eb12de2006-06-21 21:01:20 +00001735$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1736 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1737 $(Verb) $(Preprocess.CXX) $< -o $@
1738
Reid Spencer44136722006-12-10 04:56:38 +00001739$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001740 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1741 $(Verb) $(Preprocess.C) $< -o $@
1742
Greg Clayton43bc79a2010-07-13 18:47:09 +00001743$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1744 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1745 $(Verb) $(Preprocess.C) $< -o $@
1746
Chris Lattner8eb12de2006-06-21 21:01:20 +00001747
1748$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1749 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001750 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001751
Greg Clayton43bc79a2010-07-13 18:47:09 +00001752$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1753 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1754 $(Compile.CXX) $< -o $@ -S
1755
Chris Lattner8eb12de2006-06-21 21:01:20 +00001756$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1757 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001758 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001759
1760$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1761 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001762 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001763
Greg Clayton43bc79a2010-07-13 18:47:09 +00001764$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1765 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1766 $(Compile.C) $< -o $@ -S
1767
Reid Spencer8b2e1412006-11-17 03:32:33 +00001768
Chris Lattner89681112006-01-27 22:13:12 +00001769# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001770ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001771$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001772 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001773 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001774else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001775$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001776 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001777 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001778endif
1779
Chris Lattner89681112006-01-27 22:13:12 +00001780
Reid Spencercc2d1e22004-10-30 09:19:36 +00001781#---------------------------------------------------------
1782# Provide rule to build .bc files from .ll sources,
1783# regardless of dependencies
1784#---------------------------------------------------------
1785$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001786 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001787 $(Verb) $(LLVMAS) $< -f -o $@
1788
1789###############################################################################
1790# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1791###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001792
Reid Spencer4d71b662004-10-22 21:01:56 +00001793ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001794TABLEGEN_INC_FILES_COMMON = 1
1795endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001796
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001797ifdef TABLEGEN_INC_FILES_COMMON
1798
Reid Spencercc2d1e22004-10-30 09:19:36 +00001799INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001800INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1801.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001802
Misha Brukmanef5dc702009-01-08 02:11:55 +00001803# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001804# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1805# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001806# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001807# dependencies of the .inc files are, unless the contents of the .inc file
1808# changes.
1809$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001810 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001811
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001812endif # TABLEGEN_INC_FILES_COMMON
1813
1814ifdef TARGET
1815
1816TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1817 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1818 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1819 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1820 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1821 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
Chandler Carruth0b8c9a82013-01-02 11:36:10 +00001822 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/IR/Intrinsics*.td)
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001823
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001824# All .inc.tmp files depend on the .td files.
1825$(INCTMPFiles) : $(TDFiles)
Rafael Espindola075630a2009-03-10 17:58:54 +00001826
Chris Lattner3c473472004-12-16 17:28:50 +00001827$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001828$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001829 $(Echo) "Building $(<F) register info implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001830 $(Verb) $(LLVMTableGen) -gen-register-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001831
Chris Lattner3c473472004-12-16 17:28:50 +00001832$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001833$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001834 $(Echo) "Building $(<F) instruction information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001835 $(Verb) $(LLVMTableGen) -gen-instr-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001836
Chris Lattner3c473472004-12-16 17:28:50 +00001837$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001838$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001839 $(Echo) "Building $(<F) assembly writer with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001840 $(Verb) $(LLVMTableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001841
Chris Lattner02a4f902004-12-16 17:34:04 +00001842$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001843$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattner02a4f902004-12-16 17:34:04 +00001844 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001845 $(Verb) $(LLVMTableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001846
Daniel Dunbarc464e512009-07-13 18:35:35 +00001847$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001848$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarc464e512009-07-13 18:35:35 +00001849 $(Echo) "Building $(<F) assembly matcher with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001850 $(Verb) $(LLVMTableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
Daniel Dunbarc464e512009-07-13 18:35:35 +00001851
Jim Grosbachbd29a362010-11-03 23:46:01 +00001852$(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001853$(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbachbd29a362010-11-03 23:46:01 +00001854 $(Echo) "Building $(<F) MC code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001855 $(Verb) $(LLVMTableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
Jim Grosbachbd29a362010-11-03 23:46:01 +00001856
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001857$(TARGET:%=$(ObjDir)/%GenMCPseudoLowering.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001858$(ObjDir)/%GenMCPseudoLowering.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001859 $(Echo) "Building $(<F) MC Pseudo instruction expander with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001860 $(Verb) $(LLVMTableGen) -gen-pseudo-lowering -o $(call SYSPATH, $@) $<
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001861
Chris Lattner3c473472004-12-16 17:28:50 +00001862$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001863$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001864 $(Echo) "Building $(<F) code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001865 $(Verb) $(LLVMTableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001866
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001867$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001868$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001869 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001870 $(Verb) $(LLVMTableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001871
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001872$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001873$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001874 $(Echo) "Building $(<F) disassembly tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001875 $(Verb) $(LLVMTableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001876
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001877$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001878$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001879 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001880 $(Verb) $(LLVMTableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001881
Evan Cheng385e9302011-07-01 22:36:09 +00001882$(TARGET:%=$(ObjDir)/%GenSubtargetInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001883$(ObjDir)/%GenSubtargetInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001884 $(Echo) "Building $(<F) subtarget information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001885 $(Verb) $(LLVMTableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001886
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001887$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001888$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001889 $(Echo) "Building $(<F) calling convention information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001890 $(Verb) $(LLVMTableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001891
Dale Johannesen49de9822009-02-05 01:49:45 +00001892$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001893$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001894 $(Echo) "Building $(<F) intrinsics information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001895 $(Verb) $(LLVMTableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
Dale Johannesen49de9822009-02-05 01:49:45 +00001896
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001897$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001898 $(Echo) "Building $(<F) decoder tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001899 $(Verb) $(LLVMTableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001900
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +00001901$(ObjDir)/%GenDFAPacketizer.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1902 $(Echo) "Building $(<F) DFA packetizer tables with tblgen"
1903 $(Verb) $(LLVMTableGen) -gen-dfa-packetizer -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001904
Reid Spencer3a561f52004-10-23 20:04:14 +00001905clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001906 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001907
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001908endif # TARGET
1909
Reid Spencercc2d1e22004-10-30 09:19:36 +00001910###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001911# OTHER RULES: Other rules needed
1912###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001913
Chris Lattner30440c62003-01-16 21:06:18 +00001914# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001915ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001916%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001917 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001918else
1919%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001920 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001921endif
Chris Lattner30440c62003-01-16 21:06:18 +00001922
John Criswell7f336952003-09-06 14:44:17 +00001923# This rules ensures that header files that are removed still have a rule for
1924# which they can be "generated." This allows make to ignore them and
1925# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001926%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001927%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001928
Reid Spencercc2d1e22004-10-30 09:19:36 +00001929# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001930# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001931# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001932clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001933ifneq ($(strip $(ObjRootDir)),)
1934 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001935endif
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001936ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001937 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001938endif
John Criswell7a73b802003-06-30 21:59:07 +00001939
Reid Spencer3d659492004-11-02 16:36:03 +00001940clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001941 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001942
Reid Spencer12d79512004-11-12 02:27:36 +00001943
Reid Spencer3a561f52004-10-23 20:04:14 +00001944###############################################################################
1945# DEPENDENCIES: Include the dependency files if we should
1946###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001947ifndef DISABLE_AUTO_DEPENDENCIES
1948
Reid Spencer3a561f52004-10-23 20:04:14 +00001949# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001950ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001951
Reid Spencer3a561f52004-10-23 20:04:14 +00001952# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001953DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001954DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1955
1956# Include bitcode dependency files if using bitcode libraries
1957ifdef BYTECODE_LIBRARY
1958DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1959endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001960
Reid Spencer491a6cd2007-07-23 08:20:46 +00001961-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001962
John Criswelld741bcf2003-08-12 18:51:51 +00001963endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001964
Misha Brukmanef5dc702009-01-08 02:11:55 +00001965endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001966
Reid Spencer151f8ba2004-10-25 08:27:37 +00001967###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001968# CHECK: Running the test suite
1969###############################################################################
1970
Eric Christopher376e05f2013-04-09 19:42:12 +00001971check:: all
Reid Spencer11fde542005-01-16 02:20:54 +00001972 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1973 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001974 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001975 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001976 TESTSUITE=$(TESTSUITE) ; \
1977 else \
1978 $(EchoCmd) No Makefile in test directory ; \
1979 fi ; \
1980 else \
1981 $(EchoCmd) No test directory ; \
1982 fi
1983
Chandler Carruthc1a0af12012-06-28 00:03:13 +00001984# An alias dating from when both lit and DejaGNU test runners were used.
Daniel Dunbar666b4022010-08-02 00:05:18 +00001985check-lit:: check
1986
Daniel Dunbar34185792009-09-20 06:17:21 +00001987check-all::
1988 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1989 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1990 $(EchoCmd) Running test suite ; \
1991 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1992 else \
1993 $(EchoCmd) No Makefile in test directory ; \
1994 fi ; \
1995 else \
1996 $(EchoCmd) No test directory ; \
1997 fi
1998
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001999###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00002000# UNITTESTS: Running the unittests test suite
2001###############################################################################
2002
Bill Wendling29c0e3d2009-04-09 18:26:57 +00002003unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00002004 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
2005 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
2006 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00002007 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00002008 else \
2009 $(EchoCmd) No Makefile in unittests directory ; \
2010 fi ; \
2011 else \
2012 $(EchoCmd) No unittests directory ; \
2013 fi
2014
2015###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00002016# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00002017###############################################################################
2018
Reid Spencere45ebfa2004-10-26 07:09:33 +00002019#------------------------------------------------------------------------
2020# Define distribution related variables
2021#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002022DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
2023DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2024TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2025DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
2026DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
2027DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00002028DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
2029 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002030 Makefile.config.in configure autoconf
2031DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00002032 $(PROJ_SRC_DIR)/*.h \
2033 $(PROJ_SRC_DIR)/*.td \
2034 $(PROJ_SRC_DIR)/*.def \
2035 $(PROJ_SRC_DIR)/*.ll \
2036 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00002037DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00002038DistSources = $(Sources) $(EXTRA_DIST)
2039DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00002040
Reid Spencere45ebfa2004-10-26 07:09:33 +00002041#------------------------------------------------------------------------
2042# We MUST build distribution with OBJ_DIR != SRC_DIR
2043#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002044ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00002045dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002046 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00002047
Reid Spencere45ebfa2004-10-26 07:09:33 +00002048else
2049
Reid Spencere45ebfa2004-10-26 07:09:33 +00002050#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00002051# Prevent attempt to run dist targets from anywhere but the top level
2052#------------------------------------------------------------------------
2053ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002054dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00002055 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002056else
2057
2058#------------------------------------------------------------------------
2059# Provide the top level targets
2060#------------------------------------------------------------------------
2061
Reid Spencercc2d1e22004-10-30 09:19:36 +00002062dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002063
Reid Spencer345235ca2004-12-04 22:34:09 +00002064$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002065 $(Echo) Packing gzipped 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 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00002068
Reid Spencercc2d1e22004-10-30 09:19:36 +00002069dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002070
Reid Spencer345235ca2004-12-04 22:34:09 +00002071$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002072 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002073 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002074 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002075
Reid Spencercc2d1e22004-10-30 09:19:36 +00002076dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002077
Reid Spencer345235ca2004-12-04 22:34:09 +00002078$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002079 $(Echo) Packing zipped distribution file.
2080 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00002081 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002082
Misha Brukmanef5dc702009-01-08 02:11:55 +00002083dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002084 $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002085
Reid Spencerf8f57402005-01-28 19:52:32 +00002086DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00002087
Reid Spencer345235ca2004-12-04 22:34:09 +00002088dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002089 $(Echo) Checking distribution tar file.
2090 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002091 $(RM) -rf $(DistCheckDir) ; \
2092 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00002093 $(Verb) $(MKDIR) $(DistCheckDir)
2094 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002095 $(MKDIR) $(DistCheckDir)/build && \
2096 $(MKDIR) $(DistCheckDir)/install && \
2097 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2098 cd build && \
2099 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00002100 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00002101 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002102 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00002103 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002104 $(MAKE) install && \
2105 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002106 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002107 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002108
2109dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002110 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002111 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2112 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002113
2114endif
2115
2116#------------------------------------------------------------------------
2117# Provide the recursive distdir target for building the distribution directory
2118#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002119distdir: $(DistDir)/.makedistdir
2120$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002121 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002122 if test -d "$(DistDir)" ; then \
2123 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2124 exit 1 ; \
2125 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002126 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002127 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002128 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002129 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002130 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002131 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002132 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002133 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2134 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002135 for file in $(DistFiles) ; do \
2136 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002137 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002138 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2139 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002140 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002141 file=`echo "$$file" | \
2142 sed "s#^$$srcrootstrip/##"` \
2143 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002144 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002145 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2146 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2147 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002148 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002149 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002150 fi ; \
2151 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002152 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2153 to_dir="$(DistDir)/$$dir"; \
2154 $(MKDIR) "$$to_dir" ; \
2155 else \
2156 to_dir="$(DistDir)"; \
2157 fi; \
2158 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2159 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002160 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002161 fi ; \
2162 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002163 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2164 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002165 cd $(PROJ_SRC_DIR) ; \
2166 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2167 ( cd $$to_dir ; $(TAR) xf - ) ; \
2168 cd $(PROJ_OBJ_DIR) ; \
2169 else \
2170 cd $$from_dir ; \
2171 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2172 ( cd $$to_dir ; $(TAR) xf - ) ; \
2173 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002174 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002175 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002176 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002177 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002178 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002179 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002180 $(EchoCmd) "===== WARNING: Distribution Source " \
2181 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002182 elif test "$(Verb)" != '@' ; then \
2183 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002184 fi; \
2185 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002186 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002187 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002188 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002189 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002190 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002191 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002192 fi; \
2193 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002194 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002195 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002196 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2197 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002198 $(MAKE) dist-hook ; \
2199 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2200 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2201 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2202 -o ! -type d ! -perm -444 -exec \
2203 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2204 || chmod -R a+r $(DistDir) ; \
2205 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002206
Reid Spencercc2d1e22004-10-30 09:19:36 +00002207# This is invoked by distdir target, define it as a no-op to avoid errors if not
2208# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002209dist-hook::
2210
Reid Spencere53e3972004-10-22 23:06:30 +00002211endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002212
2213###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002214# TOP LEVEL - targets only to apply at the top level directory
2215###############################################################################
2216
2217ifeq ($(LEVEL),.)
2218
2219#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002220# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002221#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002222ifdef NO_INSTALL
2223install-local::
2224 $(Echo) Install circumvented with NO_INSTALL
2225uninstall-local::
2226 $(Echo) Uninstall circumvented with NO_INSTALL
2227else
Reid Spencere5487ba2004-10-24 07:53:21 +00002228install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002229 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002230 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002231 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002232 cd $(PROJ_SRC_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002233 for hdr in `find . -type f \
2234 '(' -name LICENSE.TXT \
2235 -o -name '*.def' \
2236 -o -name '*.h' \
2237 -o -name '*.inc' \
2238 -o -name '*.td' \
2239 ')' -print | grep -v CVS | \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002240 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002241 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002242 if test \! -d "$$instdir" ; then \
2243 $(EchoCmd) Making install directory $$instdir ; \
2244 $(MKDIR) $$instdir ;\
2245 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002246 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002247 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002248 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002249ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002250 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002251 cd $(PROJ_OBJ_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002252 for hdr in `find . -type f \
2253 '(' -name LICENSE.TXT \
2254 -o -name '*.def' \
2255 -o -name '*.h' \
2256 -o -name '*.inc' \
2257 -o -name '*.td' \
2258 ')' -print | grep -v CVS | \
2259 grep -v .svn` ; do \
2260 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2261 if test \! -d "$$instdir" ; then \
2262 $(EchoCmd) Making install directory $$instdir ; \
2263 $(MKDIR) $$instdir ;\
2264 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002265 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002266 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002267 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002268endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002269
2270uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002271 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002272 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2273 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002274 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002275 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002276 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002277 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002278 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002279 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002280 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002281 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002282endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002283endif
2284
Chris Lattner03840ac2007-04-14 23:35:45 +00002285check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002286 @echo searching for overlength lines in files: $(Sources)
2287 @echo
2288 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002289 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002290
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002291check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002292 @echo searching for tabs in files: $(Sources)
2293 @echo
2294 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002295 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002296
Reid Spencer6548bf12007-05-02 21:29:39 +00002297check-footprint:
2298 @ls -l $(LibDir) | awk '\
2299 BEGIN { sum = 0; } \
2300 { sum += $$5; } \
2301 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2302 @ls -l $(ToolDir) | awk '\
2303 BEGIN { sum = 0; } \
2304 { sum += $$5; } \
2305 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002306#------------------------------------------------------------------------
2307# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002308#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002309printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002310 $(Echo) "BuildMode : " '$(BuildMode)'
2311 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2312 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2313 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2314 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2315 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2316 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2317 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
Bob Wilsonae7e2a42011-11-28 07:59:52 +00002318 $(Echo) "PROJ_internal_prefix : " '$(PROJ_internal_prefix)'
Reid Spencer11fde542005-01-16 02:20:54 +00002319 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2320 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2321 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002322 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002323 $(Echo) "UserTargets : " '$(UserTargets)'
2324 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2325 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2326 $(Echo) "ObjDir : " '$(ObjDir)'
2327 $(Echo) "LibDir : " '$(LibDir)'
2328 $(Echo) "ToolDir : " '$(ToolDir)'
2329 $(Echo) "ExmplDir : " '$(ExmplDir)'
2330 $(Echo) "Sources : " '$(Sources)'
2331 $(Echo) "TDFiles : " '$(TDFiles)'
2332 $(Echo) "INCFiles : " '$(INCFiles)'
2333 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002334 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002335 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2336 $(Echo) "Compile.C : " '$(Compile.C)'
2337 $(Echo) "Archive : " '$(Archive)'
2338 $(Echo) "YaccFiles : " '$(YaccFiles)'
2339 $(Echo) "LexFiles : " '$(LexFiles)'
2340 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002341 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002342 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002343 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2344 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002345
2346###
2347# Debugging
2348
Daniel Dunbar3c898122009-03-06 22:23:25 +00002349# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002350# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002351make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002352 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))