blob: 66666b42d28cc0762645978cdb3ffbd72492cfee [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) && \
126 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
127 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000128 fi ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000129 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130 $(ConfigStatusScript)
131
Anton Korobeynikov7a677a32009-08-14 18:53:19 +0000132# FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
Daniel Dunbar25a619f2009-08-13 17:22:49 +0000133# up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
134
Reid Spencercc2d1e22004-10-30 09:19:36 +0000135.PRECIOUS: $(ConfigStatusScript)
Anton Korobeynikov7a677a32009-08-14 18:53:19 +0000136$(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(LLVM_SRC_ROOT)/lib/Target/MSP430/AsmPrinter/Makefile
Reid Spencercc2d1e22004-10-30 09:19:36 +0000137 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000138 $(Verb) cd $(PROJ_OBJ_ROOT) && \
139 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
140 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000141 fi ; \
Reid Spencer7d277002004-11-29 12:37:44 +0000142 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
143 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000144
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000145#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000146# Make sure the configuration makefile is up to date
147#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000148ifneq ($(MakefileConfigIn),)
149$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000150 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000151 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
152endif
153
154ifneq ($(MakefileCommonIn),)
155$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
156 $(Echo) Regenerating $@
157 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
158endif
Reid Spencer9411c642004-10-26 22:26:33 +0000159
160#------------------------------------------------------------------------
161# If the Makefile in the source tree has been updated, copy it over into the
162# build tree. But, only do this if the source and object makefiles differ
163#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000164ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000165
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000166Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000167 $(Echo) "Updating Makefile"
168 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000169 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000170
171# Copy the Makefile.* files unless we're in the root directory which avoids
172# the copying of Makefile.config.in or other things that should be explicitly
173# taken care of.
Reid Spencer11fde542005-01-16 02:20:54 +0000174$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
Reid Spencer86606782004-10-26 23:10:00 +0000175 @case '$?' in \
176 *Makefile.rules) ;; \
177 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000178 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000179 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000180 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000181 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000182
Reid Spencer9411c642004-10-26 22:26:33 +0000183endif
184
185#------------------------------------------------------------------------
186# Set up the basic dependencies
187#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000188$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000189
190all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000191clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000192clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000193install:: install-local
194uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000195install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000196install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000197
198###############################################################################
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000199# LLVMC: Provide rules for compiling llvmc plugins
200###############################################################################
201
202ifdef LLVMC_PLUGIN
203
204LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
Mikhail Glushenkovd80d8692009-06-23 20:46:48 +0000205CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000206
207ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
208 LD.Flags += -lCompilerDriver
209endif
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000210
211# Build a dynamic library if the user runs `make` directly from the plugin
212# directory.
213ifndef LLVMC_BUILTIN_PLUGIN
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000214 LOADABLE_MODULE = 1
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000215endif
216
217# TableGen stuff...
218ifneq ($(BUILT_SOURCES),)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000219 LLVMC_BUILD_AUTOGENERATED_INC=1
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000220endif
221
222endif # LLVMC_PLUGIN
223
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000224ifdef LLVMC_BASED_DRIVER
225
226TOOLNAME = $(LLVMC_BASED_DRIVER)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000227
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000228ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
229 LD.Flags += -lCompilerDriver
230else
231 LLVMLIBS = CompilerDriver.a
232 LINK_COMPONENTS = support system
233endif
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000234
235# Preprocessor magic that generates references to static variables in built-in
236# plugins.
237ifneq ($(LLVMC_BUILTIN_PLUGINS),)
238
239USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS))
240
241LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS))
242LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS))
243LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS))
244LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS))
245LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS))
Mikhail Glushenkov17d70ab2009-10-09 04:15:52 +0000246LLVMC_BUILTIN_PLUGIN_6 = $(word 6, $(LLVMC_BUILTIN_PLUGINS))
247LLVMC_BUILTIN_PLUGIN_7 = $(word 7, $(LLVMC_BUILTIN_PLUGINS))
248LLVMC_BUILTIN_PLUGIN_8 = $(word 8, $(LLVMC_BUILTIN_PLUGINS))
249LLVMC_BUILTIN_PLUGIN_9 = $(word 9, $(LLVMC_BUILTIN_PLUGINS))
250LLVMC_BUILTIN_PLUGIN_10 = $(word 10, $(LLVMC_BUILTIN_PLUGINS))
251
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000252
253ifneq ($(LLVMC_BUILTIN_PLUGIN_1),)
254CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1)
255endif
256
257ifneq ($(LLVMC_BUILTIN_PLUGIN_2),)
258CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2)
259endif
260
261ifneq ($(LLVMC_BUILTIN_PLUGIN_3),)
262CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3)
263endif
264
265ifneq ($(LLVMC_BUILTIN_PLUGIN_4),)
266CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4)
267endif
268
269ifneq ($(LLVMC_BUILTIN_PLUGIN_5),)
270CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5)
271endif
272
Mikhail Glushenkov17d70ab2009-10-09 04:15:52 +0000273ifneq ($(LLVMC_BUILTIN_PLUGIN_6),)
274CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_6)
275endif
276
277ifneq ($(LLVMC_BUILTIN_PLUGIN_7),)
278CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_7)
279endif
280
281ifneq ($(LLVMC_BUILTIN_PLUGIN_8),)
282CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_8)
283endif
284
285ifneq ($(LLVMC_BUILTIN_PLUGIN_9),)
286CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_9)
287endif
288
289ifneq ($(LLVMC_BUILTIN_PLUGIN_10),)
290CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_10)
291endif
292
293
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000294endif
295
296endif # LLVMC_BASED_DRIVER
297
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000298###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000299# VARIABLES: Set up various variables based on configuration data
300###############################################################################
301
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000302# Variable for if this make is for a "cleaning" target
303ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
304 IS_CLEANING_TARGET=1
305endif
306
Reid Spencer3a561f52004-10-23 20:04:14 +0000307#--------------------------------------------------------------------
308# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000309#--------------------------------------------------------------------
310
Reid Spencer0a522b12007-07-10 07:19:53 +0000311CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000312ifeq ($(ENABLE_OPTIMIZED),1)
313 BuildMode := Release
314 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000315 ifneq ($(HOST_OS),FreeBSD)
316 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000317 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000318 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000319 endif
320
321 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000322 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
323 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000324 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000325 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
326 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000327 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
328 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
329 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000330 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000331 BuildMode := $(BuildMode)+Debug
332 CXX.Flags += -g
333 C.Flags += -g
334 LD.Flags += -g
335 KEEP_SYMBOLS := 1
336 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000337else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000338 ifdef NO_DEBUG_SYMBOLS
339 BuildMode := Unoptimized
340 CXX.Flags +=
341 C.Flags +=
342 LD.Flags +=
343 KEEP_SYMBOLS := 1
344 else
345 BuildMode := Debug
346 CXX.Flags += -g
347 C.Flags += -g
348 LD.Flags += -g
349 KEEP_SYMBOLS := 1
350 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000351endif
352
353ifeq ($(ENABLE_PROFILING),1)
354 BuildMode := $(BuildMode)+Profile
355 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
356 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
357 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
358 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000359endif
360
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000361#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
362# CXX.Flags += -fvisibility-inlines-hidden
363#endif
364
Chris Lattnerc96d5082010-01-24 20:20:40 +0000365ifdef ENABLE_EXPENSIVE_CHECKS
366 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
367 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
368 REQUIRES_RTTI := 1
369endif
370
Reid Spencer99655e12006-08-25 19:54:53 +0000371# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000372ifndef REQUIRES_EH
373 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000374else
375 # If the library requires EH, it also requires RTTI.
376 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000377endif
Reid Spencer99655e12006-08-25 19:54:53 +0000378
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000379ifdef REQUIRES_FRAME_POINTER
380 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
381 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
382 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
383endif
384
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000385# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000386ifneq ($(REQUIRES_RTTI), 1)
387 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000388endif
389
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000390ifdef ENABLE_COVERAGE
391 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000392 CXX.Flags += -ftest-coverage -fprofile-arcs
393 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000394endif
395
Reid Spencer854071c2006-04-10 16:46:04 +0000396# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
397# then disable assertions by defining the appropriate preprocessor symbols.
Duncan Sands8246adc2010-07-07 07:48:00 +0000398ifndef DISABLE_ASSERTIONS
399 BuildMode := $(BuildMode)+Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000400 CPP.Defines += -D_DEBUG
Duncan Sands8246adc2010-07-07 07:48:00 +0000401else
402 CPP.Defines += -DNDEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000403endif
404
Misha Brukmanef5dc702009-01-08 02:11:55 +0000405# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
406# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000407# appropriate preprocessor symbols.
David Greenea696d242007-06-28 19:36:08 +0000408ifdef ENABLE_EXPENSIVE_CHECKS
409 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000410 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000411endif
412
Nick Lewyckya15dc032009-02-26 07:44:16 +0000413# LOADABLE_MODULE implies several other things so we force them to be
414# defined/on.
415ifdef LOADABLE_MODULE
416 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000417 LINK_LIBS_IN_SHARED := 1
418endif
419
420ifdef SHARED_LIBRARY
421 ENABLE_PIC := 1
422 PIC_FLAG = "(PIC)"
423endif
424
Reid Spencer89b0d992006-12-16 22:07:52 +0000425ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000426 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000427 # Nothing. Win32 defaults to PIC and warns when given -fPIC
428 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000429 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000430 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000431 CXX.Flags += -fno-common
432 C.Flags += -fno-common
433 else
434 # Linux and others; pass -fPIC
435 CXX.Flags += -fPIC
436 C.Flags += -fPIC
437 endif
438 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000439else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000440 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000441 CXX.Flags += -mdynamic-no-pic
442 C.Flags += -mdynamic-no-pic
443 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000444endif
445
Daniel Dunbardd464df2010-05-10 20:11:56 +0000446# Support makefile variable to disable any kind of timestamp/non-deterministic
447# info from being used in the build.
448ifeq ($(ENABLE_TIMESTAMPS),1)
449 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
450else
451 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
452endif
453
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000454ifeq ($(HOST_OS),MingW)
455 # Work around PR4957
456 CPP.Defines += -D__NO_CTYPE_INLINE
457 ifeq ($(LLVM_CROSS_COMPILING),1)
458 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
459 ifdef TOOLNAME
460 LD.Flags += -Wl,--allow-multiple-definition
461 endif
462 endif
463endif
464
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000465CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000466CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000467AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000468
Chris Lattner16620fc2006-07-27 18:19:51 +0000469# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000470ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000471 CXX.Flags += -mieee
472 CPP.BaseFlags += -mieee
473ifeq ($(ENABLE_PIC),0)
474 CXX.Flags += -fPIC
475 CPP.BaseFlags += -fPIC
476endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000477endif
478
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000479ifeq ($(ARCH),Alpha)
480 LD.Flags += -Wl,--no-relax
481endif
482
Reid Spencer3a561f52004-10-23 20:04:14 +0000483#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000484# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000485#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000486TargetMode :=
487ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000488 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000489endif
490
491ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000492ObjDir := $(ObjRootDir)
493LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
494ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
495ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
496LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
497LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
498LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000499
Reid Spencer3a561f52004-10-23 20:04:14 +0000500#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000501# LLVM Capable Compiler
502#--------------------------------------------------------------------
503
504ifeq ($(LLVMCC_OPTION),llvm-gcc)
505 LLVMCC := $(LLVMGCC)
506 LLVMCXX := $(LLVMGXX)
507else
508 ifeq ($(LLVMCC_OPTION),clang)
509 ifneq ($(CLANGPATH),)
510 LLVMCC := $(CLANGPATH)
511 LLVMCXX := $(CLANGXXPATH)
512 else
513 ifeq ($(ENABLE_BUILT_CLANG),1)
514 LLVMCC := $(LLVMToolDir)/clang
515 LLVMCXX := $(LLVMToolDir)/clang++
516 endif
517 endif
518 endif
519endif
520
521#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000522# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000523#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000524EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
525Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000526ifndef LLVMAS
527LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
528endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000529ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000530 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000531 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000532 else
533 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
534 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000535endif
Misha Brukmanef5dc702009-01-08 02:11:55 +0000536LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencer43eb96c2007-02-09 15:52:07 +0000537ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000538LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000539endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000540ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000541LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
542endif
543ifndef LLI
544LLI := $(LLVMToolDir)/lli$(EXEEXT)
545endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000546ifndef LLC
547LLC := $(LLVMToolDir)/llc$(EXEEXT)
548endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000549ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000550LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000551endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000552ifndef LBUGPOINT
553LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
554endif
Reid Spencere46687c2006-12-03 21:01:45 +0000555
Reid Spencer3a561f52004-10-23 20:04:14 +0000556#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000557# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000558#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000559
Anton Korobeynikove55db742009-08-18 00:40:33 +0000560ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000561 DARWIN_VERSION := `sw_vers -productVersion`
562 # Strip a number like 10.4.7 to 10.4
563 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
564 # Get "4" out of 10.4 for later pieces in the makefile.
565 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000566
Dan Gohmane05f6092010-04-16 22:58:15 +0000567 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined,suppress \
Evan Chenga5e225e2009-09-08 18:52:20 +0000568 -dynamiclib
569 ifneq ($(ARCH),ARM)
570 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
571 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000572else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000573 ifeq ($(HOST_OS),Cygwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000574 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000575 -Wl,--enable-auto-import -Wl,--enable-auto-image-base
Scott Michel87af5f02009-03-12 21:03:53 +0000576 else
577 SharedLinkOptions=-shared
578 endif
579endif
580
Anton Korobeynikove55db742009-08-18 00:40:33 +0000581ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000582 ifneq ($(ARCH),ARM)
583 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
584 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000585endif
586
Reid Spencer492c2932005-01-11 04:31:07 +0000587ifdef SHARED_LIBRARY
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000588ifneq ($(HOST_OS),Darwin)
589 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
590else
Scott Michel87af5f02009-03-12 21:03:53 +0000591ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky1dace482009-03-03 04:55:15 +0000592 LD.Flags += $(RPATH) -Wl,$(LibDir)
John Criswell82f4a5a2003-07-31 20:58:51 +0000593endif
Scott Michel87af5f02009-03-12 21:03:53 +0000594endif
Rafael Espindolaa89efd52010-05-16 03:05:14 +0000595endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000596
Reid Spencercceed9f2004-11-08 17:32:12 +0000597ifdef TOOL_VERBOSE
598 C.Flags += -v
599 CXX.Flags += -v
600 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000601 VERBOSE := 1
602endif
603
Reid Spencer3a561f52004-10-23 20:04:14 +0000604# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000605ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000606 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000607 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000608 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000609else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000610 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000611endif
612
Vikram S. Advefeeae582002-09-18 11:55:13 +0000613# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000614ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000615 Strip := $(PLATFORMSTRIPOPTS)
616 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000617 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000618endif
619
Reid Spencer3a561f52004-10-23 20:04:14 +0000620# Adjust linker flags for building an executable
Nick Lewyckye28015c2010-08-02 03:16:19 +0000621ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
622ifneq ($(HOST_OS), Darwin)
Reid Spencer4d71b662004-10-22 21:01:56 +0000623ifdef TOOLNAME
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000624 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
625 ifdef EXAMPLE_TOOL
626 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
627 else
628 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
629 endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000630endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000631else
632ifneq ($(DARWIN_MAJVERS),4)
633 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
Nick Lewyckya15dc032009-02-26 07:44:16 +0000634endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000635endif
Nick Lewyckye28015c2010-08-02 03:16:19 +0000636endif
Ted Kremenekd634bcb2010-07-15 06:36:57 +0000637
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000638
Reid Spencer3a561f52004-10-23 20:04:14 +0000639#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000640# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000641#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000642
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000643ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000644CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000645endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000646CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
647 $(EXTRA_OPTIONS)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000648# Enable cast-qual for C++; the workaround is to use const_cast.
649CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000650
Anton Korobeynikove55db742009-08-18 00:40:33 +0000651ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000652 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000653endif
654
Chris Lattner73faa392006-05-30 16:38:06 +0000655# If we are building a universal binary on Mac OS/X, pass extra options. This
656# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000657# apps.
658#
659# The following can be optionally specified:
660# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
661# For Mac OS/X 10.4 Intel machines, the traditional one is:
662# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
663# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
664# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
665# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000666ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000667 ifndef UNIVERSAL_ARCH
668 UNIVERSAL_ARCH := i386 ppc
669 endif
670 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
671 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000672 ifdef UNIVERSAL_SDK_PATH
673 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000674 endif
675
676 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000677 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000678else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000679 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000680 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000681 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000682 else
683 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000684 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000685 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000686 endif
687 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000688endif
689
Anton Korobeynikove55db742009-08-18 00:40:33 +0000690ifeq ($(HOST_OS),SunOS)
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000691CPP.BaseFlags += -include llvm/System/Solaris.h
692endif
693
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000694ifeq ($(HOST_OS),AuroraUX)
695CPP.BaseFlags += -include llvm/System/Solaris.h
696endif # !HOST_OS - AuroraUX.
697
Misha Brukmanef5dc702009-01-08 02:11:55 +0000698LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman63f97202008-10-17 01:33:43 +0000699CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000700# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000701CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
702 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000703 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
704 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
705 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000706
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000707ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000708 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000709 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000710 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
711 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000712 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000713 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000714 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000715 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
716 $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000717 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000718else
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000719 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000720 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000721 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000722 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000723 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner6be92662009-06-16 23:00:42 +0000724 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000725 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000726 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000727endif
728
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000729BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000730 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000731Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000732 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000733
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000734BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000735 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000736
Misha Brukmanef5dc702009-01-08 02:11:55 +0000737ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
738ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000739DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000740
741# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
742# paths. In this case, the SYSPATH function (defined in
743# Makefile.config) transforms Unix paths into Windows paths.
744TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000745 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000746 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
747 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
748
Reid Spencercc2d1e22004-10-30 09:19:36 +0000749Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000750LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000751ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000752Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000753else
Reid Spencer3a561f52004-10-23 20:04:14 +0000754Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000755endif
756
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000757AliasTool = ln -s
758
Chris Lattner00950542001-06-06 20:29:01 +0000759#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000760# Get the list of source files and compute object file
761# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000762#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000763
764ifndef SOURCES
765 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000766 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000767else
Chris Lattner89681112006-01-27 22:13:12 +0000768 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000769endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000770
Chris Lattner89681112006-01-27 22:13:12 +0000771ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000772Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000773endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000774
Chris Lattner89681112006-01-27 22:13:12 +0000775BaseNameSources := $(sort $(basename $(Sources)))
776
777ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000778ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
779
Reid Spencer3a561f52004-10-23 20:04:14 +0000780###############################################################################
781# DIRECTORIES: Handle recursive descent of directory structure
782###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000783
Chris Lattner00950542001-06-06 20:29:01 +0000784#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000785# Provide rules to make install dirs. This must be early
786# in the file so they get built before dependencies
787#---------------------------------------------------------
788
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000789$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000790 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000791
Reid Spencercc2d1e22004-10-30 09:19:36 +0000792# To create other directories, as needed, and timestamp their creation
793%/.dir:
794 $(Verb) $(MKDIR) $* > /dev/null
Daniel Dunbardd464df2010-05-10 20:11:56 +0000795 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000796
Reid Spencer815cbcf2004-11-18 10:03:46 +0000797.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
798.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000799
800#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000801# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000802#---------------------------------------------------------
803
Misha Brukmanef5dc702009-01-08 02:11:55 +0000804SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000805ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000806SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000807
808ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000809$(RecursiveTargets)::
810 $(Verb) for dir in $(DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000811 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000812 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000813 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000814 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000815 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000816 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000817 done
Chris Lattner82033602006-07-26 20:22:26 +0000818else
819$(RecursiveTargets)::
820 $(Verb) for dir in $(DIRS); do \
821 ($(MAKE) -C $$dir $@ ) || exit 1; \
822 done
823endif
824
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000825endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000826
Reid Spencer3a561f52004-10-23 20:04:14 +0000827#---------------------------------------------------------
828# Handle the EXPERIMENTAL_DIRS options ensuring success
829# after each directory is built.
830#---------------------------------------------------------
831ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000832$(RecursiveTargets)::
833 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Daniel Dunbar546023f2010-06-08 20:10:13 +0000834 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000835 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer3a561f52004-10-23 20:04:14 +0000836 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000837 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000838 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000839 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000840 done
841endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000842
Reid Spencer25e8a702005-12-21 23:17:06 +0000843#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000844# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
845#-----------------------------------------------------------
846ifdef OPTIONAL_PARALLEL_DIRS
847 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
848endif
849
850#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000851# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000852#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000853ifdef PARALLEL_DIRS
854
Reid Spencercc2d1e22004-10-30 09:19:36 +0000855SubDirs += $(PARALLEL_DIRS)
856
Reid Spencer44cb1b32004-12-03 20:08:48 +0000857# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000858all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
859clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000860clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000861install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000862uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000863install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000864unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000865
Reid Spencer345235ca2004-12-04 22:34:09 +0000866ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000867
Reid Spencer345235ca2004-12-04 22:34:09 +0000868$(ParallelTargets) :
Daniel Dunbar546023f2010-06-08 20:10:13 +0000869 $(Verb) if ([ ! -f $(@D)/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000870 command test $(@D)/Makefile -ot \
Chris Lattner381cd022010-06-15 21:35:22 +0000871 $(PROJ_SRC_DIR)/$(@D)/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000872 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000873 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000874 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000875 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000876endif
877
Reid Spencer3a561f52004-10-23 20:04:14 +0000878#---------------------------------------------------------
879# Handle the OPTIONAL_DIRS options for directores that may
880# or may not exist.
881#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000882ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000883
Reid Spencercc2d1e22004-10-30 09:19:36 +0000884SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000885
Chris Lattner82033602006-07-26 20:22:26 +0000886ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000887$(RecursiveTargets)::
888 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000889 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Daniel Dunbar546023f2010-06-08 20:10:13 +0000890 if ([ ! -f $$dir/Makefile ] || \
Chris Lattnerf2a12242010-06-18 00:35:32 +0000891 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000892 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000893 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000894 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000895 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000896 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000897 done
Chris Lattner82033602006-07-26 20:22:26 +0000898else
899$(RecursiveTargets)::
900 $(Verb) for dir in $(OPTIONAL_DIRS); do \
901 ($(MAKE) -C$$dir $@ ) || exit 1; \
902 done
903endif
John Criswell2a6530f2003-06-27 16:58:44 +0000904endif
905
Reid Spencerfc945082004-08-20 09:20:05 +0000906#---------------------------------------------------------
907# Handle the CONFIG_FILES options
908#---------------------------------------------------------
909ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000910
Reid Spencera2a31bf2007-02-06 18:53:14 +0000911ifdef NO_INSTALL
912install-local::
913 $(Echo) Install circumvented with NO_INSTALL
914uninstall-local::
915 $(Echo) UnInstall circumvented with NO_INSTALL
916else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000917install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
918 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000919 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000920 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000921 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000922 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000923 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000924 else \
925 $(ECHO) Error: cannot find config file $${file}. ; \
926 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000927 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000928
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000929uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000930 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000931 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000932 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000933 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000934endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000935
Reid Spencerfc945082004-08-20 09:20:05 +0000936endif
937
Reid Spencer3a561f52004-10-23 20:04:14 +0000938###############################################################################
Eric Christopherdf7d4192010-06-21 23:49:08 +0000939# Set up variables for building libraries
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000940###############################################################################
941
942#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000943# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000944# libraries needed when linking. There are "Proj" libs
945# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000946# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000947#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000948
Chris Lattneref0d0f12006-09-04 04:47:21 +0000949ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000950ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
951ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000952ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
953ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
954endif
955
956ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000957LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
958LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000959LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000960LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000961endif
962
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000963ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000964ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000965
966# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
967# clean in tools, then do a make in tools (instead of at the top level).
968$(LLVM_CONFIG):
969 @echo "*** llvm-config doesn't exist - rebuilding it."
970 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000971
Chris Lattner0a1db822006-09-04 05:23:20 +0000972$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
973
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000974ifeq ($(ENABLE_SHARED), 1)
975LLVMLibsOptions += -lLLVM-$(LLVMVersion)
976LLVMLibsPaths += $(LibDir)/libLLVM-$(LLVMVersion)$(SHLIBEXT)
977else
Mikhail Glushenkov533384e2009-03-03 10:03:27 +0000978LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
979LLVMLibsPaths += $(LLVM_CONFIG) \
Misha Brukmanf547a122009-08-17 15:31:24 +0000980 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000981endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000982endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000983endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000984
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000985# Set up the library exports file.
986ifdef EXPORTED_SYMBOL_FILE
987
988# First, set up the native export file, which may differ from the source
989# export file.
990
991ifeq ($(HOST_OS),Darwin)
992# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +0000993NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +0000994$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanf4ef72e2010-06-01 17:08:56 +0000995 $(Verb) sed -e 's/^/_/' < $< > $@
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000996clean-local::
997 -$(Verb) $(RM) -f $(NativeExportsFile)
998else
Dan Gohmanda612d62010-06-01 14:56:56 +0000999ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1000# Gold and BFD ld require a version script rather than a plain list.
1001NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1002$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1003 $(Verb) echo "{" > $@
1004 $(Verb) grep -q "\<" $< && echo " global:" >> $@ || :
Dan Gohmanf4ef72e2010-06-01 17:08:56 +00001005 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
Dan Gohmanda612d62010-06-01 14:56:56 +00001006 $(Verb) echo " local: *;" >> $@
1007 $(Verb) echo "};" >> $@
1008clean-local::
1009 -$(Verb) $(RM) -f $(NativeExportsFile)
1010else
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001011NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1012endif
Dan Gohmanda612d62010-06-01 14:56:56 +00001013endif
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001014
1015# Now add the linker command-line options to use the native export file.
1016
1017ifeq ($(HOST_OS),Darwin)
Dan Gohmane05f6092010-04-16 22:58:15 +00001018LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001019endif
1020
Dan Gohmane05f6092010-04-16 22:58:15 +00001021# gold, bfd ld, etc.
Dan Gohmanda612d62010-06-01 14:56:56 +00001022ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1023LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001024endif
1025
1026endif
1027
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001028###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +00001029# Library Build Rules: Four ways to build a library
1030###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001031
Reid Spencer7980ea42004-12-05 05:17:22 +00001032#---------------------------------------------------------
1033# Bytecode Module Targets:
1034# If the user set MODULE_NAME then they want to build a
1035# bytecode module from the sources. We compile all the
1036# sources and link it together into a single bytecode
1037# module.
1038#---------------------------------------------------------
1039
1040ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001041ifeq ($(strip $(LLVMCC)),)
1042$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001043else
Reid Spencer7980ea42004-12-05 05:17:22 +00001044
1045Module := $(LibDir)/$(MODULE_NAME).bc
Daniel Dunbar112257d2010-02-23 09:28:50 +00001046LinkModule := $(LLVMLD) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +00001047
Reid Spencer7980ea42004-12-05 05:17:22 +00001048
1049ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001050LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001051endif
1052
Reid Spencer43eb96c2007-02-09 15:52:07 +00001053$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001054 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001055 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1056
1057all-local:: $(Module)
1058
1059clean-local::
1060ifneq ($(strip $(Module)),)
1061 -$(Verb) $(RM) -f $(Module)
1062endif
1063
Reid Spencerab3690b2004-12-13 07:38:07 +00001064ifdef BYTECODE_DESTINATION
1065ModuleDestDir := $(BYTECODE_DESTINATION)
1066else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001067ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001068endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001069
Reid Spencera2a31bf2007-02-06 18:53:14 +00001070ifdef NO_INSTALL
1071install-local::
1072 $(Echo) Install circumvented with NO_INSTALL
1073uninstall-local::
1074 $(Echo) Uninstall circumvented with NO_INSTALL
1075else
Reid Spencerab3690b2004-12-13 07:38:07 +00001076DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1077
1078install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001079install-local:: $(DestModule)
1080
Misha Brukmanef5dc702009-01-08 02:11:55 +00001081$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001082 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001083 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001084
1085uninstall-local::
1086 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1087 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001088endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001089
1090endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001091endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001092
Reid Spencer3a561f52004-10-23 20:04:14 +00001093# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001094ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001095
Misha Brukmanf547a122009-08-17 15:31:24 +00001096# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001097LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001098ifdef LOADABLE_MODULE
Nick Lewyckya15dc032009-02-26 07:44:16 +00001099LibName.A := $(LibDir)/$(LIBRARYNAME).a
1100LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001101else
Reid Spencercc2d1e22004-10-30 09:19:36 +00001102LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewyckya15dc032009-02-26 07:44:16 +00001103LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1104endif
Reid Spencercc2d1e22004-10-30 09:19:36 +00001105LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001106LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001107
Reid Spencer3a561f52004-10-23 20:04:14 +00001108#---------------------------------------------------------
1109# Shared Library Targets:
1110# If the user asked for a shared library to be built
1111# with the SHARED_LIBRARY variable, then we provide
1112# targets for building them.
1113#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001114ifdef SHARED_LIBRARY
1115
Nick Lewyckya15dc032009-02-26 07:44:16 +00001116all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001117
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001118ifdef EXPORTED_SYMBOL_FILE
1119$(LibName.SO): $(NativeExportsFile)
1120endif
1121
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001122ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001123ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001124SharedLibKindMessage := "Loadable Module"
Reid Spencer42fe4552006-08-07 23:12:15 +00001125else
1126SharedLibKindMessage := "Shared Library"
1127endif
Nick Lewyckya15dc032009-02-26 07:44:16 +00001128$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001129 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
Dan Gohman6b156a32010-07-26 20:15:47 +00001130 $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001131 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001132 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001133else
Nick Lewyckya15dc032009-02-26 07:44:16 +00001134$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Dan Gohman6b156a32010-07-26 20:15:47 +00001135 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001136 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001137endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001138
1139clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001140ifneq ($(strip $(LibName.SO)),)
1141 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001142endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001143
Reid Spencera2a31bf2007-02-06 18:53:14 +00001144ifdef NO_INSTALL
1145install-local::
1146 $(Echo) Install circumvented with NO_INSTALL
1147uninstall-local::
1148 $(Echo) Uninstall circumvented with NO_INSTALL
1149else
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001150
1151ifdef LOADABLE_MODULE
1152DestSharedLib = $(DESTDIR)$(PROJ_libdir)/$(LIBRARYNAME)$(SHLIBEXT)
1153else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001154DestSharedLib = $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
Rafael Espindolabbe03f82010-05-16 03:13:23 +00001155endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001156
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001157install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001158
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001159$(DestSharedLib): $(LibName.SO) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001160 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001161 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001162
Misha Brukmanef5dc702009-01-08 02:11:55 +00001163uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001164 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001165 -$(Verb) $(RM) -f $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001166endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001167endif
1168
Reid Spencer3a561f52004-10-23 20:04:14 +00001169#---------------------------------------------------------
1170# Bytecode Library Targets:
1171# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001172# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001173# targets for building them.
1174#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001175ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001176ifeq ($(strip $(LLVMCC)),)
1177$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001178else
Reid Spencer4d71b662004-10-22 21:01:56 +00001179
Reid Spencer9a2f1372004-12-02 09:28:21 +00001180all-local:: $(LibName.BCA)
1181
1182ifdef EXPORTED_SYMBOL_FILE
Daniel Dunbar112257d2010-02-23 09:28:50 +00001183BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001184
Reid Spencer43eb96c2007-02-09 15:52:07 +00001185$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001186 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001187 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1188 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001189 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001190 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001191 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001192else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001193$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001194 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001195 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001196 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001197 $(Verb) $(LArchive) $@ $(ObjectsBC)
1198
Reid Spencer4d71b662004-10-22 21:01:56 +00001199endif
1200
Reid Spencer3a561f52004-10-23 20:04:14 +00001201clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001202ifneq ($(strip $(LibName.BCA)),)
1203 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001204endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001205
Reid Spencer8f094f32004-12-13 07:28:21 +00001206ifdef BYTECODE_DESTINATION
1207BytecodeDestDir := $(BYTECODE_DESTINATION)
1208else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001209BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001210endif
1211
Daniel Dunbard62031e2009-05-12 05:35:40 +00001212DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001213
Reid Spencer44cb1b32004-12-03 20:08:48 +00001214install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001215
Reid Spencera2a31bf2007-02-06 18:53:14 +00001216ifdef NO_INSTALL
1217install-local::
1218 $(Echo) Install circumvented with NO_INSTALL
1219uninstall-local::
1220 $(Echo) Uninstall circumvented with NO_INSTALL
1221else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001222install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001223
Mike Stumpb445d742009-02-12 23:45:11 +00001224$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001225 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001226 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001227
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001228uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001229 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001230 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001231endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001232endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001233endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001234
Reid Spencercc2d1e22004-10-30 09:19:36 +00001235#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001236# Library Targets:
1237# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1238# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001239#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001240ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001241ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001242ifndef LOADABLE_MODULE
1243BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001244endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001245endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001246endif
Chris Lattner760da062003-03-14 20:25:22 +00001247
Reid Spencercc2d1e22004-10-30 09:19:36 +00001248#---------------------------------------------------------
1249# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001250# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001251# then we provide targets for building them.
1252#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001253ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001254
Reid Spencercc2d1e22004-10-30 09:19:36 +00001255all-local:: $(LibName.A)
1256
Reid Spencerf2ac1892004-12-16 07:36:08 +00001257$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001258 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001259 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001260 $(Verb) $(Archive) $@ $(ObjectsO)
1261 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001262
Reid Spencer3a561f52004-10-23 20:04:14 +00001263clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001264ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001265 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001266endif
1267
Reid Spencera2a31bf2007-02-06 18:53:14 +00001268ifdef NO_INSTALL
1269install-local::
1270 $(Echo) Install circumvented with NO_INSTALL
1271uninstall-local::
1272 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbaree40a162010-04-30 22:00:17 +00001273else
1274ifdef NO_INSTALL_ARCHIVES
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001275install-local::
1276 $(Echo) Install circumvented with NO_INSTALL
1277uninstall-local::
1278 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001279else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001280DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001281
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001282install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001283
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001284$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001285 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001286 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001287 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001288
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001289uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001290 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001291 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001292endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001293endif
Daniel Dunbaree40a162010-04-30 22:00:17 +00001294endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001295
1296# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001297endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001298
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001299###############################################################################
1300# Tool Build Rules: Build executable tool based on TOOLNAME option
1301###############################################################################
1302
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001303ifdef TOOLNAME
1304
Reid Spencercc2d1e22004-10-30 09:19:36 +00001305#---------------------------------------------------------
1306# Set up variables for building a tool.
1307#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001308TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001309ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001310ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001311else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001312ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1313endif
1314
1315# TOOLALIAS is a name to symlink (or copy) the tool to.
1316ifdef TOOLALIAS
1317ifdef EXAMPLE_TOOL
1318ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1319else
1320ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1321endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001322endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001323
Reid Spencercc2d1e22004-10-30 09:19:36 +00001324#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001325# Prune Exports
1326#---------------------------------------------------------
1327
1328# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1329# not exporting all of the weak symbols from the binary. This reduces dyld
1330# startup time by 4x on darwin in some cases.
1331ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001332ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001333
1334# Tiger tools don't support this.
1335ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001336LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001337endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001338endif
Chris Lattner61863a32009-02-26 17:47:49 +00001339
Anton Korobeynikove55db742009-08-18 00:40:33 +00001340ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001341ifneq ($(ARCH), Mips)
Nick Lewycky0d203662009-10-25 03:22:00 +00001342 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001343endif
1344endif
Bruno Cardoso Lopes6651b3f2010-07-20 08:44:20 +00001345endif
Chris Lattner61863a32009-02-26 17:47:49 +00001346
Devang Patel83be4512010-07-15 20:57:09 +00001347#---------------------------------------------------------
1348# Tool Version Info Support
1349#---------------------------------------------------------
1350
1351ifeq ($(HOST_OS),Darwin)
1352ifdef TOOL_INFO_PLIST
1353
1354LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1355
1356$(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1357
Daniel Dunbar14ceb872010-07-15 21:51:52 +00001358$(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
Devang Patel83be4512010-07-15 20:57:09 +00001359 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1360 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1361 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1362 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1363 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1364 $< > $@
1365
1366endif
1367endif
Chris Lattner61863a32009-02-26 17:47:49 +00001368
1369#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001370# Provide targets for building the tools
1371#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001372all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001373
Reid Spencer3a561f52004-10-23 20:04:14 +00001374clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001375ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001376 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001377endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001378ifneq ($(strip $(ToolAliasBuildPath)),)
1379 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1380endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001381
Reid Spencer815cbcf2004-11-18 10:03:46 +00001382ifdef EXAMPLE_TOOL
1383$(ToolBuildPath): $(ExmplDir)/.dir
1384else
1385$(ToolBuildPath): $(ToolDir)/.dir
1386endif
1387
Chris Lattnera7868af2006-09-04 06:39:52 +00001388$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001389 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001390 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001391 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001392 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001393 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001394
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001395ifneq ($(strip $(ToolAliasBuildPath)),)
1396$(ToolAliasBuildPath): $(ToolBuildPath)
1397 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1398 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1399 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1400 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLNAME) \
1401 $(StripWarnMsg)
1402endif
1403
Reid Spencera2a31bf2007-02-06 18:53:14 +00001404ifdef NO_INSTALL
1405install-local::
1406 $(Echo) Install circumvented with NO_INSTALL
1407uninstall-local::
1408 $(Echo) Uninstall circumvented with NO_INSTALL
1409else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001410DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001411
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001412install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001413
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001414$(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001415 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001416 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001417
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001418uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001419 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001420 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001421
1422# TOOLALIAS install.
1423ifdef TOOLALIAS
Chris Lattner97d7b102010-03-10 21:27:53 +00001424DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001425
1426install-local:: $(DestToolAlias)
1427
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001428$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001429 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1430 $(Verb) $(RM) -f $(DestToolAlias)
1431 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1432
1433uninstall-local::
1434 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1435 -$(Verb) $(RM) -f $(DestToolAlias)
1436endif
1437
Reid Spencera2a31bf2007-02-06 18:53:14 +00001438endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001439endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001440
Reid Spencercc2d1e22004-10-30 09:19:36 +00001441###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001442# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001443###############################################################################
1444
Duraid Madina197ab872006-02-15 03:23:26 +00001445# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001446ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001447 DISABLE_AUTO_DEPENDENCIES=1
1448endif
1449
Reid Spencercc2d1e22004-10-30 09:19:36 +00001450# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001451ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001452
Reid Spencercc2d1e22004-10-30 09:19:36 +00001453#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001454# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001455#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001456
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001457DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001458 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001459
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001460# If the build succeeded, move the dependency file over, otherwise
1461# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001462DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1463 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1464
Daniel Dunbar016f7652010-01-22 18:10:54 +00001465$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001466 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001467 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001468 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001469
Greg Clayton43bc79a2010-07-13 18:47:09 +00001470$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1471 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1472 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1473 $(DEPEND_MOVEFILE)
1474
Daniel Dunbar016f7652010-01-22 18:10:54 +00001475$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Chris Lattnerd92490f2006-06-21 20:58:03 +00001476 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001477 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001478 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001479
Daniel Dunbar016f7652010-01-22 18:10:54 +00001480$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Chris Lattnerd92490f2006-06-21 20:58:03 +00001481 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001482 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001483 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001484
Greg Clayton43bc79a2010-07-13 18:47:09 +00001485$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1486 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1487 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1488 $(DEPEND_MOVEFILE)
1489
Reid Spencercc2d1e22004-10-30 09:19:36 +00001490#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001491# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001492#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001493
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001494BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1495 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1496
1497# If the build succeeded, move the dependency file over, otherwise
1498# remove it.
1499BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1500 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1501
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001502$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001503 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001504 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1505 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1506 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001507
Greg Clayton43bc79a2010-07-13 18:47:09 +00001508$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1509 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1510 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1511 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1512 $(BC_DEPEND_MOVEFILE)
1513
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001514$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001515 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001516 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1517 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1518 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001519
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001520$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001521 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001522 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1523 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1524 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001525
Greg Clayton43bc79a2010-07-13 18:47:09 +00001526$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1527 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1528 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1529 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1530 $(BC_DEPEND_MOVEFILE)
1531
Reid Spencercc2d1e22004-10-30 09:19:36 +00001532# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001533else
1534
Nick Lewyckya15dc032009-02-26 07:44:16 +00001535$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001536 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001537 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001538
Greg Clayton43bc79a2010-07-13 18:47:09 +00001539$(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1540 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1541 $(Compile.CXX) $< -o $@
1542
Nick Lewyckya15dc032009-02-26 07:44:16 +00001543$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001544 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001545 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001546
Nick Lewyckya15dc032009-02-26 07:44:16 +00001547$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001548 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001549 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001550
Greg Clayton43bc79a2010-07-13 18:47:09 +00001551$(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1552 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1553 $(Compile.C) $< -o $@
1554
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001555$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001556 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001557 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Reid Spencer4d71b662004-10-22 21:01:56 +00001558
Greg Clayton43bc79a2010-07-13 18:47:09 +00001559$(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1560 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1561 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1562
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001563$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001564 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001565 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001566
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001567$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001568 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001569 $(BCCompile.C) $< -o $@ -S -emit-llvm
Brian Gaeke44909cf2003-12-10 00:26:28 +00001570
Greg Clayton43bc79a2010-07-13 18:47:09 +00001571$(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1572 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1573 $(BCCompile.C) $< -o $@ -S -emit-llvm
1574
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001575endif
1576
Chris Lattner8eb12de2006-06-21 21:01:20 +00001577
1578## Rules for building preprocessed (.i/.ii) outputs.
1579$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1580 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1581 $(Verb) $(Preprocess.CXX) $< -o $@
1582
Greg Clayton43bc79a2010-07-13 18:47:09 +00001583$(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1584 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1585 $(Verb) $(Preprocess.CXX) $< -o $@
1586
Chris Lattner8eb12de2006-06-21 21:01:20 +00001587$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1588 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1589 $(Verb) $(Preprocess.CXX) $< -o $@
1590
Reid Spencer44136722006-12-10 04:56:38 +00001591$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001592 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1593 $(Verb) $(Preprocess.C) $< -o $@
1594
Greg Clayton43bc79a2010-07-13 18:47:09 +00001595$(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1596 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1597 $(Verb) $(Preprocess.C) $< -o $@
1598
Chris Lattner8eb12de2006-06-21 21:01:20 +00001599
1600$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1601 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001602 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001603
Greg Clayton43bc79a2010-07-13 18:47:09 +00001604$(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1605 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1606 $(Compile.CXX) $< -o $@ -S
1607
Chris Lattner8eb12de2006-06-21 21:01:20 +00001608$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1609 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001610 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001611
1612$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1613 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001614 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001615
Greg Clayton43bc79a2010-07-13 18:47:09 +00001616$(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1617 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1618 $(Compile.C) $< -o $@ -S
1619
Reid Spencer8b2e1412006-11-17 03:32:33 +00001620
Chris Lattner89681112006-01-27 22:13:12 +00001621# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001622ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001623$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001624 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001625 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001626else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001627$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001628 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001629 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001630endif
1631
Chris Lattner89681112006-01-27 22:13:12 +00001632
Reid Spencercc2d1e22004-10-30 09:19:36 +00001633#---------------------------------------------------------
1634# Provide rule to build .bc files from .ll sources,
1635# regardless of dependencies
1636#---------------------------------------------------------
1637$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001638 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001639 $(Verb) $(LLVMAS) $< -f -o $@
1640
1641###############################################################################
1642# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1643###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001644
Reid Spencer4d71b662004-10-22 21:01:56 +00001645ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001646TABLEGEN_INC_FILES_COMMON = 1
1647endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001648
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001649ifdef LLVMC_BUILD_AUTOGENERATED_INC
1650TABLEGEN_INC_FILES_COMMON = 1
1651endif
1652
1653ifdef TABLEGEN_INC_FILES_COMMON
1654
Reid Spencercc2d1e22004-10-30 09:19:36 +00001655INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001656INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1657.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001658
Misha Brukmanef5dc702009-01-08 02:11:55 +00001659# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001660# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1661# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001662# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001663# dependencies of the .inc files are, unless the contents of the .inc file
1664# changes.
1665$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001666 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001667
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001668endif # TABLEGEN_INC_FILES_COMMON
1669
1670ifdef TARGET
1671
1672TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1673 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1674 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1675 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1676 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1677 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1678 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1679
Rafael Espindola075630a2009-03-10 17:58:54 +00001680# All of these files depend on tblgen and the .td files.
1681$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1682
Chris Lattner3c473472004-12-16 17:28:50 +00001683$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1684$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001685 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001686 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001687
Chris Lattner3c473472004-12-16 17:28:50 +00001688$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1689$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001690 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001691 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001692
Chris Lattner3c473472004-12-16 17:28:50 +00001693$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1694$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001695 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001696 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001697
Chris Lattner3c473472004-12-16 17:28:50 +00001698$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1699$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001700 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001701 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001702
Chris Lattner3c473472004-12-16 17:28:50 +00001703$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1704$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001705 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001706 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001707
Chris Lattner3c473472004-12-16 17:28:50 +00001708$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1709$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001710 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001711 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001712
Chris Lattner02a4f902004-12-16 17:34:04 +00001713$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1714$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1715 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001716 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001717
Daniel Dunbarc464e512009-07-13 18:35:35 +00001718$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1719$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1720 $(Echo) "Building $(<F) assembly matcher with tblgen"
1721 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1722
Chris Lattner3c473472004-12-16 17:28:50 +00001723$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1724$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001725 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001726 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001727
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001728$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1729$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001730 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001731 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001732
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001733$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1734$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1735 $(Echo) "Building $(<F) disassembly tables with tblgen"
1736 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1737
Sean Callanan95fcebd2010-01-29 00:21:04 +00001738$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1739$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1740 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1741 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1742
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001743$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1744$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1745 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1746 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1747
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001748$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1749$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1750 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001751 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001752
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001753$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1754$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1755 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001756 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001757
Dale Johannesen49de9822009-02-05 01:49:45 +00001758$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001759$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1760 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesen49de9822009-02-05 01:49:45 +00001761 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1762
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001763$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1764 $(Echo) "Building $(<F) decoder tables with tblgen"
1765 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1766
1767
Reid Spencer3a561f52004-10-23 20:04:14 +00001768clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001769 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001770
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001771endif # TARGET
1772
1773ifdef LLVMC_BUILD_AUTOGENERATED_INC
1774
Mikhail Glushenkov4558f482009-04-21 19:46:10 +00001775LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1776 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001777
1778TDFiles := $(LLVMCPluginSrc) \
1779 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1780
1781$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1782 $(TBLGEN) $(TD_COMMON)
1783 $(Echo) "Building LLVMC configuration library with tblgen"
1784 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1785
1786endif # LLVMC_BUILD_AUTOGENERATED_INC
1787
Reid Spencercc2d1e22004-10-30 09:19:36 +00001788###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001789# OTHER RULES: Other rules needed
1790###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001791
Chris Lattner30440c62003-01-16 21:06:18 +00001792# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001793ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001794%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001795 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001796else
1797%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001798 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001799endif
Chris Lattner30440c62003-01-16 21:06:18 +00001800
John Criswell7f336952003-09-06 14:44:17 +00001801# This rules ensures that header files that are removed still have a rule for
1802# which they can be "generated." This allows make to ignore them and
1803# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001804%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001805%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001806
Reid Spencercc2d1e22004-10-30 09:19:36 +00001807# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001808# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001809# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001810clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001811ifneq ($(strip $(ObjRootDir)),)
1812 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001813endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001814 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001815ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001816 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001817endif
John Criswell7a73b802003-06-30 21:59:07 +00001818
Reid Spencer3d659492004-11-02 16:36:03 +00001819clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001820 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001821
Reid Spencer12d79512004-11-12 02:27:36 +00001822
Reid Spencer3a561f52004-10-23 20:04:14 +00001823###############################################################################
1824# DEPENDENCIES: Include the dependency files if we should
1825###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001826ifndef DISABLE_AUTO_DEPENDENCIES
1827
Reid Spencer3a561f52004-10-23 20:04:14 +00001828# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001829ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001830
Reid Spencer3a561f52004-10-23 20:04:14 +00001831# Get the list of dependency files
Greg Clayton43bc79a2010-07-13 18:47:09 +00001832DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001833DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1834
1835# Include bitcode dependency files if using bitcode libraries
1836ifdef BYTECODE_LIBRARY
1837DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1838endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001839
Reid Spencer491a6cd2007-07-23 08:20:46 +00001840-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001841
John Criswelld741bcf2003-08-12 18:51:51 +00001842endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001843
Misha Brukmanef5dc702009-01-08 02:11:55 +00001844endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001845
Reid Spencer151f8ba2004-10-25 08:27:37 +00001846###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001847# CHECK: Running the test suite
1848###############################################################################
1849
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001850check::
Reid Spencer11fde542005-01-16 02:20:54 +00001851 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1852 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001853 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001854 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001855 TESTSUITE=$(TESTSUITE) ; \
1856 else \
1857 $(EchoCmd) No Makefile in test directory ; \
1858 fi ; \
1859 else \
1860 $(EchoCmd) No test directory ; \
1861 fi
1862
Daniel Dunbar666b4022010-08-02 00:05:18 +00001863check-lit:: check
1864
1865check-dg::
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001866 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1867 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1868 $(EchoCmd) Running test suite ; \
Daniel Dunbar666b4022010-08-02 00:05:18 +00001869 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001870 else \
1871 $(EchoCmd) No Makefile in test directory ; \
1872 fi ; \
1873 else \
1874 $(EchoCmd) No test directory ; \
1875 fi
1876
Daniel Dunbar34185792009-09-20 06:17:21 +00001877check-all::
1878 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1879 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1880 $(EchoCmd) Running test suite ; \
1881 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1882 else \
1883 $(EchoCmd) No Makefile in test directory ; \
1884 fi ; \
1885 else \
1886 $(EchoCmd) No test directory ; \
1887 fi
1888
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001889###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001890# UNITTESTS: Running the unittests test suite
1891###############################################################################
1892
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001893unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001894 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1895 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1896 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001897 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001898 else \
1899 $(EchoCmd) No Makefile in unittests directory ; \
1900 fi ; \
1901 else \
1902 $(EchoCmd) No unittests directory ; \
1903 fi
1904
1905###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001906# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001907###############################################################################
1908
Reid Spencere45ebfa2004-10-26 07:09:33 +00001909#------------------------------------------------------------------------
1910# Define distribution related variables
1911#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001912DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1913DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1914TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1915DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1916DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1917DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001918DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1919 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001920 Makefile.config.in configure autoconf
1921DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001922 $(PROJ_SRC_DIR)/*.h \
1923 $(PROJ_SRC_DIR)/*.td \
1924 $(PROJ_SRC_DIR)/*.def \
1925 $(PROJ_SRC_DIR)/*.ll \
1926 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001927DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001928DistSources = $(Sources) $(EXTRA_DIST)
1929DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001930
Reid Spencere45ebfa2004-10-26 07:09:33 +00001931#------------------------------------------------------------------------
1932# We MUST build distribution with OBJ_DIR != SRC_DIR
1933#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001934ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001935dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001936 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001937
Reid Spencere45ebfa2004-10-26 07:09:33 +00001938else
1939
Reid Spencere45ebfa2004-10-26 07:09:33 +00001940#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001941# Prevent attempt to run dist targets from anywhere but the top level
1942#------------------------------------------------------------------------
1943ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001944dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001945 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001946else
1947
1948#------------------------------------------------------------------------
1949# Provide the top level targets
1950#------------------------------------------------------------------------
1951
Reid Spencercc2d1e22004-10-30 09:19:36 +00001952dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001953
Reid Spencer345235ca2004-12-04 22:34:09 +00001954$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001955 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001956 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001957 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001958
Reid Spencercc2d1e22004-10-30 09:19:36 +00001959dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001960
Reid Spencer345235ca2004-12-04 22:34:09 +00001961$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001962 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001963 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001964 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001965
Reid Spencercc2d1e22004-10-30 09:19:36 +00001966dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001967
Reid Spencer345235ca2004-12-04 22:34:09 +00001968$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001969 $(Echo) Packing zipped distribution file.
1970 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00001971 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001972
Misha Brukmanef5dc702009-01-08 02:11:55 +00001973dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001974 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001975
Reid Spencerf8f57402005-01-28 19:52:32 +00001976DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00001977
Reid Spencer345235ca2004-12-04 22:34:09 +00001978dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001979 $(Echo) Checking distribution tar file.
1980 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001981 $(RM) -rf $(DistCheckDir) ; \
1982 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00001983 $(Verb) $(MKDIR) $(DistCheckDir)
1984 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001985 $(MKDIR) $(DistCheckDir)/build && \
1986 $(MKDIR) $(DistCheckDir)/install && \
1987 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1988 cd build && \
1989 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00001990 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00001991 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001992 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00001993 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001994 $(MAKE) install && \
1995 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001996 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001997 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001998
1999dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002000 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00002001 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2002 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00002003
2004endif
2005
2006#------------------------------------------------------------------------
2007# Provide the recursive distdir target for building the distribution directory
2008#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00002009distdir: $(DistDir)/.makedistdir
2010$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00002011 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002012 if test -d "$(DistDir)" ; then \
2013 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2014 exit 1 ; \
2015 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002016 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002017 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002018 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00002019 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002020 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00002021 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00002022 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00002023 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2024 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002025 for file in $(DistFiles) ; do \
2026 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00002027 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002028 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2029 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00002030 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00002031 file=`echo "$$file" | \
2032 sed "s#^$$srcrootstrip/##"` \
2033 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002034 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00002035 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2036 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2037 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002038 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002039 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00002040 fi ; \
2041 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002042 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2043 to_dir="$(DistDir)/$$dir"; \
2044 $(MKDIR) "$$to_dir" ; \
2045 else \
2046 to_dir="$(DistDir)"; \
2047 fi; \
2048 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2049 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002050 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002051 fi ; \
2052 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002053 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2054 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002055 cd $(PROJ_SRC_DIR) ; \
2056 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2057 ( cd $$to_dir ; $(TAR) xf - ) ; \
2058 cd $(PROJ_OBJ_DIR) ; \
2059 else \
2060 cd $$from_dir ; \
2061 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2062 ( cd $$to_dir ; $(TAR) xf - ) ; \
2063 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002064 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002065 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002066 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002067 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00002068 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002069 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00002070 $(EchoCmd) "===== WARNING: Distribution Source " \
2071 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00002072 elif test "$(Verb)" != '@' ; then \
2073 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002074 fi; \
2075 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00002076 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002077 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002078 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00002079 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00002080 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00002081 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00002082 fi; \
2083 done
Reid Spencer345235ca2004-12-04 22:34:09 +00002084 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00002085 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00002086 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2087 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00002088 $(MAKE) dist-hook ; \
2089 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2090 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2091 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2092 -o ! -type d ! -perm -444 -exec \
2093 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2094 || chmod -R a+r $(DistDir) ; \
2095 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00002096
Reid Spencercc2d1e22004-10-30 09:19:36 +00002097# This is invoked by distdir target, define it as a no-op to avoid errors if not
2098# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00002099dist-hook::
2100
Reid Spencere53e3972004-10-22 23:06:30 +00002101endif
Reid Spencer4d71b662004-10-22 21:01:56 +00002102
2103###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00002104# TOP LEVEL - targets only to apply at the top level directory
2105###############################################################################
2106
2107ifeq ($(LEVEL),.)
2108
2109#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00002110# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00002111#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00002112ifdef NO_INSTALL
2113install-local::
2114 $(Echo) Install circumvented with NO_INSTALL
2115uninstall-local::
2116 $(Echo) Uninstall circumvented with NO_INSTALL
2117else
Reid Spencere5487ba2004-10-24 07:53:21 +00002118install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002119 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002120 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002121 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002122 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerc9480642009-01-02 07:16:45 +00002123 for hdr in `find . -type f '!' '(' -name '*~' \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002124 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2125 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002126 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002127 if test \! -d "$$instdir" ; then \
2128 $(EchoCmd) Making install directory $$instdir ; \
2129 $(MKDIR) $$instdir ;\
2130 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002131 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002132 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002133 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002134ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002135 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002136 cd $(PROJ_OBJ_ROOT)/include && \
Reid Spencer443045a2005-12-23 22:27:56 +00002137 for hdr in `find . -type f -print | grep -v CVS` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002138 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002139 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002140 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002141endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002142
2143uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002144 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002145 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2146 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002147 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002148 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002149 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002150 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002151 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002152 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002153 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002154 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002155endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002156endif
2157
Chris Lattner03840ac2007-04-14 23:35:45 +00002158check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002159 @echo searching for overlength lines in files: $(Sources)
2160 @echo
2161 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002162 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002163
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002164check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002165 @echo searching for tabs in files: $(Sources)
2166 @echo
2167 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002168 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002169
Reid Spencer6548bf12007-05-02 21:29:39 +00002170check-footprint:
2171 @ls -l $(LibDir) | awk '\
2172 BEGIN { sum = 0; } \
2173 { sum += $$5; } \
2174 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2175 @ls -l $(ToolDir) | awk '\
2176 BEGIN { sum = 0; } \
2177 { sum += $$5; } \
2178 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002179#------------------------------------------------------------------------
2180# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002181#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002182printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002183 $(Echo) "BuildMode : " '$(BuildMode)'
2184 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2185 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2186 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2187 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2188 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2189 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2190 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2191 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2192 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2193 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002194 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002195 $(Echo) "UserTargets : " '$(UserTargets)'
2196 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2197 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2198 $(Echo) "ObjDir : " '$(ObjDir)'
2199 $(Echo) "LibDir : " '$(LibDir)'
2200 $(Echo) "ToolDir : " '$(ToolDir)'
2201 $(Echo) "ExmplDir : " '$(ExmplDir)'
2202 $(Echo) "Sources : " '$(Sources)'
2203 $(Echo) "TDFiles : " '$(TDFiles)'
2204 $(Echo) "INCFiles : " '$(INCFiles)'
2205 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002206 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002207 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2208 $(Echo) "Compile.C : " '$(Compile.C)'
2209 $(Echo) "Archive : " '$(Archive)'
2210 $(Echo) "YaccFiles : " '$(YaccFiles)'
2211 $(Echo) "LexFiles : " '$(LexFiles)'
2212 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002213 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002214 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002215 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2216 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002217
2218###
2219# Debugging
2220
Daniel Dunbar3c898122009-03-06 22:23:25 +00002221# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002222# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002223make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002224 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))