blob: 6e95998a461880c4532eeb5449268b638e1cab33 [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:
Nick Lewyckya15dc032009-02-26 07:44:16 +000045.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
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 Glushenkov540d73f2009-03-02 09:04:13 +0000206REQUIRES_EH := 1
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000207
208ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
209 LD.Flags += -lCompilerDriver
210endif
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000211
212# Build a dynamic library if the user runs `make` directly from the plugin
213# directory.
214ifndef LLVMC_BUILTIN_PLUGIN
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000215 LOADABLE_MODULE = 1
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000216endif
217
218# TableGen stuff...
219ifneq ($(BUILT_SOURCES),)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000220 LLVMC_BUILD_AUTOGENERATED_INC=1
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000221endif
222
223endif # LLVMC_PLUGIN
224
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000225ifdef LLVMC_BASED_DRIVER
226
227TOOLNAME = $(LLVMC_BASED_DRIVER)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000228
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000229REQUIRES_EH := 1
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000230
231ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
232 LD.Flags += -lCompilerDriver
233else
234 LLVMLIBS = CompilerDriver.a
235 LINK_COMPONENTS = support system
236endif
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000237
238# Preprocessor magic that generates references to static variables in built-in
239# plugins.
240ifneq ($(LLVMC_BUILTIN_PLUGINS),)
241
242USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS))
243
244LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS))
245LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS))
246LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS))
247LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS))
248LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS))
Mikhail Glushenkov17d70ab2009-10-09 04:15:52 +0000249LLVMC_BUILTIN_PLUGIN_6 = $(word 6, $(LLVMC_BUILTIN_PLUGINS))
250LLVMC_BUILTIN_PLUGIN_7 = $(word 7, $(LLVMC_BUILTIN_PLUGINS))
251LLVMC_BUILTIN_PLUGIN_8 = $(word 8, $(LLVMC_BUILTIN_PLUGINS))
252LLVMC_BUILTIN_PLUGIN_9 = $(word 9, $(LLVMC_BUILTIN_PLUGINS))
253LLVMC_BUILTIN_PLUGIN_10 = $(word 10, $(LLVMC_BUILTIN_PLUGINS))
254
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000255
256ifneq ($(LLVMC_BUILTIN_PLUGIN_1),)
257CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1)
258endif
259
260ifneq ($(LLVMC_BUILTIN_PLUGIN_2),)
261CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2)
262endif
263
264ifneq ($(LLVMC_BUILTIN_PLUGIN_3),)
265CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3)
266endif
267
268ifneq ($(LLVMC_BUILTIN_PLUGIN_4),)
269CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4)
270endif
271
272ifneq ($(LLVMC_BUILTIN_PLUGIN_5),)
273CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5)
274endif
275
Mikhail Glushenkov17d70ab2009-10-09 04:15:52 +0000276ifneq ($(LLVMC_BUILTIN_PLUGIN_6),)
277CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_6)
278endif
279
280ifneq ($(LLVMC_BUILTIN_PLUGIN_7),)
281CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_7)
282endif
283
284ifneq ($(LLVMC_BUILTIN_PLUGIN_8),)
285CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_8)
286endif
287
288ifneq ($(LLVMC_BUILTIN_PLUGIN_9),)
289CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_9)
290endif
291
292ifneq ($(LLVMC_BUILTIN_PLUGIN_10),)
293CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_10)
294endif
295
296
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000297endif
298
299endif # LLVMC_BASED_DRIVER
300
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000301###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000302# VARIABLES: Set up various variables based on configuration data
303###############################################################################
304
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000305# Variable for if this make is for a "cleaning" target
306ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
307 IS_CLEANING_TARGET=1
308endif
309
Reid Spencer3a561f52004-10-23 20:04:14 +0000310#--------------------------------------------------------------------
311# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000312#--------------------------------------------------------------------
313
Reid Spencer0a522b12007-07-10 07:19:53 +0000314CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000315ifeq ($(ENABLE_OPTIMIZED),1)
316 BuildMode := Release
317 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000318 ifneq ($(HOST_OS),FreeBSD)
319 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000320 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000321 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000322 endif
323
324 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000325 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
326 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000327 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000328 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
329 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000330 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
331 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
332 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000333 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000334 BuildMode := $(BuildMode)+Debug
335 CXX.Flags += -g
336 C.Flags += -g
337 LD.Flags += -g
338 KEEP_SYMBOLS := 1
339 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000340else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000341 ifdef NO_DEBUG_SYMBOLS
342 BuildMode := Unoptimized
343 CXX.Flags +=
344 C.Flags +=
345 LD.Flags +=
346 KEEP_SYMBOLS := 1
347 else
348 BuildMode := Debug
349 CXX.Flags += -g
350 C.Flags += -g
351 LD.Flags += -g
352 KEEP_SYMBOLS := 1
353 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000354endif
355
356ifeq ($(ENABLE_PROFILING),1)
357 BuildMode := $(BuildMode)+Profile
358 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
359 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
360 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
361 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000362endif
363
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000364#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
365# CXX.Flags += -fvisibility-inlines-hidden
366#endif
367
Chris Lattnerc96d5082010-01-24 20:20:40 +0000368ifdef ENABLE_EXPENSIVE_CHECKS
369 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
370 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
371 REQUIRES_RTTI := 1
372endif
373
Reid Spencer99655e12006-08-25 19:54:53 +0000374# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000375ifndef REQUIRES_EH
376 CXX.Flags += -fno-exceptions
377endif
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.
386ifeq ($(REQUIRES_RTTI), 1)
Daniel Dunbard5b352b2009-09-11 15:45:13 +0000387 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
388 CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS))
Reid Spencer6548bf12007-05-02 21:29:39 +0000389endif
390
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000391ifdef ENABLE_COVERAGE
392 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000393 CXX.Flags += -ftest-coverage -fprofile-arcs
394 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000395endif
396
Reid Spencer854071c2006-04-10 16:46:04 +0000397# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
398# then disable assertions by defining the appropriate preprocessor symbols.
Reid Spencerf9f431c2006-04-09 23:41:14 +0000399ifdef DISABLE_ASSERTIONS
Duncan Sands74a057b2009-03-27 11:35:00 +0000400 # Indicate that assertions are turned off using a minus sign
401 BuildMode := $(BuildMode)-Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000402 CPP.Defines += -DNDEBUG
Reid Spencerf9f431c2006-04-09 23:41:14 +0000403else
Reid Spencer0a522b12007-07-10 07:19:53 +0000404 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000405endif
406
Misha Brukmanef5dc702009-01-08 02:11:55 +0000407# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
408# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000409# appropriate preprocessor symbols.
David Greenea696d242007-06-28 19:36:08 +0000410ifdef ENABLE_EXPENSIVE_CHECKS
411 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000412 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000413endif
414
Nick Lewyckya15dc032009-02-26 07:44:16 +0000415# LOADABLE_MODULE implies several other things so we force them to be
416# defined/on.
417ifdef LOADABLE_MODULE
418 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000419 LINK_LIBS_IN_SHARED := 1
420endif
421
422ifdef SHARED_LIBRARY
423 ENABLE_PIC := 1
424 PIC_FLAG = "(PIC)"
425endif
426
Reid Spencer89b0d992006-12-16 22:07:52 +0000427ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000428 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000429 # Nothing. Win32 defaults to PIC and warns when given -fPIC
430 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000431 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000432 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000433 CXX.Flags += -fno-common
434 C.Flags += -fno-common
435 else
436 # Linux and others; pass -fPIC
437 CXX.Flags += -fPIC
438 C.Flags += -fPIC
439 endif
440 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000441else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000442 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000443 CXX.Flags += -mdynamic-no-pic
444 C.Flags += -mdynamic-no-pic
445 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000446endif
447
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000448ifeq ($(HOST_OS),MingW)
449 # Work around PR4957
450 CPP.Defines += -D__NO_CTYPE_INLINE
451 ifeq ($(LLVM_CROSS_COMPILING),1)
452 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
453 ifdef TOOLNAME
454 LD.Flags += -Wl,--allow-multiple-definition
455 endif
456 endif
457endif
458
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000459CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000460CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000461AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000462
Chris Lattner16620fc2006-07-27 18:19:51 +0000463# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000464ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000465 CXX.Flags += -mieee
466 CPP.BaseFlags += -mieee
467ifeq ($(ENABLE_PIC),0)
468 CXX.Flags += -fPIC
469 CPP.BaseFlags += -fPIC
470endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000471endif
472
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000473ifeq ($(ARCH),Alpha)
474 LD.Flags += -Wl,--no-relax
475endif
476
Reid Spencer3a561f52004-10-23 20:04:14 +0000477#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000478# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000479#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000480TargetMode :=
481ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000482 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000483endif
484
485ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000486ObjDir := $(ObjRootDir)
487LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
488ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
489ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
490LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
491LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
492LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Reid Spencer2f138e72004-12-22 05:57:21 +0000493CFERuntimeLibDir := $(LLVMGCCDIR)/lib
John Criswell7a73b802003-06-30 21:59:07 +0000494
Reid Spencer3a561f52004-10-23 20:04:14 +0000495#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000496# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000497#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000498EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
499Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000500ifndef LLVMAS
501LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
502endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000503ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000504 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000505 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000506 else
507 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
508 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000509endif
Misha Brukmanef5dc702009-01-08 02:11:55 +0000510LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencer43eb96c2007-02-09 15:52:07 +0000511ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000512LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000513endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000514ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000515LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
516endif
517ifndef LLI
518LLI := $(LLVMToolDir)/lli$(EXEEXT)
519endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000520ifndef LLC
521LLC := $(LLVMToolDir)/llc$(EXEEXT)
522endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000523ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000524LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000525endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000526ifndef LBUGPOINT
527LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
528endif
Reid Spencere46687c2006-12-03 21:01:45 +0000529ifndef LUPGRADE
530LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
531endif
532ifeq ($(LLVMGCC_MAJVERS),3)
Reid Spencer44136722006-12-10 04:56:38 +0000533LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
534LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
Reid Spencere46687c2006-12-03 21:01:45 +0000535else
Reid Spencer44136722006-12-10 04:56:38 +0000536LLVMGCCWITHPATH := $(LLVMGCC)
537LLVMGXXWITHPATH := $(LLVMGXX)
Reid Spencere46687c2006-12-03 21:01:45 +0000538endif
539
Reid Spencer3a561f52004-10-23 20:04:14 +0000540#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000541# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000542#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000543
Anton Korobeynikove55db742009-08-18 00:40:33 +0000544ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000545 DARWIN_VERSION := `sw_vers -productVersion`
546 # Strip a number like 10.4.7 to 10.4
547 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
548 # Get "4" out of 10.4 for later pieces in the makefile.
549 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000550
Julien Lerougea6b37c092009-03-27 18:18:00 +0000551 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
Evan Chenga5e225e2009-09-08 18:52:20 +0000552 -dynamiclib
553 ifneq ($(ARCH),ARM)
554 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
555 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000556else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000557 ifeq ($(HOST_OS),Cygwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000558 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000559 -Wl,--enable-auto-import -Wl,--enable-auto-image-base
Scott Michel87af5f02009-03-12 21:03:53 +0000560 else
561 SharedLinkOptions=-shared
562 endif
563endif
564
Anton Korobeynikove55db742009-08-18 00:40:33 +0000565ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000566 ifneq ($(ARCH),ARM)
567 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Jim Grosbach43301202009-10-30 21:33:05 +0000568 else
569 TargetCommonOpts += -marm
Evan Chenga5e225e2009-09-08 18:52:20 +0000570 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000571endif
572
Nick Lewyckya15dc032009-02-26 07:44:16 +0000573# Adjust LD.Flags depending on the kind of library that is to be built. Note
574# that if LOADABLE_MODULE is specified then the resulting shared library can
575# be opened with dlopen.
Reid Spencer42fe4552006-08-07 23:12:15 +0000576ifdef LOADABLE_MODULE
Reid Spencer42fe4552006-08-07 23:12:15 +0000577 LD.Flags += -module
578endif
579
Reid Spencer492c2932005-01-11 04:31:07 +0000580ifdef SHARED_LIBRARY
Scott Michel87af5f02009-03-12 21:03:53 +0000581ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky1dace482009-03-03 04:55:15 +0000582 LD.Flags += $(RPATH) -Wl,$(LibDir)
John Criswell82f4a5a2003-07-31 20:58:51 +0000583endif
Scott Michel87af5f02009-03-12 21:03:53 +0000584endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000585
Reid Spencercceed9f2004-11-08 17:32:12 +0000586ifdef TOOL_VERBOSE
587 C.Flags += -v
588 CXX.Flags += -v
589 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000590 VERBOSE := 1
591endif
592
Reid Spencer3a561f52004-10-23 20:04:14 +0000593# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000594ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000595 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000596 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000597 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000598else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000599 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000600endif
601
Vikram S. Advefeeae582002-09-18 11:55:13 +0000602# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000603ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000604 Strip := $(PLATFORMSTRIPOPTS)
605 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000606 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000607endif
608
Reid Spencer3a561f52004-10-23 20:04:14 +0000609# Adjust linker flags for building an executable
Anton Korobeynikove55db742009-08-18 00:40:33 +0000610ifneq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000611ifneq ($(DARWIN_MAJVERS),4)
Reid Spencer4d71b662004-10-22 21:01:56 +0000612ifdef TOOLNAME
Reid Spencer815cbcf2004-11-18 10:03:46 +0000613ifdef EXAMPLE_TOOL
Nick Lewycky34d74552009-03-07 22:17:05 +0000614 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
Reid Spencer815cbcf2004-11-18 10:03:46 +0000615else
Nick Lewycky34d74552009-03-07 22:17:05 +0000616 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000617endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000618endif
Nick Lewyckya15dc032009-02-26 07:44:16 +0000619endif
Nick Lewyckya15dc032009-02-26 07:44:16 +0000620endif
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000621
Reid Spencer3a561f52004-10-23 20:04:14 +0000622#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000623# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000624#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000625
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000626ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000627CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000628endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000629CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
630 $(EXTRA_OPTIONS)
Reid Spencer4d71b662004-10-22 21:01:56 +0000631
Anton Korobeynikove55db742009-08-18 00:40:33 +0000632ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000633 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000634endif
635
Chris Lattner73faa392006-05-30 16:38:06 +0000636# If we are building a universal binary on Mac OS/X, pass extra options. This
637# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000638# apps.
639#
640# The following can be optionally specified:
641# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
642# For Mac OS/X 10.4 Intel machines, the traditional one is:
643# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
644# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
645# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
646# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000647ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000648 ifndef UNIVERSAL_ARCH
649 UNIVERSAL_ARCH := i386 ppc
650 endif
651 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
652 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000653 ifdef UNIVERSAL_SDK_PATH
654 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000655 endif
656
657 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000658 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000659else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000660 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000661 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000662 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000663 else
664 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000665 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000666 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000667 endif
668 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000669endif
670
Anton Korobeynikove55db742009-08-18 00:40:33 +0000671ifeq ($(HOST_OS),SunOS)
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000672CPP.BaseFlags += -include llvm/System/Solaris.h
673endif
674
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000675ifeq ($(HOST_OS),AuroraUX)
676CPP.BaseFlags += -include llvm/System/Solaris.h
677endif # !HOST_OS - AuroraUX.
678
Misha Brukmanef5dc702009-01-08 02:11:55 +0000679LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman63f97202008-10-17 01:33:43 +0000680CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000681# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000682CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
683 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000684 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
685 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
686 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000687
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000688ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000689 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000690 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000691 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
692 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000693 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000694 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000695 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000696 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
697 $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000698 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000699else
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000700 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000701 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000702 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000703 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000704 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner6be92662009-06-16 23:00:42 +0000705 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000706 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000707 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000708endif
709
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000710BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CFLAGS) \
711 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000712 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000713Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000714 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000715
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000716BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
717 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000718 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000719
Misha Brukmanef5dc702009-01-08 02:11:55 +0000720ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
721ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000722DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000723
724# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
725# paths. In this case, the SYSPATH function (defined in
726# Makefile.config) transforms Unix paths into Windows paths.
727TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000728 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000729 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
730 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
731
Reid Spencercc2d1e22004-10-30 09:19:36 +0000732Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000733LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000734ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000735Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000736else
Reid Spencer3a561f52004-10-23 20:04:14 +0000737Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000738endif
739
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000740AliasTool = ln -s
741
Chris Lattner00950542001-06-06 20:29:01 +0000742#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000743# Get the list of source files and compute object file
744# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000745#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000746
747ifndef SOURCES
748 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000749 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000750else
Chris Lattner89681112006-01-27 22:13:12 +0000751 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000752endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000753
Chris Lattner89681112006-01-27 22:13:12 +0000754ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000755Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000756endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000757
Chris Lattner89681112006-01-27 22:13:12 +0000758BaseNameSources := $(sort $(basename $(Sources)))
759
760ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000761ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
762
Reid Spencer3a561f52004-10-23 20:04:14 +0000763###############################################################################
764# DIRECTORIES: Handle recursive descent of directory structure
765###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000766
Chris Lattner00950542001-06-06 20:29:01 +0000767#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000768# Provide rules to make install dirs. This must be early
769# in the file so they get built before dependencies
770#---------------------------------------------------------
771
Mike Stumpb445d742009-02-12 23:45:11 +0000772$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000773 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000774
Reid Spencercc2d1e22004-10-30 09:19:36 +0000775# To create other directories, as needed, and timestamp their creation
776%/.dir:
777 $(Verb) $(MKDIR) $* > /dev/null
Reid Spencerfbbf3072004-11-29 05:00:33 +0000778 $(Verb) $(DATE) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000779
Reid Spencer815cbcf2004-11-18 10:03:46 +0000780.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
781.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000782
783#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000784# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000785#---------------------------------------------------------
786
Misha Brukmanef5dc702009-01-08 02:11:55 +0000787SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000788ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000789SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000790
791ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000792$(RecursiveTargets)::
793 $(Verb) for dir in $(DIRS); do \
Reid Spencer4d71b662004-10-22 21:01:56 +0000794 if [ ! -f $$dir/Makefile ]; then \
795 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000796 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000797 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000798 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000799 done
Chris Lattner82033602006-07-26 20:22:26 +0000800else
801$(RecursiveTargets)::
802 $(Verb) for dir in $(DIRS); do \
803 ($(MAKE) -C $$dir $@ ) || exit 1; \
804 done
805endif
806
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000807endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000808
Reid Spencer3a561f52004-10-23 20:04:14 +0000809#---------------------------------------------------------
810# Handle the EXPERIMENTAL_DIRS options ensuring success
811# after each directory is built.
812#---------------------------------------------------------
813ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000814$(RecursiveTargets)::
815 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Reid Spencer3a561f52004-10-23 20:04:14 +0000816 if [ ! -f $$dir/Makefile ]; then \
817 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000818 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000819 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000820 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000821 done
822endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000823
Reid Spencer25e8a702005-12-21 23:17:06 +0000824#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000825# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
826#-----------------------------------------------------------
827ifdef OPTIONAL_PARALLEL_DIRS
828 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
829endif
830
831#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000832# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000833#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000834ifdef PARALLEL_DIRS
835
Reid Spencercc2d1e22004-10-30 09:19:36 +0000836SubDirs += $(PARALLEL_DIRS)
837
Reid Spencer44cb1b32004-12-03 20:08:48 +0000838# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000839all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
840clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000841clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000842install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000843uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000844install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000845unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000846
Reid Spencer345235ca2004-12-04 22:34:09 +0000847ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000848
Reid Spencer345235ca2004-12-04 22:34:09 +0000849$(ParallelTargets) :
Reid Spencercc2d1e22004-10-30 09:19:36 +0000850 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000851 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000852 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000853 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000854 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000855endif
856
Reid Spencer3a561f52004-10-23 20:04:14 +0000857#---------------------------------------------------------
858# Handle the OPTIONAL_DIRS options for directores that may
859# or may not exist.
860#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000861ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000862
Reid Spencercc2d1e22004-10-30 09:19:36 +0000863SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000864
Chris Lattner82033602006-07-26 20:22:26 +0000865ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000866$(RecursiveTargets)::
867 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000868 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Reid Spencer4d71b662004-10-22 21:01:56 +0000869 if [ ! -f $$dir/Makefile ]; then \
870 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000871 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000872 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000873 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000874 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000875 done
Chris Lattner82033602006-07-26 20:22:26 +0000876else
877$(RecursiveTargets)::
878 $(Verb) for dir in $(OPTIONAL_DIRS); do \
879 ($(MAKE) -C$$dir $@ ) || exit 1; \
880 done
881endif
John Criswell2a6530f2003-06-27 16:58:44 +0000882endif
883
Reid Spencerfc945082004-08-20 09:20:05 +0000884#---------------------------------------------------------
885# Handle the CONFIG_FILES options
886#---------------------------------------------------------
887ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000888
Reid Spencera2a31bf2007-02-06 18:53:14 +0000889ifdef NO_INSTALL
890install-local::
891 $(Echo) Install circumvented with NO_INSTALL
892uninstall-local::
893 $(Echo) UnInstall circumvented with NO_INSTALL
894else
Reid Spencer11fde542005-01-16 02:20:54 +0000895install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
896 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000897 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000898 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Reid Spencer4a0aaea2005-02-24 03:56:32 +0000899 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000900 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Reid Spencer4a0aaea2005-02-24 03:56:32 +0000901 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000902 else \
903 $(ECHO) Error: cannot find config file $${file}. ; \
904 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000905 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000906
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000907uninstall-local::
Reid Spencer11fde542005-01-16 02:20:54 +0000908 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000909 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000910 $(RM) -f $(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000911 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000912endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000913
Reid Spencerfc945082004-08-20 09:20:05 +0000914endif
915
Reid Spencer3a561f52004-10-23 20:04:14 +0000916###############################################################################
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000917# Set up variables for building libararies
918###############################################################################
919
920#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000921# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000922# libraries needed when linking. There are "Proj" libs
923# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000924# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000925#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000926
Chris Lattneref0d0f12006-09-04 04:47:21 +0000927ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000928ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
929ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000930ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
931ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
932endif
933
934ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000935LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
936LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000937LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000938LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000939endif
940
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000941ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000942ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000943
944# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
945# clean in tools, then do a make in tools (instead of at the top level).
946$(LLVM_CONFIG):
947 @echo "*** llvm-config doesn't exist - rebuilding it."
948 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000949
Chris Lattner0a1db822006-09-04 05:23:20 +0000950$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
951
Mikhail Glushenkov533384e2009-03-03 10:03:27 +0000952LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
953LLVMLibsPaths += $(LLVM_CONFIG) \
Misha Brukmanf547a122009-08-17 15:31:24 +0000954 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000955endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000956endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000957
958###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000959# Library Build Rules: Four ways to build a library
960###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000961
Reid Spencer7980ea42004-12-05 05:17:22 +0000962#---------------------------------------------------------
963# Bytecode Module Targets:
964# If the user set MODULE_NAME then they want to build a
965# bytecode module from the sources. We compile all the
966# sources and link it together into a single bytecode
967# module.
968#---------------------------------------------------------
969
970ifdef MODULE_NAME
Reid Spencer9a8398e2005-02-14 21:54:08 +0000971ifeq ($(strip $(LLVMGCC)),)
Reid Spencer0d255bd2005-05-13 18:32:54 +0000972$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +0000973else
Reid Spencer7980ea42004-12-05 05:17:22 +0000974
975Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenhartha7b33db2008-02-25 22:41:55 +0000976LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +0000977
Reid Spencer7980ea42004-12-05 05:17:22 +0000978
979ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +0000980LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +0000981endif
982
Reid Spencer43eb96c2007-02-09 15:52:07 +0000983$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +0000984 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +0000985 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
986
987all-local:: $(Module)
988
989clean-local::
990ifneq ($(strip $(Module)),)
991 -$(Verb) $(RM) -f $(Module)
992endif
993
Reid Spencerab3690b2004-12-13 07:38:07 +0000994ifdef BYTECODE_DESTINATION
995ModuleDestDir := $(BYTECODE_DESTINATION)
996else
Reid Spencer11fde542005-01-16 02:20:54 +0000997ModuleDestDir := $(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +0000998endif
Reid Spencer7980ea42004-12-05 05:17:22 +0000999
Reid Spencera2a31bf2007-02-06 18:53:14 +00001000ifdef NO_INSTALL
1001install-local::
1002 $(Echo) Install circumvented with NO_INSTALL
1003uninstall-local::
1004 $(Echo) Uninstall circumvented with NO_INSTALL
1005else
Reid Spencerab3690b2004-12-13 07:38:07 +00001006DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1007
1008install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001009install-local:: $(DestModule)
1010
Misha Brukmanef5dc702009-01-08 02:11:55 +00001011$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001012 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001013 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001014
1015uninstall-local::
1016 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1017 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001018endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001019
1020endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001021endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001022
Reid Spencer3a561f52004-10-23 20:04:14 +00001023# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001024ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001025
Misha Brukmanf547a122009-08-17 15:31:24 +00001026# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001027LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001028ifdef LOADABLE_MODULE
Nick Lewyckya15dc032009-02-26 07:44:16 +00001029LibName.A := $(LibDir)/$(LIBRARYNAME).a
1030LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001031else
Reid Spencercc2d1e22004-10-30 09:19:36 +00001032LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewyckya15dc032009-02-26 07:44:16 +00001033LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1034endif
Reid Spencercc2d1e22004-10-30 09:19:36 +00001035LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001036LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001037
Reid Spencer3a561f52004-10-23 20:04:14 +00001038#---------------------------------------------------------
1039# Shared Library Targets:
1040# If the user asked for a shared library to be built
1041# with the SHARED_LIBRARY variable, then we provide
1042# targets for building them.
1043#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001044ifdef SHARED_LIBRARY
1045
Nick Lewyckya15dc032009-02-26 07:44:16 +00001046all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001047
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001048ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001049ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001050SharedLibKindMessage := "Loadable Module"
Reid Spencer42fe4552006-08-07 23:12:15 +00001051else
1052SharedLibKindMessage := "Shared Library"
1053endif
Nick Lewyckya15dc032009-02-26 07:44:16 +00001054$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001055 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1056 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001057 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001058 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001059else
Nick Lewyckya15dc032009-02-26 07:44:16 +00001060$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001061 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001062 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001063endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001064
1065clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001066ifneq ($(strip $(LibName.SO)),)
1067 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001068endif
Reid Spencer4d71b662004-10-22 21:01:56 +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 Spencer11fde542005-01-16 02:20:54 +00001076DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer4d71b662004-10-22 21:01:56 +00001077
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001078install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001079
Nick Lewyckya15dc032009-02-26 07:44:16 +00001080$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001081 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001082 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001083
Misha Brukmanef5dc702009-01-08 02:11:55 +00001084uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001085 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Reid Spencer11fde542005-01-16 02:20:54 +00001086 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001087endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001088endif
1089
Reid Spencer3a561f52004-10-23 20:04:14 +00001090#---------------------------------------------------------
1091# Bytecode Library Targets:
1092# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001093# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001094# targets for building them.
1095#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001096ifdef BYTECODE_LIBRARY
Reid Spencer9a8398e2005-02-14 21:54:08 +00001097ifeq ($(strip $(LLVMGCC)),)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001098$(warning Bytecode libraries require llvm-gcc which could not be found ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001099else
Reid Spencer4d71b662004-10-22 21:01:56 +00001100
Reid Spencer9a2f1372004-12-02 09:28:21 +00001101all-local:: $(LibName.BCA)
1102
1103ifdef EXPORTED_SYMBOL_FILE
Reid Spencer43eb96c2007-02-09 15:52:07 +00001104BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
Chris Lattner73faa392006-05-30 16:38:06 +00001105 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001106
Reid Spencer43eb96c2007-02-09 15:52:07 +00001107$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001108 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001109 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1110 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001111 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001112 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001113 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001114else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001115$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001116 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001117 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001118 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001119 $(Verb) $(LArchive) $@ $(ObjectsBC)
1120
Reid Spencer4d71b662004-10-22 21:01:56 +00001121endif
1122
Reid Spencer3a561f52004-10-23 20:04:14 +00001123clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001124ifneq ($(strip $(LibName.BCA)),)
1125 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001126endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001127
Reid Spencer8f094f32004-12-13 07:28:21 +00001128ifdef BYTECODE_DESTINATION
1129BytecodeDestDir := $(BYTECODE_DESTINATION)
1130else
Reid Spencer11fde542005-01-16 02:20:54 +00001131BytecodeDestDir := $(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001132endif
1133
Daniel Dunbard62031e2009-05-12 05:35:40 +00001134DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001135
Reid Spencer44cb1b32004-12-03 20:08:48 +00001136install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001137
Reid Spencera2a31bf2007-02-06 18:53:14 +00001138ifdef NO_INSTALL
1139install-local::
1140 $(Echo) Install circumvented with NO_INSTALL
1141uninstall-local::
1142 $(Echo) Uninstall circumvented with NO_INSTALL
1143else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001144install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001145
Mike Stumpb445d742009-02-12 23:45:11 +00001146$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001147 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001148 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001149
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001150uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001151 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001152 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001153endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001154endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001155endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001156
Reid Spencercc2d1e22004-10-30 09:19:36 +00001157#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001158# Library Targets:
1159# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1160# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001161#---------------------------------------------------------
Chris Lattner89938082005-10-24 02:21:45 +00001162ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001163ifndef LOADABLE_MODULE
1164BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001165endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001166endif
Chris Lattner760da062003-03-14 20:25:22 +00001167
Reid Spencercc2d1e22004-10-30 09:19:36 +00001168#---------------------------------------------------------
1169# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001170# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001171# then we provide targets for building them.
1172#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001173ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001174
Reid Spencercc2d1e22004-10-30 09:19:36 +00001175all-local:: $(LibName.A)
1176
Reid Spencerf2ac1892004-12-16 07:36:08 +00001177$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001178 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001179 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001180 $(Verb) $(Archive) $@ $(ObjectsO)
1181 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001182
Reid Spencer3a561f52004-10-23 20:04:14 +00001183clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001184ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001185 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001186endif
1187
Reid Spencera2a31bf2007-02-06 18:53:14 +00001188ifdef NO_INSTALL
1189install-local::
1190 $(Echo) Install circumvented with NO_INSTALL
1191uninstall-local::
1192 $(Echo) Uninstall circumvented with NO_INSTALL
1193else
Reid Spencer11fde542005-01-16 02:20:54 +00001194DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001195
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001196install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001197
Mike Stumpb445d742009-02-12 23:45:11 +00001198$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001199 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencer11fde542005-01-16 02:20:54 +00001200 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001201 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001202
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001203uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001204 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001205 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001206endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001207endif
1208
1209# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001210endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001211
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001212###############################################################################
1213# Tool Build Rules: Build executable tool based on TOOLNAME option
1214###############################################################################
1215
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001216ifdef TOOLNAME
1217
Reid Spencercc2d1e22004-10-30 09:19:36 +00001218#---------------------------------------------------------
1219# Set up variables for building a tool.
1220#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001221TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001222ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001223ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001224else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001225ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1226endif
1227
1228# TOOLALIAS is a name to symlink (or copy) the tool to.
1229ifdef TOOLALIAS
1230ifdef EXAMPLE_TOOL
1231ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1232else
1233ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1234endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001235endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001236
Reid Spencercc2d1e22004-10-30 09:19:36 +00001237#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001238# Prune Exports
1239#---------------------------------------------------------
1240
1241# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1242# not exporting all of the weak symbols from the binary. This reduces dyld
1243# startup time by 4x on darwin in some cases.
1244ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001245ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001246
1247# Tiger tools don't support this.
1248ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner61863a32009-02-26 17:47:49 +00001249LD.Flags += -Wl,-exported_symbol -Wl,_main
1250endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001251endif
Chris Lattner61863a32009-02-26 17:47:49 +00001252
Anton Korobeynikove55db742009-08-18 00:40:33 +00001253ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Nick Lewycky0d203662009-10-25 03:22:00 +00001254 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001255endif
1256endif
1257
1258
1259#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001260# Provide targets for building the tools
1261#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001262all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001263
Reid Spencer3a561f52004-10-23 20:04:14 +00001264clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001265ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001266 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001267endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001268ifneq ($(strip $(ToolAliasBuildPath)),)
1269 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1270endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001271
Reid Spencer815cbcf2004-11-18 10:03:46 +00001272ifdef EXAMPLE_TOOL
1273$(ToolBuildPath): $(ExmplDir)/.dir
1274else
1275$(ToolBuildPath): $(ToolDir)/.dir
1276endif
1277
Chris Lattnera7868af2006-09-04 06:39:52 +00001278$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001279 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001280 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001281 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001282 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001283 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001284
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001285ifneq ($(strip $(ToolAliasBuildPath)),)
1286$(ToolAliasBuildPath): $(ToolBuildPath)
1287 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1288 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1289 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1290 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLNAME) \
1291 $(StripWarnMsg)
1292endif
1293
Reid Spencera2a31bf2007-02-06 18:53:14 +00001294ifdef NO_INSTALL
1295install-local::
1296 $(Echo) Install circumvented with NO_INSTALL
1297uninstall-local::
1298 $(Echo) Uninstall circumvented with NO_INSTALL
1299else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001300DestTool = $(PROJ_bindir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001301
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001302install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001303
Mike Stumpb445d742009-02-12 23:45:11 +00001304$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001305 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001306 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001307
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001308uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001309 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001310 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001311
1312# TOOLALIAS install.
1313ifdef TOOLALIAS
1314DestToolAlias = $(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
1315
1316install-local:: $(DestToolAlias)
1317
1318$(DestToolAlias): $(DestTool) $(PROJ_bindir)
1319 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1320 $(Verb) $(RM) -f $(DestToolAlias)
1321 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1322
1323uninstall-local::
1324 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1325 -$(Verb) $(RM) -f $(DestToolAlias)
1326endif
1327
Reid Spencera2a31bf2007-02-06 18:53:14 +00001328endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001329endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001330
Reid Spencercc2d1e22004-10-30 09:19:36 +00001331###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001332# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001333###############################################################################
1334
Duraid Madina197ab872006-02-15 03:23:26 +00001335# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001336ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001337 DISABLE_AUTO_DEPENDENCIES=1
1338endif
1339
Reid Spencercc2d1e22004-10-30 09:19:36 +00001340# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001341ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001342
Reid Spencercc2d1e22004-10-30 09:19:36 +00001343#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001344# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001345#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001346
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001347DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001348 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001349
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001350# If the build succeeded, move the dependency file over, otherwise
1351# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001352DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1353 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1354
Daniel Dunbar016f7652010-01-22 18:10:54 +00001355$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001356 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001357 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001358 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001359
Daniel Dunbar016f7652010-01-22 18:10:54 +00001360$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Chris Lattnerd92490f2006-06-21 20:58:03 +00001361 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001362 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001363 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001364
Daniel Dunbar016f7652010-01-22 18:10:54 +00001365$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Chris Lattnerd92490f2006-06-21 20:58:03 +00001366 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001367 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001368 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001369
Reid Spencercc2d1e22004-10-30 09:19:36 +00001370#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001371# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001372#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001373
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001374BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1375 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1376
1377# If the build succeeded, move the dependency file over, otherwise
1378# remove it.
1379BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1380 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1381
Reid Spencer129f0042006-12-30 16:31:02 +00001382$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001383 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001384 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1385 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1386 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001387
Reid Spencer129f0042006-12-30 16:31:02 +00001388$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001389 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001390 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1391 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1392 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001393
Reid Spencer129f0042006-12-30 16:31:02 +00001394$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001395 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001396 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1397 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1398 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001399
Reid Spencercc2d1e22004-10-30 09:19:36 +00001400# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001401else
1402
Nick Lewyckya15dc032009-02-26 07:44:16 +00001403$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001404 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001405 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001406
Nick Lewyckya15dc032009-02-26 07:44:16 +00001407$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001408 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001409 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001410
Nick Lewyckya15dc032009-02-26 07:44:16 +00001411$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001412 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001413 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001414
Reid Spencer129f0042006-12-30 16:31:02 +00001415$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001416 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001417 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Reid Spencer4d71b662004-10-22 21:01:56 +00001418
Reid Spencer129f0042006-12-30 16:31:02 +00001419$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001420 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001421 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001422
Reid Spencer129f0042006-12-30 16:31:02 +00001423$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001424 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001425 $(BCCompile.C) $< -o $@ -S -emit-llvm
Brian Gaeke44909cf2003-12-10 00:26:28 +00001426
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001427endif
1428
Chris Lattner8eb12de2006-06-21 21:01:20 +00001429
1430## Rules for building preprocessed (.i/.ii) outputs.
1431$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1432 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1433 $(Verb) $(Preprocess.CXX) $< -o $@
1434
1435$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1436 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1437 $(Verb) $(Preprocess.CXX) $< -o $@
1438
Reid Spencer44136722006-12-10 04:56:38 +00001439$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001440 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1441 $(Verb) $(Preprocess.C) $< -o $@
1442
1443
1444$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1445 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001446 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001447
1448$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1449 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001450 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001451
1452$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1453 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001454 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001455
Reid Spencer8b2e1412006-11-17 03:32:33 +00001456
Chris Lattner89681112006-01-27 22:13:12 +00001457# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001458ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001459$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001460 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001461 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001462else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001463$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001464 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001465 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001466endif
1467
Chris Lattner89681112006-01-27 22:13:12 +00001468
Reid Spencercc2d1e22004-10-30 09:19:36 +00001469#---------------------------------------------------------
1470# Provide rule to build .bc files from .ll sources,
1471# regardless of dependencies
1472#---------------------------------------------------------
1473$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001474 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001475 $(Verb) $(LLVMAS) $< -f -o $@
1476
1477###############################################################################
1478# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1479###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001480
Reid Spencer4d71b662004-10-22 21:01:56 +00001481ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001482TABLEGEN_INC_FILES_COMMON = 1
1483endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001484
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001485ifdef LLVMC_BUILD_AUTOGENERATED_INC
1486TABLEGEN_INC_FILES_COMMON = 1
1487endif
1488
1489ifdef TABLEGEN_INC_FILES_COMMON
1490
Reid Spencercc2d1e22004-10-30 09:19:36 +00001491INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001492INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1493.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001494
Misha Brukmanef5dc702009-01-08 02:11:55 +00001495# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001496# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1497# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001498# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001499# dependencies of the .inc files are, unless the contents of the .inc file
1500# changes.
1501$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001502 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001503
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001504endif # TABLEGEN_INC_FILES_COMMON
1505
1506ifdef TARGET
1507
1508TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1509 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1510 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1511 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1512 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1513 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1514 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1515
Rafael Espindola075630a2009-03-10 17:58:54 +00001516# All of these files depend on tblgen and the .td files.
1517$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1518
Chris Lattner3c473472004-12-16 17:28:50 +00001519$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1520$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001521 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001522 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001523
Chris Lattner3c473472004-12-16 17:28:50 +00001524$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1525$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001526 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001527 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001528
Chris Lattner3c473472004-12-16 17:28:50 +00001529$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1530$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001531 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001532 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001533
Chris Lattner3c473472004-12-16 17:28:50 +00001534$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1535$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001536 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001537 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001538
Chris Lattner3c473472004-12-16 17:28:50 +00001539$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1540$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001541 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001542 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001543
Chris Lattner3c473472004-12-16 17:28:50 +00001544$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1545$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001546 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001547 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001548
Chris Lattner02a4f902004-12-16 17:34:04 +00001549$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1550$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1551 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001552 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001553
Daniel Dunbarc464e512009-07-13 18:35:35 +00001554$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1555$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1556 $(Echo) "Building $(<F) assembly matcher with tblgen"
1557 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1558
Chris Lattner3c473472004-12-16 17:28:50 +00001559$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1560$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001561 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001562 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001563
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001564$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1565$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001566 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001567 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001568
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001569$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1570$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1571 $(Echo) "Building $(<F) disassembly tables with tblgen"
1572 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1573
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001574$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1575$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1576 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1577 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1578
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001579$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1580$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1581 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001582 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001583
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001584$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1585$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1586 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001587 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001588
Dale Johannesen49de9822009-02-05 01:49:45 +00001589$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001590$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1591 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesen49de9822009-02-05 01:49:45 +00001592 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1593
Reid Spencer3a561f52004-10-23 20:04:14 +00001594clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001595 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001596
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001597endif # TARGET
1598
1599ifdef LLVMC_BUILD_AUTOGENERATED_INC
1600
Mikhail Glushenkov4558f482009-04-21 19:46:10 +00001601LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1602 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001603
1604TDFiles := $(LLVMCPluginSrc) \
1605 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1606
1607$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1608 $(TBLGEN) $(TD_COMMON)
1609 $(Echo) "Building LLVMC configuration library with tblgen"
1610 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1611
1612endif # LLVMC_BUILD_AUTOGENERATED_INC
1613
Reid Spencercc2d1e22004-10-30 09:19:36 +00001614###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001615# OTHER RULES: Other rules needed
1616###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001617
Chris Lattner30440c62003-01-16 21:06:18 +00001618# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001619ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001620%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001621 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001622else
1623%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001624 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001625endif
Chris Lattner30440c62003-01-16 21:06:18 +00001626
John Criswell7f336952003-09-06 14:44:17 +00001627# This rules ensures that header files that are removed still have a rule for
1628# which they can be "generated." This allows make to ignore them and
1629# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001630%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001631%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001632
Reid Spencercc2d1e22004-10-30 09:19:36 +00001633# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001634# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001635# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001636clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001637ifneq ($(strip $(ObjRootDir)),)
1638 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001639endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001640 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001641ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001642 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001643endif
John Criswell7a73b802003-06-30 21:59:07 +00001644
Reid Spencer3d659492004-11-02 16:36:03 +00001645clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001646 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001647
Reid Spencer12d79512004-11-12 02:27:36 +00001648
Reid Spencer3a561f52004-10-23 20:04:14 +00001649###############################################################################
1650# DEPENDENCIES: Include the dependency files if we should
1651###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001652ifndef DISABLE_AUTO_DEPENDENCIES
1653
Reid Spencer3a561f52004-10-23 20:04:14 +00001654# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001655ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001656
Reid Spencer3a561f52004-10-23 20:04:14 +00001657# Get the list of dependency files
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001658DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1659DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1660
1661# Include bitcode dependency files if using bitcode libraries
1662ifdef BYTECODE_LIBRARY
1663DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1664endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001665
Reid Spencer491a6cd2007-07-23 08:20:46 +00001666-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001667
John Criswelld741bcf2003-08-12 18:51:51 +00001668endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001669
Misha Brukmanef5dc702009-01-08 02:11:55 +00001670endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001671
Reid Spencer151f8ba2004-10-25 08:27:37 +00001672###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001673# CHECK: Running the test suite
1674###############################################################################
1675
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001676check::
Reid Spencer11fde542005-01-16 02:20:54 +00001677 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1678 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001679 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001680 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001681 TESTSUITE=$(TESTSUITE) ; \
1682 else \
1683 $(EchoCmd) No Makefile in test directory ; \
1684 fi ; \
1685 else \
1686 $(EchoCmd) No test directory ; \
1687 fi
1688
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001689check-lit::
1690 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1691 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1692 $(EchoCmd) Running test suite ; \
1693 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1694 else \
1695 $(EchoCmd) No Makefile in test directory ; \
1696 fi ; \
1697 else \
1698 $(EchoCmd) No test directory ; \
1699 fi
1700
Daniel Dunbar34185792009-09-20 06:17:21 +00001701check-all::
1702 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1703 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1704 $(EchoCmd) Running test suite ; \
1705 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1706 else \
1707 $(EchoCmd) No Makefile in test directory ; \
1708 fi ; \
1709 else \
1710 $(EchoCmd) No test directory ; \
1711 fi
1712
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001713###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001714# UNITTESTS: Running the unittests test suite
1715###############################################################################
1716
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001717unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001718 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1719 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1720 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001721 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001722 else \
1723 $(EchoCmd) No Makefile in unittests directory ; \
1724 fi ; \
1725 else \
1726 $(EchoCmd) No unittests directory ; \
1727 fi
1728
1729###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001730# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001731###############################################################################
1732
Reid Spencere45ebfa2004-10-26 07:09:33 +00001733#------------------------------------------------------------------------
1734# Define distribution related variables
1735#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001736DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1737DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1738TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1739DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1740DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1741DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001742DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1743 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001744 Makefile.config.in configure autoconf
1745DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001746 $(PROJ_SRC_DIR)/*.h \
1747 $(PROJ_SRC_DIR)/*.td \
1748 $(PROJ_SRC_DIR)/*.def \
1749 $(PROJ_SRC_DIR)/*.ll \
1750 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001751DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001752DistSources = $(Sources) $(EXTRA_DIST)
1753DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001754
Reid Spencere45ebfa2004-10-26 07:09:33 +00001755#------------------------------------------------------------------------
1756# We MUST build distribution with OBJ_DIR != SRC_DIR
1757#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001758ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001759dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001760 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001761
Reid Spencere45ebfa2004-10-26 07:09:33 +00001762else
1763
Reid Spencere45ebfa2004-10-26 07:09:33 +00001764#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001765# Prevent attempt to run dist targets from anywhere but the top level
1766#------------------------------------------------------------------------
1767ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001768dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001769 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001770else
1771
1772#------------------------------------------------------------------------
1773# Provide the top level targets
1774#------------------------------------------------------------------------
1775
Reid Spencercc2d1e22004-10-30 09:19:36 +00001776dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001777
Reid Spencer345235ca2004-12-04 22:34:09 +00001778$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001779 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001780 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001781 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001782
Reid Spencercc2d1e22004-10-30 09:19:36 +00001783dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001784
Reid Spencer345235ca2004-12-04 22:34:09 +00001785$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001786 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001787 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001788 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001789
Reid Spencercc2d1e22004-10-30 09:19:36 +00001790dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001791
Reid Spencer345235ca2004-12-04 22:34:09 +00001792$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001793 $(Echo) Packing zipped distribution file.
1794 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00001795 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001796
Misha Brukmanef5dc702009-01-08 02:11:55 +00001797dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001798 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001799
Reid Spencerf8f57402005-01-28 19:52:32 +00001800DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00001801
Reid Spencer345235ca2004-12-04 22:34:09 +00001802dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001803 $(Echo) Checking distribution tar file.
1804 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001805 $(RM) -rf $(DistCheckDir) ; \
1806 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00001807 $(Verb) $(MKDIR) $(DistCheckDir)
1808 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001809 $(MKDIR) $(DistCheckDir)/build && \
1810 $(MKDIR) $(DistCheckDir)/install && \
1811 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1812 cd build && \
1813 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00001814 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00001815 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001816 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00001817 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001818 $(MAKE) install && \
1819 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001820 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001821 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001822
1823dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001824 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00001825 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1826 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001827
1828endif
1829
1830#------------------------------------------------------------------------
1831# Provide the recursive distdir target for building the distribution directory
1832#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00001833distdir: $(DistDir)/.makedistdir
1834$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001835 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001836 if test -d "$(DistDir)" ; then \
1837 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1838 exit 1 ; \
1839 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001840 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001841 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001842 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00001843 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001844 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00001845 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00001846 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00001847 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1848 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001849 for file in $(DistFiles) ; do \
1850 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00001851 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001852 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1853 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00001854 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001855 file=`echo "$$file" | \
1856 sed "s#^$$srcrootstrip/##"` \
1857 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001858 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00001859 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1860 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1861 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001862 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001863 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001864 fi ; \
1865 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001866 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1867 to_dir="$(DistDir)/$$dir"; \
1868 $(MKDIR) "$$to_dir" ; \
1869 else \
1870 to_dir="$(DistDir)"; \
1871 fi; \
1872 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1873 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001874 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001875 fi ; \
1876 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00001877 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1878 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001879 cd $(PROJ_SRC_DIR) ; \
1880 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1881 ( cd $$to_dir ; $(TAR) xf - ) ; \
1882 cd $(PROJ_OBJ_DIR) ; \
1883 else \
1884 cd $$from_dir ; \
1885 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1886 ( cd $$to_dir ; $(TAR) xf - ) ; \
1887 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001888 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001889 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001890 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001891 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001892 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001893 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00001894 $(EchoCmd) "===== WARNING: Distribution Source " \
1895 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001896 elif test "$(Verb)" != '@' ; then \
1897 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001898 fi; \
1899 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00001900 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001901 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001902 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001903 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00001904 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00001905 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001906 fi; \
1907 done
Reid Spencer345235ca2004-12-04 22:34:09 +00001908 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001909 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00001910 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1911 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00001912 $(MAKE) dist-hook ; \
1913 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1914 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1915 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1916 -o ! -type d ! -perm -444 -exec \
1917 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1918 || chmod -R a+r $(DistDir) ; \
1919 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00001920
Reid Spencercc2d1e22004-10-30 09:19:36 +00001921# This is invoked by distdir target, define it as a no-op to avoid errors if not
1922# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00001923dist-hook::
1924
Reid Spencere53e3972004-10-22 23:06:30 +00001925endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001926
1927###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00001928# TOP LEVEL - targets only to apply at the top level directory
1929###############################################################################
1930
1931ifeq ($(LEVEL),.)
1932
1933#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001934# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00001935#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00001936ifdef NO_INSTALL
1937install-local::
1938 $(Echo) Install circumvented with NO_INSTALL
1939uninstall-local::
1940 $(Echo) Uninstall circumvented with NO_INSTALL
1941else
Reid Spencere5487ba2004-10-24 07:53:21 +00001942install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001943 $(Echo) Installing include files
Reid Spencer11fde542005-01-16 02:20:54 +00001944 $(Verb) $(MKDIR) $(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001945 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00001946 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerc9480642009-01-02 07:16:45 +00001947 for hdr in `find . -type f '!' '(' -name '*~' \
Reid Spencer0522d8b2007-04-09 19:08:58 +00001948 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1949 grep -v .svn` ; do \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001950 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1951 if test \! -d "$$instdir" ; then \
1952 $(EchoCmd) Making install directory $$instdir ; \
1953 $(MKDIR) $$instdir ;\
1954 fi ; \
1955 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00001956 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00001957 fi
Reid Spencer443045a2005-12-23 22:27:56 +00001958ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001959 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00001960 cd $(PROJ_OBJ_ROOT)/include && \
Reid Spencer443045a2005-12-23 22:27:56 +00001961 for hdr in `find . -type f -print | grep -v CVS` ; do \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001962 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00001963 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001964 fi
Reid Spencer443045a2005-12-23 22:27:56 +00001965endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001966
1967uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001968 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00001969 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1970 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00001971 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00001972 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00001973 -o -name '*.in' ')' -print ')' | \
1974 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001975 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00001976 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1977 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001978 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00001979endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001980endif
1981
Chris Lattner03840ac2007-04-14 23:35:45 +00001982check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001983 @echo searching for overlength lines in files: $(Sources)
1984 @echo
1985 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00001986 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00001987
Anton Korobeynikovbed29462007-04-16 18:10:23 +00001988check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001989 @echo searching for tabs in files: $(Sources)
1990 @echo
1991 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00001992 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001993
Reid Spencer6548bf12007-05-02 21:29:39 +00001994check-footprint:
1995 @ls -l $(LibDir) | awk '\
1996 BEGIN { sum = 0; } \
1997 { sum += $$5; } \
1998 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1999 @ls -l $(ToolDir) | awk '\
2000 BEGIN { sum = 0; } \
2001 { sum += $$5; } \
2002 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002003#------------------------------------------------------------------------
2004# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002005#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002006printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002007 $(Echo) "BuildMode : " '$(BuildMode)'
2008 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2009 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2010 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2011 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2012 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2013 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2014 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2015 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2016 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2017 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002018 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002019 $(Echo) "UserTargets : " '$(UserTargets)'
2020 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2021 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2022 $(Echo) "ObjDir : " '$(ObjDir)'
2023 $(Echo) "LibDir : " '$(LibDir)'
2024 $(Echo) "ToolDir : " '$(ToolDir)'
2025 $(Echo) "ExmplDir : " '$(ExmplDir)'
2026 $(Echo) "Sources : " '$(Sources)'
2027 $(Echo) "TDFiles : " '$(TDFiles)'
2028 $(Echo) "INCFiles : " '$(INCFiles)'
2029 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002030 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002031 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2032 $(Echo) "Compile.C : " '$(Compile.C)'
2033 $(Echo) "Archive : " '$(Archive)'
2034 $(Echo) "YaccFiles : " '$(YaccFiles)'
2035 $(Echo) "LexFiles : " '$(LexFiles)'
2036 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002037 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002038 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002039 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2040 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002041
2042###
2043# Debugging
2044
Daniel Dunbar3c898122009-03-06 22:23:25 +00002045# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002046# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002047make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002048 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))