blob: 9cc6a2d927c92eb173f4d81cbec915e7403a0c49 [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)
278 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000279 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000280 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000281 endif
282
David Greenedbefd0c2009-04-17 14:49:22 +0000283 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
284 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
285 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000286 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000287 BuildMode := $(BuildMode)+Debug
288 CXX.Flags += -g
289 C.Flags += -g
290 LD.Flags += -g
291 KEEP_SYMBOLS := 1
292 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000293else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000294 ifdef NO_DEBUG_SYMBOLS
295 BuildMode := Unoptimized
296 CXX.Flags +=
297 C.Flags +=
298 LD.Flags +=
299 KEEP_SYMBOLS := 1
300 else
301 BuildMode := Debug
302 CXX.Flags += -g
303 C.Flags += -g
304 LD.Flags += -g
305 KEEP_SYMBOLS := 1
306 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000307endif
308
Eric Christopherbee515f2011-11-11 22:51:42 +0000309ifeq ($(ENABLE_LIBCPP),1)
310 CXX.Flags += -stdlib=libc++
311 LD.Flags += -stdlib=libc++
312endif
Chris Lattner16969802011-11-10 21:12:28 +0000313
Eric Christopher82120022012-08-03 19:47:14 +0000314ifeq ($(ENABLE_CXX11),1)
315 CXX.Flags += -std=c++11
316endif
317
Eric Christopher09a88732012-08-03 19:58:20 +0000318ifeq ($(ENABLE_WERROR),1)
319 CXX.Flags += -Werror
320 C.Flags += -Werror
321endif
322
David Greenedbefd0c2009-04-17 14:49:22 +0000323ifeq ($(ENABLE_PROFILING),1)
324 BuildMode := $(BuildMode)+Profile
325 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
326 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
327 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
328 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000329endif
330
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000331ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000332 CXX.Flags += -fvisibility-inlines-hidden
333endif
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000334
Chris Lattnerc96d5082010-01-24 20:20:40 +0000335ifdef ENABLE_EXPENSIVE_CHECKS
336 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
337 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
338 REQUIRES_RTTI := 1
339endif
340
Reid Spencer99655e12006-08-25 19:54:53 +0000341# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000342ifndef REQUIRES_EH
343 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000344else
345 # If the library requires EH, it also requires RTTI.
346 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000347endif
Reid Spencer99655e12006-08-25 19:54:53 +0000348
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000349ifdef REQUIRES_FRAME_POINTER
350 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
351 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
352 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
353endif
354
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000355# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000356ifneq ($(REQUIRES_RTTI), 1)
357 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000358endif
359
Peter Collingbourneed50d382010-10-22 12:54:34 +0000360ifeq ($(ENABLE_COVERAGE),1)
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000361 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000362 CXX.Flags += -ftest-coverage -fprofile-arcs
363 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000364endif
365
Reid Spencer854071c2006-04-10 16:46:04 +0000366# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
367# then disable assertions by defining the appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000368ifeq ($(DISABLE_ASSERTIONS),1)
369 CPP.Defines += -DNDEBUG
370else
Duncan Sands8246adc2010-07-07 07:48:00 +0000371 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000372 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000373endif
374
Misha Brukmanef5dc702009-01-08 02:11:55 +0000375# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
376# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000377# appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000378ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
David Greenea696d242007-06-28 19:36:08 +0000379 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000380 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000381endif
382
Nick Lewyckya15dc032009-02-26 07:44:16 +0000383# LOADABLE_MODULE implies several other things so we force them to be
384# defined/on.
385ifdef LOADABLE_MODULE
386 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000387 LINK_LIBS_IN_SHARED := 1
388endif
389
390ifdef SHARED_LIBRARY
391 ENABLE_PIC := 1
392 PIC_FLAG = "(PIC)"
393endif
394
Reid Spencer89b0d992006-12-16 22:07:52 +0000395ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000396 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000397 # Nothing. Win32 defaults to PIC and warns when given -fPIC
398 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000399 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000400 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000401 CXX.Flags += -fno-common
402 C.Flags += -fno-common
403 else
404 # Linux and others; pass -fPIC
405 CXX.Flags += -fPIC
406 C.Flags += -fPIC
407 endif
408 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000409else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000410 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000411 CXX.Flags += -mdynamic-no-pic
412 C.Flags += -mdynamic-no-pic
413 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000414endif
415
Daniel Dunbardd464df2010-05-10 20:11:56 +0000416# Support makefile variable to disable any kind of timestamp/non-deterministic
417# info from being used in the build.
418ifeq ($(ENABLE_TIMESTAMPS),1)
419 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
420else
421 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
422endif
423
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000424ifeq ($(HOST_OS),MingW)
425 # Work around PR4957
426 CPP.Defines += -D__NO_CTYPE_INLINE
427 ifeq ($(LLVM_CROSS_COMPILING),1)
428 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
429 ifdef TOOLNAME
430 LD.Flags += -Wl,--allow-multiple-definition
431 endif
432 endif
433endif
434
Chris Lattner1bdedb92011-04-09 06:01:28 +0000435CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000436CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000437AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000438
Chris Lattner16620fc2006-07-27 18:19:51 +0000439# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000440ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000441 CXX.Flags += -mieee
442 CPP.BaseFlags += -mieee
443ifeq ($(ENABLE_PIC),0)
444 CXX.Flags += -fPIC
445 CPP.BaseFlags += -fPIC
446endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000447
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000448 LD.Flags += -Wl,--no-relax
449endif
450
NAKAMURA Takumib9dec1f2010-11-26 09:32:02 +0000451# GNU ld/PECOFF accepts but ignores them below;
452# --version-script
453# --export-dynamic
454# --rpath
455# FIXME: autoconf should be aware of them.
456ifneq (,$(filter $(HOST_OS),Cygwin MingW))
457 HAVE_LINK_VERSION_SCRIPT := 0
458 RPATH :=
459 RDYNAMIC := -Wl,--export-all-symbols
460endif
461
Reid Spencer3a561f52004-10-23 20:04:14 +0000462#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000463# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000464#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000465TargetMode :=
466ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000467 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000468endif
469
470ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000471ObjDir := $(ObjRootDir)
472LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
473ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
474ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
475LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
476LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
477LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000478
Reid Spencer3a561f52004-10-23 20:04:14 +0000479#--------------------------------------------------------------------
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000480# Locations of shared libraries
481#--------------------------------------------------------------------
482
483SharedPrefix := lib
484SharedLibDir := $(LibDir)
485LLVMSharedLibDir := $(LLVMLibDir)
486
487# Win32.DLL prefers to be located on the "PATH" of binaries.
488ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
489 SharedLibDir := $(ToolDir)
490 LLVMSharedLibDir := $(LLVMToolDir)
491
492 ifeq ($(HOST_OS),Cygwin)
493 SharedPrefix := cyg
494 else
495 SharedPrefix :=
496 endif
497endif
498
499#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000500# LLVM Capable Compiler
501#--------------------------------------------------------------------
502
Chris Lattner70d77002011-04-09 19:53:16 +0000503ifneq ($(findstring llvm-gcc,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000504 LLVMCC := $(LLVMGCC)
505 LLVMCXX := $(LLVMGXX)
506else
Chris Lattner70d77002011-04-09 19:53:16 +0000507 ifneq ($(findstring clang,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000508 ifneq ($(CLANGPATH),)
509 LLVMCC := $(CLANGPATH)
510 LLVMCXX := $(CLANGXXPATH)
511 else
512 ifeq ($(ENABLE_BUILT_CLANG),1)
513 LLVMCC := $(LLVMToolDir)/clang
514 LLVMCXX := $(LLVMToolDir)/clang++
515 endif
516 endif
517 endif
518endif
519
520#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000521# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000522#--------------------------------------------------------------------
Daniel Dunbar01b825d2011-11-11 22:59:45 +0000523EchoCmd := $(ECHO) llvm[$(MAKELEVEL)]:
524ifdef BUILD_DIRS_ONLY
525EchoCmd := $(EchoCmd) "(build tools)":
526endif
527
528Echo := @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000529ifndef LLVMAS
530LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
531endif
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000532ifndef LLVM_TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000533 ifeq ($(LLVM_CROSS_COMPILING),1)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000534 LLVM_TBLGEN := $(BuildLLVMToolDir)/llvm-tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000535 else
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000536 LLVM_TBLGEN := $(LLVMToolDir)/llvm-tblgen$(EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000537 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000538endif
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000539ifeq ($(LLVM_CROSS_COMPILING),1)
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000540 LLVM_CONFIG := $(BuildLLVMToolDir)/llvm-config$(BUILD_EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000541else
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000542 LLVM_CONFIG := $(LLVMToolDir)/llvm-config$(EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000543endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000544ifndef LLVMDIS
Eric Christopher164a3082012-08-28 01:17:46 +0000545LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000546endif
547ifndef LLI
Eric Christopher164a3082012-08-28 01:17:46 +0000548LLI := $(LLVMToolDir)/lli$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000549endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000550ifndef LLC
Eric Christopher164a3082012-08-28 01:17:46 +0000551LLC := $(LLVMToolDir)/llc$(EXEEXT)
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000552endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000553ifndef LOPT
Eric Christopher164a3082012-08-28 01:17:46 +0000554LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000555endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000556ifndef LBUGPOINT
Eric Christopher164a3082012-08-28 01:17:46 +0000557LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000558endif
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +0000559ifndef LLVMLINK
Eric Christopher164a3082012-08-28 01:17:46 +0000560LLVMLINK := $(LLVMToolDir)/llvm-link$(EXEEXT)
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +0000561endif
Reid Spencere46687c2006-12-03 21:01:45 +0000562
Reid Spencer3a561f52004-10-23 20:04:14 +0000563#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000564# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000565#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000566
Anton Korobeynikove55db742009-08-18 00:40:33 +0000567ifeq ($(HOST_OS),Darwin)
Bob Wilsonf3ad95a2012-10-12 21:48:14 +0000568 ifdef MACOSX_DEPLOYMENT_TARGET
569 DARWIN_VERSION := $(MACOSX_DEPLOYMENT_TARGET)
570 else
Scott Michel87af5f02009-03-12 21:03:53 +0000571 DARWIN_VERSION := `sw_vers -productVersion`
Bob Wilsonf3ad95a2012-10-12 21:48:14 +0000572 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000573 # Strip a number like 10.4.7 to 10.4
574 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
575 # Get "4" out of 10.4 for later pieces in the makefile.
576 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000577
Daniel Dunbar7bc0f272010-12-08 01:48:05 +0000578 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
579 SharedLinkOptions := -dynamiclib
Bob Wilsoncdb0a582013-02-05 17:29:03 +0000580 ifdef DEPLOYMENT_TARGET
581 SharedLinkOptions += $(DEPLOYMENT_TARGET)
582 else
583 ifneq ($(ARCH),ARM)
584 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
585 endif
Evan Chenga5e225e2009-09-08 18:52:20 +0000586 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000587else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000588 SharedLinkOptions=-shared
Scott Michel87af5f02009-03-12 21:03:53 +0000589endif
590
Anton Korobeynikove55db742009-08-18 00:40:33 +0000591ifeq ($(TARGET_OS),Darwin)
Bob Wilsoncdb0a582013-02-05 17:29:03 +0000592 ifdef DEPLOYMENT_TARGET
593 TargetCommonOpts += $(DEPLOYMENT_TARGET)
594 else
595 ifneq ($(ARCH),ARM)
596 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
597 endif
Evan Chenga5e225e2009-09-08 18:52:20 +0000598 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000599endif
600
Reid Spencer492c2932005-01-11 04:31:07 +0000601ifdef SHARED_LIBRARY
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000602ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000603ifneq ($(HOST_OS),Darwin)
604 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
John Criswell82f4a5a2003-07-31 20:58:51 +0000605endif
Scott Michel87af5f02009-03-12 21:03:53 +0000606endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000607endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000608
Reid Spencercceed9f2004-11-08 17:32:12 +0000609ifdef TOOL_VERBOSE
610 C.Flags += -v
611 CXX.Flags += -v
612 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000613 VERBOSE := 1
614endif
615
Reid Spencer3a561f52004-10-23 20:04:14 +0000616# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000617ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000618 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000619 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000620 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000621else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000622 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000623endif
624
Vikram S. Advefeeae582002-09-18 11:55:13 +0000625# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000626ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000627 Strip := $(PLATFORMSTRIPOPTS)
628 StripWarnMsg := "(without symbols)"
Charles Davis13460c92011-10-26 02:28:32 +0000629 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000630endif
631
Rafael Espindola31552a92010-10-15 00:58:12 +0000632ifdef TOOL_NO_EXPORTS
633 DynamicFlags :=
634else
635 DynamicFlag := $(RDYNAMIC)
636endif
637
Reid Spencer3a561f52004-10-23 20:04:14 +0000638# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000639ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Bill Wendling0a031172012-10-05 00:22:46 +0000640 ifneq ($(HOST_OS), Darwin)
641 ifdef TOOLNAME
Rafael Espindola1529f0c2013-05-23 02:53:22 +0000642 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib' $(DynamicFlag)
Rafael Espindolab58484e2013-05-23 02:38:50 +0000643 endif
644 else
645 ifneq ($(DARWIN_MAJVERS),4)
646 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
647 endif
648 ifeq ($(RC_XBS),YES)
649 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
650 LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile)
Bill Wendling0a031172012-10-05 00:22:46 +0000651 endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000652 endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000653endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000654
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000655
Reid Spencer3a561f52004-10-23 20:04:14 +0000656#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000657# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000658#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000659
Daniel Dunbare2a91a72011-06-16 22:30:38 +0000660ifdef EXTRA_LD_OPTIONS
661LD.Flags += $(EXTRA_LD_OPTIONS)
662endif
663
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000664ifndef NO_PEDANTIC
Eric Christopherc6aa8342013-03-15 00:43:00 +0000665CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000666endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000667CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
David Greened2f82162013-01-09 22:11:13 +0000668 $(EXTRA_OPTIONS) $(COVERED_SWITCH_DEFAULT) \
David Greene9778d5c2013-01-18 23:22:52 +0000669 $(NO_UNINITIALIZED) $(NO_MAYBE_UNINITIALIZED) \
670 $(NO_MISSING_FIELD_INITIALIZERS)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000671# Enable cast-qual for C++; the workaround is to use const_cast.
Eric Christophere83a6f32013-05-14 21:52:01 +0000672CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000673
Anton Korobeynikove55db742009-08-18 00:40:33 +0000674ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000675 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000676endif
677
Chris Lattner73faa392006-05-30 16:38:06 +0000678# If we are building a universal binary on Mac OS/X, pass extra options. This
679# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000680# apps.
681#
682# The following can be optionally specified:
683# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
684# For Mac OS/X 10.4 Intel machines, the traditional one is:
685# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
686# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
687# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
688# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000689ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000690 ifndef UNIVERSAL_ARCH
691 UNIVERSAL_ARCH := i386 ppc
692 endif
693 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
694 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000695 ifdef UNIVERSAL_SDK_PATH
696 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000697 endif
698
699 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000700 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000701else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000702 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000703 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000704 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000705 else
706 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000707 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000708 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000709 endif
710 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000711endif
712
Anton Korobeynikove55db742009-08-18 00:40:33 +0000713ifeq ($(HOST_OS),SunOS)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000714CPP.BaseFlags += -include llvm/Support/Solaris.h
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000715endif
716
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000717ifeq ($(HOST_OS),AuroraUX)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000718CPP.BaseFlags += -include llvm/Support/Solaris.h
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000719endif # !HOST_OS - AuroraUX.
720
David Meyer107506f2012-02-18 10:03:19 +0000721# On Windows, SharedLibDir != LibDir. The order is important.
722ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
723 LD.Flags += -L$(SharedLibDir) -L$(LibDir) -L$(LLVMToolDir) -L$(LLVMLibDir)
724else
725 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
726endif
727
NAKAMURA Takumie2aa5d52011-10-11 12:51:44 +0000728CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000729# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000730CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
731 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000732 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
733 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
734 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000735
Daniel Dunbar8d694142011-11-03 21:01:32 +0000736ifeq ($(INCLUDE_BUILD_DIR),1)
737 CPP.Flags += -I$(ObjDir)
738endif
739
Daniel Dunbar58194302011-04-11 22:37:39 +0000740# SHOW_DIAGNOSTICS support.
741ifeq ($(SHOW_DIAGNOSTICS),1)
742 Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
743 CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
744else
745 Compile.Wrapper :=
746endif
747
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000748Compile.C = $(Compile.Wrapper) \
Eric Christopher42dffa52012-08-03 17:45:31 +0000749 $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000750 $(TargetCommonOpts) $(CompileCommonOpts) -c
751Compile.CXX = $(Compile.Wrapper) \
Eric Christopher42dffa52012-08-03 17:45:31 +0000752 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000753 $(TargetCommonOpts) $(CompileCommonOpts) -c
754Preprocess.CXX= $(Compile.Wrapper) \
Eric Christopher42dffa52012-08-03 17:45:31 +0000755 $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000756 $(CompileCommonOpts) $(CXX.Flags) -E
757Link = $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000758 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000759 $(LDFLAGS) $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000760
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000761BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000762 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000763Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000764 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000765
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000766BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000767 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000768
Misha Brukmanef5dc702009-01-08 02:11:55 +0000769ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
770ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000771DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000772
773# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
774# paths. In this case, the SYSPATH function (defined in
775# Makefile.config) transforms Unix paths into Windows paths.
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000776TableGen.Flags= -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000777 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000778 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
779 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000780LLVMTableGen = $(LLVM_TBLGEN) $(TableGen.Flags)
Chris Lattner6e0a5292008-01-15 23:27:40 +0000781
Reid Spencercc2d1e22004-10-30 09:19:36 +0000782Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000783LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000784ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000785Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000786else
Reid Spencer3a561f52004-10-23 20:04:14 +0000787Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000788endif
789
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000790AliasTool = ln -s
791
Chris Lattner00950542001-06-06 20:29:01 +0000792#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000793# Get the list of source files and compute object file
794# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000795#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000796
797ifndef SOURCES
798 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000799 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000800else
Chris Lattner89681112006-01-27 22:13:12 +0000801 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000802endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000803
Chris Lattner89681112006-01-27 22:13:12 +0000804ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000805Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000806endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000807
Chris Lattner89681112006-01-27 22:13:12 +0000808BaseNameSources := $(sort $(basename $(Sources)))
809
810ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000811ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
812
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000813#----------------------------------------------------------
814# For Mingw MSYS bash and Python/w32:
815#
816# $(ECHOPATH) prints DOSish pathstring.
817# ex) $(ECHOPATH) /include/sys/types.h
818# --> C:/mingw/include/sys/types.h
819# built-in "echo" does not transform path to DOSish path.
820#
821# FIXME: It would not be needed when MSYS's python
822# were provided.
823#----------------------------------------------------------
824
825ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
Saleem Abdulrasool3ef8b0a2013-01-30 04:07:37 +0000826 ECHOPATH := $(Verb)$(PYTHON) -u -c "import sys;print ' '.join(sys.argv[1:])"
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000827else
828 ECHOPATH := $(Verb)$(ECHO)
829endif
830
Reid Spencer3a561f52004-10-23 20:04:14 +0000831###############################################################################
832# DIRECTORIES: Handle recursive descent of directory structure
833###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000834
Chris Lattner00950542001-06-06 20:29:01 +0000835#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000836# Provide rules to make install dirs. This must be early
837# in the file so they get built before dependencies
838#---------------------------------------------------------
839
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000840$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000841 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000842
Reid Spencercc2d1e22004-10-30 09:19:36 +0000843# To create other directories, as needed, and timestamp their creation
844%/.dir:
845 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000846 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000847
Reid Spencer815cbcf2004-11-18 10:03:46 +0000848.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
849.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000850
851#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000852# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000853#---------------------------------------------------------
854
Misha Brukmanef5dc702009-01-08 02:11:55 +0000855SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000856ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000857SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000858
859ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000860$(RecursiveTargets)::
861 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000862 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000863 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000864 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000865 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000866 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000867 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000868 done
Chris Lattner82033602006-07-26 20:22:26 +0000869else
870$(RecursiveTargets)::
871 $(Verb) for dir in $(DIRS); do \
872 ($(MAKE) -C $$dir $@ ) || exit 1; \
873 done
874endif
875
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000876endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000877
Reid Spencer3a561f52004-10-23 20:04:14 +0000878#---------------------------------------------------------
879# Handle the EXPERIMENTAL_DIRS options ensuring success
880# after each directory is built.
881#---------------------------------------------------------
882ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000883$(RecursiveTargets)::
884 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000885 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000886 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000887 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000888 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000889 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000890 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000891 done
892endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000893
Reid Spencer25e8a702005-12-21 23:17:06 +0000894#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000895# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
896#-----------------------------------------------------------
897ifdef OPTIONAL_PARALLEL_DIRS
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000898 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 +0000899endif
900
901#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000902# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000903#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000904ifdef PARALLEL_DIRS
905
Reid Spencercc2d1e22004-10-30 09:19:36 +0000906SubDirs += $(PARALLEL_DIRS)
907
Reid Spencer44cb1b32004-12-03 20:08:48 +0000908# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000909all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
910clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000911clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000912install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000913uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000914install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000915unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000916
Reid Spencer345235ca2004-12-04 22:34:09 +0000917ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000918
Reid Spencer345235ca2004-12-04 22:34:09 +0000919$(ParallelTargets) :
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000920 $(Verb) \
921 SD=$(PROJ_SRC_DIR)/$(@D); \
922 DD=$(@D); \
923 if [ ! -f $$SD/Makefile ]; then \
924 SD=$(@D); \
925 DD=$(notdir $(@D)); \
926 fi; \
927 if ([ ! -f $$DD/Makefile ] || \
928 command test $$DD/Makefile -ot \
929 $$SD/Makefile ); then \
930 $(MKDIR) $$DD; \
931 $(CP) $$SD/Makefile $$DD/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000932 fi; \
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000933 $(MAKE) -C $$DD $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000934endif
935
Reid Spencer3a561f52004-10-23 20:04:14 +0000936#---------------------------------------------------------
937# Handle the OPTIONAL_DIRS options for directores that may
938# or may not exist.
939#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000940ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000941
Reid Spencercc2d1e22004-10-30 09:19:36 +0000942SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000943
Chris Lattner82033602006-07-26 20:22:26 +0000944ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000945$(RecursiveTargets)::
946 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000947 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000948 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000949 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000950 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000951 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000952 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000953 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000954 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000955 done
Chris Lattner82033602006-07-26 20:22:26 +0000956else
957$(RecursiveTargets)::
958 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Stephen Wilsonc1566322011-02-20 03:51:07 +0000959 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
960 ($(MAKE) -C$$dir $@ ) || exit 1; \
961 fi \
Chris Lattner82033602006-07-26 20:22:26 +0000962 done
963endif
John Criswell2a6530f2003-06-27 16:58:44 +0000964endif
965
Reid Spencerfc945082004-08-20 09:20:05 +0000966#---------------------------------------------------------
967# Handle the CONFIG_FILES options
968#---------------------------------------------------------
969ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000970
Reid Spencera2a31bf2007-02-06 18:53:14 +0000971ifdef NO_INSTALL
972install-local::
973 $(Echo) Install circumvented with NO_INSTALL
974uninstall-local::
975 $(Echo) UnInstall circumvented with NO_INSTALL
976else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000977install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
978 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000979 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000980 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000981 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000982 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000983 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000984 else \
985 $(ECHO) Error: cannot find config file $${file}. ; \
986 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000987 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000988
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000989uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000990 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000991 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000992 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000993 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000994endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000995
Reid Spencerfc945082004-08-20 09:20:05 +0000996endif
997
Reid Spencer3a561f52004-10-23 20:04:14 +0000998###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +0000999# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001000###############################################################################
1001
1002#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001003# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +00001004# libraries needed when linking. There are "Proj" libs
1005# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +00001006# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001007#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +00001008
Chris Lattneref0d0f12006-09-04 04:47:21 +00001009ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001010ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
1011ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +00001012ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
1013ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
1014endif
1015
1016ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001017LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
1018LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001019LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001020LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +00001021endif
1022
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001023# Loadable module for Win32 requires all symbols resolved for linking.
1024# Then all symbols in LLVM.dll will be available.
1025ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001026 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001027 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
1028 LINK_COMPONENTS += all
1029 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001030 endif
1031endif
1032
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001033ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +00001034ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +00001035
1036# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
1037# clean in tools, then do a make in tools (instead of at the top level).
1038$(LLVM_CONFIG):
1039 @echo "*** llvm-config doesn't exist - rebuilding it."
1040 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +00001041
Chris Lattner0a1db822006-09-04 05:23:20 +00001042$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
1043
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001044ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001045# We can take the "auto-import" feature to get rid of using dllimport.
1046ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1047LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
1048 -L $(SharedLibDir)
1049endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001050LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001051LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001052else
Chris Lattnerf636aa92010-09-01 16:11:17 +00001053
1054ifndef NO_LLVM_CONFIG
1055LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
1056ifeq ($(LLVMConfigLibs),Error)
1057$(error llvm-config --libs failed)
1058endif
1059LLVMLibsOptions += $(LLVMConfigLibs)
1060LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
1061ifeq ($(LLVMConfigLibfiles),Error)
1062$(error llvm-config --libfiles failed)
1063endif
1064LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
1065endif
1066
Chris Lattneref0d0f12006-09-04 04:47:21 +00001067endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +00001068endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001069endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001070
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001071# Set up the library exports file.
1072ifdef EXPORTED_SYMBOL_FILE
1073
1074# First, set up the native export file, which may differ from the source
1075# export file.
1076
1077ifeq ($(HOST_OS),Darwin)
1078# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +00001079NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +00001080$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001081 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001082clean-local::
1083 -$(Verb) $(RM) -f $(NativeExportsFile)
1084else
Dan Gohmanda612d62010-06-01 14:56:56 +00001085ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1086# Gold and BFD ld require a version script rather than a plain list.
1087NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1088$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1089 $(Verb) echo "{" > $@
Eric Christopher5084fa02012-03-12 20:58:14 +00001090 $(Verb) grep -q '[[:alnum:]_]' $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001091 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001092ifneq ($(HOST_OS),OpenBSD)
Dan Gohmanda612d62010-06-01 14:56:56 +00001093 $(Verb) echo " local: *;" >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001094endif
Dan Gohmanda612d62010-06-01 14:56:56 +00001095 $(Verb) echo "};" >> $@
1096clean-local::
1097 -$(Verb) $(RM) -f $(NativeExportsFile)
1098else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001099ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +00001100# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001101NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001102$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1103 $(Echo) Generating $(notdir $@)
1104 $(Verb) $(ECHO) "EXPORTS" > $@
1105 $(Verb) $(CAT) $< >> $@
1106clean-local::
1107 -$(Verb) $(RM) -f $(NativeExportsFile)
1108else
Dan Gohman9a7570c2010-09-03 17:29:33 +00001109# Default behavior: just use the exports file verbatim.
1110NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1111endif
1112endif
1113endif
1114
1115# Now add the linker command-line options to use the native export file.
1116
1117# Darwin
1118ifeq ($(HOST_OS),Darwin)
1119LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1120endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001121
Dan Gohmane05f6092010-04-16 22:58:15 +00001122# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001123ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1124LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001125endif
1126
Dan Gohman9a7570c2010-09-03 17:29:33 +00001127# Windows
1128ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1129# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1130SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001131endif
1132
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001133endif
1134
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001135###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001136# Library Build Rules: Four ways to build a library
1137###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001138
Reid Spencer7980ea42004-12-05 05:17:22 +00001139#---------------------------------------------------------
1140# Bytecode Module Targets:
1141# If the user set MODULE_NAME then they want to build a
1142# bytecode module from the sources. We compile all the
1143# sources and link it together into a single bytecode
1144# module.
1145#---------------------------------------------------------
1146
1147ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001148ifeq ($(strip $(LLVMCC)),)
1149$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001150else
Reid Spencer7980ea42004-12-05 05:17:22 +00001151
1152Module := $(LibDir)/$(MODULE_NAME).bc
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001153LinkModule := $(LLVMLINK)
Reid Spencerbbd5e432006-04-12 18:21:35 +00001154
Reid Spencer7980ea42004-12-05 05:17:22 +00001155
1156ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001157LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001158endif
1159
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001160$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001161 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001162 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1163
1164all-local:: $(Module)
1165
1166clean-local::
1167ifneq ($(strip $(Module)),)
1168 -$(Verb) $(RM) -f $(Module)
1169endif
1170
Reid Spencerab3690b2004-12-13 07:38:07 +00001171ifdef BYTECODE_DESTINATION
1172ModuleDestDir := $(BYTECODE_DESTINATION)
1173else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001174ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001175endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001176
Reid Spencera2a31bf2007-02-06 18:53:14 +00001177ifdef NO_INSTALL
1178install-local::
1179 $(Echo) Install circumvented with NO_INSTALL
1180uninstall-local::
1181 $(Echo) Uninstall circumvented with NO_INSTALL
1182else
Reid Spencerab3690b2004-12-13 07:38:07 +00001183DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1184
1185install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001186install-local:: $(DestModule)
1187
Misha Brukmanef5dc702009-01-08 02:11:55 +00001188$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001189 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001190 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001191
1192uninstall-local::
1193 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1194 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001195endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001196
1197endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001198endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001199
Reid Spencer3a561f52004-10-23 20:04:14 +00001200# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001201ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001202
Misha Brukmanf547a122009-08-17 15:31:24 +00001203# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001204LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001205ifdef LOADABLE_MODULE
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001206BaseLibName.A := $(LIBRARYNAME).a
1207BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001208else
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001209BaseLibName.A := lib$(LIBRARYNAME).a
1210BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001211endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001212LibName.A := $(LibDir)/$(BaseLibName.A)
1213LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001214LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001215LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001216
Reid Spencer3a561f52004-10-23 20:04:14 +00001217#---------------------------------------------------------
1218# Shared Library Targets:
1219# If the user asked for a shared library to be built
1220# with the SHARED_LIBRARY variable, then we provide
1221# targets for building them.
1222#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001223ifdef SHARED_LIBRARY
1224
Nick Lewyckya15dc032009-02-26 07:44:16 +00001225all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001226
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001227ifdef EXPORTED_SYMBOL_FILE
1228$(LibName.SO): $(NativeExportsFile)
1229endif
1230
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001231ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001232ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001233SharedLibKindMessage := "Loadable Module"
Daniel Dunbar7bc0f272010-12-08 01:48:05 +00001234SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
Reid Spencer42fe4552006-08-07 23:12:15 +00001235else
1236SharedLibKindMessage := "Shared Library"
1237endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001238$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001239 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001240 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001241 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001242 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001243else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001244$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001245 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001246 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001247endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001248
1249clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001250ifneq ($(strip $(LibName.SO)),)
1251 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001252endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001253
Reid Spencera2a31bf2007-02-06 18:53:14 +00001254ifdef NO_INSTALL
1255install-local::
1256 $(Echo) Install circumvented with NO_INSTALL
1257uninstall-local::
1258 $(Echo) Uninstall circumvented with NO_INSTALL
1259else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001260
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001261# Win32.DLL prefers to be located on the "PATH" of binaries.
1262ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1263DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001264else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001265DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001266endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001267DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001268
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001269install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001270
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001271$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001272 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001273 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001274
Misha Brukmanef5dc702009-01-08 02:11:55 +00001275uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001276 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001277 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001278endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001279endif
1280
Reid Spencer3a561f52004-10-23 20:04:14 +00001281#---------------------------------------------------------
1282# Bytecode Library Targets:
1283# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001284# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001285# targets for building them.
1286#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001287ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001288ifeq ($(strip $(LLVMCC)),)
1289$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001290else
Reid Spencer4d71b662004-10-22 21:01:56 +00001291
Reid Spencer9a2f1372004-12-02 09:28:21 +00001292all-local:: $(LibName.BCA)
1293
1294ifdef EXPORTED_SYMBOL_FILE
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001295BCLinkLib = $(LLVMLINK) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001296
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001297$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001298 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001299 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1300 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001301 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001302 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001303 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001304else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001305$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001306 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001307 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001308 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001309 $(Verb) $(LArchive) $@ $(ObjectsBC)
1310
Reid Spencer4d71b662004-10-22 21:01:56 +00001311endif
1312
Reid Spencer3a561f52004-10-23 20:04:14 +00001313clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001314ifneq ($(strip $(LibName.BCA)),)
1315 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001316endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001317
Reid Spencer8f094f32004-12-13 07:28:21 +00001318ifdef BYTECODE_DESTINATION
1319BytecodeDestDir := $(BYTECODE_DESTINATION)
1320else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001321BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001322endif
1323
Daniel Dunbard62031e2009-05-12 05:35:40 +00001324DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001325
Reid Spencer44cb1b32004-12-03 20:08:48 +00001326install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001327
Reid Spencera2a31bf2007-02-06 18:53:14 +00001328ifdef NO_INSTALL
1329install-local::
1330 $(Echo) Install circumvented with NO_INSTALL
1331uninstall-local::
1332 $(Echo) Uninstall circumvented with NO_INSTALL
1333else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001334install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001335
Mike Stumpb445d742009-02-12 23:45:11 +00001336$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001337 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001338 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001339
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001340uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001341 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001342 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001343endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001344endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001345endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001346
Reid Spencercc2d1e22004-10-30 09:19:36 +00001347#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001348# Library Targets:
1349# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1350# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001351#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001352ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001353ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001354ifndef LOADABLE_MODULE
1355BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001356endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001357endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001358endif
Chris Lattner760da062003-03-14 20:25:22 +00001359
Reid Spencercc2d1e22004-10-30 09:19:36 +00001360#---------------------------------------------------------
1361# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001362# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001363# then we provide targets for building them.
1364#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001365ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001366
Reid Spencercc2d1e22004-10-30 09:19:36 +00001367all-local:: $(LibName.A)
1368
Reid Spencerf2ac1892004-12-16 07:36:08 +00001369$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001370 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001371 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001372 $(Verb) $(Archive) $@ $(ObjectsO)
1373 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001374
Reid Spencer3a561f52004-10-23 20:04:14 +00001375clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001376ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001377 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001378endif
1379
Reid Spencera2a31bf2007-02-06 18:53:14 +00001380ifdef NO_INSTALL
1381install-local::
1382 $(Echo) Install circumvented with NO_INSTALL
1383uninstall-local::
1384 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001385else
1386ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001387install-local::
1388 $(Echo) Install circumvented with NO_INSTALL
1389uninstall-local::
1390 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001391else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001392DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001393
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001394install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001395
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001396$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001397 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001398 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001399 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001400
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001401uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001402 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001403 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001404endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001405endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001406endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001407
1408# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001409endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001410
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001411###############################################################################
1412# Tool Build Rules: Build executable tool based on TOOLNAME option
1413###############################################################################
1414
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001415ifdef TOOLNAME
1416
Reid Spencercc2d1e22004-10-30 09:19:36 +00001417#---------------------------------------------------------
1418# Set up variables for building a tool.
1419#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001420TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001421ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001422ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001423else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001424ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1425endif
1426
1427# TOOLALIAS is a name to symlink (or copy) the tool to.
1428ifdef TOOLALIAS
1429ifdef EXAMPLE_TOOL
1430ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1431else
1432ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1433endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001434endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001435
Reid Spencercc2d1e22004-10-30 09:19:36 +00001436#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001437# Prune Exports
1438#---------------------------------------------------------
1439
1440# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1441# not exporting all of the weak symbols from the binary. This reduces dyld
1442# startup time by 4x on darwin in some cases.
1443ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001444ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001445
1446# Tiger tools don't support this.
1447ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001448LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001449endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001450endif
Chris Lattner61863a32009-02-26 17:47:49 +00001451
Sylvestre Ledru6fc30c22012-04-11 15:35:36 +00001452ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD GNU))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001453ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001454 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001455endif
1456endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001457endif
Chris Lattner61863a32009-02-26 17:47:49 +00001458
Devang Patel83be4512010-07-15 20:57:09 +00001459#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001460# Tool Order File Support
1461#---------------------------------------------------------
1462
1463ifeq ($(HOST_OS),Darwin)
Daniel Dunbarade490a2011-06-28 22:30:17 +00001464ifdef TOOL_ORDER_FILE
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001465
1466LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1467
1468endif
1469endif
1470
1471#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001472# Tool Version Info Support
1473#---------------------------------------------------------
1474
1475ifeq ($(HOST_OS),Darwin)
1476ifdef TOOL_INFO_PLIST
1477
1478LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1479
1480$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1481
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001482$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001483 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1484 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1485 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1486 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1487 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1488 $< > $@
1489
1490endif
1491endif
Chris Lattner61863a32009-02-26 17:47:49 +00001492
1493#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001494# Provide targets for building the tools
1495#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001496all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001497
Reid Spencer3a561f52004-10-23 20:04:14 +00001498clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001499ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001500 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001501endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001502ifneq ($(strip $(ToolAliasBuildPath)),)
1503 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1504endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001505
Reid Spencer815cbcf2004-11-18 10:03:46 +00001506ifdef EXAMPLE_TOOL
1507$(ToolBuildPath): $(ExmplDir)/.dir
1508else
1509$(ToolBuildPath): $(ToolDir)/.dir
1510endif
1511
Daniel Dunbar95669052012-03-06 19:07:38 +00001512ifdef CODESIGN_TOOLS
Filipe Cabecinhasaa271612013-04-25 01:17:54 +00001513TOOL_CODESIGN_IDENTITY ?= -
1514
Chris Lattnera7868af2006-09-04 06:39:52 +00001515$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001516 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001517 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001518 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001519 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001520 $(StripWarnMsg)
Daniel Dunbar95669052012-03-06 19:07:38 +00001521 $(Echo) ======= Code-Signing $(BuildMode) Executable $(TOOLNAME)
Filipe Cabecinhasaa271612013-04-25 01:17:54 +00001522 $(Verb) codesign -s $(TOOL_CODESIGN_IDENTITY) $@
Daniel Dunbar95669052012-03-06 19:07:38 +00001523else
1524$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1525 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1526 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1527 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1528 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1529 $(StripWarnMsg)
1530endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001531
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001532ifneq ($(strip $(ToolAliasBuildPath)),)
1533$(ToolAliasBuildPath): $(ToolBuildPath)
1534 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1535 $(Verb) $(RM) -f $(ToolAliasBuildPath)
Jordan Rose81be6bf2012-10-04 00:47:59 +00001536 $(Verb) $(AliasTool) $(notdir $(ToolBuildPath)) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001537 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001538 $(StripWarnMsg)
1539endif
1540
Reid Spencera2a31bf2007-02-06 18:53:14 +00001541ifdef NO_INSTALL
1542install-local::
1543 $(Echo) Install circumvented with NO_INSTALL
1544uninstall-local::
1545 $(Echo) Uninstall circumvented with NO_INSTALL
1546else
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001547
1548ifdef INTERNAL_TOOL
1549ToolBinDir = $(DESTDIR)$(PROJ_internal_prefix)/bin
1550else
1551ToolBinDir = $(DESTDIR)$(PROJ_bindir)
1552endif
Jordan Rose92080522012-10-01 18:40:32 +00001553DestTool = $(ToolBinDir)/$(program_prefix)$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001554
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001555install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001556
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001557$(DestTool): $(ToolBuildPath)
Reid Spencer9af3b292004-11-01 07:50:27 +00001558 $(Echo) Installing $(BuildMode) $(DestTool)
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001559 $(Verb) $(MKDIR) $(ToolBinDir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001560 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001561
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001562uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001563 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001564 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001565
1566# TOOLALIAS install.
1567ifdef TOOLALIAS
Jordan Rose92080522012-10-01 18:40:32 +00001568DestToolAlias = $(ToolBinDir)/$(program_prefix)$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001569
1570install-local:: $(DestToolAlias)
1571
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001572$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001573 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1574 $(Verb) $(RM) -f $(DestToolAlias)
Jordan Rose81be6bf2012-10-04 00:47:59 +00001575 $(Verb) $(AliasTool) $(notdir $(DestTool)) $(DestToolAlias)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001576
1577uninstall-local::
1578 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1579 -$(Verb) $(RM) -f $(DestToolAlias)
1580endif
1581
Reid Spencera2a31bf2007-02-06 18:53:14 +00001582endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001583endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001584
Reid Spencercc2d1e22004-10-30 09:19:36 +00001585###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001586# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001587###############################################################################
1588
Duraid Madina197ab872006-02-15 03:23:26 +00001589# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001590ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001591 DISABLE_AUTO_DEPENDENCIES=1
1592endif
1593
Reid Spencercc2d1e22004-10-30 09:19:36 +00001594# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001595ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001596
Reid Spencercc2d1e22004-10-30 09:19:36 +00001597#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001598# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001599#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001600
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001601DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001602 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001603
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001604# If the build succeeded, move the dependency file over, otherwise
1605# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001606DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1607 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1608
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001609$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001610 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001611 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001612 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001613
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001614$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001615 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1616 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1617 $(DEPEND_MOVEFILE)
1618
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001619$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001620 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001621 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001622 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001623
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001624$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001625 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001626 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001627 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001628
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001629$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001630 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1631 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1632 $(DEPEND_MOVEFILE)
1633
Reid Spencercc2d1e22004-10-30 09:19:36 +00001634#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001635# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001636#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001637
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001638BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1639 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1640
1641# If the build succeeded, move the dependency file over, otherwise
1642# remove it.
1643BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1644 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1645
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001646$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001647 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001648 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001649 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001650 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001651
Greg Clayton43bc79a2010-07-13 18:47:09 +00001652$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1653 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1654 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001655 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001656 $(BC_DEPEND_MOVEFILE)
1657
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001658$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001659 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001660 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001661 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001662 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001663
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001664$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001665 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001666 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001667 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001668 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001669
Greg Clayton43bc79a2010-07-13 18:47:09 +00001670$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1671 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1672 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001673 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001674 $(BC_DEPEND_MOVEFILE)
1675
Reid Spencercc2d1e22004-10-30 09:19:36 +00001676# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001677else
1678
Nick Lewyckya15dc032009-02-26 07:44:16 +00001679$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001680 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001681 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001682
Greg Clayton43bc79a2010-07-13 18:47:09 +00001683$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1684 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1685 $(Compile.CXX) $< -o $@
1686
Nick Lewyckya15dc032009-02-26 07:44:16 +00001687$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001688 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001689 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001690
Nick Lewyckya15dc032009-02-26 07:44:16 +00001691$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001692 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001693 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001694
Greg Clayton43bc79a2010-07-13 18:47:09 +00001695$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1696 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1697 $(Compile.C) $< -o $@
1698
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001699$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001700 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001701 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Reid Spencer4d71b662004-10-22 21:01:56 +00001702
Greg Clayton43bc79a2010-07-13 18:47:09 +00001703$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1704 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001705 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001706
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001707$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001708 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001709 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001710
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001711$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001712 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001713 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Brian Gaeke44909cf2003-12-10 00:26:28 +00001714
Greg Clayton43bc79a2010-07-13 18:47:09 +00001715$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1716 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001717 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001718
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001719endif
1720
Chris Lattner8eb12de2006-06-21 21:01:20 +00001721
1722## Rules for building preprocessed (.i/.ii) outputs.
1723$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1724 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1725 $(Verb) $(Preprocess.CXX) $< -o $@
1726
Greg Clayton43bc79a2010-07-13 18:47:09 +00001727$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1728 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1729 $(Verb) $(Preprocess.CXX) $< -o $@
1730
Chris Lattner8eb12de2006-06-21 21:01:20 +00001731$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1732 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1733 $(Verb) $(Preprocess.CXX) $< -o $@
1734
Reid Spencer44136722006-12-10 04:56:38 +00001735$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001736 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1737 $(Verb) $(Preprocess.C) $< -o $@
1738
Greg Clayton43bc79a2010-07-13 18:47:09 +00001739$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1740 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1741 $(Verb) $(Preprocess.C) $< -o $@
1742
Chris Lattner8eb12de2006-06-21 21:01:20 +00001743
1744$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1745 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001746 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001747
Greg Clayton43bc79a2010-07-13 18:47:09 +00001748$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1749 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1750 $(Compile.CXX) $< -o $@ -S
1751
Chris Lattner8eb12de2006-06-21 21:01:20 +00001752$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1753 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001754 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001755
1756$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1757 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001758 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001759
Greg Clayton43bc79a2010-07-13 18:47:09 +00001760$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1761 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1762 $(Compile.C) $< -o $@ -S
1763
Reid Spencer8b2e1412006-11-17 03:32:33 +00001764
Chris Lattner89681112006-01-27 22:13:12 +00001765# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001766ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001767$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001768 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001769 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001770else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001771$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001772 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001773 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001774endif
1775
Chris Lattner89681112006-01-27 22:13:12 +00001776
Reid Spencercc2d1e22004-10-30 09:19:36 +00001777#---------------------------------------------------------
1778# Provide rule to build .bc files from .ll sources,
1779# regardless of dependencies
1780#---------------------------------------------------------
1781$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001782 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001783 $(Verb) $(LLVMAS) $< -f -o $@
1784
1785###############################################################################
1786# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1787###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001788
Reid Spencer4d71b662004-10-22 21:01:56 +00001789ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001790TABLEGEN_INC_FILES_COMMON = 1
1791endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001792
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001793ifdef TABLEGEN_INC_FILES_COMMON
1794
Reid Spencercc2d1e22004-10-30 09:19:36 +00001795INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001796INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1797.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001798
Misha Brukmanef5dc702009-01-08 02:11:55 +00001799# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001800# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1801# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001802# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001803# dependencies of the .inc files are, unless the contents of the .inc file
1804# changes.
1805$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001806 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001807
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001808endif # TABLEGEN_INC_FILES_COMMON
1809
1810ifdef TARGET
1811
1812TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1813 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1814 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1815 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1816 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1817 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
Chandler Carruth0b8c9a82013-01-02 11:36:10 +00001818 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/IR/Intrinsics*.td)
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001819
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001820# All .inc.tmp files depend on the .td files.
1821$(INCTMPFiles) : $(TDFiles)
Rafael Espindola075630a2009-03-10 17:58:54 +00001822
Chris Lattner3c473472004-12-16 17:28:50 +00001823$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001824$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001825 $(Echo) "Building $(<F) register info implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001826 $(Verb) $(LLVMTableGen) -gen-register-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001827
Chris Lattner3c473472004-12-16 17:28:50 +00001828$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001829$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001830 $(Echo) "Building $(<F) instruction information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001831 $(Verb) $(LLVMTableGen) -gen-instr-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001832
Chris Lattner3c473472004-12-16 17:28:50 +00001833$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001834$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001835 $(Echo) "Building $(<F) assembly writer with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001836 $(Verb) $(LLVMTableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001837
Chris Lattner02a4f902004-12-16 17:34:04 +00001838$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001839$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattner02a4f902004-12-16 17:34:04 +00001840 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001841 $(Verb) $(LLVMTableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001842
Daniel Dunbarc464e512009-07-13 18:35:35 +00001843$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001844$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarc464e512009-07-13 18:35:35 +00001845 $(Echo) "Building $(<F) assembly matcher with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001846 $(Verb) $(LLVMTableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
Daniel Dunbarc464e512009-07-13 18:35:35 +00001847
Jim Grosbachbd29a362010-11-03 23:46:01 +00001848$(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001849$(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbachbd29a362010-11-03 23:46:01 +00001850 $(Echo) "Building $(<F) MC code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001851 $(Verb) $(LLVMTableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
Jim Grosbachbd29a362010-11-03 23:46:01 +00001852
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001853$(TARGET:%=$(ObjDir)/%GenMCPseudoLowering.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001854$(ObjDir)/%GenMCPseudoLowering.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001855 $(Echo) "Building $(<F) MC Pseudo instruction expander with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001856 $(Verb) $(LLVMTableGen) -gen-pseudo-lowering -o $(call SYSPATH, $@) $<
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001857
Chris Lattner3c473472004-12-16 17:28:50 +00001858$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001859$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001860 $(Echo) "Building $(<F) code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001861 $(Verb) $(LLVMTableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001862
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001863$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001864$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001865 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001866 $(Verb) $(LLVMTableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001867
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001868$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001869$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001870 $(Echo) "Building $(<F) disassembly tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001871 $(Verb) $(LLVMTableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001872
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001873$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001874$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001875 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001876 $(Verb) $(LLVMTableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001877
Evan Cheng385e9302011-07-01 22:36:09 +00001878$(TARGET:%=$(ObjDir)/%GenSubtargetInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001879$(ObjDir)/%GenSubtargetInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001880 $(Echo) "Building $(<F) subtarget information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001881 $(Verb) $(LLVMTableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001882
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001883$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001884$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001885 $(Echo) "Building $(<F) calling convention information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001886 $(Verb) $(LLVMTableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001887
Dale Johannesen49de9822009-02-05 01:49:45 +00001888$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001889$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001890 $(Echo) "Building $(<F) intrinsics information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001891 $(Verb) $(LLVMTableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
Dale Johannesen49de9822009-02-05 01:49:45 +00001892
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001893$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001894 $(Echo) "Building $(<F) decoder tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001895 $(Verb) $(LLVMTableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001896
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +00001897$(ObjDir)/%GenDFAPacketizer.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1898 $(Echo) "Building $(<F) DFA packetizer tables with tblgen"
1899 $(Verb) $(LLVMTableGen) -gen-dfa-packetizer -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001900
Reid Spencer3a561f52004-10-23 20:04:14 +00001901clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001902 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001903
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001904endif # TARGET
1905
Reid Spencercc2d1e22004-10-30 09:19:36 +00001906###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001907# OTHER RULES: Other rules needed
1908###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001909
Chris Lattner30440c62003-01-16 21:06:18 +00001910# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001911ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001912%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001913 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001914else
1915%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001916 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001917endif
Chris Lattner30440c62003-01-16 21:06:18 +00001918
John Criswell7f336952003-09-06 14:44:17 +00001919# This rules ensures that header files that are removed still have a rule for
1920# which they can be "generated." This allows make to ignore them and
1921# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001922%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001923%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001924
Reid Spencercc2d1e22004-10-30 09:19:36 +00001925# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001926# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001927# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001928clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001929ifneq ($(strip $(ObjRootDir)),)
1930 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001931endif
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001932ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001933 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001934endif
John Criswell7a73b802003-06-30 21:59:07 +00001935
Reid Spencer3d659492004-11-02 16:36:03 +00001936clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001937 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001938
Reid Spencer12d79512004-11-12 02:27:36 +00001939
Reid Spencer3a561f52004-10-23 20:04:14 +00001940###############################################################################
1941# DEPENDENCIES: Include the dependency files if we should
1942###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001943ifndef DISABLE_AUTO_DEPENDENCIES
1944
Reid Spencer3a561f52004-10-23 20:04:14 +00001945# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001946ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001947
Reid Spencer3a561f52004-10-23 20:04:14 +00001948# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001949DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001950DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1951
1952# Include bitcode dependency files if using bitcode libraries
1953ifdef BYTECODE_LIBRARY
1954DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1955endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001956
Reid Spencer491a6cd2007-07-23 08:20:46 +00001957-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001958
John Criswelld741bcf2003-08-12 18:51:51 +00001959endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001960
Misha Brukmanef5dc702009-01-08 02:11:55 +00001961endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001962
Reid Spencer151f8ba2004-10-25 08:27:37 +00001963###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001964# CHECK: Running the test suite
1965###############################################################################
1966
Eric Christopher376e05f2013-04-09 19:42:12 +00001967check:: all
Reid Spencer11fde542005-01-16 02:20:54 +00001968 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1969 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001970 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001971 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001972 TESTSUITE=$(TESTSUITE) ; \
1973 else \
1974 $(EchoCmd) No Makefile in test directory ; \
1975 fi ; \
1976 else \
1977 $(EchoCmd) No test directory ; \
1978 fi
1979
Chandler Carruthc1a0af12012-06-28 00:03:13 +00001980# An alias dating from when both lit and DejaGNU test runners were used.
Daniel Dunbar666b4022010-08-02 00:05:18 +00001981check-lit:: check
1982
Daniel Dunbar34185792009-09-20 06:17:21 +00001983check-all::
1984 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1985 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1986 $(EchoCmd) Running test suite ; \
1987 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1988 else \
1989 $(EchoCmd) No Makefile in test directory ; \
1990 fi ; \
1991 else \
1992 $(EchoCmd) No test directory ; \
1993 fi
1994
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001995###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001996# UNITTESTS: Running the unittests test suite
1997###############################################################################
1998
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001999unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00002000 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
2001 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
2002 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00002003 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00002004 else \
2005 $(EchoCmd) No Makefile in unittests directory ; \
2006 fi ; \
2007 else \
2008 $(EchoCmd) No unittests directory ; \
2009 fi
2010
2011###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00002012# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00002013###############################################################################
2014
Reid Spencere45ebfa2004-10-26 07:09:33 +00002015#------------------------------------------------------------------------
2016# Define distribution related variables
2017#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002018DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
2019DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2020TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2021DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
2022DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
2023DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00002024DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
2025 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002026 Makefile.config.in configure autoconf
2027DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00002028 $(PROJ_SRC_DIR)/*.h \
2029 $(PROJ_SRC_DIR)/*.td \
2030 $(PROJ_SRC_DIR)/*.def \
2031 $(PROJ_SRC_DIR)/*.ll \
2032 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00002033DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00002034DistSources = $(Sources) $(EXTRA_DIST)
2035DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00002036
Reid Spencere45ebfa2004-10-26 07:09:33 +00002037#------------------------------------------------------------------------
2038# We MUST build distribution with OBJ_DIR != SRC_DIR
2039#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002040ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00002041dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002042 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00002043
Reid Spencere45ebfa2004-10-26 07:09:33 +00002044else
2045
Reid Spencere45ebfa2004-10-26 07:09:33 +00002046#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00002047# Prevent attempt to run dist targets from anywhere but the top level
2048#------------------------------------------------------------------------
2049ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002050dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00002051 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002052else
2053
2054#------------------------------------------------------------------------
2055# Provide the top level targets
2056#------------------------------------------------------------------------
2057
Reid Spencercc2d1e22004-10-30 09:19:36 +00002058dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002059
Reid Spencer345235ca2004-12-04 22:34:09 +00002060$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002061 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002062 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002063 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00002064
Reid Spencercc2d1e22004-10-30 09:19:36 +00002065dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002066
Reid Spencer345235ca2004-12-04 22:34:09 +00002067$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002068 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002069 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002070 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002071
Reid Spencercc2d1e22004-10-30 09:19:36 +00002072dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002073
Reid Spencer345235ca2004-12-04 22:34:09 +00002074$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002075 $(Echo) Packing zipped distribution file.
2076 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00002077 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002078
Misha Brukmanef5dc702009-01-08 02:11:55 +00002079dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002080 $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002081
Reid Spencerf8f57402005-01-28 19:52:32 +00002082DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00002083
Reid Spencer345235ca2004-12-04 22:34:09 +00002084dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002085 $(Echo) Checking distribution tar file.
2086 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002087 $(RM) -rf $(DistCheckDir) ; \
2088 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00002089 $(Verb) $(MKDIR) $(DistCheckDir)
2090 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002091 $(MKDIR) $(DistCheckDir)/build && \
2092 $(MKDIR) $(DistCheckDir)/install && \
2093 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2094 cd build && \
2095 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00002096 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00002097 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002098 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00002099 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002100 $(MAKE) install && \
2101 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002102 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002103 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002104
2105dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002106 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002107 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2108 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002109
2110endif
2111
2112#------------------------------------------------------------------------
2113# Provide the recursive distdir target for building the distribution directory
2114#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002115distdir: $(DistDir)/.makedistdir
2116$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002117 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002118 if test -d "$(DistDir)" ; then \
2119 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2120 exit 1 ; \
2121 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002122 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002123 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002124 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002125 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002126 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002127 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002128 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002129 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2130 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002131 for file in $(DistFiles) ; do \
2132 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002133 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002134 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2135 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002136 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002137 file=`echo "$$file" | \
2138 sed "s#^$$srcrootstrip/##"` \
2139 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002140 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002141 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2142 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2143 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002144 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002145 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002146 fi ; \
2147 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002148 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2149 to_dir="$(DistDir)/$$dir"; \
2150 $(MKDIR) "$$to_dir" ; \
2151 else \
2152 to_dir="$(DistDir)"; \
2153 fi; \
2154 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2155 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002156 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002157 fi ; \
2158 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002159 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2160 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002161 cd $(PROJ_SRC_DIR) ; \
2162 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2163 ( cd $$to_dir ; $(TAR) xf - ) ; \
2164 cd $(PROJ_OBJ_DIR) ; \
2165 else \
2166 cd $$from_dir ; \
2167 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2168 ( cd $$to_dir ; $(TAR) xf - ) ; \
2169 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002170 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002171 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002172 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002173 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002174 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002175 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002176 $(EchoCmd) "===== WARNING: Distribution Source " \
2177 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002178 elif test "$(Verb)" != '@' ; then \
2179 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002180 fi; \
2181 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002182 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002183 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002184 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002185 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002186 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002187 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002188 fi; \
2189 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002190 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002191 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002192 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2193 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002194 $(MAKE) dist-hook ; \
2195 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2196 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2197 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2198 -o ! -type d ! -perm -444 -exec \
2199 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2200 || chmod -R a+r $(DistDir) ; \
2201 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002202
Reid Spencercc2d1e22004-10-30 09:19:36 +00002203# This is invoked by distdir target, define it as a no-op to avoid errors if not
2204# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002205dist-hook::
2206
Reid Spencere53e3972004-10-22 23:06:30 +00002207endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002208
2209###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002210# TOP LEVEL - targets only to apply at the top level directory
2211###############################################################################
2212
2213ifeq ($(LEVEL),.)
2214
2215#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002216# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002217#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002218ifdef NO_INSTALL
2219install-local::
2220 $(Echo) Install circumvented with NO_INSTALL
2221uninstall-local::
2222 $(Echo) Uninstall circumvented with NO_INSTALL
2223else
Reid Spencere5487ba2004-10-24 07:53:21 +00002224install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002225 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002226 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002227 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002228 cd $(PROJ_SRC_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002229 for hdr in `find . -type f \
2230 '(' -name LICENSE.TXT \
2231 -o -name '*.def' \
2232 -o -name '*.h' \
2233 -o -name '*.inc' \
2234 -o -name '*.td' \
2235 ')' -print | grep -v CVS | \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002236 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002237 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002238 if test \! -d "$$instdir" ; then \
2239 $(EchoCmd) Making install directory $$instdir ; \
2240 $(MKDIR) $$instdir ;\
2241 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002242 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002243 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002244 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002245ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002246 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002247 cd $(PROJ_OBJ_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002248 for hdr in `find . -type f \
2249 '(' -name LICENSE.TXT \
2250 -o -name '*.def' \
2251 -o -name '*.h' \
2252 -o -name '*.inc' \
2253 -o -name '*.td' \
2254 ')' -print | grep -v CVS | \
2255 grep -v .svn` ; do \
2256 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2257 if test \! -d "$$instdir" ; then \
2258 $(EchoCmd) Making install directory $$instdir ; \
2259 $(MKDIR) $$instdir ;\
2260 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002261 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002262 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002263 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002264endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002265
2266uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002267 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002268 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2269 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002270 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002271 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002272 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002273 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002274 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002275 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002276 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002277 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002278endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002279endif
2280
Chris Lattner03840ac2007-04-14 23:35:45 +00002281check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002282 @echo searching for overlength lines in files: $(Sources)
2283 @echo
2284 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002285 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002286
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002287check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002288 @echo searching for tabs in files: $(Sources)
2289 @echo
2290 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002291 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002292
Reid Spencer6548bf12007-05-02 21:29:39 +00002293check-footprint:
2294 @ls -l $(LibDir) | awk '\
2295 BEGIN { sum = 0; } \
2296 { sum += $$5; } \
2297 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2298 @ls -l $(ToolDir) | awk '\
2299 BEGIN { sum = 0; } \
2300 { sum += $$5; } \
2301 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002302#------------------------------------------------------------------------
2303# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002304#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002305printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002306 $(Echo) "BuildMode : " '$(BuildMode)'
2307 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2308 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2309 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2310 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2311 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2312 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2313 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
Bob Wilsonae7e2a42011-11-28 07:59:52 +00002314 $(Echo) "PROJ_internal_prefix : " '$(PROJ_internal_prefix)'
Reid Spencer11fde542005-01-16 02:20:54 +00002315 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2316 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2317 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002318 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002319 $(Echo) "UserTargets : " '$(UserTargets)'
2320 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2321 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2322 $(Echo) "ObjDir : " '$(ObjDir)'
2323 $(Echo) "LibDir : " '$(LibDir)'
2324 $(Echo) "ToolDir : " '$(ToolDir)'
2325 $(Echo) "ExmplDir : " '$(ExmplDir)'
2326 $(Echo) "Sources : " '$(Sources)'
2327 $(Echo) "TDFiles : " '$(TDFiles)'
2328 $(Echo) "INCFiles : " '$(INCFiles)'
2329 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002330 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002331 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2332 $(Echo) "Compile.C : " '$(Compile.C)'
2333 $(Echo) "Archive : " '$(Archive)'
2334 $(Echo) "YaccFiles : " '$(YaccFiles)'
2335 $(Echo) "LexFiles : " '$(LexFiles)'
2336 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002337 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002338 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002339 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2340 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002341
2342###
2343# Debugging
2344
Daniel Dunbar3c898122009-03-06 22:23:25 +00002345# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002346# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002347make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002348 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))