blob: 46a3f1bdb90883c0db4b6c6eb0bb02e22316e3f0 [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
Reid Spencer9411c642004-10-26 22:26:33 +000060################################################################################
61# PRECONDITIONS: that which must be built/checked first
62################################################################################
63
Reid Spencer44cb1b32004-12-03 20:08:48 +000064SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencer11fde542005-01-16 02:20:54 +000065 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
66ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
67ConfigureScript := $(PROJ_SRC_ROOT)/configure
68ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
69MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
70MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
71MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
72MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
73PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
74ifneq ($(MakefileCommonIn),)
75PreConditions += $(MakefileCommon)
76endif
Chris Lattner0a1db822006-09-04 05:23:20 +000077
Reid Spencer11fde542005-01-16 02:20:54 +000078ifneq ($(MakefileConfigIn),)
79PreConditions += $(MakefileConfig)
80endif
Reid Spencer9411c642004-10-26 22:26:33 +000081
Reid Spencerca739c62005-08-25 04:59:49 +000082preconditions: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +000083
84#------------------------------------------------------------------------
85# Make sure the BUILT_SOURCES are built first
86#------------------------------------------------------------------------
Reid Spencer07a549a2004-12-16 07:15:16 +000087$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000088
Reid Spencer9bb399c2007-02-07 19:13:19 +000089clean-all-local::
Reid Spencer9411c642004-10-26 22:26:33 +000090ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +000091 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000092endif
93
Reid Spencer11fde542005-01-16 02:20:54 +000094ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer31f95242004-12-16 08:00:46 +000095spotless:
Reid Spencer31f95242004-12-16 08:00:46 +000096 $(Verb) if test -x config.status ; then \
Reid Spencer11fde542005-01-16 02:20:54 +000097 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +000098 $(MKDIR) .spotless.save ; \
99 $(MV) config.status .spotless.save ; \
100 $(MV) mklib .spotless.save ; \
101 $(MV) projects .spotless.save ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000102 $(RM) -rf * ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000103 $(MV) .spotless.save/config.status . ; \
104 $(MV) .spotless.save/mklib . ; \
105 $(MV) .spotless.save/projects . ; \
106 $(RM) -rf .spotless.save ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000107 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000108 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109 $(ConfigStatusScript) ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000110 else \
Reid Spencer11fde542005-01-16 02:20:54 +0000111 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer31f95242004-12-16 08:00:46 +0000112 fi
Reid Spencer25e8a702005-12-21 23:17:06 +0000113else
114spotless:
115 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer31f95242004-12-16 08:00:46 +0000116endif
117
Reid Spencercc2d1e22004-10-30 09:19:36 +0000118$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencer80f0ef72004-10-28 00:41:43 +0000119
Reid Spencer9411c642004-10-26 22:26:33 +0000120#------------------------------------------------------------------------
121# Make sure we're not using a stale configuration
122#------------------------------------------------------------------------
Reid Spencerc3719842004-12-16 18:26:53 +0000123reconfigure:
Reid Spencer11fde542005-01-16 02:20:54 +0000124 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
125 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencerc3719842004-12-16 18:26:53 +0000126 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
127 $(ConfigStatusScript)
128
Reid Spencercc2d1e22004-10-30 09:19:36 +0000129.PRECIOUS: $(ConfigStatusScript)
Jim Grosbache5e2c412010-10-01 22:32:12 +0000130$(ConfigStatusScript): $(ConfigureScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000131 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000132 $(Verb) cd $(PROJ_OBJ_ROOT) && \
Reid Spencer7d277002004-11-29 12:37:44 +0000133 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
134 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000135
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000136#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000137# Make sure the configuration makefile is up to date
138#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000139ifneq ($(MakefileConfigIn),)
140$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000141 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000142 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
143endif
144
145ifneq ($(MakefileCommonIn),)
146$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
147 $(Echo) Regenerating $@
148 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
149endif
Reid Spencer9411c642004-10-26 22:26:33 +0000150
151#------------------------------------------------------------------------
152# If the Makefile in the source tree has been updated, copy it over into the
153# build tree. But, only do this if the source and object makefiles differ
154#------------------------------------------------------------------------
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000155ifndef PROJ_MAKEFILE
156PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
157endif
158
Reid Spencer11fde542005-01-16 02:20:54 +0000159ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000160
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000161Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000162 $(Echo) "Updating Makefile"
163 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000164 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000165
166# Copy the Makefile.* files unless we're in the root directory which avoids
167# the copying of Makefile.config.in or other things that should be explicitly
168# taken care of.
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +0000169$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
Reid Spencer86606782004-10-26 23:10:00 +0000170 @case '$?' in \
171 *Makefile.rules) ;; \
172 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000173 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000174 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000175 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000176 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000177
Reid Spencer9411c642004-10-26 22:26:33 +0000178endif
179
180#------------------------------------------------------------------------
181# Set up the basic dependencies
182#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000183$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000184
185all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000186clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000187clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000188install:: install-local
189uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000190install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000191install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000192
193###############################################################################
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +0000194# LLVMC: Provide rules for compiling llvmc-based driver
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000195###############################################################################
196
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000197ifdef LLVMC_BASED_DRIVER
198
199TOOLNAME = $(LLVMC_BASED_DRIVER)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000200
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +0000201LLVMLIBS = CompilerDriver.a
Charles Davis53ca1f32010-11-29 19:44:50 +0000202LINK_COMPONENTS = support
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000203
204endif # LLVMC_BASED_DRIVER
205
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000206###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000207# VARIABLES: Set up various variables based on configuration data
208###############################################################################
209
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000210# Variable for if this make is for a "cleaning" target
211ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
212 IS_CLEANING_TARGET=1
213endif
214
Reid Spencer3a561f52004-10-23 20:04:14 +0000215#--------------------------------------------------------------------
216# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000217#--------------------------------------------------------------------
218
Reid Spencer0a522b12007-07-10 07:19:53 +0000219CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000220ifeq ($(ENABLE_OPTIMIZED),1)
221 BuildMode := Release
222 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000223 ifneq ($(HOST_OS),FreeBSD)
224 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000225 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000226 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000227 endif
228
229 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000230 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
231 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000232 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000233 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
234 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000235 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
236 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
237 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000238 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000239 BuildMode := $(BuildMode)+Debug
240 CXX.Flags += -g
241 C.Flags += -g
242 LD.Flags += -g
243 KEEP_SYMBOLS := 1
244 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000245else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000246 ifdef NO_DEBUG_SYMBOLS
247 BuildMode := Unoptimized
248 CXX.Flags +=
249 C.Flags +=
250 LD.Flags +=
251 KEEP_SYMBOLS := 1
252 else
253 BuildMode := Debug
254 CXX.Flags += -g
255 C.Flags += -g
256 LD.Flags += -g
257 KEEP_SYMBOLS := 1
258 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000259endif
260
261ifeq ($(ENABLE_PROFILING),1)
262 BuildMode := $(BuildMode)+Profile
263 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
264 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
265 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
266 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000267endif
268
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000269#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
270# CXX.Flags += -fvisibility-inlines-hidden
271#endif
272
Chris Lattnerc96d5082010-01-24 20:20:40 +0000273ifdef ENABLE_EXPENSIVE_CHECKS
274 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
275 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
276 REQUIRES_RTTI := 1
277endif
278
Reid Spencer99655e12006-08-25 19:54:53 +0000279# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000280ifndef REQUIRES_EH
281 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000282else
283 # If the library requires EH, it also requires RTTI.
284 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000285endif
Reid Spencer99655e12006-08-25 19:54:53 +0000286
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000287ifdef REQUIRES_FRAME_POINTER
288 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
289 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
290 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
291endif
292
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000293# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000294ifneq ($(REQUIRES_RTTI), 1)
295 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000296endif
297
Peter Collingbourneed50d382010-10-22 12:54:34 +0000298ifeq ($(ENABLE_COVERAGE),1)
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000299 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000300 CXX.Flags += -ftest-coverage -fprofile-arcs
301 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000302endif
303
Reid Spencer854071c2006-04-10 16:46:04 +0000304# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
305# then disable assertions by defining the appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000306ifeq ($(DISABLE_ASSERTIONS),1)
307 CPP.Defines += -DNDEBUG
308else
Duncan Sands8246adc2010-07-07 07:48:00 +0000309 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000310 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000311endif
312
Misha Brukmanef5dc702009-01-08 02:11:55 +0000313# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
314# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000315# appropriate preprocessor symbols.
Peter Collingbourneed50d382010-10-22 12:54:34 +0000316ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
David Greenea696d242007-06-28 19:36:08 +0000317 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000318 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000319endif
320
Nick Lewyckya15dc032009-02-26 07:44:16 +0000321# LOADABLE_MODULE implies several other things so we force them to be
322# defined/on.
323ifdef LOADABLE_MODULE
324 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000325 LINK_LIBS_IN_SHARED := 1
326endif
327
328ifdef SHARED_LIBRARY
329 ENABLE_PIC := 1
330 PIC_FLAG = "(PIC)"
331endif
332
Reid Spencer89b0d992006-12-16 22:07:52 +0000333ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000334 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000335 # Nothing. Win32 defaults to PIC and warns when given -fPIC
336 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000337 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000338 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000339 CXX.Flags += -fno-common
340 C.Flags += -fno-common
341 else
342 # Linux and others; pass -fPIC
343 CXX.Flags += -fPIC
344 C.Flags += -fPIC
345 endif
346 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000347else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000348 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000349 CXX.Flags += -mdynamic-no-pic
350 C.Flags += -mdynamic-no-pic
351 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000352endif
353
Daniel Dunbardd464df2010-05-10 20:11:56 +0000354# Support makefile variable to disable any kind of timestamp/non-deterministic
355# info from being used in the build.
356ifeq ($(ENABLE_TIMESTAMPS),1)
357 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
358else
359 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
360endif
361
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000362ifeq ($(HOST_OS),MingW)
363 # Work around PR4957
364 CPP.Defines += -D__NO_CTYPE_INLINE
365 ifeq ($(LLVM_CROSS_COMPILING),1)
366 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
367 ifdef TOOLNAME
368 LD.Flags += -Wl,--allow-multiple-definition
369 endif
370 endif
371endif
372
Chris Lattner1bdedb92011-04-09 06:01:28 +0000373CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000374CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000375AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000376
Chris Lattner16620fc2006-07-27 18:19:51 +0000377# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000378ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000379 CXX.Flags += -mieee
380 CPP.BaseFlags += -mieee
381ifeq ($(ENABLE_PIC),0)
382 CXX.Flags += -fPIC
383 CPP.BaseFlags += -fPIC
384endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000385
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000386 LD.Flags += -Wl,--no-relax
387endif
388
NAKAMURA Takumib9dec1f2010-11-26 09:32:02 +0000389# GNU ld/PECOFF accepts but ignores them below;
390# --version-script
391# --export-dynamic
392# --rpath
393# FIXME: autoconf should be aware of them.
394ifneq (,$(filter $(HOST_OS),Cygwin MingW))
395 HAVE_LINK_VERSION_SCRIPT := 0
396 RPATH :=
397 RDYNAMIC := -Wl,--export-all-symbols
398endif
399
Reid Spencer3a561f52004-10-23 20:04:14 +0000400#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000401# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000402#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000403TargetMode :=
404ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000405 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000406endif
407
408ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000409ObjDir := $(ObjRootDir)
410LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
411ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
412ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
413LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
414LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
415LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000416
Reid Spencer3a561f52004-10-23 20:04:14 +0000417#--------------------------------------------------------------------
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000418# Locations of shared libraries
419#--------------------------------------------------------------------
420
421SharedPrefix := lib
422SharedLibDir := $(LibDir)
423LLVMSharedLibDir := $(LLVMLibDir)
424
425# Win32.DLL prefers to be located on the "PATH" of binaries.
426ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
427 SharedLibDir := $(ToolDir)
428 LLVMSharedLibDir := $(LLVMToolDir)
429
430 ifeq ($(HOST_OS),Cygwin)
431 SharedPrefix := cyg
432 else
433 SharedPrefix :=
434 endif
435endif
436
437#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000438# LLVM Capable Compiler
439#--------------------------------------------------------------------
440
Chris Lattner70d77002011-04-09 19:53:16 +0000441ifneq ($(findstring llvm-gcc,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000442 LLVMCC := $(LLVMGCC)
443 LLVMCXX := $(LLVMGXX)
444else
Chris Lattner70d77002011-04-09 19:53:16 +0000445 ifneq ($(findstring clang,$(LLVMCC_OPTION)),)
Daniel Dunbar797faed2010-02-23 10:00:53 +0000446 ifneq ($(CLANGPATH),)
447 LLVMCC := $(CLANGPATH)
448 LLVMCXX := $(CLANGXXPATH)
449 else
450 ifeq ($(ENABLE_BUILT_CLANG),1)
451 LLVMCC := $(LLVMToolDir)/clang
452 LLVMCXX := $(LLVMToolDir)/clang++
453 endif
454 endif
455 endif
456endif
457
458#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000459# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000460#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000461EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
462Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000463ifndef LLVMAS
464LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
465endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000466ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000467 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000468 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000469 else
470 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
471 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000472endif
Misha Brukmanef5dc702009-01-08 02:11:55 +0000473LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencer43eb96c2007-02-09 15:52:07 +0000474ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000475LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000476endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000477ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000478LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
479endif
480ifndef LLI
481LLI := $(LLVMToolDir)/lli$(EXEEXT)
482endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000483ifndef LLC
484LLC := $(LLVMToolDir)/llc$(EXEEXT)
485endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000486ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000487LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000488endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000489ifndef LBUGPOINT
490LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
491endif
Reid Spencere46687c2006-12-03 21:01:45 +0000492
Reid Spencer3a561f52004-10-23 20:04:14 +0000493#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000494# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000495#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000496
Anton Korobeynikove55db742009-08-18 00:40:33 +0000497ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000498 DARWIN_VERSION := `sw_vers -productVersion`
499 # Strip a number like 10.4.7 to 10.4
500 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
501 # Get "4" out of 10.4 for later pieces in the makefile.
502 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000503
Daniel Dunbar7bc0f272010-12-08 01:48:05 +0000504 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
505 SharedLinkOptions := -dynamiclib
Evan Chenga5e225e2009-09-08 18:52:20 +0000506 ifneq ($(ARCH),ARM)
507 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
508 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000509else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000510 SharedLinkOptions=-shared
Scott Michel87af5f02009-03-12 21:03:53 +0000511endif
512
Anton Korobeynikove55db742009-08-18 00:40:33 +0000513ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000514 ifneq ($(ARCH),ARM)
515 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
516 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000517endif
518
Reid Spencer492c2932005-01-11 04:31:07 +0000519ifdef SHARED_LIBRARY
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000520ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000521ifneq ($(HOST_OS),Darwin)
522 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
John Criswell82f4a5a2003-07-31 20:58:51 +0000523endif
Scott Michel87af5f02009-03-12 21:03:53 +0000524endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000525endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000526
Reid Spencercceed9f2004-11-08 17:32:12 +0000527ifdef TOOL_VERBOSE
528 C.Flags += -v
529 CXX.Flags += -v
530 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000531 VERBOSE := 1
532endif
533
Reid Spencer3a561f52004-10-23 20:04:14 +0000534# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000535ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000536 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000537 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000538 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000539else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000540 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000541endif
542
Vikram S. Advefeeae582002-09-18 11:55:13 +0000543# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000544ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000545 Strip := $(PLATFORMSTRIPOPTS)
546 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000547 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000548endif
549
Rafael Espindola31552a92010-10-15 00:58:12 +0000550ifdef TOOL_NO_EXPORTS
551 DynamicFlags :=
552else
553 DynamicFlag := $(RDYNAMIC)
554endif
555
Reid Spencer3a561f52004-10-23 20:04:14 +0000556# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000557ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
558ifneq ($(HOST_OS), Darwin)
Reid Spencer4d71b662004-10-22 21:01:56 +0000559ifdef TOOLNAME
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000560 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
561 ifdef EXAMPLE_TOOL
Rafael Espindola31552a92010-10-15 00:58:12 +0000562 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000563 else
Rafael Espindola31552a92010-10-15 00:58:12 +0000564 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(DynamicFlag)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000565 endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000566endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000567else
568ifneq ($(DARWIN_MAJVERS),4)
569 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
Nick Lewyckya15dc032009-02-26 07:44:16 +0000570endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000571endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000572endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000573
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000574
Reid Spencer3a561f52004-10-23 20:04:14 +0000575#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000576# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000577#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000578
Daniel Dunbare2a91a72011-06-16 22:30:38 +0000579ifdef EXTRA_LD_OPTIONS
580LD.Flags += $(EXTRA_LD_OPTIONS)
581endif
582
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000583ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000584CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000585endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000586CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
587 $(EXTRA_OPTIONS)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000588# Enable cast-qual for C++; the workaround is to use const_cast.
589CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000590
Anton Korobeynikove55db742009-08-18 00:40:33 +0000591ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000592 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000593endif
594
Chris Lattner73faa392006-05-30 16:38:06 +0000595# If we are building a universal binary on Mac OS/X, pass extra options. This
596# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000597# apps.
598#
599# The following can be optionally specified:
600# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
601# For Mac OS/X 10.4 Intel machines, the traditional one is:
602# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
603# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
604# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
605# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000606ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000607 ifndef UNIVERSAL_ARCH
608 UNIVERSAL_ARCH := i386 ppc
609 endif
610 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
611 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000612 ifdef UNIVERSAL_SDK_PATH
613 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000614 endif
615
616 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000617 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000618else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000619 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000620 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000621 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000622 else
623 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000624 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000625 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000626 endif
627 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000628endif
629
Anton Korobeynikove55db742009-08-18 00:40:33 +0000630ifeq ($(HOST_OS),SunOS)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000631CPP.BaseFlags += -include llvm/Support/Solaris.h
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000632endif
633
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000634ifeq ($(HOST_OS),AuroraUX)
Michael J. Spencer1f6efa32010-11-29 18:16:10 +0000635CPP.BaseFlags += -include llvm/Support/Solaris.h
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000636endif # !HOST_OS - AuroraUX.
637
Misha Brukmanef5dc702009-01-08 02:11:55 +0000638LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman63f97202008-10-17 01:33:43 +0000639CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000640# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000641CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
642 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000643 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
644 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
645 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000646
Daniel Dunbar58194302011-04-11 22:37:39 +0000647# SHOW_DIAGNOSTICS support.
648ifeq ($(SHOW_DIAGNOSTICS),1)
649 Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
650 CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
651else
652 Compile.Wrapper :=
653endif
654
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000655ifeq ($(BUILD_COMPONENT), 1)
Daniel Dunbar58194302011-04-11 22:37:39 +0000656 Compile.C = $(Compile.Wrapper) \
657 $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000658 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar58194302011-04-11 22:37:39 +0000659 Compile.CXX = $(Compile.Wrapper) \
660 $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000661 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000662 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar58194302011-04-11 22:37:39 +0000663 Preprocess.CXX= $(Compile.Wrapper) \
664 $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000665 $(CompileCommonOpts) $(CXX.Flags) -E
Daniel Dunbar58194302011-04-11 22:37:39 +0000666 Link = $(Compile.Wrapper) \
667 $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
Eric Christopher9c932042011-03-07 04:25:12 +0000668 $(LD.Flags) $(LDFLAGS) \
669 $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000670else
Daniel Dunbar58194302011-04-11 22:37:39 +0000671 Compile.C = $(Compile.Wrapper) \
672 $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000673 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar58194302011-04-11 22:37:39 +0000674 Compile.CXX = $(Compile.Wrapper) \
675 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000676 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar58194302011-04-11 22:37:39 +0000677 Preprocess.CXX= $(Compile.Wrapper) \
678 $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner6be92662009-06-16 23:00:42 +0000679 $(CompileCommonOpts) $(CXX.Flags) -E
Daniel Dunbar58194302011-04-11 22:37:39 +0000680 Link = $(Compile.Wrapper) \
681 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
Eric Christopher9c932042011-03-07 04:25:12 +0000682 $(LDFLAGS) $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000683endif
684
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000685BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000686 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000687Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000688 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000689
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000690BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000691 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000692
Misha Brukmanef5dc702009-01-08 02:11:55 +0000693ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
694ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000695DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000696
697# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
698# paths. In this case, the SYSPATH function (defined in
699# Makefile.config) transforms Unix paths into Windows paths.
700TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000701 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000702 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
703 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
704
Reid Spencercc2d1e22004-10-30 09:19:36 +0000705Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000706LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000707ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000708Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000709else
Reid Spencer3a561f52004-10-23 20:04:14 +0000710Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000711endif
712
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000713AliasTool = ln -s
714
Chris Lattner00950542001-06-06 20:29:01 +0000715#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000716# Get the list of source files and compute object file
717# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000718#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000719
720ifndef SOURCES
721 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000722 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000723else
Chris Lattner89681112006-01-27 22:13:12 +0000724 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000725endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000726
Chris Lattner89681112006-01-27 22:13:12 +0000727ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000728Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000729endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000730
Chris Lattner89681112006-01-27 22:13:12 +0000731BaseNameSources := $(sort $(basename $(Sources)))
732
733ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000734ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
735
NAKAMURA Takumi02724852011-03-08 12:25:10 +0000736#----------------------------------------------------------
737# For Mingw MSYS bash and Python/w32:
738#
739# $(ECHOPATH) prints DOSish pathstring.
740# ex) $(ECHOPATH) /include/sys/types.h
741# --> C:/mingw/include/sys/types.h
742# built-in "echo" does not transform path to DOSish path.
743#
744# FIXME: It would not be needed when MSYS's python
745# were provided.
746#----------------------------------------------------------
747
748ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
749 ECHOPATH := $(Verb)python -u -c "import sys;print ' '.join(sys.argv[1:])"
750else
751 ECHOPATH := $(Verb)$(ECHO)
752endif
753
Reid Spencer3a561f52004-10-23 20:04:14 +0000754###############################################################################
755# DIRECTORIES: Handle recursive descent of directory structure
756###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000757
Chris Lattner00950542001-06-06 20:29:01 +0000758#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000759# Provide rules to make install dirs. This must be early
760# in the file so they get built before dependencies
761#---------------------------------------------------------
762
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000763$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000764 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000765
Reid Spencercc2d1e22004-10-30 09:19:36 +0000766# To create other directories, as needed, and timestamp their creation
767%/.dir:
768 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000769 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000770
Reid Spencer815cbcf2004-11-18 10:03:46 +0000771.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
772.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000773
774#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000775# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000776#---------------------------------------------------------
777
Misha Brukmanef5dc702009-01-08 02:11:55 +0000778SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000779ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000780SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000781
782ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000783$(RecursiveTargets)::
784 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000785 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000786 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000787 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000788 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000789 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000790 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000791 done
Chris Lattner82033602006-07-26 20:22:26 +0000792else
793$(RecursiveTargets)::
794 $(Verb) for dir in $(DIRS); do \
795 ($(MAKE) -C $$dir $@ ) || exit 1; \
796 done
797endif
798
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000799endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000800
Reid Spencer3a561f52004-10-23 20:04:14 +0000801#---------------------------------------------------------
802# Handle the EXPERIMENTAL_DIRS options ensuring success
803# after each directory is built.
804#---------------------------------------------------------
805ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000806$(RecursiveTargets)::
807 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000808 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000809 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000810 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000811 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000812 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000813 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000814 done
815endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000816
Reid Spencer25e8a702005-12-21 23:17:06 +0000817#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000818# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
819#-----------------------------------------------------------
820ifdef OPTIONAL_PARALLEL_DIRS
821 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
822endif
823
824#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000825# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000826#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000827ifdef PARALLEL_DIRS
828
Reid Spencercc2d1e22004-10-30 09:19:36 +0000829SubDirs += $(PARALLEL_DIRS)
830
Reid Spencer44cb1b32004-12-03 20:08:48 +0000831# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000832all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
833clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000834clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000835install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000836uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000837install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000838unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000839
Reid Spencer345235ca2004-12-04 22:34:09 +0000840ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000841
Reid Spencer345235ca2004-12-04 22:34:09 +0000842$(ParallelTargets) :
Daniel Dunbar546023f2010-06-08 20:10:13 +0000843 $(Verb) if ([ ! -f $(@D)/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000844 command test $(@D)/Makefile -ot \
Chris Lattner381cd022010-06-15 21:35:22 +0000845 $(PROJ_SRC_DIR)/$(@D)/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000846 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000847 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000848 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000849 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000850endif
851
Reid Spencer3a561f52004-10-23 20:04:14 +0000852#---------------------------------------------------------
853# Handle the OPTIONAL_DIRS options for directores that may
854# or may not exist.
855#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000856ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000857
Reid Spencercc2d1e22004-10-30 09:19:36 +0000858SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000859
Chris Lattner82033602006-07-26 20:22:26 +0000860ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000861$(RecursiveTargets)::
862 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000863 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000864 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000865 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000866 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000867 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000868 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000869 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000870 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000871 done
Chris Lattner82033602006-07-26 20:22:26 +0000872else
873$(RecursiveTargets)::
874 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Stephen Wilsonc1566322011-02-20 03:51:07 +0000875 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
876 ($(MAKE) -C$$dir $@ ) || exit 1; \
877 fi \
Chris Lattner82033602006-07-26 20:22:26 +0000878 done
879endif
John Criswell2a6530f2003-06-27 16:58:44 +0000880endif
881
Reid Spencerfc945082004-08-20 09:20:05 +0000882#---------------------------------------------------------
883# Handle the CONFIG_FILES options
884#---------------------------------------------------------
885ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000886
Reid Spencera2a31bf2007-02-06 18:53:14 +0000887ifdef NO_INSTALL
888install-local::
889 $(Echo) Install circumvented with NO_INSTALL
890uninstall-local::
891 $(Echo) UnInstall circumvented with NO_INSTALL
892else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000893install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
894 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000895 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000896 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000897 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000898 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000899 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000900 else \
901 $(ECHO) Error: cannot find config file $${file}. ; \
902 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000903 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000904
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000905uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000906 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000907 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000908 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000909 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000910endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000911
Reid Spencerfc945082004-08-20 09:20:05 +0000912endif
913
Reid Spencer3a561f52004-10-23 20:04:14 +0000914###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +0000915# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000916###############################################################################
917
918#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000919# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000920# libraries needed when linking. There are "Proj" libs
921# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000922# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000923#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000924
Chris Lattneref0d0f12006-09-04 04:47:21 +0000925ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000926ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
927ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000928ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
929ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
930endif
931
932ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000933LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
934LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000935LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000936LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000937endif
938
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000939# Loadable module for Win32 requires all symbols resolved for linking.
940# Then all symbols in LLVM.dll will be available.
941ifeq ($(ENABLE_SHARED),1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000942 ifdef LOADABLE_MODULE
NAKAMURA Takumia64eb832010-09-10 06:27:02 +0000943 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
944 LINK_COMPONENTS += all
945 endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000946 endif
947endif
948
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000949ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000950ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000951
952# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
953# clean in tools, then do a make in tools (instead of at the top level).
954$(LLVM_CONFIG):
955 @echo "*** llvm-config doesn't exist - rebuilding it."
956 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000957
Chris Lattner0a1db822006-09-04 05:23:20 +0000958$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
959
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000960ifeq ($(ENABLE_SHARED), 1)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000961# We can take the "auto-import" feature to get rid of using dllimport.
962ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
963LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
964 -L $(SharedLibDir)
965endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000966LLVMLibsOptions += -lLLVM-$(LLVMVersion)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +0000967LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000968else
Chris Lattnerf636aa92010-09-01 16:11:17 +0000969
970ifndef NO_LLVM_CONFIG
971LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
972ifeq ($(LLVMConfigLibs),Error)
973$(error llvm-config --libs failed)
974endif
975LLVMLibsOptions += $(LLVMConfigLibs)
976LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
977ifeq ($(LLVMConfigLibfiles),Error)
978$(error llvm-config --libfiles failed)
979endif
980LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
981endif
982
Chris Lattneref0d0f12006-09-04 04:47:21 +0000983endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000984endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000985endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000986
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000987# Set up the library exports file.
988ifdef EXPORTED_SYMBOL_FILE
989
990# First, set up the native export file, which may differ from the source
991# export file.
992
993ifeq ($(HOST_OS),Darwin)
994# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +0000995NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +0000996$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +0000997 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000998clean-local::
999 -$(Verb) $(RM) -f $(NativeExportsFile)
1000else
Dan Gohmanda612d62010-06-01 14:56:56 +00001001ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1002# Gold and BFD ld require a version script rather than a plain list.
1003NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1004$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1005 $(Verb) echo "{" > $@
1006 $(Verb) grep -q "\<" $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001007 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001008ifneq ($(HOST_OS),OpenBSD)
Dan Gohmanda612d62010-06-01 14:56:56 +00001009 $(Verb) echo " local: *;" >> $@
Chris Lattnerc625d312011-02-21 18:38:56 +00001010endif
Dan Gohmanda612d62010-06-01 14:56:56 +00001011 $(Verb) echo "};" >> $@
1012clean-local::
1013 -$(Verb) $(RM) -f $(NativeExportsFile)
1014else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001015ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Dan Gohman9a7570c2010-09-03 17:29:33 +00001016# GNU ld Win32 accepts .DEF files that contain "DATA" entries.
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001017NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001018$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1019 $(Echo) Generating $(notdir $@)
1020 $(Verb) $(ECHO) "EXPORTS" > $@
1021 $(Verb) $(CAT) $< >> $@
1022clean-local::
1023 -$(Verb) $(RM) -f $(NativeExportsFile)
1024else
Dan Gohman9a7570c2010-09-03 17:29:33 +00001025# Default behavior: just use the exports file verbatim.
1026NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1027endif
1028endif
1029endif
1030
1031# Now add the linker command-line options to use the native export file.
1032
1033# Darwin
1034ifeq ($(HOST_OS),Darwin)
1035LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1036endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001037
Dan Gohmane05f6092010-04-16 22:58:15 +00001038# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001039ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1040LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001041endif
1042
Dan Gohman9a7570c2010-09-03 17:29:33 +00001043# Windows
1044ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1045# LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1046SharedLinkOptions += $(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001047endif
1048
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001049endif
1050
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001051###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001052# Library Build Rules: Four ways to build a library
1053###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001054
Reid Spencer7980ea42004-12-05 05:17:22 +00001055#---------------------------------------------------------
1056# Bytecode Module Targets:
1057# If the user set MODULE_NAME then they want to build a
1058# bytecode module from the sources. We compile all the
1059# sources and link it together into a single bytecode
1060# module.
1061#---------------------------------------------------------
1062
1063ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001064ifeq ($(strip $(LLVMCC)),)
1065$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001066else
Reid Spencer7980ea42004-12-05 05:17:22 +00001067
1068Module := $(LibDir)/$(MODULE_NAME).bc
Daniel Dunbar112257d2010-02-23 09:28:50 +00001069LinkModule := $(LLVMLD) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +00001070
Reid Spencer7980ea42004-12-05 05:17:22 +00001071
1072ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001073LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001074endif
1075
Reid Spencer43eb96c2007-02-09 15:52:07 +00001076$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001077 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001078 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1079
1080all-local:: $(Module)
1081
1082clean-local::
1083ifneq ($(strip $(Module)),)
1084 -$(Verb) $(RM) -f $(Module)
1085endif
1086
Reid Spencerab3690b2004-12-13 07:38:07 +00001087ifdef BYTECODE_DESTINATION
1088ModuleDestDir := $(BYTECODE_DESTINATION)
1089else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001090ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001091endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001092
Reid Spencera2a31bf2007-02-06 18:53:14 +00001093ifdef NO_INSTALL
1094install-local::
1095 $(Echo) Install circumvented with NO_INSTALL
1096uninstall-local::
1097 $(Echo) Uninstall circumvented with NO_INSTALL
1098else
Reid Spencerab3690b2004-12-13 07:38:07 +00001099DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1100
1101install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001102install-local:: $(DestModule)
1103
Misha Brukmanef5dc702009-01-08 02:11:55 +00001104$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001105 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001106 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001107
1108uninstall-local::
1109 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1110 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001111endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001112
1113endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001114endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001115
Reid Spencer3a561f52004-10-23 20:04:14 +00001116# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001117ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001118
Misha Brukmanf547a122009-08-17 15:31:24 +00001119# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001120LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001121ifdef LOADABLE_MODULE
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001122BaseLibName.A := $(LIBRARYNAME).a
1123BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001124else
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001125BaseLibName.A := lib$(LIBRARYNAME).a
1126BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001127endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001128LibName.A := $(LibDir)/$(BaseLibName.A)
1129LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001130LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001131LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001132
Reid Spencer3a561f52004-10-23 20:04:14 +00001133#---------------------------------------------------------
1134# Shared Library Targets:
1135# If the user asked for a shared library to be built
1136# with the SHARED_LIBRARY variable, then we provide
1137# targets for building them.
1138#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001139ifdef SHARED_LIBRARY
1140
Nick Lewyckya15dc032009-02-26 07:44:16 +00001141all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001142
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001143ifdef EXPORTED_SYMBOL_FILE
1144$(LibName.SO): $(NativeExportsFile)
1145endif
1146
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001147ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001148ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001149SharedLibKindMessage := "Loadable Module"
Daniel Dunbar7bc0f272010-12-08 01:48:05 +00001150SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
Reid Spencer42fe4552006-08-07 23:12:15 +00001151else
1152SharedLibKindMessage := "Shared Library"
1153endif
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001154$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001155 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001156 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001157 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001158 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001159else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001160$(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001161 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001162 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001163endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001164
1165clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001166ifneq ($(strip $(LibName.SO)),)
1167 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001168endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001169
Reid Spencera2a31bf2007-02-06 18:53:14 +00001170ifdef NO_INSTALL
1171install-local::
1172 $(Echo) Install circumvented with NO_INSTALL
1173uninstall-local::
1174 $(Echo) Uninstall circumvented with NO_INSTALL
1175else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001176
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001177# Win32.DLL prefers to be located on the "PATH" of binaries.
1178ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1179DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001180else
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001181DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001182endif
Rafael Espindola0ecd2962011-02-03 22:01:15 +00001183DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001184
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001185install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001186
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001187$(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001188 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001189 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001190
Misha Brukmanef5dc702009-01-08 02:11:55 +00001191uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001192 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Anton Korobeynikov59a430f2010-08-17 19:03:03 +00001193 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001194endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001195endif
1196
Reid Spencer3a561f52004-10-23 20:04:14 +00001197#---------------------------------------------------------
1198# Bytecode Library Targets:
1199# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001200# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001201# targets for building them.
1202#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001203ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001204ifeq ($(strip $(LLVMCC)),)
1205$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001206else
Reid Spencer4d71b662004-10-22 21:01:56 +00001207
Reid Spencer9a2f1372004-12-02 09:28:21 +00001208all-local:: $(LibName.BCA)
1209
1210ifdef EXPORTED_SYMBOL_FILE
Daniel Dunbar112257d2010-02-23 09:28:50 +00001211BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001212
Reid Spencer43eb96c2007-02-09 15:52:07 +00001213$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001214 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001215 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1216 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001217 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001218 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001219 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001220else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001221$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001222 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001223 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001224 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001225 $(Verb) $(LArchive) $@ $(ObjectsBC)
1226
Reid Spencer4d71b662004-10-22 21:01:56 +00001227endif
1228
Reid Spencer3a561f52004-10-23 20:04:14 +00001229clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001230ifneq ($(strip $(LibName.BCA)),)
1231 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001232endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001233
Reid Spencer8f094f32004-12-13 07:28:21 +00001234ifdef BYTECODE_DESTINATION
1235BytecodeDestDir := $(BYTECODE_DESTINATION)
1236else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001237BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001238endif
1239
Daniel Dunbard62031e2009-05-12 05:35:40 +00001240DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001241
Reid Spencer44cb1b32004-12-03 20:08:48 +00001242install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001243
Reid Spencera2a31bf2007-02-06 18:53:14 +00001244ifdef NO_INSTALL
1245install-local::
1246 $(Echo) Install circumvented with NO_INSTALL
1247uninstall-local::
1248 $(Echo) Uninstall circumvented with NO_INSTALL
1249else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001250install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001251
Mike Stumpb445d742009-02-12 23:45:11 +00001252$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001253 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001254 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001255
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001256uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001257 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001258 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001259endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001260endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001261endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001262
Reid Spencercc2d1e22004-10-30 09:19:36 +00001263#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001264# Library Targets:
1265# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1266# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001267#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001268ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001269ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001270ifndef LOADABLE_MODULE
1271BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001272endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001273endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001274endif
Chris Lattner760da062003-03-14 20:25:22 +00001275
Reid Spencercc2d1e22004-10-30 09:19:36 +00001276#---------------------------------------------------------
1277# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001278# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001279# then we provide targets for building them.
1280#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001281ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001282
Reid Spencercc2d1e22004-10-30 09:19:36 +00001283all-local:: $(LibName.A)
1284
Reid Spencerf2ac1892004-12-16 07:36:08 +00001285$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001286 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001287 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001288 $(Verb) $(Archive) $@ $(ObjectsO)
1289 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001290
Reid Spencer3a561f52004-10-23 20:04:14 +00001291clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001292ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001293 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001294endif
1295
Reid Spencera2a31bf2007-02-06 18:53:14 +00001296ifdef NO_INSTALL
1297install-local::
1298 $(Echo) Install circumvented with NO_INSTALL
1299uninstall-local::
1300 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001301else
1302ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001303install-local::
1304 $(Echo) Install circumvented with NO_INSTALL
1305uninstall-local::
1306 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001307else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001308DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001309
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001310install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001311
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001312$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001313 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001314 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001315 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001316
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001317uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001318 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001319 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001320endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001321endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001322endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001323
1324# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001325endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001326
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001327###############################################################################
1328# Tool Build Rules: Build executable tool based on TOOLNAME option
1329###############################################################################
1330
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001331ifdef TOOLNAME
1332
Reid Spencercc2d1e22004-10-30 09:19:36 +00001333#---------------------------------------------------------
1334# Set up variables for building a tool.
1335#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001336TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001337ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001338ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001339else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001340ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1341endif
1342
1343# TOOLALIAS is a name to symlink (or copy) the tool to.
1344ifdef TOOLALIAS
1345ifdef EXAMPLE_TOOL
1346ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1347else
1348ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1349endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001350endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001351
Reid Spencercc2d1e22004-10-30 09:19:36 +00001352#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001353# Prune Exports
1354#---------------------------------------------------------
1355
1356# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1357# not exporting all of the weak symbols from the binary. This reduces dyld
1358# startup time by 4x on darwin in some cases.
1359ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001360ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001361
1362# Tiger tools don't support this.
1363ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001364LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001365endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001366endif
Chris Lattner61863a32009-02-26 17:47:49 +00001367
Anton Korobeynikove55db742009-08-18 00:40:33 +00001368ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001369ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001370 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001371endif
1372endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001373endif
Chris Lattner61863a32009-02-26 17:47:49 +00001374
Devang Patel83be4512010-07-15 20:57:09 +00001375#---------------------------------------------------------
Daniel Dunbarccfaa4b2010-09-16 00:42:32 +00001376# Tool Order File Support
1377#---------------------------------------------------------
1378
1379ifeq ($(HOST_OS),Darwin)
1380ifdef TOOL_ORDER_FINE
1381
1382LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1383
1384endif
1385endif
1386
1387#---------------------------------------------------------
Devang Patel83be4512010-07-15 20:57:09 +00001388# Tool Version Info Support
1389#---------------------------------------------------------
1390
1391ifeq ($(HOST_OS),Darwin)
1392ifdef TOOL_INFO_PLIST
1393
1394LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1395
1396$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1397
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001398$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001399 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1400 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1401 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1402 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1403 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1404 $< > $@
1405
1406endif
1407endif
Chris Lattner61863a32009-02-26 17:47:49 +00001408
1409#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001410# Provide targets for building the tools
1411#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001412all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001413
Reid Spencer3a561f52004-10-23 20:04:14 +00001414clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001415ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001416 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001417endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001418ifneq ($(strip $(ToolAliasBuildPath)),)
1419 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1420endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001421
Reid Spencer815cbcf2004-11-18 10:03:46 +00001422ifdef EXAMPLE_TOOL
1423$(ToolBuildPath): $(ExmplDir)/.dir
1424else
1425$(ToolBuildPath): $(ToolDir)/.dir
1426endif
1427
Chris Lattnera7868af2006-09-04 06:39:52 +00001428$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001429 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001430 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001431 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001432 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001433 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001434
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001435ifneq ($(strip $(ToolAliasBuildPath)),)
1436$(ToolAliasBuildPath): $(ToolBuildPath)
1437 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1438 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1439 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
Dan Gohmanf9d11632010-08-18 01:35:53 +00001440 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001441 $(StripWarnMsg)
1442endif
1443
Reid Spencera2a31bf2007-02-06 18:53:14 +00001444ifdef NO_INSTALL
1445install-local::
1446 $(Echo) Install circumvented with NO_INSTALL
1447uninstall-local::
1448 $(Echo) Uninstall circumvented with NO_INSTALL
1449else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001450DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001451
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001452install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001453
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001454$(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001455 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001456 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001457
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001458uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001459 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001460 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001461
1462# TOOLALIAS install.
1463ifdef TOOLALIAS
Chris Lattner97d7b102010-03-10 21:27:53 +00001464DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001465
1466install-local:: $(DestToolAlias)
1467
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001468$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001469 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1470 $(Verb) $(RM) -f $(DestToolAlias)
1471 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1472
1473uninstall-local::
1474 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1475 -$(Verb) $(RM) -f $(DestToolAlias)
1476endif
1477
Reid Spencera2a31bf2007-02-06 18:53:14 +00001478endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001479endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001480
Reid Spencercc2d1e22004-10-30 09:19:36 +00001481###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001482# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001483###############################################################################
1484
Duraid Madina197ab872006-02-15 03:23:26 +00001485# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001486ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001487 DISABLE_AUTO_DEPENDENCIES=1
1488endif
1489
Reid Spencercc2d1e22004-10-30 09:19:36 +00001490# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001491ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001492
Reid Spencercc2d1e22004-10-30 09:19:36 +00001493#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001494# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001495#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001496
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001497DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001498 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001499
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001500# If the build succeeded, move the dependency file over, otherwise
1501# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001502DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1503 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1504
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001505$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001506 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001507 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001508 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001509
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001510$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001511 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1512 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1513 $(DEPEND_MOVEFILE)
1514
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001515$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001516 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001517 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001518 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001519
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001520$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001521 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001522 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001523 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001524
Daniel Dunbar9ae4ca62010-09-09 17:38:11 +00001525$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001526 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1527 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1528 $(DEPEND_MOVEFILE)
1529
Reid Spencercc2d1e22004-10-30 09:19:36 +00001530#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001531# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001532#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001533
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001534BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1535 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1536
1537# If the build succeeded, move the dependency file over, otherwise
1538# remove it.
1539BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1540 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1541
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001542$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001543 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001544 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001545 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001546 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001547
Greg Clayton43bc79a2010-07-13 18:47:09 +00001548$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1549 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1550 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001551 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001552 $(BC_DEPEND_MOVEFILE)
1553
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001554$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001555 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001556 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001557 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001558 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001559
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001560$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001561 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001562 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001563 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001564 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001565
Greg Clayton43bc79a2010-07-13 18:47:09 +00001566$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1567 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1568 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
Chris Lattner6c299ea2011-04-09 19:56:28 +00001569 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
Greg Clayton43bc79a2010-07-13 18:47:09 +00001570 $(BC_DEPEND_MOVEFILE)
1571
Reid Spencercc2d1e22004-10-30 09:19:36 +00001572# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001573else
1574
Nick Lewyckya15dc032009-02-26 07:44:16 +00001575$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001576 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001577 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001578
Greg Clayton43bc79a2010-07-13 18:47:09 +00001579$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1580 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1581 $(Compile.CXX) $< -o $@
1582
Nick Lewyckya15dc032009-02-26 07:44:16 +00001583$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001584 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001585 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001586
Nick Lewyckya15dc032009-02-26 07:44:16 +00001587$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001588 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001589 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001590
Greg Clayton43bc79a2010-07-13 18:47:09 +00001591$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1592 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1593 $(Compile.C) $< -o $@
1594
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001595$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001596 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001597 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Reid Spencer4d71b662004-10-22 21:01:56 +00001598
Greg Clayton43bc79a2010-07-13 18:47:09 +00001599$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1600 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001601 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001602
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001603$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001604 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001605 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001606
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001607$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001608 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001609 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Brian Gaeke44909cf2003-12-10 00:26:28 +00001610
Greg Clayton43bc79a2010-07-13 18:47:09 +00001611$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1612 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
Chris Lattner6c299ea2011-04-09 19:56:28 +00001613 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
Greg Clayton43bc79a2010-07-13 18:47:09 +00001614
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001615endif
1616
Chris Lattner8eb12de2006-06-21 21:01:20 +00001617
1618## Rules for building preprocessed (.i/.ii) outputs.
1619$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1620 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1621 $(Verb) $(Preprocess.CXX) $< -o $@
1622
Greg Clayton43bc79a2010-07-13 18:47:09 +00001623$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1624 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1625 $(Verb) $(Preprocess.CXX) $< -o $@
1626
Chris Lattner8eb12de2006-06-21 21:01:20 +00001627$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1628 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1629 $(Verb) $(Preprocess.CXX) $< -o $@
1630
Reid Spencer44136722006-12-10 04:56:38 +00001631$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001632 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1633 $(Verb) $(Preprocess.C) $< -o $@
1634
Greg Clayton43bc79a2010-07-13 18:47:09 +00001635$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1636 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1637 $(Verb) $(Preprocess.C) $< -o $@
1638
Chris Lattner8eb12de2006-06-21 21:01:20 +00001639
1640$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1641 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001642 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001643
Greg Clayton43bc79a2010-07-13 18:47:09 +00001644$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1645 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1646 $(Compile.CXX) $< -o $@ -S
1647
Chris Lattner8eb12de2006-06-21 21:01:20 +00001648$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1649 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001650 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001651
1652$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1653 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001654 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001655
Greg Clayton43bc79a2010-07-13 18:47:09 +00001656$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1657 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1658 $(Compile.C) $< -o $@ -S
1659
Reid Spencer8b2e1412006-11-17 03:32:33 +00001660
Chris Lattner89681112006-01-27 22:13:12 +00001661# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001662ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001663$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001664 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001665 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001666else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001667$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001668 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001669 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001670endif
1671
Chris Lattner89681112006-01-27 22:13:12 +00001672
Reid Spencercc2d1e22004-10-30 09:19:36 +00001673#---------------------------------------------------------
1674# Provide rule to build .bc files from .ll sources,
1675# regardless of dependencies
1676#---------------------------------------------------------
1677$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001678 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001679 $(Verb) $(LLVMAS) $< -f -o $@
1680
1681###############################################################################
1682# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1683###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001684
Reid Spencer4d71b662004-10-22 21:01:56 +00001685ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001686TABLEGEN_INC_FILES_COMMON = 1
1687endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001688
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001689ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001690TABLEGEN_INC_FILES_COMMON = 1
1691endif
1692
1693ifdef TABLEGEN_INC_FILES_COMMON
1694
Reid Spencercc2d1e22004-10-30 09:19:36 +00001695INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001696INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1697.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001698
Misha Brukmanef5dc702009-01-08 02:11:55 +00001699# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001700# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1701# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001702# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001703# dependencies of the .inc files are, unless the contents of the .inc file
1704# changes.
1705$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001706 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001707
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001708endif # TABLEGEN_INC_FILES_COMMON
1709
1710ifdef TARGET
1711
1712TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1713 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1714 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1715 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1716 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1717 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1718 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1719
Rafael Espindola075630a2009-03-10 17:58:54 +00001720# All of these files depend on tblgen and the .td files.
1721$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1722
Chris Lattner3c473472004-12-16 17:28:50 +00001723$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1724$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001725 $(Echo) "Building $(<F) register info implementation with tblgen"
Evan Chenga347f852011-06-24 01:44:41 +00001726 $(Verb) $(TableGen) -gen-register-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001727
Chris Lattner3c473472004-12-16 17:28:50 +00001728$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1729$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001730 $(Echo) "Building $(<F) instruction information with tblgen"
Evan Cheng22fee2d2011-06-28 20:07:07 +00001731 $(Verb) $(TableGen) -gen-instr-info -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001732
Chris Lattner3c473472004-12-16 17:28:50 +00001733$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1734$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001735 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001736 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001737
Chris Lattner02a4f902004-12-16 17:34:04 +00001738$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1739$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1740 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001741 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001742
Daniel Dunbarc464e512009-07-13 18:35:35 +00001743$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1744$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1745 $(Echo) "Building $(<F) assembly matcher with tblgen"
1746 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1747
Jim Grosbachbd29a362010-11-03 23:46:01 +00001748$(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
1749$(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1750 $(Echo) "Building $(<F) MC code emitter with tblgen"
1751 $(Verb) $(TableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
1752
Chris Lattner3c473472004-12-16 17:28:50 +00001753$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1754$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001755 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001756 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001757
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001758$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1759$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001760 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001761 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001762
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001763$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1764$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1765 $(Echo) "Building $(<F) disassembly tables with tblgen"
1766 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1767
Sean Callanan95fcebd2010-01-29 00:21:04 +00001768$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1769$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1770 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1771 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1772
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001773$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1774$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1775 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1776 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1777
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001778$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1779$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1780 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001781 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001782
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001783$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1784$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1785 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001786 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001787
Dale Johannesen49de9822009-02-05 01:49:45 +00001788$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001789$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1790 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesen49de9822009-02-05 01:49:45 +00001791 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1792
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001793$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1794 $(Echo) "Building $(<F) decoder tables with tblgen"
1795 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1796
1797
Reid Spencer3a561f52004-10-23 20:04:14 +00001798clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001799 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001800
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001801endif # TARGET
1802
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001803ifdef LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001804
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001805TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1806 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001807
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001808TDCommon := $(strip $(wildcard \
1809 $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001810
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001811TDFiles := $(TDSrc) $(TDCommon)
1812
1813$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1814
1815$(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
1816 $(Echo) "Building LLVMC compilation graph description with tblgen"
Mikhail Glushenkova73e5862010-10-23 07:32:53 +00001817 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001818
Mikhail Glushenkovb3d36292010-08-15 07:07:12 +00001819clean-local::
1820 -$(Verb) $(RM) -f $(INCFiles)
1821
1822endif # LLVMC_BASED_DRIVER
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001823
Reid Spencercc2d1e22004-10-30 09:19:36 +00001824###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001825# OTHER RULES: Other rules needed
1826###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001827
Chris Lattner30440c62003-01-16 21:06:18 +00001828# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001829ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001830%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001831 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001832else
1833%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001834 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001835endif
Chris Lattner30440c62003-01-16 21:06:18 +00001836
John Criswell7f336952003-09-06 14:44:17 +00001837# This rules ensures that header files that are removed still have a rule for
1838# which they can be "generated." This allows make to ignore them and
1839# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001840%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001841%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001842
Reid Spencercc2d1e22004-10-30 09:19:36 +00001843# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001844# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001845# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001846clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001847ifneq ($(strip $(ObjRootDir)),)
1848 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001849endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001850 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001851ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001852 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001853endif
John Criswell7a73b802003-06-30 21:59:07 +00001854
Reid Spencer3d659492004-11-02 16:36:03 +00001855clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001856 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001857
Reid Spencer12d79512004-11-12 02:27:36 +00001858
Reid Spencer3a561f52004-10-23 20:04:14 +00001859###############################################################################
1860# DEPENDENCIES: Include the dependency files if we should
1861###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001862ifndef DISABLE_AUTO_DEPENDENCIES
1863
Reid Spencer3a561f52004-10-23 20:04:14 +00001864# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001865ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001866
Reid Spencer3a561f52004-10-23 20:04:14 +00001867# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001868DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001869DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1870
1871# Include bitcode dependency files if using bitcode libraries
1872ifdef BYTECODE_LIBRARY
1873DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1874endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001875
Reid Spencer491a6cd2007-07-23 08:20:46 +00001876-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001877
John Criswelld741bcf2003-08-12 18:51:51 +00001878endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001879
Misha Brukmanef5dc702009-01-08 02:11:55 +00001880endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001881
Reid Spencer151f8ba2004-10-25 08:27:37 +00001882###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001883# CHECK: Running the test suite
1884###############################################################################
1885
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001886check::
Reid Spencer11fde542005-01-16 02:20:54 +00001887 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1888 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001889 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001890 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001891 TESTSUITE=$(TESTSUITE) ; \
1892 else \
1893 $(EchoCmd) No Makefile in test directory ; \
1894 fi ; \
1895 else \
1896 $(EchoCmd) No test directory ; \
1897 fi
1898
Daniel Dunbar666b4022010-08-02 00:05:18 +00001899check-lit:: check
1900
1901check-dg::
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001902 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1903 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1904 $(EchoCmd) Running test suite ; \
Daniel Dunbar666b4022010-08-02 00:05:18 +00001905 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001906 else \
1907 $(EchoCmd) No Makefile in test directory ; \
1908 fi ; \
1909 else \
1910 $(EchoCmd) No test directory ; \
1911 fi
1912
Daniel Dunbar34185792009-09-20 06:17:21 +00001913check-all::
1914 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1915 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1916 $(EchoCmd) Running test suite ; \
1917 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1918 else \
1919 $(EchoCmd) No Makefile in test directory ; \
1920 fi ; \
1921 else \
1922 $(EchoCmd) No test directory ; \
1923 fi
1924
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001925###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001926# UNITTESTS: Running the unittests test suite
1927###############################################################################
1928
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001929unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001930 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1931 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1932 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001933 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001934 else \
1935 $(EchoCmd) No Makefile in unittests directory ; \
1936 fi ; \
1937 else \
1938 $(EchoCmd) No unittests directory ; \
1939 fi
1940
1941###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001942# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001943###############################################################################
1944
Reid Spencere45ebfa2004-10-26 07:09:33 +00001945#------------------------------------------------------------------------
1946# Define distribution related variables
1947#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001948DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1949DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1950TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1951DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1952DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1953DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001954DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1955 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001956 Makefile.config.in configure autoconf
1957DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001958 $(PROJ_SRC_DIR)/*.h \
1959 $(PROJ_SRC_DIR)/*.td \
1960 $(PROJ_SRC_DIR)/*.def \
1961 $(PROJ_SRC_DIR)/*.ll \
1962 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001963DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001964DistSources = $(Sources) $(EXTRA_DIST)
1965DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001966
Reid Spencere45ebfa2004-10-26 07:09:33 +00001967#------------------------------------------------------------------------
1968# We MUST build distribution with OBJ_DIR != SRC_DIR
1969#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001970ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001971dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001972 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001973
Reid Spencere45ebfa2004-10-26 07:09:33 +00001974else
1975
Reid Spencere45ebfa2004-10-26 07:09:33 +00001976#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001977# Prevent attempt to run dist targets from anywhere but the top level
1978#------------------------------------------------------------------------
1979ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001980dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001981 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001982else
1983
1984#------------------------------------------------------------------------
1985# Provide the top level targets
1986#------------------------------------------------------------------------
1987
Reid Spencercc2d1e22004-10-30 09:19:36 +00001988dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001989
Reid Spencer345235ca2004-12-04 22:34:09 +00001990$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001991 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001992 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001993 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001994
Reid Spencercc2d1e22004-10-30 09:19:36 +00001995dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001996
Reid Spencer345235ca2004-12-04 22:34:09 +00001997$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001998 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001999 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00002000 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002001
Reid Spencercc2d1e22004-10-30 09:19:36 +00002002dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002003
Reid Spencer345235ca2004-12-04 22:34:09 +00002004$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00002005 $(Echo) Packing zipped distribution file.
2006 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00002007 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002008
Misha Brukmanef5dc702009-01-08 02:11:55 +00002009dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002010 $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002011
Reid Spencerf8f57402005-01-28 19:52:32 +00002012DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00002013
Reid Spencer345235ca2004-12-04 22:34:09 +00002014dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002015 $(Echo) Checking distribution tar file.
2016 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002017 $(RM) -rf $(DistCheckDir) ; \
2018 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00002019 $(Verb) $(MKDIR) $(DistCheckDir)
2020 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002021 $(MKDIR) $(DistCheckDir)/build && \
2022 $(MKDIR) $(DistCheckDir)/install && \
2023 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2024 cd build && \
2025 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00002026 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00002027 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002028 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00002029 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002030 $(MAKE) install && \
2031 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002032 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002033 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00002034
2035dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002036 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002037 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2038 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002039
2040endif
2041
2042#------------------------------------------------------------------------
2043# Provide the recursive distdir target for building the distribution directory
2044#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002045distdir: $(DistDir)/.makedistdir
2046$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002047 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002048 if test -d "$(DistDir)" ; then \
2049 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2050 exit 1 ; \
2051 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002052 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002053 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002054 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002055 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002056 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002057 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002058 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002059 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2060 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002061 for file in $(DistFiles) ; do \
2062 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002063 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002064 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2065 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002066 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002067 file=`echo "$$file" | \
2068 sed "s#^$$srcrootstrip/##"` \
2069 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002070 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002071 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2072 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2073 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002074 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002075 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002076 fi ; \
2077 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002078 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2079 to_dir="$(DistDir)/$$dir"; \
2080 $(MKDIR) "$$to_dir" ; \
2081 else \
2082 to_dir="$(DistDir)"; \
2083 fi; \
2084 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2085 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002086 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002087 fi ; \
2088 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002089 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2090 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002091 cd $(PROJ_SRC_DIR) ; \
2092 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2093 ( cd $$to_dir ; $(TAR) xf - ) ; \
2094 cd $(PROJ_OBJ_DIR) ; \
2095 else \
2096 cd $$from_dir ; \
2097 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2098 ( cd $$to_dir ; $(TAR) xf - ) ; \
2099 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002100 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002101 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002102 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002103 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002104 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002105 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002106 $(EchoCmd) "===== WARNING: Distribution Source " \
2107 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002108 elif test "$(Verb)" != '@' ; then \
2109 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002110 fi; \
2111 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002112 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002113 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002114 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002115 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002116 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002117 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002118 fi; \
2119 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002120 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002121 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002122 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2123 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002124 $(MAKE) dist-hook ; \
2125 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2126 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2127 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2128 -o ! -type d ! -perm -444 -exec \
2129 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2130 || chmod -R a+r $(DistDir) ; \
2131 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002132
Reid Spencercc2d1e22004-10-30 09:19:36 +00002133# This is invoked by distdir target, define it as a no-op to avoid errors if not
2134# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002135dist-hook::
2136
Reid Spencere53e3972004-10-22 23:06:30 +00002137endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002138
2139###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002140# TOP LEVEL - targets only to apply at the top level directory
2141###############################################################################
2142
2143ifeq ($(LEVEL),.)
2144
2145#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002146# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002147#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002148ifdef NO_INSTALL
2149install-local::
2150 $(Echo) Install circumvented with NO_INSTALL
2151uninstall-local::
2152 $(Echo) Uninstall circumvented with NO_INSTALL
2153else
Reid Spencere5487ba2004-10-24 07:53:21 +00002154install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002155 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002156 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002157 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002158 cd $(PROJ_SRC_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002159 for hdr in `find . -type f \
2160 '(' -name LICENSE.TXT \
2161 -o -name '*.def' \
2162 -o -name '*.h' \
2163 -o -name '*.inc' \
2164 -o -name '*.td' \
2165 ')' -print | grep -v CVS | \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002166 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002167 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002168 if test \! -d "$$instdir" ; then \
2169 $(EchoCmd) Making install directory $$instdir ; \
2170 $(MKDIR) $$instdir ;\
2171 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002172 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002173 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002174 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002175ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002176 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002177 cd $(PROJ_OBJ_ROOT)/include && \
NAKAMURA Takumi6716b8e2011-03-09 09:11:27 +00002178 for hdr in `find . -type f \
2179 '(' -name LICENSE.TXT \
2180 -o -name '*.def' \
2181 -o -name '*.h' \
2182 -o -name '*.inc' \
2183 -o -name '*.td' \
2184 ')' -print | grep -v CVS | \
2185 grep -v .svn` ; do \
2186 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2187 if test \! -d "$$instdir" ; then \
2188 $(EchoCmd) Making install directory $$instdir ; \
2189 $(MKDIR) $$instdir ;\
2190 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002191 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002192 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002193 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002194endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002195
2196uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002197 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002198 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2199 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002200 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002201 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002202 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002203 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002204 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002205 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002206 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002207 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002208endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002209endif
2210
Chris Lattner03840ac2007-04-14 23:35:45 +00002211check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002212 @echo searching for overlength lines in files: $(Sources)
2213 @echo
2214 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002215 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002216
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002217check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002218 @echo searching for tabs in files: $(Sources)
2219 @echo
2220 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002221 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002222
Reid Spencer6548bf12007-05-02 21:29:39 +00002223check-footprint:
2224 @ls -l $(LibDir) | awk '\
2225 BEGIN { sum = 0; } \
2226 { sum += $$5; } \
2227 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2228 @ls -l $(ToolDir) | awk '\
2229 BEGIN { sum = 0; } \
2230 { sum += $$5; } \
2231 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002232#------------------------------------------------------------------------
2233# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002234#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002235printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002236 $(Echo) "BuildMode : " '$(BuildMode)'
2237 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2238 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2239 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2240 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2241 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2242 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2243 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2244 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2245 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2246 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002247 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002248 $(Echo) "UserTargets : " '$(UserTargets)'
2249 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2250 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2251 $(Echo) "ObjDir : " '$(ObjDir)'
2252 $(Echo) "LibDir : " '$(LibDir)'
2253 $(Echo) "ToolDir : " '$(ToolDir)'
2254 $(Echo) "ExmplDir : " '$(ExmplDir)'
2255 $(Echo) "Sources : " '$(Sources)'
2256 $(Echo) "TDFiles : " '$(TDFiles)'
2257 $(Echo) "INCFiles : " '$(INCFiles)'
2258 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002259 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002260 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2261 $(Echo) "Compile.C : " '$(Compile.C)'
2262 $(Echo) "Archive : " '$(Archive)'
2263 $(Echo) "YaccFiles : " '$(YaccFiles)'
2264 $(Echo) "LexFiles : " '$(LexFiles)'
2265 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002266 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002267 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002268 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2269 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002270
2271###
2272# Debugging
2273
Daniel Dunbar3c898122009-03-06 22:23:25 +00002274# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002275# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002276make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002277 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))