blob: b2b02c25d44b66aabd98c819be68a1ba1df2c438 [file] [log] [blame]
Misha Brukman6d5ab862004-04-24 00:10:56 +00001#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2#
John Criswelld8846c12003-10-21 14:33:46 +00003# The LLVM Compiler Infrastructure
4#
Chris Lattner57360d12007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Misha Brukmanef5dc702009-01-08 02:11:55 +00007#
Misha Brukman6d5ab862004-04-24 00:10:56 +00008#===------------------------------------------------------------------------===#
Chris Lattner00950542001-06-06 20:29:01 +00009#
Reid Spencer3a561f52004-10-23 20:04:14 +000010# This file is included by all of the LLVM makefiles. For details on how to use
11# it properly, please see the document MakefileGuide.html in the docs directory.
Chris Lattneraf06a082003-08-15 03:02:52 +000012#
Chris Lattner77efe272006-02-14 04:27:15 +000013#===-----------------------------------------------------------------------====#
Chris Lattner00950542001-06-06 20:29:01 +000014
Reid Spencercc2d1e22004-10-30 09:19:36 +000015################################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +000016# TARGETS: Define standard targets that can be invoked
Reid Spencercc2d1e22004-10-30 09:19:36 +000017################################################################################
John Criswell7a73b802003-06-30 21:59:07 +000018
Chris Lattner00950542001-06-06 20:29:01 +000019#--------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +000020# Define the various target sets
21#--------------------------------------------------------------------
Daniel Dunbar7f068f42009-09-13 22:39:27 +000022RecursiveTargets := all clean clean-all install uninstall install-bytecode \
23 unitcheck
Reid Spencer9e8d54a2004-12-06 05:35:13 +000024LocalTargets := all-local clean-local clean-all-local check-local \
Reid Spencer44cb1b32004-12-03 20:08:48 +000025 install-local printvars uninstall-local \
Daniel Dunbar7f068f42009-09-13 22:39:27 +000026 install-bytecode-local
Chris Lattner72e46332007-09-26 06:10:47 +000027TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
Bill Wendling4113bd12009-01-04 23:12:21 +000028 dist-zip unittests
Reid Spencercc2d1e22004-10-30 09:19:36 +000029UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30InternalTargets := preconditions distdir dist-hook
Reid Spencer3a561f52004-10-23 20:04:14 +000031
Reid Spencercc2d1e22004-10-30 09:19:36 +000032################################################################################
Reid Spencer9411c642004-10-26 22:26:33 +000033# INITIALIZATION: Basic things the makefile needs
Reid Spencercc2d1e22004-10-30 09:19:36 +000034################################################################################
35
36#--------------------------------------------------------------------
37# Set the VPATH so that we can find source files.
38#--------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +000039VPATH=$(PROJ_SRC_DIR)
Reid Spencer9411c642004-10-26 22:26:33 +000040
41#--------------------------------------------------------------------
Reid Spencer1abd46d2007-06-29 14:02:07 +000042# Reset the list of suffixes we know how to build.
Reid Spencer9411c642004-10-26 22:26:33 +000043#--------------------------------------------------------------------
44.SUFFIXES:
Greg Clayton43bc79a2010-07-13 18:47:09 +000045.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll .m .mm
Reid Spencercc2d1e22004-10-30 09:19:36 +000046.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
Reid Spencer9411c642004-10-26 22:26:33 +000047
Reid Spencer3a561f52004-10-23 20:04:14 +000048#--------------------------------------------------------------------
49# Mark all of these targets as phony to avoid implicit rule search
50#--------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +000051.PHONY: $(UserTargets) $(InternalTargets)
Reid Spencer3a561f52004-10-23 20:04:14 +000052
53#--------------------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +000054# Make sure all the user-target rules are double colon rules and
Reid Spencer9411c642004-10-26 22:26:33 +000055# they are defined first.
Reid Spencer3a561f52004-10-23 20:04:14 +000056#--------------------------------------------------------------------
57
Reid Spencercc2d1e22004-10-30 09:19:36 +000058$(UserTargets)::
Reid Spencer151f8ba2004-10-25 08:27:37 +000059
Daniel Dunbare29c3162011-11-03 22:46:21 +000060#------------------------------------------------------------------------
61# LLVMBuild Integration
62#------------------------------------------------------------------------
63#
64# We use llvm-build to generate all the data required by the Makefile based
65# build system in one swoop:
66#
67# - We generate a file (a Makefile fragment) in the object root which contains
68# all the definitions that are required by Makefiles across the entire
69# project.
70#
71# - We generate the library table used by llvm-config.
72#
73# - We generate the dependencies for the Makefile fragment, so that we will
74# automatically reconfigure outselves.
75
76# The path to the llvm-build tool itself.
77LLVMBuildTool := $(PROJ_SRC_ROOT)/utils/llvm-build/llvm-build
78
79# The files we are going to generate using llvm-build.
80LLVMBuildMakeFrag := $(PROJ_OBJ_ROOT)/Makefile.llvmbuild
81LLVMConfigLibraryDependenciesInc := \
Daniel Dunbarcb497b82011-12-01 20:18:09 +000082 $(PROJ_OBJ_ROOT)/tools/llvm-config/LibraryDependencies.inc
Daniel Dunbare29c3162011-11-03 22:46:21 +000083
Daniel Dunbara7de1d62011-11-12 00:18:02 +000084# This is for temporary backwards compatibility.
85ifndef TARGET_NATIVE_ARCH
86TARGET_NATIVE_ARCH := $(ARCH)
87endif
88
Daniel Dunbare29c3162011-11-03 22:46:21 +000089# The rule to create the LLVMBuild Makefile fragment as well as the llvm-config
90# library table.
91#
92# Note that this target gets its real dependencies generated for us by
93# llvm-build.
Daniel Dunbar28088532011-11-09 18:48:22 +000094#
95# We include a dependency on this Makefile to ensure that changes to the
96# generation command get picked up.
Daniel Dunbar8979f4e2012-02-02 23:27:32 +000097$(LLVMBuildMakeFrag): $(PROJ_SRC_ROOT)/Makefile.rules \
98 $(PROJ_OBJ_ROOT)/Makefile.config
Daniel Dunbard5574f62011-11-03 23:01:50 +000099 $(Echo) Constructing LLVMBuild project information.
100 $(Verb) $(LLVMBuildTool) \
Daniel Dunbara7de1d62011-11-12 00:18:02 +0000101 --native-target "$(TARGET_NATIVE_ARCH)" \
Daniel Dunbar83337302011-11-10 01:16:48 +0000102 --enable-targets "$(TARGETS_TO_BUILD)" \
Preston Gurd75493542012-05-07 19:38:40 +0000103 --enable-optional-components "$(OPTIONAL_COMPONENTS)" \
Daniel Dunbare29c3162011-11-03 22:46:21 +0000104 --write-library-table $(LLVMConfigLibraryDependenciesInc) \
105 --write-make-fragment $(LLVMBuildMakeFrag)
106
Daniel Dunbar28088532011-11-09 18:48:22 +0000107# For completeness, let Make know how the extra files are generated.
108$(LLVMConfigLibraryDependenciesInc): $(LLVMBuildMakeFrag)
109
Daniel Dunbare29c3162011-11-03 22:46:21 +0000110# Include the generated Makefile fragment.
111#
112# We currently only include the dependencies for the fragment itself if we are
113# at the top-level. Otherwise, recursive invocations would ends up doing
114# substantially more redundant stat'ing.
115#
116# This means that we won't properly regenerate things for developers used to
117# building from a subdirectory, but that is always somewhat unreliable.
118ifeq ($(LEVEL),.)
119LLVMBUILD_INCLUDE_DEPENDENCIES := 1
Daniel Dunbar2e5b88e2012-02-02 23:27:34 +0000120
121# Clean the generated makefile fragment at the top-level.
122clean-local::
123 -$(Verb) $(RM) -f $(LLVMBuildMakeFrag)
Daniel Dunbare29c3162011-11-03 22:46:21 +0000124endif
125-include $(LLVMBuildMakeFrag)
126
Reid Spencer9411c642004-10-26 22:26:33 +0000127################################################################################
128# PRECONDITIONS: that which must be built/checked first
129################################################################################
130
Reid Spencer44cb1b32004-12-03 20:08:48 +0000131SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencer11fde542005-01-16 02:20:54 +0000132 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
133ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
134ConfigureScript := $(PROJ_SRC_ROOT)/configure
135ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
136MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
137MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
138MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
139MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
140PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
141ifneq ($(MakefileCommonIn),)
142PreConditions += $(MakefileCommon)
143endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000144
Reid Spencer11fde542005-01-16 02:20:54 +0000145ifneq ($(MakefileConfigIn),)
146PreConditions += $(MakefileConfig)
147endif
Reid Spencer9411c642004-10-26 22:26:33 +0000148
Reid Spencerca739c62005-08-25 04:59:49 +0000149preconditions: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000150
151#------------------------------------------------------------------------
152# Make sure the BUILT_SOURCES are built first
153#------------------------------------------------------------------------
Reid Spencer07a549a2004-12-16 07:15:16 +0000154$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +0000155
Reid Spencer9bb399c2007-02-07 19:13:19 +0000156clean-all-local::
Reid Spencer9411c642004-10-26 22:26:33 +0000157ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000158 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +0000159endif
160
Reid Spencer11fde542005-01-16 02:20:54 +0000161ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer31f95242004-12-16 08:00:46 +0000162spotless:
Reid Spencer31f95242004-12-16 08:00:46 +0000163 $(Verb) if test -x config.status ; then \
Reid Spencer11fde542005-01-16 02:20:54 +0000164 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000165 $(MKDIR) .spotless.save ; \
166 $(MV) config.status .spotless.save ; \
167 $(MV) mklib .spotless.save ; \
168 $(MV) projects .spotless.save ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000169 $(RM) -rf * ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000170 $(MV) .spotless.save/config.status . ; \
171 $(MV) .spotless.save/mklib . ; \
172 $(MV) .spotless.save/projects . ; \
173 $(RM) -rf .spotless.save ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000174 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000175 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
176 $(ConfigStatusScript) ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000177 else \
Reid Spencer11fde542005-01-16 02:20:54 +0000178 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer31f95242004-12-16 08:00:46 +0000179 fi
Reid Spencer25e8a702005-12-21 23:17:06 +0000180else
181spotless:
182 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer31f95242004-12-16 08:00:46 +0000183endif
184
Reid Spencercc2d1e22004-10-30 09:19:36 +0000185$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencer80f0ef72004-10-28 00:41:43 +0000186
Reid Spencer9411c642004-10-26 22:26:33 +0000187#------------------------------------------------------------------------
188# Make sure we're not using a stale configuration
189#------------------------------------------------------------------------
Reid Spencerc3719842004-12-16 18:26:53 +0000190reconfigure:
Reid Spencer11fde542005-01-16 02:20:54 +0000191 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
192 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencerc3719842004-12-16 18:26:53 +0000193 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
194 $(ConfigStatusScript)
195
Reid Spencercc2d1e22004-10-30 09:19:36 +0000196.PRECIOUS: $(ConfigStatusScript)
Jim Grosbache5e2c412010-10-01 22:32:12 +0000197$(ConfigStatusScript): $(ConfigureScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000198 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000199 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencer7d277002004-11-29 12:37:44 +0000200 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
201 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000202
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000203#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000204# Make sure the configuration makefile is up to date
205#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000206ifneq ($(MakefileConfigIn),)
207$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000208 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000209 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
210endif
211
212ifneq ($(MakefileCommonIn),)
213$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
214 $(Echo) Regenerating $@
215 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
216endif
Reid Spencer9411c642004-10-26 22:26:33 +0000217
218#------------------------------------------------------------------------
219# If the Makefile in the source tree has been updated, copy it over into the
220# build tree. But, only do this if the source and object makefiles differ
221#------------------------------------------------------------------------
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000222ifndef PROJ_MAKEFILE
223PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
224endif
225
Reid Spencer11fde542005-01-16 02:20:54 +0000226ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000227
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000228Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000229 $(Echo) "Updating Makefile"
230 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000231 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000232
233# Copy the Makefile.* files unless we're in the root directory which avoids
234# the copying of Makefile.config.in or other things that should be explicitly
235# taken care of.
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000236$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
Reid Spencer86606782004-10-26 23:10:00 +0000237 @case '$?' in \
238 *Makefile.rules) ;; \
239 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000240 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000241 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000242 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000243 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000244
Reid Spencer9411c642004-10-26 22:26:33 +0000245endif
246
247#------------------------------------------------------------------------
248# Set up the basic dependencies
249#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000250$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000251
252all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000253clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000254clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000255install:: install-local
256uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000257install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000258install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000259
260###############################################################################
261# VARIABLES: Set up various variables based on configuration data
262###############################################################################
263
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000264# Variable for if this make is for a "cleaning" target
265ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
266 IS_CLEANING_TARGET=1
267endif
268
Reid Spencer3a561f52004-10-23 20:04:14 +0000269#--------------------------------------------------------------------
270# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000271#--------------------------------------------------------------------
272
Reid Spencer0a522b12007-07-10 07:19:53 +0000273CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000274ifeq ($(ENABLE_OPTIMIZED),1)
275 BuildMode := Release
276 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000277 ifneq ($(HOST_OS),FreeBSD)
278 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000279 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000280 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000281 endif
282
283 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000284 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
285 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000286 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000287 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
288 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000289 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
290 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
291 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000292 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000293 BuildMode := $(BuildMode)+Debug
294 CXX.Flags += -g
295 C.Flags += -g
296 LD.Flags += -g
297 KEEP_SYMBOLS := 1
298 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000299else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000300 ifdef NO_DEBUG_SYMBOLS
301 BuildMode := Unoptimized
302 CXX.Flags +=
303 C.Flags +=
304 LD.Flags +=
305 KEEP_SYMBOLS := 1
306 else
307 BuildMode := Debug
308 CXX.Flags += -g
309 C.Flags += -g
310 LD.Flags += -g
311 KEEP_SYMBOLS := 1
312 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000313endif
314
Eric Christopherbee515f2011-11-11 22:51:42 +0000315ifeq ($(ENABLE_LIBCPP),1)
316 CXX.Flags += -stdlib=libc++
317 LD.Flags += -stdlib=libc++
318endif
Chris Lattner16969802011-11-10 21:12:28 +0000319
Eric Christopher82120022012-08-03 19:47:14 +0000320ifeq ($(ENABLE_CXX11),1)
321 CXX.Flags += -std=c++11
322endif
323
Eric Christopher09a88732012-08-03 19:58:20 +0000324ifeq ($(ENABLE_WERROR),1)
325 CXX.Flags += -Werror
326 C.Flags += -Werror
327endif
328
David Greenedbefd0c2009-04-17 14:49:22 +0000329ifeq ($(ENABLE_PROFILING),1)
330 BuildMode := $(BuildMode)+Profile
331 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
332 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
333 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
334 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000335endif
336
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000337ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
Benjamin Kramer01442cd2011-12-22 21:41:32 +0000338 CXX.Flags += -fvisibility-inlines-hidden
339endif
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000340
Chris Lattnerc96d5082010-01-24 20:20:40 +0000341ifdef ENABLE_EXPENSIVE_CHECKS
342 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
343 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
344 REQUIRES_RTTI := 1
345endif
346
Reid Spencer99655e12006-08-25 19:54:53 +0000347# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000348ifndef REQUIRES_EH
349 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000350else
351 # If the library requires EH, it also requires RTTI.
352 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000353endif
Reid Spencer99655e12006-08-25 19:54:53 +0000354
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000355ifdef REQUIRES_FRAME_POINTER
356 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
357 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
358 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
359endif
360
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000361# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000362ifneq ($(REQUIRES_RTTI), 1)
363 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000364endif
365
Peter Collingbourneed50d382010-10-22 12:54:34 +0000366ifeq ($(ENABLE_COVERAGE),1)
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000367 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000368 CXX.Flags += -ftest-coverage -fprofile-arcs
369 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000370endif
371
Reid Spencer854071c2006-04-10 16:46:04 +0000372# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
373# then disable assertions by defining the appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000374ifeq ($(DISABLE_ASSERTIONS),1)
375 CPP.Defines += -DNDEBUG
376else
Duncan Sands8246adc2010-07-07 07:48:00 +0000377 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000378 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000379endif
380
Misha Brukmanef5dc702009-01-08 02:11:55 +0000381# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
382# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000383# appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000384ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
David Greenea696d242007-06-28 19:36:08 +0000385 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000386 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000387endif
388
Nick Lewyckya15dc032009-02-26 07:44:16 +0000389# LOADABLE_MODULE implies several other things so we force them to be
390# defined/on.
391ifdef LOADABLE_MODULE
392 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000393 LINK_LIBS_IN_SHARED := 1
394endif
395
396ifdef SHARED_LIBRARY
397 ENABLE_PIC := 1
398 PIC_FLAG = "(PIC)"
399endif
400
Reid Spencer89b0d992006-12-16 22:07:52 +0000401ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000402 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000403 # Nothing. Win32 defaults to PIC and warns when given -fPIC
404 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000405 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000406 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000407 CXX.Flags += -fno-common
408 C.Flags += -fno-common
409 else
410 # Linux and others; pass -fPIC
411 CXX.Flags += -fPIC
412 C.Flags += -fPIC
413 endif
414 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000415else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000416 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000417 CXX.Flags += -mdynamic-no-pic
418 C.Flags += -mdynamic-no-pic
419 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000420endif
421
Daniel Dunbardd464df2010-05-10 20:11:56 +0000422# Support makefile variable to disable any kind of timestamp/non-deterministic
423# info from being used in the build.
424ifeq ($(ENABLE_TIMESTAMPS),1)
425 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
426else
427 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
428endif
429
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000430ifeq ($(HOST_OS),MingW)
431 # Work around PR4957
432 CPP.Defines += -D__NO_CTYPE_INLINE
433 ifeq ($(LLVM_CROSS_COMPILING),1)
434 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
435 ifdef TOOLNAME
436 LD.Flags += -Wl,--allow-multiple-definition
437 endif
438 endif
439endif
440
Chris Lattner1bdedb92011-04-09 06:01:28 +0000441CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000442CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000443AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000444
Chris Lattner16620fc2006-07-27 18:19:51 +0000445# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000446ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000447 CXX.Flags += -mieee
448 CPP.BaseFlags += -mieee
449ifeq ($(ENABLE_PIC),0)
450 CXX.Flags += -fPIC
451 CPP.BaseFlags += -fPIC
452endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000453
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000454 LD.Flags += -Wl,--no-relax
455endif
456
NAKAMURA Takumib9dec1f2010-11-26 09:32:02 +0000457# GNU ld/PECOFF accepts but ignores them below;
458# --version-script
459# --export-dynamic
460# --rpath
461# FIXME: autoconf should be aware of them.
462ifneq (,$(filter $(HOST_OS),Cygwin MingW))
463 HAVE_LINK_VERSION_SCRIPT := 0
464 RPATH :=
465 RDYNAMIC := -Wl,--export-all-symbols
466endif
467
Reid Spencer3a561f52004-10-23 20:04:14 +0000468#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000469# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000470#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000471TargetMode :=
472ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000473 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000474endif
475
476ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000477ObjDir := $(ObjRootDir)
478LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
479ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
480ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
481LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
482LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
483LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000484
Reid Spencer3a561f52004-10-23 20:04:14 +0000485#--------------------------------------------------------------------
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000486# Locations of shared libraries
487#--------------------------------------------------------------------
488
489SharedPrefix := lib
490SharedLibDir := $(LibDir)
491LLVMSharedLibDir := $(LLVMLibDir)
492
493# Win32.DLL prefers to be located on the "PATH" of binaries.
494ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
495 SharedLibDir := $(ToolDir)
496 LLVMSharedLibDir := $(LLVMToolDir)
497
498 ifeq ($(HOST_OS),Cygwin)
499 SharedPrefix := cyg
500 else
501 SharedPrefix :=
502 endif
503endif
504
505#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000506# LLVM Capable Compiler
507#--------------------------------------------------------------------
508
Chris Lattner70d77002011-04-09 19:53:16 +0000509ifneq ($(findstring llvm-gcc,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000510 LLVMCC := $(LLVMGCC)
511 LLVMCXX := $(LLVMGXX)
512else
Chris Lattner70d77002011-04-09 19:53:16 +0000513 ifneq ($(findstring clang,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000514 ifneq ($(CLANGPATH),)
515 LLVMCC := $(CLANGPATH)
516 LLVMCXX := $(CLANGXXPATH)
517 else
518 ifeq ($(ENABLE_BUILT_CLANG),1)
519 LLVMCC := $(LLVMToolDir)/clang
520 LLVMCXX := $(LLVMToolDir)/clang++
521 endif
522 endif
523 endif
524endif
525
526#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000527# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000528#--------------------------------------------------------------------
Daniel Dunbar01b825d2011-11-11 22:59:45 +0000529EchoCmd := $(ECHO) llvm[$(MAKELEVEL)]:
530ifdef BUILD_DIRS_ONLY
531EchoCmd := $(EchoCmd) "(build tools)":
532endif
533
534Echo := @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000535ifndef LLVMAS
536LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
537endif
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000538ifndef LLVM_TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000539 ifeq ($(LLVM_CROSS_COMPILING),1)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000540 LLVM_TBLGEN := $(BuildLLVMToolDir)/llvm-tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000541 else
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000542 LLVM_TBLGEN := $(LLVMToolDir)/llvm-tblgen$(EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000543 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000544endif
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000545ifeq ($(LLVM_CROSS_COMPILING),1)
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000546 LLVM_CONFIG := $(BuildLLVMToolDir)/llvm-config$(BUILD_EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000547else
Daniel Dunbarcb497b82011-12-01 20:18:09 +0000548 LLVM_CONFIG := $(LLVMToolDir)/llvm-config$(EXEEXT)
Daniel Dunbar7c67d322011-11-14 17:17:45 +0000549endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000550ifndef LLVMDIS
Eric Christopher164a3082012-08-28 01:17:46 +0000551LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000552endif
553ifndef LLI
Eric Christopher164a3082012-08-28 01:17:46 +0000554LLI := $(LLVMToolDir)/lli$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000555endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000556ifndef LLC
Eric Christopher164a3082012-08-28 01:17:46 +0000557LLC := $(LLVMToolDir)/llc$(EXEEXT)
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000558endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000559ifndef LOPT
Eric Christopher164a3082012-08-28 01:17:46 +0000560LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000561endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000562ifndef LBUGPOINT
Eric Christopher164a3082012-08-28 01:17:46 +0000563LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000564endif
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +0000565ifndef LLVMLINK
Eric Christopher164a3082012-08-28 01:17:46 +0000566LLVMLINK := $(LLVMToolDir)/llvm-link$(EXEEXT)
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +0000567endif
Reid Spencere46687c2006-12-03 21:01:45 +0000568
Reid Spencer3a561f52004-10-23 20:04:14 +0000569#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000570# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000571#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000572
Anton Korobeynikove55db742009-08-18 00:40:33 +0000573ifeq ($(HOST_OS),Darwin)
Bob Wilsonf3ad95a2012-10-12 21:48:14 +0000574 ifdef MACOSX_DEPLOYMENT_TARGET
575 DARWIN_VERSION := $(MACOSX_DEPLOYMENT_TARGET)
576 else
Scott Michel87af5f02009-03-12 21:03:53 +0000577 DARWIN_VERSION := `sw_vers -productVersion`
Bob Wilsonf3ad95a2012-10-12 21:48:14 +0000578 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000579 # Strip a number like 10.4.7 to 10.4
580 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
581 # Get "4" out of 10.4 for later pieces in the makefile.
582 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000583
Daniel Dunbar7bc0f272010-12-08 01:48:05 +0000584 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
585 SharedLinkOptions := -dynamiclib
Evan Chenga5e225e2009-09-08 18:52:20 +0000586 ifneq ($(ARCH),ARM)
587 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
588 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000589else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000590 SharedLinkOptions=-shared
Scott Michel87af5f02009-03-12 21:03:53 +0000591endif
592
Anton Korobeynikove55db742009-08-18 00:40:33 +0000593ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000594 ifneq ($(ARCH),ARM)
595 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
596 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000597endif
598
Reid Spencer492c2932005-01-11 04:31:07 +0000599ifdef SHARED_LIBRARY
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000600ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000601ifneq ($(HOST_OS),Darwin)
602 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
John Criswell82f4a5a2003-07-31 20:58:51 +0000603endif
Scott Michel87af5f02009-03-12 21:03:53 +0000604endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000605endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000606
Reid Spencercceed9f2004-11-08 17:32:12 +0000607ifdef TOOL_VERBOSE
608 C.Flags += -v
609 CXX.Flags += -v
610 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000611 VERBOSE := 1
612endif
613
Reid Spencer3a561f52004-10-23 20:04:14 +0000614# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000615ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000616 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000617 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000618 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000619else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000620 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000621endif
622
Vikram S. Advefeeae582002-09-18 11:55:13 +0000623# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000624ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000625 Strip := $(PLATFORMSTRIPOPTS)
626 StripWarnMsg := "(without symbols)"
Charles Davis13460c92011-10-26 02:28:32 +0000627 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000628endif
629
Rafael Espindola31552a92010-10-15 00:58:12 +0000630ifdef TOOL_NO_EXPORTS
631 DynamicFlags :=
632else
633 DynamicFlag := $(RDYNAMIC)
634endif
635
Reid Spencer3a561f52004-10-23 20:04:14 +0000636# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000637ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Bill Wendling0a031172012-10-05 00:22:46 +0000638 ifneq ($(HOST_OS), Darwin)
639 ifdef TOOLNAME
640 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
641 ifdef EXAMPLE_TOOL
642 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(DynamicFlag)
643 else
644 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(DynamicFlag)
645 endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000646 endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000647else
Bill Wendling0a031172012-10-05 00:22:46 +0000648 ifneq ($(DARWIN_MAJVERS),4)
649 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
650 endif
651 ifeq ($(RC_BUILDIT),YES)
Bill Wendlingc33b9302012-10-10 05:29:15 +0000652 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
Bill Wendling0a031172012-10-05 00:22:46 +0000653 LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile)
654 endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000655endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000656endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000657
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000658
Reid Spencer3a561f52004-10-23 20:04:14 +0000659#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000660# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000661#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000662
Daniel Dunbare2a91a72011-06-16 22:30:38 +0000663ifdef EXTRA_LD_OPTIONS
664LD.Flags += $(EXTRA_LD_OPTIONS)
665endif
666
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000667ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000668CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000669endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000670CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
Rafael Espindola9993a3a2012-02-28 23:32:06 +0000671 $(EXTRA_OPTIONS) $(COVERED_SWITCH_DEFAULT)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000672# Enable cast-qual for C++; the workaround is to use const_cast.
673CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000674
Anton Korobeynikove55db742009-08-18 00:40:33 +0000675ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000676 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000677endif
678
Chris Lattner73faa392006-05-30 16:38:06 +0000679# If we are building a universal binary on Mac OS/X, pass extra options. This
680# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000681# apps.
682#
683# The following can be optionally specified:
684# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
685# For Mac OS/X 10.4 Intel machines, the traditional one is:
686# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
687# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
688# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
689# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000690ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000691 ifndef UNIVERSAL_ARCH
692 UNIVERSAL_ARCH := i386 ppc
693 endif
694 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
695 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000696 ifdef UNIVERSAL_SDK_PATH
697 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000698 endif
699
700 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000701 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000702else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000703 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000704 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000705 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000706 else
707 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000708 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000709 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000710 endif
711 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000712endif
713
Anton Korobeynikove55db742009-08-18 00:40:33 +0000714ifeq ($(HOST_OS),SunOS)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000715CPP.BaseFlags += -include llvm/Support/Solaris.h
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000716endif
717
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000718ifeq ($(HOST_OS),AuroraUX)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000719CPP.BaseFlags += -include llvm/Support/Solaris.h
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000720endif # !HOST_OS - AuroraUX.
721
David Meyer107506f2012-02-18 10:03:19 +0000722# On Windows, SharedLibDir != LibDir. The order is important.
723ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
724 LD.Flags += -L$(SharedLibDir) -L$(LibDir) -L$(LLVMToolDir) -L$(LLVMLibDir)
725else
726 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
727endif
728
NAKAMURA Takumie2aa5d52011-10-11 12:51:44 +0000729CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000730# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000731CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
732 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000733 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
734 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
735 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000736
Daniel Dunbar8d694142011-11-03 21:01:32 +0000737ifeq ($(INCLUDE_BUILD_DIR),1)
738 CPP.Flags += -I$(ObjDir)
739endif
740
Daniel Dunbar58194302011-04-11 22:37:39 +0000741# SHOW_DIAGNOSTICS support.
742ifeq ($(SHOW_DIAGNOSTICS),1)
743 Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
744 CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
745else
746 Compile.Wrapper :=
747endif
748
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000749Compile.C = $(Compile.Wrapper) \
Eric Christopher42dffa52012-08-03 17:45:31 +0000750 $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000751 $(TargetCommonOpts) $(CompileCommonOpts) -c
752Compile.CXX = $(Compile.Wrapper) \
Eric Christopher42dffa52012-08-03 17:45:31 +0000753 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000754 $(TargetCommonOpts) $(CompileCommonOpts) -c
755Preprocess.CXX= $(Compile.Wrapper) \
Eric Christopher42dffa52012-08-03 17:45:31 +0000756 $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000757 $(CompileCommonOpts) $(CXX.Flags) -E
758Link = $(Compile.Wrapper) \
Daniel Dunbar58194302011-04-11 22:37:39 +0000759 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
Daniel Dunbar9969bc92011-11-11 22:59:42 +0000760 $(LDFLAGS) $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000761
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000762BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000763 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000764Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000765 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000766
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000767BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000768 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000769
Misha Brukmanef5dc702009-01-08 02:11:55 +0000770ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
771ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000772DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000773
774# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
775# paths. In this case, the SYSPATH function (defined in
776# Makefile.config) transforms Unix paths into Windows paths.
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000777TableGen.Flags= -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000778 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000779 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
780 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
Peter Collingbournede8f33c2011-10-06 01:51:51 +0000781LLVMTableGen = $(LLVM_TBLGEN) $(TableGen.Flags)
Chris Lattner6e0a5292008-01-15 23:27:40 +0000782
Reid Spencercc2d1e22004-10-30 09:19:36 +0000783Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000784LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000785ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000786Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000787else
Reid Spencer3a561f52004-10-23 20:04:14 +0000788Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000789endif
790
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000791AliasTool = ln -s
792
Chris Lattner00950542001-06-06 20:29:01 +0000793#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000794# Get the list of source files and compute object file
795# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000796#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000797
798ifndef SOURCES
799 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000800 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000801else
Chris Lattner89681112006-01-27 22:13:12 +0000802 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000803endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000804
Chris Lattner89681112006-01-27 22:13:12 +0000805ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000806Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000807endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000808
Chris Lattner89681112006-01-27 22:13:12 +0000809BaseNameSources := $(sort $(basename $(Sources)))
810
811ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000812ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
813
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000814#----------------------------------------------------------
815# For Mingw MSYS bash and Python/w32:
816#
817# $(ECHOPATH) prints DOSish pathstring.
818# ex) $(ECHOPATH) /include/sys/types.h
819# --> C:/mingw/include/sys/types.h
820# built-in "echo" does not transform path to DOSish path.
821#
822# FIXME: It would not be needed when MSYS's python
823# were provided.
824#----------------------------------------------------------
825
826ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
827 ECHOPATH := $(Verb)python -u -c "import sys;print ' '.join(sys.argv[1:])"
828else
829 ECHOPATH := $(Verb)$(ECHO)
830endif
831
Reid Spencer3a561f52004-10-23 20:04:14 +0000832###############################################################################
833# DIRECTORIES: Handle recursive descent of directory structure
834###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000835
Chris Lattner00950542001-06-06 20:29:01 +0000836#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000837# Provide rules to make install dirs. This must be early
838# in the file so they get built before dependencies
839#---------------------------------------------------------
840
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000841$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000842 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000843
Reid Spencercc2d1e22004-10-30 09:19:36 +0000844# To create other directories, as needed, and timestamp their creation
845%/.dir:
846 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000847 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000848
Reid Spencer815cbcf2004-11-18 10:03:46 +0000849.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
850.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000851
852#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000853# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000854#---------------------------------------------------------
855
Misha Brukmanef5dc702009-01-08 02:11:55 +0000856SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000857ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000858SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000859
860ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000861$(RecursiveTargets)::
862 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000863 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000864 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000865 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000866 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000867 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000868 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000869 done
Chris Lattner82033602006-07-26 20:22:26 +0000870else
871$(RecursiveTargets)::
872 $(Verb) for dir in $(DIRS); do \
873 ($(MAKE) -C $$dir $@ ) || exit 1; \
874 done
875endif
876
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000877endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000878
Reid Spencer3a561f52004-10-23 20:04:14 +0000879#---------------------------------------------------------
880# Handle the EXPERIMENTAL_DIRS options ensuring success
881# after each directory is built.
882#---------------------------------------------------------
883ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000884$(RecursiveTargets)::
885 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000886 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000887 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000888 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000889 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000890 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000891 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000892 done
893endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000894
Reid Spencer25e8a702005-12-21 23:17:06 +0000895#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000896# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
897#-----------------------------------------------------------
898ifdef OPTIONAL_PARALLEL_DIRS
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000899 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 +0000900endif
901
902#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000903# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000904#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000905ifdef PARALLEL_DIRS
906
Reid Spencercc2d1e22004-10-30 09:19:36 +0000907SubDirs += $(PARALLEL_DIRS)
908
Reid Spencer44cb1b32004-12-03 20:08:48 +0000909# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000910all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
911clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000912clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000913install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000914uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000915install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000916unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000917
Reid Spencer345235ca2004-12-04 22:34:09 +0000918ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000919
Reid Spencer345235ca2004-12-04 22:34:09 +0000920$(ParallelTargets) :
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000921 $(Verb) \
922 SD=$(PROJ_SRC_DIR)/$(@D); \
923 DD=$(@D); \
924 if [ ! -f $$SD/Makefile ]; then \
925 SD=$(@D); \
926 DD=$(notdir $(@D)); \
927 fi; \
928 if ([ ! -f $$DD/Makefile ] || \
929 command test $$DD/Makefile -ot \
930 $$SD/Makefile ); then \
931 $(MKDIR) $$DD; \
932 $(CP) $$SD/Makefile $$DD/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000933 fi; \
NAKAMURA Takumia87a7db2011-10-16 02:54:19 +0000934 $(MAKE) -C $$DD $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000935endif
936
Reid Spencer3a561f52004-10-23 20:04:14 +0000937#---------------------------------------------------------
938# Handle the OPTIONAL_DIRS options for directores that may
939# or may not exist.
940#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000941ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000942
Reid Spencercc2d1e22004-10-30 09:19:36 +0000943SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000944
Chris Lattner82033602006-07-26 20:22:26 +0000945ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000946$(RecursiveTargets)::
947 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000948 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000949 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000950 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000951 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000952 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000953 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000954 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000955 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000956 done
Chris Lattner82033602006-07-26 20:22:26 +0000957else
958$(RecursiveTargets)::
959 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Stephen Wilsonc1566322011-02-20 03:51:07 +0000960 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
961 ($(MAKE) -C$$dir $@ ) || exit 1; \
962 fi \
Chris Lattner82033602006-07-26 20:22:26 +0000963 done
964endif
John Criswell2a6530f2003-06-27 16:58:44 +0000965endif
966
Reid Spencerfc945082004-08-20 09:20:05 +0000967#---------------------------------------------------------
968# Handle the CONFIG_FILES options
969#---------------------------------------------------------
970ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000971
Reid Spencera2a31bf2007-02-06 18:53:14 +0000972ifdef NO_INSTALL
973install-local::
974 $(Echo) Install circumvented with NO_INSTALL
975uninstall-local::
976 $(Echo) UnInstall circumvented with NO_INSTALL
977else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000978install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
979 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000980 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000981 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000982 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000983 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000984 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000985 else \
986 $(ECHO) Error: cannot find config file $${file}. ; \
987 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000988 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000989
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000990uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000991 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000992 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000993 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000994 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000995endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000996
Reid Spencerfc945082004-08-20 09:20:05 +0000997endif
998
Reid Spencer3a561f52004-10-23 20:04:14 +0000999###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +00001000# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001001###############################################################################
1002
1003#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001004# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +00001005# libraries needed when linking. There are "Proj" libs
1006# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +00001007# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001008#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +00001009
Chris Lattneref0d0f12006-09-04 04:47:21 +00001010ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001011ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
1012ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +00001013ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
1014ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
1015endif
1016
1017ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001018LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
1019LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001020LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001021LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +00001022endif
1023
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001024# Loadable module for Win32 requires all symbols resolved for linking.
1025# Then all symbols in LLVM.dll will be available.
1026ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001027 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +00001028 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
1029 LINK_COMPONENTS += all
1030 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001031 endif
1032endif
1033
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001034ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +00001035ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +00001036
1037# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
1038# clean in tools, then do a make in tools (instead of at the top level).
1039$(LLVM_CONFIG):
1040 @echo "*** llvm-config doesn't exist - rebuilding it."
1041 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +00001042
Chris Lattner0a1db822006-09-04 05:23:20 +00001043$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
1044
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001045ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001046# We can take the "auto-import" feature to get rid of using dllimport.
1047ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1048LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
1049 -L $(SharedLibDir)
1050endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001051LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001052LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001053else
Chris Lattnerf636aa92010-09-01 16:11:17 +00001054
1055ifndef NO_LLVM_CONFIG
1056LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
1057ifeq ($(LLVMConfigLibs),Error)
1058$(error llvm-config --libs failed)
1059endif
1060LLVMLibsOptions += $(LLVMConfigLibs)
1061LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
1062ifeq ($(LLVMConfigLibfiles),Error)
1063$(error llvm-config --libfiles failed)
1064endif
1065LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
1066endif
1067
Chris Lattneref0d0f12006-09-04 04:47:21 +00001068endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +00001069endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001070endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001071
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001072# Set up the library exports file.
1073ifdef EXPORTED_SYMBOL_FILE
1074
1075# First, set up the native export file, which may differ from the source
1076# export file.
1077
1078ifeq ($(HOST_OS),Darwin)
1079# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +00001080NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +00001081$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001082 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001083clean-local::
1084 -$(Verb) $(RM) -f $(NativeExportsFile)
1085else
Dan Gohmanda612d62010-06-01 14:56:56 +00001086ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1087# Gold and BFD ld require a version script rather than a plain list.
1088NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1089$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1090 $(Verb) echo "{" > $@
Eric Christopher5084fa02012-03-12 20:58:14 +00001091 $(Verb) grep -q '[[:alnum:]_]' $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001092 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001093ifneq ($(HOST_OS),OpenBSD)
Dan Gohmanda612d62010-06-01 14:56:56 +00001094 $(Verb) echo " local: *;" >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001095endif
Dan Gohmanda612d62010-06-01 14:56:56 +00001096 $(Verb) echo "};" >> $@
1097clean-local::
1098 -$(Verb) $(RM) -f $(NativeExportsFile)
1099else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001100ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +00001101# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001102NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001103$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1104 $(Echo) Generating $(notdir $@)
1105 $(Verb) $(ECHO) "EXPORTS" > $@
1106 $(Verb) $(CAT) $< >> $@
1107clean-local::
1108 -$(Verb) $(RM) -f $(NativeExportsFile)
1109else
Dan Gohman9a7570c2010-09-03 17:29:33 +00001110# Default behavior: just use the exports file verbatim.
1111NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1112endif
1113endif
1114endif
1115
1116# Now add the linker command-line options to use the native export file.
1117
1118# Darwin
1119ifeq ($(HOST_OS),Darwin)
1120LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1121endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001122
Dan Gohmane05f6092010-04-16 22:58:15 +00001123# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001124ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1125LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001126endif
1127
Dan Gohman9a7570c2010-09-03 17:29:33 +00001128# Windows
1129ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1130# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1131SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001132endif
1133
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001134endif
1135
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001136###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001137# Library Build Rules: Four ways to build a library
1138###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001139
Reid Spencer7980ea42004-12-05 05:17:22 +00001140#---------------------------------------------------------
1141# Bytecode Module Targets:
1142# If the user set MODULE_NAME then they want to build a
1143# bytecode module from the sources. We compile all the
1144# sources and link it together into a single bytecode
1145# module.
1146#---------------------------------------------------------
1147
1148ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001149ifeq ($(strip $(LLVMCC)),)
1150$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001151else
Reid Spencer7980ea42004-12-05 05:17:22 +00001152
1153Module := $(LibDir)/$(MODULE_NAME).bc
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001154LinkModule := $(LLVMLINK)
Reid Spencerbbd5e432006-04-12 18:21:35 +00001155
Reid Spencer7980ea42004-12-05 05:17:22 +00001156
1157ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001158LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001159endif
1160
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001161$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001162 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001163 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1164
1165all-local:: $(Module)
1166
1167clean-local::
1168ifneq ($(strip $(Module)),)
1169 -$(Verb) $(RM) -f $(Module)
1170endif
1171
Reid Spencerab3690b2004-12-13 07:38:07 +00001172ifdef BYTECODE_DESTINATION
1173ModuleDestDir := $(BYTECODE_DESTINATION)
1174else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001175ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001176endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001177
Reid Spencera2a31bf2007-02-06 18:53:14 +00001178ifdef NO_INSTALL
1179install-local::
1180 $(Echo) Install circumvented with NO_INSTALL
1181uninstall-local::
1182 $(Echo) Uninstall circumvented with NO_INSTALL
1183else
Reid Spencerab3690b2004-12-13 07:38:07 +00001184DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1185
1186install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001187install-local:: $(DestModule)
1188
Misha Brukmanef5dc702009-01-08 02:11:55 +00001189$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001190 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001191 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001192
1193uninstall-local::
1194 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1195 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001196endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001197
1198endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001199endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001200
Reid Spencer3a561f52004-10-23 20:04:14 +00001201# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001202ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001203
Misha Brukmanf547a122009-08-17 15:31:24 +00001204# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001205LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001206ifdef LOADABLE_MODULE
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001207BaseLibName.A := $(LIBRARYNAME).a
1208BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001209else
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001210BaseLibName.A := lib$(LIBRARYNAME).a
1211BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001212endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001213LibName.A := $(LibDir)/$(BaseLibName.A)
1214LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001215LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001216LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001217
Reid Spencer3a561f52004-10-23 20:04:14 +00001218#---------------------------------------------------------
1219# Shared Library Targets:
1220# If the user asked for a shared library to be built
1221# with the SHARED_LIBRARY variable, then we provide
1222# targets for building them.
1223#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001224ifdef SHARED_LIBRARY
1225
Nick Lewyckya15dc032009-02-26 07:44:16 +00001226all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001227
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001228ifdef EXPORTED_SYMBOL_FILE
1229$(LibName.SO): $(NativeExportsFile)
1230endif
1231
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001232ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001233ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001234SharedLibKindMessage := "Loadable Module"
Daniel Dunbar7bc0f272010-12-08 01:48:05 +00001235SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
Reid Spencer42fe4552006-08-07 23:12:15 +00001236else
1237SharedLibKindMessage := "Shared Library"
1238endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001239$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001240 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001241 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001242 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001243 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001244else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001245$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001246 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001247 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001248endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001249
1250clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001251ifneq ($(strip $(LibName.SO)),)
1252 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001253endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001254
Reid Spencera2a31bf2007-02-06 18:53:14 +00001255ifdef NO_INSTALL
1256install-local::
1257 $(Echo) Install circumvented with NO_INSTALL
1258uninstall-local::
1259 $(Echo) Uninstall circumvented with NO_INSTALL
1260else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001261
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001262# Win32.DLL prefers to be located on the "PATH" of binaries.
1263ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1264DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001265else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001266DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001267endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001268DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001269
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001270install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001271
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001272$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001273 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001274 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001275
Misha Brukmanef5dc702009-01-08 02:11:55 +00001276uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001277 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001278 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001279endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001280endif
1281
Reid Spencer3a561f52004-10-23 20:04:14 +00001282#---------------------------------------------------------
1283# Bytecode Library Targets:
1284# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001285# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001286# targets for building them.
1287#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001288ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001289ifeq ($(strip $(LLVMCC)),)
1290$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001291else
Reid Spencer4d71b662004-10-22 21:01:56 +00001292
Reid Spencer9a2f1372004-12-02 09:28:21 +00001293all-local:: $(LibName.BCA)
1294
1295ifdef EXPORTED_SYMBOL_FILE
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001296BCLinkLib = $(LLVMLINK) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001297
Nicolas Geoffray49efb1a2012-05-23 20:34:19 +00001298$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001299 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001300 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1301 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001302 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001303 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001304 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001305else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001306$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001307 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001308 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001309 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001310 $(Verb) $(LArchive) $@ $(ObjectsBC)
1311
Reid Spencer4d71b662004-10-22 21:01:56 +00001312endif
1313
Reid Spencer3a561f52004-10-23 20:04:14 +00001314clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001315ifneq ($(strip $(LibName.BCA)),)
1316 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001317endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001318
Reid Spencer8f094f32004-12-13 07:28:21 +00001319ifdef BYTECODE_DESTINATION
1320BytecodeDestDir := $(BYTECODE_DESTINATION)
1321else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001322BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001323endif
1324
Daniel Dunbard62031e2009-05-12 05:35:40 +00001325DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001326
Reid Spencer44cb1b32004-12-03 20:08:48 +00001327install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001328
Reid Spencera2a31bf2007-02-06 18:53:14 +00001329ifdef NO_INSTALL
1330install-local::
1331 $(Echo) Install circumvented with NO_INSTALL
1332uninstall-local::
1333 $(Echo) Uninstall circumvented with NO_INSTALL
1334else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001335install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001336
Mike Stumpb445d742009-02-12 23:45:11 +00001337$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001338 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001339 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001340
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001341uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001342 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001343 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001344endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001345endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001346endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001347
Reid Spencercc2d1e22004-10-30 09:19:36 +00001348#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001349# Library Targets:
1350# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1351# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001352#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001353ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001354ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001355ifndef LOADABLE_MODULE
1356BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001357endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001358endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001359endif
Chris Lattner760da062003-03-14 20:25:22 +00001360
Reid Spencercc2d1e22004-10-30 09:19:36 +00001361#---------------------------------------------------------
1362# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001363# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001364# then we provide targets for building them.
1365#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001366ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001367
Reid Spencercc2d1e22004-10-30 09:19:36 +00001368all-local:: $(LibName.A)
1369
Reid Spencerf2ac1892004-12-16 07:36:08 +00001370$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001371 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001372 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001373 $(Verb) $(Archive) $@ $(ObjectsO)
1374 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001375
Reid Spencer3a561f52004-10-23 20:04:14 +00001376clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001377ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001378 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001379endif
1380
Reid Spencera2a31bf2007-02-06 18:53:14 +00001381ifdef NO_INSTALL
1382install-local::
1383 $(Echo) Install circumvented with NO_INSTALL
1384uninstall-local::
1385 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001386else
1387ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001388install-local::
1389 $(Echo) Install circumvented with NO_INSTALL
1390uninstall-local::
1391 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001392else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001393DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001394
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001395install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001396
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001397$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001398 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001399 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001400 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001401
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001402uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001403 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001404 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001405endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001406endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001407endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001408
1409# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001410endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001411
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001412###############################################################################
1413# Tool Build Rules: Build executable tool based on TOOLNAME option
1414###############################################################################
1415
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001416ifdef TOOLNAME
1417
Reid Spencercc2d1e22004-10-30 09:19:36 +00001418#---------------------------------------------------------
1419# Set up variables for building a tool.
1420#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001421TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001422ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001423ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001424else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001425ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1426endif
1427
1428# TOOLALIAS is a name to symlink (or copy) the tool to.
1429ifdef TOOLALIAS
1430ifdef EXAMPLE_TOOL
1431ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1432else
1433ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1434endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001435endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001436
Reid Spencercc2d1e22004-10-30 09:19:36 +00001437#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001438# Prune Exports
1439#---------------------------------------------------------
1440
1441# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1442# not exporting all of the weak symbols from the binary. This reduces dyld
1443# startup time by 4x on darwin in some cases.
1444ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001445ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001446
1447# Tiger tools don't support this.
1448ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001449LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001450endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001451endif
Chris Lattner61863a32009-02-26 17:47:49 +00001452
Sylvestre Ledru6fc30c22012-04-11 15:35:36 +00001453ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD GNU))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001454ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001455 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001456endif
1457endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001458endif
Chris Lattner61863a32009-02-26 17:47:49 +00001459
Devang Patel83be4512010-07-15 20:57:09 +00001460#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001461# Tool Order File Support
1462#---------------------------------------------------------
1463
1464ifeq ($(HOST_OS),Darwin)
Daniel Dunbarade490a2011-06-28 22:30:17 +00001465ifdef TOOL_ORDER_FILE
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001466
1467LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1468
1469endif
1470endif
1471
1472#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001473# Tool Version Info Support
1474#---------------------------------------------------------
1475
1476ifeq ($(HOST_OS),Darwin)
1477ifdef TOOL_INFO_PLIST
1478
1479LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1480
1481$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1482
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001483$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001484 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1485 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1486 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1487 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1488 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1489 $< > $@
1490
1491endif
1492endif
Chris Lattner61863a32009-02-26 17:47:49 +00001493
1494#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001495# Provide targets for building the tools
1496#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001497all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001498
Reid Spencer3a561f52004-10-23 20:04:14 +00001499clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001500ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001501 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001502endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001503ifneq ($(strip $(ToolAliasBuildPath)),)
1504 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1505endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001506
Reid Spencer815cbcf2004-11-18 10:03:46 +00001507ifdef EXAMPLE_TOOL
1508$(ToolBuildPath): $(ExmplDir)/.dir
1509else
1510$(ToolBuildPath): $(ToolDir)/.dir
1511endif
1512
Daniel Dunbar95669052012-03-06 19:07:38 +00001513ifdef CODESIGN_TOOLS
Chris Lattnera7868af2006-09-04 06:39:52 +00001514$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001515 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001516 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001517 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001518 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001519 $(StripWarnMsg)
Daniel Dunbar95669052012-03-06 19:07:38 +00001520 $(Echo) ======= Code-Signing $(BuildMode) Executable $(TOOLNAME)
1521 $(Verb) codesign -s - $@
1522else
1523$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1524 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1525 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1526 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1527 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1528 $(StripWarnMsg)
1529endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001530
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001531ifneq ($(strip $(ToolAliasBuildPath)),)
1532$(ToolAliasBuildPath): $(ToolBuildPath)
1533 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1534 $(Verb) $(RM) -f $(ToolAliasBuildPath)
Jordan Rose81be6bf2012-10-04 00:47:59 +00001535 $(Verb) $(AliasTool) $(notdir $(ToolBuildPath)) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001536 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001537 $(StripWarnMsg)
1538endif
1539
Reid Spencera2a31bf2007-02-06 18:53:14 +00001540ifdef NO_INSTALL
1541install-local::
1542 $(Echo) Install circumvented with NO_INSTALL
1543uninstall-local::
1544 $(Echo) Uninstall circumvented with NO_INSTALL
1545else
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001546
1547ifdef INTERNAL_TOOL
1548ToolBinDir = $(DESTDIR)$(PROJ_internal_prefix)/bin
1549else
1550ToolBinDir = $(DESTDIR)$(PROJ_bindir)
1551endif
Jordan Rose92080522012-10-01 18:40:32 +00001552DestTool = $(ToolBinDir)/$(program_prefix)$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001553
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001554install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001555
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001556$(DestTool): $(ToolBuildPath)
Reid Spencer9af3b292004-11-01 07:50:27 +00001557 $(Echo) Installing $(BuildMode) $(DestTool)
Bob Wilsonae7e2a42011-11-28 07:59:52 +00001558 $(Verb) $(MKDIR) $(ToolBinDir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001559 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001560
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001561uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001562 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001563 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001564
1565# TOOLALIAS install.
1566ifdef TOOLALIAS
Jordan Rose92080522012-10-01 18:40:32 +00001567DestToolAlias = $(ToolBinDir)/$(program_prefix)$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001568
1569install-local:: $(DestToolAlias)
1570
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001571$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001572 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1573 $(Verb) $(RM) -f $(DestToolAlias)
Jordan Rose81be6bf2012-10-04 00:47:59 +00001574 $(Verb) $(AliasTool) $(notdir $(DestTool)) $(DestToolAlias)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001575
1576uninstall-local::
1577 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1578 -$(Verb) $(RM) -f $(DestToolAlias)
1579endif
1580
Reid Spencera2a31bf2007-02-06 18:53:14 +00001581endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001582endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001583
Reid Spencercc2d1e22004-10-30 09:19:36 +00001584###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001585# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001586###############################################################################
1587
Duraid Madina197ab872006-02-15 03:23:26 +00001588# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001589ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001590 DISABLE_AUTO_DEPENDENCIES=1
1591endif
1592
Reid Spencercc2d1e22004-10-30 09:19:36 +00001593# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001594ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001595
Reid Spencercc2d1e22004-10-30 09:19:36 +00001596#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001597# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001598#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001599
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001600DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001601 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001602
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001603# If the build succeeded, move the dependency file over, otherwise
1604# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001605DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1606 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1607
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001608$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001609 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001610 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001611 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001612
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001613$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001614 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1615 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1616 $(DEPEND_MOVEFILE)
1617
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001618$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001619 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001620 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001621 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001622
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001623$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001624 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001625 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001626 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001627
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001628$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001629 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1630 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1631 $(DEPEND_MOVEFILE)
1632
Reid Spencercc2d1e22004-10-30 09:19:36 +00001633#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001634# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001635#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001636
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001637BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1638 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1639
1640# If the build succeeded, move the dependency file over, otherwise
1641# remove it.
1642BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1643 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1644
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001645$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001646 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001647 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001648 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001649 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001650
Greg Clayton43bc79a2010-07-13 18:47:09 +00001651$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1652 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1653 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001654 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001655 $(BC_DEPEND_MOVEFILE)
1656
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001657$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001658 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001659 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001660 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001661 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001662
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001663$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001664 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001665 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001666 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001667 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001668
Greg Clayton43bc79a2010-07-13 18:47:09 +00001669$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1670 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1671 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001672 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001673 $(BC_DEPEND_MOVEFILE)
1674
Reid Spencercc2d1e22004-10-30 09:19:36 +00001675# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001676else
1677
Nick Lewyckya15dc032009-02-26 07:44:16 +00001678$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001679 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001680 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001681
Greg Clayton43bc79a2010-07-13 18:47:09 +00001682$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1683 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1684 $(Compile.CXX) $< -o $@
1685
Nick Lewyckya15dc032009-02-26 07:44:16 +00001686$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001687 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001688 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001689
Nick Lewyckya15dc032009-02-26 07:44:16 +00001690$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001691 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001692 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001693
Greg Clayton43bc79a2010-07-13 18:47:09 +00001694$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1695 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1696 $(Compile.C) $< -o $@
1697
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001698$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001699 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001700 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Reid Spencer4d71b662004-10-22 21:01:56 +00001701
Greg Clayton43bc79a2010-07-13 18:47:09 +00001702$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1703 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001704 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001705
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001706$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001707 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001708 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001709
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001710$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001711 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001712 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Brian Gaeke44909cf2003-12-10 00:26:28 +00001713
Greg Clayton43bc79a2010-07-13 18:47:09 +00001714$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1715 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001716 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001717
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001718endif
1719
Chris Lattner8eb12de2006-06-21 21:01:20 +00001720
1721## Rules for building preprocessed (.i/.ii) outputs.
1722$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1723 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1724 $(Verb) $(Preprocess.CXX) $< -o $@
1725
Greg Clayton43bc79a2010-07-13 18:47:09 +00001726$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1727 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1728 $(Verb) $(Preprocess.CXX) $< -o $@
1729
Chris Lattner8eb12de2006-06-21 21:01:20 +00001730$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1731 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1732 $(Verb) $(Preprocess.CXX) $< -o $@
1733
Reid Spencer44136722006-12-10 04:56:38 +00001734$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001735 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1736 $(Verb) $(Preprocess.C) $< -o $@
1737
Greg Clayton43bc79a2010-07-13 18:47:09 +00001738$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1739 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1740 $(Verb) $(Preprocess.C) $< -o $@
1741
Chris Lattner8eb12de2006-06-21 21:01:20 +00001742
1743$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1744 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001745 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001746
Greg Clayton43bc79a2010-07-13 18:47:09 +00001747$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1748 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1749 $(Compile.CXX) $< -o $@ -S
1750
Chris Lattner8eb12de2006-06-21 21:01:20 +00001751$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1752 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001753 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001754
1755$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1756 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001757 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001758
Greg Clayton43bc79a2010-07-13 18:47:09 +00001759$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1760 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1761 $(Compile.C) $< -o $@ -S
1762
Reid Spencer8b2e1412006-11-17 03:32:33 +00001763
Chris Lattner89681112006-01-27 22:13:12 +00001764# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001765ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001766$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001767 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001768 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001769else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001770$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001771 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001772 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001773endif
1774
Chris Lattner89681112006-01-27 22:13:12 +00001775
Reid Spencercc2d1e22004-10-30 09:19:36 +00001776#---------------------------------------------------------
1777# Provide rule to build .bc files from .ll sources,
1778# regardless of dependencies
1779#---------------------------------------------------------
1780$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001781 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001782 $(Verb) $(LLVMAS) $< -f -o $@
1783
1784###############################################################################
1785# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1786###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001787
Reid Spencer4d71b662004-10-22 21:01:56 +00001788ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001789TABLEGEN_INC_FILES_COMMON = 1
1790endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001791
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001792ifdef TABLEGEN_INC_FILES_COMMON
1793
Reid Spencercc2d1e22004-10-30 09:19:36 +00001794INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001795INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1796.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001797
Misha Brukmanef5dc702009-01-08 02:11:55 +00001798# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001799# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1800# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001801# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001802# dependencies of the .inc files are, unless the contents of the .inc file
1803# changes.
1804$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001805 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001806
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001807endif # TABLEGEN_INC_FILES_COMMON
1808
1809ifdef TARGET
1810
1811TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1812 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1813 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1814 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1815 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1816 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1817 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1818
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001819# All .inc.tmp files depend on the .td files.
1820$(INCTMPFiles) : $(TDFiles)
Rafael Espindola075630a2009-03-10 17:58:54 +00001821
Chris Lattner3c473472004-12-16 17:28:50 +00001822$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001823$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001824 $(Echo) "Building $(<F) register info implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001825 $(Verb) $(LLVMTableGen) -gen-register-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001826
Chris Lattner3c473472004-12-16 17:28:50 +00001827$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001828$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001829 $(Echo) "Building $(<F) instruction information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001830 $(Verb) $(LLVMTableGen) -gen-instr-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001831
Chris Lattner3c473472004-12-16 17:28:50 +00001832$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001833$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001834 $(Echo) "Building $(<F) assembly writer with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001835 $(Verb) $(LLVMTableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001836
Chris Lattner02a4f902004-12-16 17:34:04 +00001837$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001838$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattner02a4f902004-12-16 17:34:04 +00001839 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001840 $(Verb) $(LLVMTableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001841
Daniel Dunbarc464e512009-07-13 18:35:35 +00001842$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001843$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarc464e512009-07-13 18:35:35 +00001844 $(Echo) "Building $(<F) assembly matcher with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001845 $(Verb) $(LLVMTableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
Daniel Dunbarc464e512009-07-13 18:35:35 +00001846
Jim Grosbachbd29a362010-11-03 23:46:01 +00001847$(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001848$(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbachbd29a362010-11-03 23:46:01 +00001849 $(Echo) "Building $(<F) MC code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001850 $(Verb) $(LLVMTableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
Jim Grosbachbd29a362010-11-03 23:46:01 +00001851
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001852$(TARGET:%=$(ObjDir)/%GenMCPseudoLowering.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001853$(ObjDir)/%GenMCPseudoLowering.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001854 $(Echo) "Building $(<F) MC Pseudo instruction expander with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001855 $(Verb) $(LLVMTableGen) -gen-pseudo-lowering -o $(call SYSPATH, $@) $<
Jim Grosbach86f9adb2011-07-08 17:36:35 +00001856
Chris Lattner3c473472004-12-16 17:28:50 +00001857$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001858$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001859 $(Echo) "Building $(<F) code emitter with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001860 $(Verb) $(LLVMTableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001861
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001862$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001863$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001864 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001865 $(Verb) $(LLVMTableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001866
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001867$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001868$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001869 $(Echo) "Building $(<F) disassembly tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001870 $(Verb) $(LLVMTableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001871
Sean Callanan95fcebd2010-01-29 00:21:04 +00001872$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001873$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Sean Callanan95fcebd2010-01-29 00:21:04 +00001874 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001875 $(Verb) $(LLVMTableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
Sean Callanan95fcebd2010-01-29 00:21:04 +00001876
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001877$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001878$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001879 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001880 $(Verb) $(LLVMTableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001881
Evan Cheng385e9302011-07-01 22:36:09 +00001882$(TARGET:%=$(ObjDir)/%GenSubtargetInfo.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001883$(ObjDir)/%GenSubtargetInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001884 $(Echo) "Building $(<F) subtarget information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001885 $(Verb) $(LLVMTableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001886
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001887$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001888$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001889 $(Echo) "Building $(<F) calling convention information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001890 $(Verb) $(LLVMTableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001891
Dale Johannesen49de9822009-02-05 01:49:45 +00001892$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001893$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001894 $(Echo) "Building $(<F) intrinsics information with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001895 $(Verb) $(LLVMTableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
Dale Johannesen49de9822009-02-05 01:49:45 +00001896
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001897$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir $(LLVM_TBLGEN)
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001898 $(Echo) "Building $(<F) decoder tables with tblgen"
Peter Collingbournede8f33c2011-10-06 01:51:51 +00001899 $(Verb) $(LLVMTableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001900
Anshuman Dasguptadc81e5d2011-12-01 21:10:21 +00001901$(ObjDir)/%GenDFAPacketizer.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1902 $(Echo) "Building $(<F) DFA packetizer tables with tblgen"
1903 $(Verb) $(LLVMTableGen) -gen-dfa-packetizer -o $(call SYSPATH, $@) $<
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001904
Reid Spencer3a561f52004-10-23 20:04:14 +00001905clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001906 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001907
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001908endif # TARGET
1909
Reid Spencercc2d1e22004-10-30 09:19:36 +00001910###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001911# OTHER RULES: Other rules needed
1912###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001913
Chris Lattner30440c62003-01-16 21:06:18 +00001914# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001915ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001916%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001917 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001918else
1919%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001920 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001921endif
Chris Lattner30440c62003-01-16 21:06:18 +00001922
John Criswell7f336952003-09-06 14:44:17 +00001923# This rules ensures that header files that are removed still have a rule for
1924# which they can be "generated." This allows make to ignore them and
1925# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001926%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001927%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001928
Reid Spencercc2d1e22004-10-30 09:19:36 +00001929# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001930# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001931# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001932clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001933ifneq ($(strip $(ObjRootDir)),)
1934 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001935endif
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001936ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001937 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001938endif
John Criswell7a73b802003-06-30 21:59:07 +00001939
Reid Spencer3d659492004-11-02 16:36:03 +00001940clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001941 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001942
Reid Spencer12d79512004-11-12 02:27:36 +00001943
Reid Spencer3a561f52004-10-23 20:04:14 +00001944###############################################################################
1945# DEPENDENCIES: Include the dependency files if we should
1946###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001947ifndef DISABLE_AUTO_DEPENDENCIES
1948
Reid Spencer3a561f52004-10-23 20:04:14 +00001949# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001950ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001951
Reid Spencer3a561f52004-10-23 20:04:14 +00001952# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001953DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001954DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1955
1956# Include bitcode dependency files if using bitcode libraries
1957ifdef BYTECODE_LIBRARY
1958DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1959endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001960
Reid Spencer491a6cd2007-07-23 08:20:46 +00001961-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001962
John Criswelld741bcf2003-08-12 18:51:51 +00001963endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001964
Misha Brukmanef5dc702009-01-08 02:11:55 +00001965endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001966
Reid Spencer151f8ba2004-10-25 08:27:37 +00001967###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001968# CHECK: Running the test suite
1969###############################################################################
1970
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001971check::
Reid Spencer11fde542005-01-16 02:20:54 +00001972 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1973 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001974 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001975 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001976 TESTSUITE=$(TESTSUITE) ; \
1977 else \
1978 $(EchoCmd) No Makefile in test directory ; \
1979 fi ; \
1980 else \
1981 $(EchoCmd) No test directory ; \
1982 fi
1983
Chandler Carruthc1a0af12012-06-28 00:03:13 +00001984# An alias dating from when both lit and DejaGNU test runners were used.
Daniel Dunbar666b4022010-08-02 00:05:18 +00001985check-lit:: check
1986
Daniel Dunbar34185792009-09-20 06:17:21 +00001987check-all::
1988 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1989 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1990 $(EchoCmd) Running test suite ; \
1991 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1992 else \
1993 $(EchoCmd) No Makefile in test directory ; \
1994 fi ; \
1995 else \
1996 $(EchoCmd) No test directory ; \
1997 fi
1998
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001999###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00002000# UNITTESTS: Running the unittests test suite
2001###############################################################################
2002
Bill Wendling29c0e3d2009-04-09 18:26:57 +00002003unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00002004 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
2005 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
2006 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00002007 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00002008 else \
2009 $(EchoCmd) No Makefile in unittests directory ; \
2010 fi ; \
2011 else \
2012 $(EchoCmd) No unittests directory ; \
2013 fi
2014
2015###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00002016# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00002017###############################################################################
2018
Reid Spencere45ebfa2004-10-26 07:09:33 +00002019#------------------------------------------------------------------------
2020# Define distribution related variables
2021#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002022DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
2023DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2024TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2025DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
2026DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
2027DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00002028DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
2029 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002030 Makefile.config.in configure autoconf
2031DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00002032 $(PROJ_SRC_DIR)/*.h \
2033 $(PROJ_SRC_DIR)/*.td \
2034 $(PROJ_SRC_DIR)/*.def \
2035 $(PROJ_SRC_DIR)/*.ll \
2036 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00002037DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00002038DistSources = $(Sources) $(EXTRA_DIST)
2039DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00002040
Reid Spencere45ebfa2004-10-26 07:09:33 +00002041#------------------------------------------------------------------------
2042# We MUST build distribution with OBJ_DIR != SRC_DIR
2043#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00002044ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00002045dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002046 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00002047
Reid Spencere45ebfa2004-10-26 07:09:33 +00002048else
2049
Reid Spencere45ebfa2004-10-26 07:09:33 +00002050#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00002051# Prevent attempt to run dist targets from anywhere but the top level
2052#------------------------------------------------------------------------
2053ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002054dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00002055 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002056else
2057
2058#------------------------------------------------------------------------
2059# Provide the top level targets
2060#------------------------------------------------------------------------
2061
Reid Spencercc2d1e22004-10-30 09:19:36 +00002062dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002063
Reid Spencer345235ca2004-12-04 22:34:09 +00002064$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002065 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002066 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002067 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00002068
Reid Spencercc2d1e22004-10-30 09:19:36 +00002069dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002070
Reid Spencer345235ca2004-12-04 22:34:09 +00002071$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002072 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00002073 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002074 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002075
Reid Spencercc2d1e22004-10-30 09:19:36 +00002076dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002077
Reid Spencer345235ca2004-12-04 22:34:09 +00002078$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002079 $(Echo) Packing zipped distribution file.
2080 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00002081 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002082
Misha Brukmanef5dc702009-01-08 02:11:55 +00002083dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002084 $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002085
Reid Spencerf8f57402005-01-28 19:52:32 +00002086DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00002087
Reid Spencer345235ca2004-12-04 22:34:09 +00002088dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002089 $(Echo) Checking distribution tar file.
2090 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002091 $(RM) -rf $(DistCheckDir) ; \
2092 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00002093 $(Verb) $(MKDIR) $(DistCheckDir)
2094 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002095 $(MKDIR) $(DistCheckDir)/build && \
2096 $(MKDIR) $(DistCheckDir)/install && \
2097 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2098 cd build && \
2099 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00002100 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00002101 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002102 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00002103 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002104 $(MAKE) install && \
2105 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002106 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002107 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002108
2109dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002110 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002111 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2112 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002113
2114endif
2115
2116#------------------------------------------------------------------------
2117# Provide the recursive distdir target for building the distribution directory
2118#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002119distdir: $(DistDir)/.makedistdir
2120$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002121 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002122 if test -d "$(DistDir)" ; then \
2123 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2124 exit 1 ; \
2125 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002126 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002127 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002128 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002129 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002130 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002131 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002132 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002133 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2134 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002135 for file in $(DistFiles) ; do \
2136 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002137 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002138 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2139 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002140 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002141 file=`echo "$$file" | \
2142 sed "s#^$$srcrootstrip/##"` \
2143 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002144 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002145 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2146 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2147 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002148 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002149 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002150 fi ; \
2151 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002152 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2153 to_dir="$(DistDir)/$$dir"; \
2154 $(MKDIR) "$$to_dir" ; \
2155 else \
2156 to_dir="$(DistDir)"; \
2157 fi; \
2158 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2159 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002160 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002161 fi ; \
2162 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002163 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2164 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002165 cd $(PROJ_SRC_DIR) ; \
2166 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2167 ( cd $$to_dir ; $(TAR) xf - ) ; \
2168 cd $(PROJ_OBJ_DIR) ; \
2169 else \
2170 cd $$from_dir ; \
2171 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2172 ( cd $$to_dir ; $(TAR) xf - ) ; \
2173 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002174 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002175 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002176 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002177 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002178 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002179 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002180 $(EchoCmd) "===== WARNING: Distribution Source " \
2181 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002182 elif test "$(Verb)" != '@' ; then \
2183 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002184 fi; \
2185 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002186 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002187 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002188 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002189 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002190 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002191 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002192 fi; \
2193 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002194 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002195 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002196 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2197 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002198 $(MAKE) dist-hook ; \
2199 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2200 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2201 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2202 -o ! -type d ! -perm -444 -exec \
2203 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2204 || chmod -R a+r $(DistDir) ; \
2205 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002206
Reid Spencercc2d1e22004-10-30 09:19:36 +00002207# This is invoked by distdir target, define it as a no-op to avoid errors if not
2208# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002209dist-hook::
2210
Reid Spencere53e3972004-10-22 23:06:30 +00002211endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002212
2213###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002214# TOP LEVEL - targets only to apply at the top level directory
2215###############################################################################
2216
2217ifeq ($(LEVEL),.)
2218
2219#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002220# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002221#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002222ifdef NO_INSTALL
2223install-local::
2224 $(Echo) Install circumvented with NO_INSTALL
2225uninstall-local::
2226 $(Echo) Uninstall circumvented with NO_INSTALL
2227else
Reid Spencere5487ba2004-10-24 07:53:21 +00002228install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002229 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002230 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002231 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002232 cd $(PROJ_SRC_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002233 for hdr in `find . -type f \
2234 '(' -name LICENSE.TXT \
2235 -o -name '*.def' \
2236 -o -name '*.h' \
2237 -o -name '*.inc' \
2238 -o -name '*.td' \
2239 ')' -print | grep -v CVS | \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002240 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002241 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002242 if test \! -d "$$instdir" ; then \
2243 $(EchoCmd) Making install directory $$instdir ; \
2244 $(MKDIR) $$instdir ;\
2245 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002246 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002247 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002248 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002249ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002250 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002251 cd $(PROJ_OBJ_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002252 for hdr in `find . -type f \
2253 '(' -name LICENSE.TXT \
2254 -o -name '*.def' \
2255 -o -name '*.h' \
2256 -o -name '*.inc' \
2257 -o -name '*.td' \
2258 ')' -print | grep -v CVS | \
2259 grep -v .svn` ; do \
2260 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2261 if test \! -d "$$instdir" ; then \
2262 $(EchoCmd) Making install directory $$instdir ; \
2263 $(MKDIR) $$instdir ;\
2264 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002265 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002266 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002267 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002268endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002269
2270uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002271 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002272 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2273 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002274 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002275 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002276 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002277 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002278 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002279 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002280 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002281 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002282endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002283endif
2284
Chris Lattner03840ac2007-04-14 23:35:45 +00002285check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002286 @echo searching for overlength lines in files: $(Sources)
2287 @echo
2288 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002289 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002290
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002291check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002292 @echo searching for tabs in files: $(Sources)
2293 @echo
2294 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002295 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002296
Reid Spencer6548bf12007-05-02 21:29:39 +00002297check-footprint:
2298 @ls -l $(LibDir) | awk '\
2299 BEGIN { sum = 0; } \
2300 { sum += $$5; } \
2301 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2302 @ls -l $(ToolDir) | awk '\
2303 BEGIN { sum = 0; } \
2304 { sum += $$5; } \
2305 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002306#------------------------------------------------------------------------
2307# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002308#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002309printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002310 $(Echo) "BuildMode : " '$(BuildMode)'
2311 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2312 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2313 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2314 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2315 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2316 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2317 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
Bob Wilsonae7e2a42011-11-28 07:59:52 +00002318 $(Echo) "PROJ_internal_prefix : " '$(PROJ_internal_prefix)'
Reid Spencer11fde542005-01-16 02:20:54 +00002319 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2320 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2321 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002322 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002323 $(Echo) "UserTargets : " '$(UserTargets)'
2324 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2325 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2326 $(Echo) "ObjDir : " '$(ObjDir)'
2327 $(Echo) "LibDir : " '$(LibDir)'
2328 $(Echo) "ToolDir : " '$(ToolDir)'
2329 $(Echo) "ExmplDir : " '$(ExmplDir)'
2330 $(Echo) "Sources : " '$(Sources)'
2331 $(Echo) "TDFiles : " '$(TDFiles)'
2332 $(Echo) "INCFiles : " '$(INCFiles)'
2333 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002334 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002335 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2336 $(Echo) "Compile.C : " '$(Compile.C)'
2337 $(Echo) "Archive : " '$(Archive)'
2338 $(Echo) "YaccFiles : " '$(YaccFiles)'
2339 $(Echo) "LexFiles : " '$(LexFiles)'
2340 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002341 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002342 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002343 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2344 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002345
2346###
2347# Debugging
2348
Daniel Dunbar3c898122009-03-06 22:23:25 +00002349# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002350# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002351make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002352 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))