blob: 761cc812beed2d5d55311c959b178d3f0a46f782 [file] [log] [blame]
Misha Brukman7426c892004-04-24 00:10:56 +00001#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2#
John Criswell23e43fb2003-10-21 14:33:46 +00003# The LLVM Compiler Infrastructure
4#
Chris Lattner11cc8b32007-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 Brukman2879c292009-01-08 02:11:55 +00007#
Misha Brukman7426c892004-04-24 00:10:56 +00008#===------------------------------------------------------------------------===#
Chris Lattner2f7c9632001-06-06 20:29:01 +00009#
Reid Spencer81cd0492004-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 Lattner2e9fc94a2003-08-15 03:02:52 +000012#
Chris Lattnerb8e7aa02006-02-14 04:27:15 +000013#===-----------------------------------------------------------------------====#
Chris Lattner2f7c9632001-06-06 20:29:01 +000014
Reid Spencerf88808a2004-10-30 09:19:36 +000015################################################################################
Reid Spencer81cd0492004-10-23 20:04:14 +000016# TARGETS: Define standard targets that can be invoked
Reid Spencerf88808a2004-10-30 09:19:36 +000017################################################################################
John Criswell3ef61af2003-06-30 21:59:07 +000018
Chris Lattner2f7c9632001-06-06 20:29:01 +000019#--------------------------------------------------------------------
Reid Spencer81cd0492004-10-23 20:04:14 +000020# Define the various target sets
21#--------------------------------------------------------------------
Daniel Dunbar96ccc472009-09-13 22:39:27 +000022RecursiveTargets := all clean clean-all install uninstall install-bytecode \
23 unitcheck
Reid Spencer8b5ebe52004-12-06 05:35:13 +000024LocalTargets := all-local clean-local clean-all-local check-local \
Reid Spencerd4bd3752004-12-03 20:08:48 +000025 install-local printvars uninstall-local \
Daniel Dunbar96ccc472009-09-13 22:39:27 +000026 install-bytecode-local
Chris Lattnerd0382a82007-09-26 06:10:47 +000027TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
Bill Wendling8790e322009-01-04 23:12:21 +000028 dist-zip unittests
Reid Spencerf88808a2004-10-30 09:19:36 +000029UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30InternalTargets := preconditions distdir dist-hook
Reid Spencer81cd0492004-10-23 20:04:14 +000031
Reid Spencerf88808a2004-10-30 09:19:36 +000032################################################################################
Reid Spencer77a46d22004-10-26 22:26:33 +000033# INITIALIZATION: Basic things the makefile needs
Reid Spencerf88808a2004-10-30 09:19:36 +000034################################################################################
35
36#--------------------------------------------------------------------
37# Set the VPATH so that we can find source files.
38#--------------------------------------------------------------------
Reid Spencerba6a3db2005-01-16 02:20:54 +000039VPATH=$(PROJ_SRC_DIR)
Reid Spencer77a46d22004-10-26 22:26:33 +000040
41#--------------------------------------------------------------------
Reid Spencer7214cfd2007-06-29 14:02:07 +000042# Reset the list of suffixes we know how to build.
Reid Spencer77a46d22004-10-26 22:26:33 +000043#--------------------------------------------------------------------
44.SUFFIXES:
Nick Lewycky28c62d22009-02-26 07:44:16 +000045.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
Reid Spencerf88808a2004-10-30 09:19:36 +000046.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
Reid Spencer77a46d22004-10-26 22:26:33 +000047
Reid Spencer81cd0492004-10-23 20:04:14 +000048#--------------------------------------------------------------------
49# Mark all of these targets as phony to avoid implicit rule search
50#--------------------------------------------------------------------
Reid Spencerf88808a2004-10-30 09:19:36 +000051.PHONY: $(UserTargets) $(InternalTargets)
Reid Spencer81cd0492004-10-23 20:04:14 +000052
53#--------------------------------------------------------------------
Misha Brukman2879c292009-01-08 02:11:55 +000054# Make sure all the user-target rules are double colon rules and
Reid Spencer77a46d22004-10-26 22:26:33 +000055# they are defined first.
Reid Spencer81cd0492004-10-23 20:04:14 +000056#--------------------------------------------------------------------
57
Reid Spencerf88808a2004-10-30 09:19:36 +000058$(UserTargets)::
Reid Spencer100080c2004-10-25 08:27:37 +000059
Reid Spencer77a46d22004-10-26 22:26:33 +000060################################################################################
61# PRECONDITIONS: that which must be built/checked first
62################################################################################
63
Reid Spencerd4bd3752004-12-03 20:08:48 +000064SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencerba6a3db2005-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 Lattner68c97542006-09-04 05:23:20 +000077
Reid Spencerba6a3db2005-01-16 02:20:54 +000078ifneq ($(MakefileConfigIn),)
79PreConditions += $(MakefileConfig)
80endif
Reid Spencer77a46d22004-10-26 22:26:33 +000081
Reid Spencer53846bc2005-08-25 04:59:49 +000082preconditions: $(PreConditions)
Reid Spencer77a46d22004-10-26 22:26:33 +000083
84#------------------------------------------------------------------------
85# Make sure the BUILT_SOURCES are built first
86#------------------------------------------------------------------------
Reid Spencer97e40f12004-12-16 07:15:16 +000087$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer77a46d22004-10-26 22:26:33 +000088
Reid Spencer48c74392007-02-07 19:13:19 +000089clean-all-local::
Reid Spencer77a46d22004-10-26 22:26:33 +000090ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencer651dd3ad2004-11-02 16:56:15 +000091 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer77a46d22004-10-26 22:26:33 +000092endif
93
Reid Spencerba6a3db2005-01-16 02:20:54 +000094ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer55814372004-12-16 08:00:46 +000095spotless:
Reid Spencer55814372004-12-16 08:00:46 +000096 $(Verb) if test -x config.status ; then \
Reid Spencerba6a3db2005-01-16 02:20:54 +000097 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer7ef8e662004-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 Spencer55814372004-12-16 08:00:46 +0000102 $(RM) -rf * ; \
Reid Spencer7ef8e662004-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 Spencerba6a3db2005-01-16 02:20:54 +0000107 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer7ef8e662004-12-17 07:45:03 +0000108 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109 $(ConfigStatusScript) ; \
Reid Spencer55814372004-12-16 08:00:46 +0000110 else \
Reid Spencerba6a3db2005-01-16 02:20:54 +0000111 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer55814372004-12-16 08:00:46 +0000112 fi
Reid Spencerc49a8632005-12-21 23:17:06 +0000113else
114spotless:
115 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer55814372004-12-16 08:00:46 +0000116endif
117
Reid Spencerf88808a2004-10-30 09:19:36 +0000118$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencerb7f710a2004-10-28 00:41:43 +0000119
Reid Spencer77a46d22004-10-26 22:26:33 +0000120#------------------------------------------------------------------------
121# Make sure we're not using a stale configuration
122#------------------------------------------------------------------------
Reid Spencerafdc82c2004-12-16 18:26:53 +0000123reconfigure:
Reid Spencerba6a3db2005-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 Spencer35655d62004-12-24 03:36:31 +0000128 fi ; \
Reid Spencerafdc82c2004-12-16 18:26:53 +0000129 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130 $(ConfigStatusScript)
131
Anton Korobeynikov28381c02009-08-14 18:53:19 +0000132# FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
Daniel Dunbard8186682009-08-13 17:22:49 +0000133# up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
134
Reid Spencerf88808a2004-10-30 09:19:36 +0000135.PRECIOUS: $(ConfigStatusScript)
Anton Korobeynikov28381c02009-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 Spencerf88808a2004-10-30 09:19:36 +0000137 $(Echo) Reconfiguring with $<
Reid Spencerba6a3db2005-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 Spencer35655d62004-12-24 03:36:31 +0000141 fi ; \
Reid Spencer50f34872004-11-29 12:37:44 +0000142 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
143 $(ConfigStatusScript)
Reid Spencer77a46d22004-10-26 22:26:33 +0000144
Reid Spencer83bde552005-08-25 04:44:18 +0000145#------------------------------------------------------------------------
Reid Spencer77a46d22004-10-26 22:26:33 +0000146# Make sure the configuration makefile is up to date
147#------------------------------------------------------------------------
Reid Spencerba6a3db2005-01-16 02:20:54 +0000148ifneq ($(MakefileConfigIn),)
149$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencerf88808a2004-10-30 09:19:36 +0000150 $(Echo) Regenerating $@
Reid Spencerba6a3db2005-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 Spencer77a46d22004-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 Spencerba6a3db2005-01-16 02:20:54 +0000164ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer77a46d22004-10-26 22:26:33 +0000165
Gordon Henriksen04e38cf2008-03-10 15:58:40 +0000166Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Reid Spencerf88808a2004-10-30 09:19:36 +0000167 $(Echo) "Updating Makefile"
168 $(Verb) $(MKDIR) $(@D)
Reid Spencerafdc82c2004-12-16 18:26:53 +0000169 $(Verb) $(CP) -f $< $@
Reid Spencer77a46d22004-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 Spencerba6a3db2005-01-16 02:20:54 +0000174$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
Reid Spencerd94bb332004-10-26 23:10:00 +0000175 @case '$?' in \
176 *Makefile.rules) ;; \
177 *.in) ;; \
Gordon Henriksen04e38cf2008-03-10 15:58:40 +0000178 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencerd94bb332004-10-26 23:10:00 +0000179 $(MKDIR) $(@D) ; \
Reid Spencerafdc82c2004-12-16 18:26:53 +0000180 $(CP) -f $< $@ ;; \
Reid Spencerd94bb332004-10-26 23:10:00 +0000181 esac
Gabor Greifc848f9e2008-02-27 13:34:15 +0000182
Reid Spencer77a46d22004-10-26 22:26:33 +0000183endif
184
185#------------------------------------------------------------------------
186# Set up the basic dependencies
187#------------------------------------------------------------------------
Reid Spencerf88808a2004-10-30 09:19:36 +0000188$(UserTargets):: $(PreConditions)
Reid Spencer77a46d22004-10-26 22:26:33 +0000189
190all:: all-local
Anton Korobeynikov8e58c522008-11-10 07:33:13 +0000191clean:: clean-local
Reid Spencer9d0c1e02004-11-02 16:36:03 +0000192clean-all:: clean-local clean-all-local
Reid Spencer77a46d22004-10-26 22:26:33 +0000193install:: install-local
194uninstall:: uninstall-local
Misha Brukman2879c292009-01-08 02:11:55 +0000195install-local:: all-local
Reid Spencerd4bd3752004-12-03 20:08:48 +0000196install-bytecode:: install-bytecode-local
Reid Spencer81cd0492004-10-23 20:04:14 +0000197
198###############################################################################
Mikhail Glushenkov7cff8182009-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 Glushenkov248c4142009-06-23 20:46:48 +0000205CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN)
Mikhail Glushenkov7cff8182009-03-02 09:04:13 +0000206REQUIRES_EH := 1
Mikhail Glushenkovd6c39ae2009-07-03 03:52:47 +0000207
208ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
209 LD.Flags += -lCompilerDriver
210endif
Mikhail Glushenkov7cff8182009-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 Glushenkovd6c39ae2009-07-03 03:52:47 +0000215 LOADABLE_MODULE = 1
Mikhail Glushenkov7cff8182009-03-02 09:04:13 +0000216endif
217
218# TableGen stuff...
219ifneq ($(BUILT_SOURCES),)
Mikhail Glushenkovd6c39ae2009-07-03 03:52:47 +0000220 LLVMC_BUILD_AUTOGENERATED_INC=1
Mikhail Glushenkov7cff8182009-03-02 09:04:13 +0000221endif
222
223endif # LLVMC_PLUGIN
224
Mikhail Glushenkov73da6262009-06-25 01:07:00 +0000225ifdef LLVMC_BASED_DRIVER
226
227TOOLNAME = $(LLVMC_BASED_DRIVER)
Mikhail Glushenkovd6c39ae2009-07-03 03:52:47 +0000228
Mikhail Glushenkov73da6262009-06-25 01:07:00 +0000229REQUIRES_EH := 1
Mikhail Glushenkovd6c39ae2009-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 Glushenkov73da6262009-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 Glushenkovfc8809d2009-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 Glushenkov73da6262009-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 Glushenkovfc8809d2009-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 Glushenkov73da6262009-06-25 01:07:00 +0000297endif
298
299endif # LLVMC_BASED_DRIVER
300
Mikhail Glushenkov7cff8182009-03-02 09:04:13 +0000301###############################################################################
Reid Spencer81cd0492004-10-23 20:04:14 +0000302# VARIABLES: Set up various variables based on configuration data
303###############################################################################
304
Daniel Dunbar78caa022008-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 Spencer81cd0492004-10-23 20:04:14 +0000310#--------------------------------------------------------------------
311# Variables derived from configuration we are building
Chris Lattner2f7c9632001-06-06 20:29:01 +0000312#--------------------------------------------------------------------
313
Reid Spencerfd8e6412007-07-10 07:19:53 +0000314CPP.Defines :=
David Greene80f48bd2009-04-17 14:49:22 +0000315ifeq ($(ENABLE_OPTIMIZED),1)
316 BuildMode := Release
317 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000318 ifneq ($(HOST_OS),FreeBSD)
319 ifneq ($(HOST_OS),Darwin)
David Greene80f48bd2009-04-17 14:49:22 +0000320 OmitFramePointer := -fomit-frame-pointer
Chris Lattnerc2bd7cf2003-03-14 20:25:22 +0000321 endif
David Greene80f48bd2009-04-17 14:49:22 +0000322 endif
323
324 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Cheng57709502009-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 Korobeynikov90e17e72009-08-18 00:40:33 +0000327 #ifeq ($(HOST_OS),Darwin)
Evan Cheng40c52322009-04-20 22:16:40 +0000328 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
329 #endif
David Greene80f48bd2009-04-17 14:49:22 +0000330 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
331 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
332 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskinc3273dc2009-09-27 17:47:29 +0000333 ifdef DEBUG_SYMBOLS
Jeffrey Yasskindb281082009-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 Greene80f48bd2009-04-17 14:49:22 +0000340else
Daniel Dunbar08d4ab92009-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 Greene80f48bd2009-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 Lattnerc2bd7cf2003-03-14 20:25:22 +0000362endif
363
Daniel Dunbar61e0a822008-09-02 17:35:16 +0000364#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
365# CXX.Flags += -fvisibility-inlines-hidden
366#endif
367
Chris Lattnerab8a7c42010-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 Spencer51e6f682006-08-25 19:54:53 +0000374# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencer0b6396c2006-08-25 20:56:59 +0000375ifndef REQUIRES_EH
376 CXX.Flags += -fno-exceptions
Chris Lattnerdb308fd2010-01-24 20:21:50 +0000377else
378 # If the library requires EH, it also requires RTTI.
379 REQUIRES_RTTI := 1
Reid Spencer0b6396c2006-08-25 20:56:59 +0000380endif
Reid Spencer51e6f682006-08-25 19:54:53 +0000381
Nicolas Geoffray43cce222009-08-19 22:04:44 +0000382ifdef REQUIRES_FRAME_POINTER
383 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
384 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
385 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
386endif
387
Daniel Dunbar24c00472009-09-11 15:47:24 +0000388# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner823aed12010-01-24 20:43:08 +0000389ifneq ($(REQUIRES_RTTI), 1)
390 CXX.Flags += -fno-rtti
391 CXXFLAGS += -fno-rtti
Reid Spencere6bc2062007-05-02 21:29:39 +0000392endif
393
Daniel Dunbar5b86bf52009-03-13 20:59:41 +0000394ifdef ENABLE_COVERAGE
395 BuildMode := $(BuildMode)+Coverage
Chris Lattnereaae8d02009-06-16 23:00:42 +0000396 CXX.Flags += -ftest-coverage -fprofile-arcs
397 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar5b86bf52009-03-13 20:59:41 +0000398endif
399
Reid Spencer15b85092006-04-10 16:46:04 +0000400# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
401# then disable assertions by defining the appropriate preprocessor symbols.
Reid Spencerece13582006-04-09 23:41:14 +0000402ifdef DISABLE_ASSERTIONS
Duncan Sands99d0b232009-03-27 11:35:00 +0000403 # Indicate that assertions are turned off using a minus sign
404 BuildMode := $(BuildMode)-Asserts
Reid Spencerfd8e6412007-07-10 07:19:53 +0000405 CPP.Defines += -DNDEBUG
Reid Spencerece13582006-04-09 23:41:14 +0000406else
Reid Spencerfd8e6412007-07-10 07:19:53 +0000407 CPP.Defines += -D_DEBUG
Chris Lattner98c79c32006-03-21 01:06:41 +0000408endif
409
Misha Brukman2879c292009-01-08 02:11:55 +0000410# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
411# configured), then enable expensive checks by defining the
David Greene869e4b52007-06-29 03:36:21 +0000412# appropriate preprocessor symbols.
David Greenecbc8ddf2007-06-28 19:36:08 +0000413ifdef ENABLE_EXPENSIVE_CHECKS
414 BuildMode := $(BuildMode)+Checks
Duncan Sands445071c2008-12-09 21:33:20 +0000415 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenecbc8ddf2007-06-28 19:36:08 +0000416endif
417
Nick Lewycky28c62d22009-02-26 07:44:16 +0000418# LOADABLE_MODULE implies several other things so we force them to be
419# defined/on.
420ifdef LOADABLE_MODULE
421 SHARED_LIBRARY := 1
Nick Lewycky28c62d22009-02-26 07:44:16 +0000422 LINK_LIBS_IN_SHARED := 1
423endif
424
425ifdef SHARED_LIBRARY
426 ENABLE_PIC := 1
427 PIC_FLAG = "(PIC)"
428endif
429
Reid Spencer05a1fe52006-12-16 22:07:52 +0000430ifeq ($(ENABLE_PIC),1)
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000431 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky9e5ed6d2009-02-21 08:41:09 +0000432 # Nothing. Win32 defaults to PIC and warns when given -fPIC
433 else
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000434 ifeq ($(HOST_OS),Darwin)
Nick Lewycky28c62d22009-02-26 07:44:16 +0000435 # Common symbols not allowed in dylib files
Nick Lewycky9e5ed6d2009-02-21 08:41:09 +0000436 CXX.Flags += -fno-common
437 C.Flags += -fno-common
438 else
439 # Linux and others; pass -fPIC
440 CXX.Flags += -fPIC
441 C.Flags += -fPIC
442 endif
443 endif
Mike Stumpd1b46362009-05-08 23:08:58 +0000444else
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000445 ifeq ($(HOST_OS),Darwin)
Mike Stumpd1b46362009-05-08 23:08:58 +0000446 CXX.Flags += -mdynamic-no-pic
447 C.Flags += -mdynamic-no-pic
448 endif
Reid Spencer05a1fe52006-12-16 22:07:52 +0000449endif
450
Anton Korobeynikov803c60c2010-01-16 14:06:58 +0000451ifeq ($(HOST_OS),MingW)
452 # Work around PR4957
453 CPP.Defines += -D__NO_CTYPE_INLINE
454 ifeq ($(LLVM_CROSS_COMPILING),1)
455 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
456 ifdef TOOLNAME
457 LD.Flags += -Wl,--allow-multiple-definition
458 endif
459 endif
460endif
461
Eric Christopher3fe69672009-08-18 03:23:40 +0000462CXX.Flags += -Woverloaded-virtual
David Greenecbc8ddf2007-06-28 19:36:08 +0000463CPP.BaseFlags += $(CPP.Defines)
Reid Spencer6f682b72006-03-22 15:59:55 +0000464AR.Flags := cru
Reid Spencer81cd0492004-10-23 20:04:14 +0000465
Chris Lattnerdc5a8962006-07-27 18:19:51 +0000466# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth9a98def2005-02-13 03:41:10 +0000467ifeq ($(ARCH),Alpha)
Reid Spencer05a1fe52006-12-16 22:07:52 +0000468 CXX.Flags += -mieee
469 CPP.BaseFlags += -mieee
470ifeq ($(ENABLE_PIC),0)
471 CXX.Flags += -fPIC
472 CPP.BaseFlags += -fPIC
473endif
Andrew Lenharth9a98def2005-02-13 03:41:10 +0000474endif
475
Andrew Lenharth0ad67b02007-01-26 13:34:50 +0000476ifeq ($(ARCH),Alpha)
477 LD.Flags += -Wl,--no-relax
478endif
479
Reid Spencer81cd0492004-10-23 20:04:14 +0000480#--------------------------------------------------------------------
Reid Spencerf206bd72004-10-22 21:01:56 +0000481# Directory locations
Reid Spencer81cd0492004-10-23 20:04:14 +0000482#--------------------------------------------------------------------
Jim Grosbach009db892008-10-02 22:56:44 +0000483TargetMode :=
484ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov8e58c522008-11-10 07:33:13 +0000485 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach009db892008-10-02 22:56:44 +0000486endif
487
488ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov8e58c522008-11-10 07:33:13 +0000489ObjDir := $(ObjRootDir)
490LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
491ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
492ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
493LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
494LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
495LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Reid Spencer2bba41c2004-12-22 05:57:21 +0000496CFERuntimeLibDir := $(LLVMGCCDIR)/lib
John Criswell3ef61af2003-06-30 21:59:07 +0000497
Reid Spencer81cd0492004-10-23 20:04:14 +0000498#--------------------------------------------------------------------
Reid Spencerf206bd72004-10-22 21:01:56 +0000499# Full Paths To Compiled Tools and Utilities
Reid Spencer81cd0492004-10-23 20:04:14 +0000500#--------------------------------------------------------------------
Reid Spencerb12e2902005-01-14 16:33:36 +0000501EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
502Echo = @$(EchoCmd)
Reid Spencerf88808a2004-10-30 09:19:36 +0000503ifndef LLVMAS
504LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
505endif
Reid Spencerf88808a2004-10-30 09:19:36 +0000506ifndef TBLGEN
Reid Spencer0aa9d002006-07-26 21:14:56 +0000507 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov8e58c522008-11-10 07:33:13 +0000508 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencer0aa9d002006-07-26 21:14:56 +0000509 else
510 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
511 endif
Reid Spencerf88808a2004-10-30 09:19:36 +0000512endif
Misha Brukman2879c292009-01-08 02:11:55 +0000513LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencerb63d0c42007-02-09 15:52:07 +0000514ifndef LLVMLD
Reid Spencer7cec4f22007-02-09 17:09:14 +0000515LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencerf88808a2004-10-30 09:19:36 +0000516endif
Chris Lattner68c97542006-09-04 05:23:20 +0000517ifndef LLVMDIS
Alkis Evlogimenosa20de022004-12-13 17:44:14 +0000518LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
519endif
520ifndef LLI
521LLI := $(LLVMToolDir)/lli$(EXEEXT)
522endif
Alkis Evlogimenos24340582005-02-27 10:21:37 +0000523ifndef LLC
524LLC := $(LLVMToolDir)/llc$(EXEEXT)
525endif
Alkis Evlogimenosa20de022004-12-13 17:44:14 +0000526ifndef LOPT
Alkis Evlogimenos7c7705d2004-12-13 18:08:29 +0000527LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenosa20de022004-12-13 17:44:14 +0000528endif
Alkis Evlogimenos7c04a3d2005-02-02 00:40:15 +0000529ifndef LBUGPOINT
530LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
531endif
Reid Spencer9a6fc822006-12-03 21:01:45 +0000532ifndef LUPGRADE
533LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
534endif
535ifeq ($(LLVMGCC_MAJVERS),3)
Reid Spencerbef61c52006-12-10 04:56:38 +0000536LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
537LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
Reid Spencer9a6fc822006-12-03 21:01:45 +0000538else
Reid Spencerbef61c52006-12-10 04:56:38 +0000539LLVMGCCWITHPATH := $(LLVMGCC)
540LLVMGXXWITHPATH := $(LLVMGXX)
Reid Spencer9a6fc822006-12-03 21:01:45 +0000541endif
542
Reid Spencer81cd0492004-10-23 20:04:14 +0000543#--------------------------------------------------------------------
Reid Spencerf206bd72004-10-22 21:01:56 +0000544# Adjust to user's request
Reid Spencer81cd0492004-10-23 20:04:14 +0000545#--------------------------------------------------------------------
Dinakar Dhurjati41f77482003-05-29 16:18:20 +0000546
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000547ifeq ($(HOST_OS),Darwin)
Scott Michelb1a830a2009-03-12 21:03:53 +0000548 DARWIN_VERSION := `sw_vers -productVersion`
549 # Strip a number like 10.4.7 to 10.4
550 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
551 # Get "4" out of 10.4 for later pieces in the makefile.
552 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingf3ef2c72009-03-22 08:28:45 +0000553
Julien Lerouge15833b92009-03-27 18:18:00 +0000554 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
Evan Cheng57b14192009-09-08 18:52:20 +0000555 -dynamiclib
556 ifneq ($(ARCH),ARM)
557 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
558 endif
Scott Michelb1a830a2009-03-12 21:03:53 +0000559else
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000560 ifeq ($(HOST_OS),Cygwin)
Scott Michelb1a830a2009-03-12 21:03:53 +0000561 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
Mikhail Glushenkovd6c39ae2009-07-03 03:52:47 +0000562 -Wl,--enable-auto-import -Wl,--enable-auto-image-base
Scott Michelb1a830a2009-03-12 21:03:53 +0000563 else
564 SharedLinkOptions=-shared
565 endif
566endif
567
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000568ifeq ($(TARGET_OS),Darwin)
Evan Cheng57b14192009-09-08 18:52:20 +0000569 ifneq ($(ARCH),ARM)
570 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Jim Grosbach95e6e932009-10-30 21:33:05 +0000571 else
572 TargetCommonOpts += -marm
Evan Cheng57b14192009-09-08 18:52:20 +0000573 endif
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000574endif
575
Nick Lewycky28c62d22009-02-26 07:44:16 +0000576# Adjust LD.Flags depending on the kind of library that is to be built. Note
577# that if LOADABLE_MODULE is specified then the resulting shared library can
578# be opened with dlopen.
Reid Spencere6458c32006-08-07 23:12:15 +0000579ifdef LOADABLE_MODULE
Reid Spencere6458c32006-08-07 23:12:15 +0000580 LD.Flags += -module
581endif
582
Reid Spencer87e645c2005-01-11 04:31:07 +0000583ifdef SHARED_LIBRARY
Scott Michelb1a830a2009-03-12 21:03:53 +0000584ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky7d01e392009-03-03 04:55:15 +0000585 LD.Flags += $(RPATH) -Wl,$(LibDir)
John Criswell3601f372003-07-31 20:58:51 +0000586endif
Scott Michelb1a830a2009-03-12 21:03:53 +0000587endif
John Criswell3601f372003-07-31 20:58:51 +0000588
Reid Spencerf8b4a8e2004-11-08 17:32:12 +0000589ifdef TOOL_VERBOSE
590 C.Flags += -v
591 CXX.Flags += -v
592 LD.Flags += -v
Reid Spencerf8b4a8e2004-11-08 17:32:12 +0000593 VERBOSE := 1
594endif
595
Reid Spencer81cd0492004-10-23 20:04:14 +0000596# Adjust settings for verbose mode
Chris Lattnerc2bd7cf2003-03-14 20:25:22 +0000597ifndef VERBOSE
Reid Spencerf88808a2004-10-30 09:19:36 +0000598 Verb := @
Reid Spencerfcd78152007-07-23 08:20:46 +0000599 AR.Flags += >/dev/null 2>/dev/null
Reid Spencerba6a3db2005-01-16 02:20:54 +0000600 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer100080c2004-10-25 08:27:37 +0000601else
Misha Brukman2879c292009-01-08 02:11:55 +0000602 ConfigureScriptFLAGS :=
Misha Brukman1326a7c2002-09-12 16:05:39 +0000603endif
604
Vikram S. Adved141c282002-09-18 11:55:13 +0000605# By default, strip symbol information from executable
Chris Lattnerc2bd7cf2003-03-14 20:25:22 +0000606ifndef KEEP_SYMBOLS
Reid Spencerf88808a2004-10-30 09:19:36 +0000607 Strip := $(PLATFORMSTRIPOPTS)
608 StripWarnMsg := "(without symbols)"
Reid Spencer247a10e2005-02-24 07:12:43 +0000609 Install.StripFlag += -s
Vikram S. Adved141c282002-09-18 11:55:13 +0000610endif
611
Reid Spencer81cd0492004-10-23 20:04:14 +0000612# Adjust linker flags for building an executable
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000613ifneq ($(HOST_OS),Darwin)
Scott Michelb1a830a2009-03-12 21:03:53 +0000614ifneq ($(DARWIN_MAJVERS),4)
Reid Spencerf206bd72004-10-22 21:01:56 +0000615ifdef TOOLNAME
Jeffrey Yasskinc4510272010-02-18 04:43:02 +0000616ifdef EXAMPLE_TOOL
617 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
618else
619 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
620endif
Reid Spencer7e9e0b02004-11-18 10:03:46 +0000621endif
Nick Lewycky28c62d22009-02-26 07:44:16 +0000622endif
Nick Lewycky28c62d22009-02-26 07:44:16 +0000623endif
Dinakar Dhurjati3ac83a92003-10-29 14:28:35 +0000624
Reid Spencer81cd0492004-10-23 20:04:14 +0000625#----------------------------------------------------------
Reid Spencerf206bd72004-10-22 21:01:56 +0000626# Options To Invoke Tools
Reid Spencer81cd0492004-10-23 20:04:14 +0000627#----------------------------------------------------------
Reid Spencerf206bd72004-10-22 21:01:56 +0000628
Daniel Dunbar310511d2009-05-12 07:26:49 +0000629ifndef NO_PEDANTIC
Duncan Sandse532b552009-06-19 12:40:30 +0000630CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbar310511d2009-05-12 07:26:49 +0000631endif
Duncan Sandse532b552009-06-19 12:40:30 +0000632CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
633 $(EXTRA_OPTIONS)
Reid Spencerf206bd72004-10-22 21:01:56 +0000634
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000635ifeq ($(HOST_OS),HP-UX)
Duraid Madina1f898af2006-02-15 03:20:16 +0000636 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina60c9a3c2005-05-16 06:38:09 +0000637endif
638
Chris Lattner11c25cf2006-05-30 16:38:06 +0000639# If we are building a universal binary on Mac OS/X, pass extra options. This
640# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner65e28b32006-06-29 19:38:04 +0000641# apps.
642#
643# The following can be optionally specified:
644# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
645# For Mac OS/X 10.4 Intel machines, the traditional one is:
646# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
647# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
648# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
649# i386/ppc only.
Chris Lattnerd81eba52006-04-06 06:30:15 +0000650ifdef UNIVERSAL
Chris Lattner65e28b32006-06-29 19:38:04 +0000651 ifndef UNIVERSAL_ARCH
652 UNIVERSAL_ARCH := i386 ppc
653 endif
654 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
655 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattner64e85f32006-06-16 21:47:59 +0000656 ifdef UNIVERSAL_SDK_PATH
657 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattner64e85f32006-06-16 21:47:59 +0000658 endif
659
660 # Building universal cannot compute dependencies automatically.
Chris Lattnerd81eba52006-04-06 06:30:15 +0000661 DISABLE_AUTO_DEPENDENCIES=1
Evan Cheng3807bb72009-03-09 18:28:37 +0000662else
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000663 ifeq ($(TARGET_OS),Darwin)
Bill Wendling207495d2009-03-12 04:10:09 +0000664 ifeq ($(ARCH),x86_64)
Evan Cheng3138f7a2009-03-23 03:45:56 +0000665 TargetCommonOpts = -m64
Bill Wendling207495d2009-03-12 04:10:09 +0000666 else
667 ifeq ($(ARCH),x86)
Evan Cheng3138f7a2009-03-23 03:45:56 +0000668 TargetCommonOpts = -m32
Bill Wendling207495d2009-03-12 04:10:09 +0000669 endif
Evan Cheng3807bb72009-03-09 18:28:37 +0000670 endif
671 endif
Chris Lattnerd81eba52006-04-06 06:30:15 +0000672endif
673
Anton Korobeynikov90e17e72009-08-18 00:40:33 +0000674ifeq ($(HOST_OS),SunOS)
Chris Lattner01602a12008-06-24 17:44:42 +0000675CPP.BaseFlags += -include llvm/System/Solaris.h
676endif
677
Edward O'Callaghan4ae411e2009-10-14 05:55:03 +0000678ifeq ($(HOST_OS),AuroraUX)
679CPP.BaseFlags += -include llvm/System/Solaris.h
680endif # !HOST_OS - AuroraUX.
681
Misha Brukman2879c292009-01-08 02:11:55 +0000682LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohmanca0546f2008-10-17 01:33:43 +0000683CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencer6f682b72006-03-22 15:59:55 +0000684# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands9f6f4d32008-01-28 17:38:30 +0000685CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
686 $(patsubst %,-I%/include,\
Chris Lattner6379fc62008-01-28 04:18:41 +0000687 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
688 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
689 $(CPP.BaseFlags)
Reid Spencerf206bd72004-10-22 21:01:56 +0000690
Daniel Dunbar5b86bf52009-03-13 20:59:41 +0000691ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher3fe69672009-08-18 03:23:40 +0000692 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Cheng3138f7a2009-03-23 03:45:56 +0000693 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher3fe69672009-08-18 03:23:40 +0000694 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
695 $(CPPFLAGS) \
Evan Cheng3138f7a2009-03-23 03:45:56 +0000696 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher3fe69672009-08-18 03:23:40 +0000697 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattnereaae8d02009-06-16 23:00:42 +0000698 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopherd604b252009-08-18 18:07:35 +0000699 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
700 $(LDFLAGS) \
Evan Cheng3138f7a2009-03-23 03:45:56 +0000701 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach009db892008-10-02 22:56:44 +0000702else
Eric Christopher3fe69672009-08-18 03:23:40 +0000703 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Cheng3138f7a2009-03-23 03:45:56 +0000704 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher3fe69672009-08-18 03:23:40 +0000705 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Cheng3138f7a2009-03-23 03:45:56 +0000706 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher3fe69672009-08-18 03:23:40 +0000707 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattnereaae8d02009-06-16 23:00:42 +0000708 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopherd604b252009-08-18 18:07:35 +0000709 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
Evan Cheng3138f7a2009-03-23 03:45:56 +0000710 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach009db892008-10-02 22:56:44 +0000711endif
712
Eric Christopher3fe69672009-08-18 03:23:40 +0000713BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CFLAGS) \
714 $(CPPFLAGS) \
Evan Cheng3138f7a2009-03-23 03:45:56 +0000715 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher3fe69672009-08-18 03:23:40 +0000716Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Cheng3138f7a2009-03-23 03:45:56 +0000717 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattnerbb087952005-10-05 00:28:41 +0000718
Eric Christopher3fe69672009-08-18 03:23:40 +0000719BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
720 $(CPPFLAGS) \
Evan Cheng3138f7a2009-03-23 03:45:56 +0000721 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattner008b2de2006-09-29 18:47:13 +0000722
Misha Brukman2879c292009-01-08 02:11:55 +0000723ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
724ScriptInstall = $(INSTALL) -m 0755
Reid Spencer247a10e2005-02-24 07:12:43 +0000725DataInstall = $(INSTALL) -m 0644
Chris Lattner50475362008-01-15 23:27:40 +0000726
727# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
728# paths. In this case, the SYSPATH function (defined in
729# Makefile.config) transforms Unix paths into Windows paths.
730TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov726440d2009-01-09 16:31:01 +0000731 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner50475362008-01-15 23:27:40 +0000732 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
733 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
734
Reid Spencerf88808a2004-10-30 09:19:36 +0000735Archive = $(AR) $(AR.Flags)
Reid Spencer32f7e422004-12-02 09:28:21 +0000736LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencerf206bd72004-10-22 21:01:56 +0000737ifdef RANLIB
Reid Spencer81cd0492004-10-23 20:04:14 +0000738Ranlib = $(RANLIB)
Reid Spencerf206bd72004-10-22 21:01:56 +0000739else
Reid Spencer81cd0492004-10-23 20:04:14 +0000740Ranlib = ranlib
John Criswell3ef61af2003-06-30 21:59:07 +0000741endif
742
Daniel Dunbar0dd2b812009-11-19 00:14:53 +0000743AliasTool = ln -s
744
Chris Lattner2f7c9632001-06-06 20:29:01 +0000745#----------------------------------------------------------
Misha Brukman2879c292009-01-08 02:11:55 +0000746# Get the list of source files and compute object file
747# names from them.
Reid Spencer81cd0492004-10-23 20:04:14 +0000748#----------------------------------------------------------
Chris Lattnerb3eb31f2006-01-27 22:13:12 +0000749
750ifndef SOURCES
751 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattner814d9ee2009-01-02 07:16:45 +0000752 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencerf88808a2004-10-30 09:19:36 +0000753else
Chris Lattnerb3eb31f2006-01-27 22:13:12 +0000754 Sources := $(SOURCES)
Misha Brukman2879c292009-01-08 02:11:55 +0000755endif
Reid Spencerf206bd72004-10-22 21:01:56 +0000756
Chris Lattnerb3eb31f2006-01-27 22:13:12 +0000757ifdef BUILT_SOURCES
Chris Lattner814d9ee2009-01-02 07:16:45 +0000758Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer81546582004-12-04 22:34:09 +0000759endif
Reid Spencer81cd0492004-10-23 20:04:14 +0000760
Chris Lattnerb3eb31f2006-01-27 22:13:12 +0000761BaseNameSources := $(sort $(basename $(Sources)))
762
763ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattnerb3eb31f2006-01-27 22:13:12 +0000764ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
765
Reid Spencer81cd0492004-10-23 20:04:14 +0000766###############################################################################
767# DIRECTORIES: Handle recursive descent of directory structure
768###############################################################################
John Criswell3601f372003-07-31 20:58:51 +0000769
Chris Lattner2f7c9632001-06-06 20:29:01 +0000770#---------------------------------------------------------
Reid Spencer9c7bfc92004-10-28 09:15:28 +0000771# Provide rules to make install dirs. This must be early
772# in the file so they get built before dependencies
773#---------------------------------------------------------
774
Mike Stump35f423e2009-02-12 23:45:11 +0000775$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf7a16e92009-01-22 03:24:22 +0000776 $(Verb) $(MKDIR) $@
Reid Spencer9c7bfc92004-10-28 09:15:28 +0000777
Reid Spencerf88808a2004-10-30 09:19:36 +0000778# To create other directories, as needed, and timestamp their creation
779%/.dir:
780 $(Verb) $(MKDIR) $* > /dev/null
Reid Spencerfc66af42004-11-29 05:00:33 +0000781 $(Verb) $(DATE) > $@
Reid Spencerf88808a2004-10-30 09:19:36 +0000782
Reid Spencer7e9e0b02004-11-18 10:03:46 +0000783.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
784.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencer9c7bfc92004-10-28 09:15:28 +0000785
786#---------------------------------------------------------
Reid Spencer81cd0492004-10-23 20:04:14 +0000787# Handle the DIRS options for sequential construction
Chris Lattner2f7c9632001-06-06 20:29:01 +0000788#---------------------------------------------------------
789
Misha Brukman2879c292009-01-08 02:11:55 +0000790SubDirs :=
Anand Shukla8c2a0ee2002-09-18 04:29:30 +0000791ifdef DIRS
Reid Spencerf88808a2004-10-30 09:19:36 +0000792SubDirs += $(DIRS)
Chris Lattnerb9259612006-07-26 20:22:26 +0000793
794ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencerf88808a2004-10-30 09:19:36 +0000795$(RecursiveTargets)::
796 $(Verb) for dir in $(DIRS); do \
Reid Spencerf206bd72004-10-22 21:01:56 +0000797 if [ ! -f $$dir/Makefile ]; then \
798 $(MKDIR) $$dir; \
Reid Spencerba6a3db2005-01-16 02:20:54 +0000799 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencerf206bd72004-10-22 21:01:56 +0000800 fi; \
Reid Spencera22a5b32006-05-17 22:55:35 +0000801 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattner539a23c2002-09-17 23:35:02 +0000802 done
Chris Lattnerb9259612006-07-26 20:22:26 +0000803else
804$(RecursiveTargets)::
805 $(Verb) for dir in $(DIRS); do \
806 ($(MAKE) -C $$dir $@ ) || exit 1; \
807 done
808endif
809
Anand Shukla8c2a0ee2002-09-18 04:29:30 +0000810endif
Chris Lattnerf3dd5f52002-09-18 03:22:27 +0000811
Reid Spencer81cd0492004-10-23 20:04:14 +0000812#---------------------------------------------------------
813# Handle the EXPERIMENTAL_DIRS options ensuring success
814# after each directory is built.
815#---------------------------------------------------------
816ifdef EXPERIMENTAL_DIRS
Reid Spencerf88808a2004-10-30 09:19:36 +0000817$(RecursiveTargets)::
818 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Reid Spencer81cd0492004-10-23 20:04:14 +0000819 if [ ! -f $$dir/Makefile ]; then \
820 $(MKDIR) $$dir; \
Reid Spencerba6a3db2005-01-16 02:20:54 +0000821 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer81cd0492004-10-23 20:04:14 +0000822 fi; \
Reid Spencera22a5b32006-05-17 22:55:35 +0000823 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer81cd0492004-10-23 20:04:14 +0000824 done
825endif
Chris Lattnerf3dd5f52002-09-18 03:22:27 +0000826
Reid Spencerc49a8632005-12-21 23:17:06 +0000827#-----------------------------------------------------------
Mike Stump82221d62009-01-24 00:00:41 +0000828# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
829#-----------------------------------------------------------
830ifdef OPTIONAL_PARALLEL_DIRS
831 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
832endif
833
834#-----------------------------------------------------------
Reid Spencer81cd0492004-10-23 20:04:14 +0000835# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencerc49a8632005-12-21 23:17:06 +0000836#-----------------------------------------------------------
Reid Spencer81cd0492004-10-23 20:04:14 +0000837ifdef PARALLEL_DIRS
838
Reid Spencerf88808a2004-10-30 09:19:36 +0000839SubDirs += $(PARALLEL_DIRS)
840
Reid Spencerd4bd3752004-12-03 20:08:48 +0000841# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencerf88808a2004-10-30 09:19:36 +0000842all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
843clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencer651dd3ad2004-11-02 16:56:15 +0000844clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencerf88808a2004-10-30 09:19:36 +0000845install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer81cd0492004-10-23 20:04:14 +0000846uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencerd4bd3752004-12-03 20:08:48 +0000847install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar96ccc472009-09-13 22:39:27 +0000848unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer81cd0492004-10-23 20:04:14 +0000849
Reid Spencer81546582004-12-04 22:34:09 +0000850ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer81cd0492004-10-23 20:04:14 +0000851
Reid Spencer81546582004-12-04 22:34:09 +0000852$(ParallelTargets) :
Reid Spencerf88808a2004-10-30 09:19:36 +0000853 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
Reid Spencerf206bd72004-10-22 21:01:56 +0000854 $(MKDIR) $(@D); \
Reid Spencerba6a3db2005-01-16 02:20:54 +0000855 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswell6df35dd2003-11-25 19:32:22 +0000856 fi; \
Reid Spencer960cf7c2007-02-07 03:29:29 +0000857 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner2f7c9632001-06-06 20:29:01 +0000858endif
859
Reid Spencer81cd0492004-10-23 20:04:14 +0000860#---------------------------------------------------------
861# Handle the OPTIONAL_DIRS options for directores that may
862# or may not exist.
863#---------------------------------------------------------
John Criswell8224df92003-06-27 16:58:44 +0000864ifdef OPTIONAL_DIRS
Reid Spencer100080c2004-10-25 08:27:37 +0000865
Reid Spencerf88808a2004-10-30 09:19:36 +0000866SubDirs += $(OPTIONAL_DIRS)
Reid Spencer100080c2004-10-25 08:27:37 +0000867
Chris Lattnerb9259612006-07-26 20:22:26 +0000868ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencerf88808a2004-10-30 09:19:36 +0000869$(RecursiveTargets)::
870 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencerba6a3db2005-01-16 02:20:54 +0000871 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Reid Spencerf206bd72004-10-22 21:01:56 +0000872 if [ ! -f $$dir/Makefile ]; then \
873 $(MKDIR) $$dir; \
Reid Spencerba6a3db2005-01-16 02:20:54 +0000874 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencerf206bd72004-10-22 21:01:56 +0000875 fi; \
Reid Spencera22a5b32006-05-17 22:55:35 +0000876 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencerf206bd72004-10-22 21:01:56 +0000877 fi \
John Criswell8224df92003-06-27 16:58:44 +0000878 done
Chris Lattnerb9259612006-07-26 20:22:26 +0000879else
880$(RecursiveTargets)::
881 $(Verb) for dir in $(OPTIONAL_DIRS); do \
882 ($(MAKE) -C$$dir $@ ) || exit 1; \
883 done
884endif
John Criswell8224df92003-06-27 16:58:44 +0000885endif
886
Reid Spencercc51e7b2004-08-20 09:20:05 +0000887#---------------------------------------------------------
888# Handle the CONFIG_FILES options
889#---------------------------------------------------------
890ifdef CONFIG_FILES
Reid Spencercc51e7b2004-08-20 09:20:05 +0000891
Reid Spencera79819d2007-02-06 18:53:14 +0000892ifdef NO_INSTALL
893install-local::
894 $(Echo) Install circumvented with NO_INSTALL
895uninstall-local::
896 $(Echo) UnInstall circumvented with NO_INSTALL
897else
Reid Spencerba6a3db2005-01-16 02:20:54 +0000898install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
899 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
Reid Spencerf88808a2004-10-30 09:19:36 +0000900 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencerba6a3db2005-01-16 02:20:54 +0000901 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Reid Spencerc43b1d42005-02-24 03:56:32 +0000902 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencerba6a3db2005-01-16 02:20:54 +0000903 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Reid Spencerc43b1d42005-02-24 03:56:32 +0000904 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencer39d6a612004-11-23 05:59:53 +0000905 else \
906 $(ECHO) Error: cannot find config file $${file}. ; \
907 fi \
Reid Spencercc51e7b2004-08-20 09:20:05 +0000908 done
Reid Spencer81cd0492004-10-23 20:04:14 +0000909
Reid Spencerbe6a4e92004-10-28 07:57:28 +0000910uninstall-local::
Reid Spencerba6a3db2005-01-16 02:20:54 +0000911 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
Reid Spencerf88808a2004-10-30 09:19:36 +0000912 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencerba6a3db2005-01-16 02:20:54 +0000913 $(RM) -f $(PROJ_etcdir)/$${file} ; \
Reid Spencer12a3a052004-10-24 07:53:21 +0000914 done
Reid Spencera79819d2007-02-06 18:53:14 +0000915endif
Reid Spencer12a3a052004-10-24 07:53:21 +0000916
Reid Spencercc51e7b2004-08-20 09:20:05 +0000917endif
918
Reid Spencer81cd0492004-10-23 20:04:14 +0000919###############################################################################
Reid Spencera80f1672005-05-19 00:37:31 +0000920# Set up variables for building libararies
921###############################################################################
922
923#---------------------------------------------------------
Reid Spencera80f1672005-05-19 00:37:31 +0000924# Define various command line options pertaining to the
Misha Brukman2879c292009-01-08 02:11:55 +0000925# libraries needed when linking. There are "Proj" libs
926# (defined by the user's project) and "LLVM" libs (defined
Chris Lattnerf9ac33d2006-09-04 04:47:21 +0000927# by the LLVM project).
Reid Spencera80f1672005-05-19 00:37:31 +0000928#---------------------------------------------------------
Andrew Lenharth6b62b472005-08-13 05:09:50 +0000929
Chris Lattnerf9ac33d2006-09-04 04:47:21 +0000930ifdef USEDLIBS
Reid Spencera80f1672005-05-19 00:37:31 +0000931ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
932ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattnerf9ac33d2006-09-04 04:47:21 +0000933ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
934ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
935endif
936
937ifdef LLVMLIBS
Reid Spencera80f1672005-05-19 00:37:31 +0000938LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
939LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencera80f1672005-05-19 00:37:31 +0000940LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencera80f1672005-05-19 00:37:31 +0000941LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattnerf9ac33d2006-09-04 04:47:21 +0000942endif
943
Daniel Dunbar78caa022008-10-03 19:11:19 +0000944ifndef IS_CLEANING_TARGET
Chris Lattnerf9ac33d2006-09-04 04:47:21 +0000945ifdef LINK_COMPONENTS
Chris Lattner68c97542006-09-04 05:23:20 +0000946
947# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
948# clean in tools, then do a make in tools (instead of at the top level).
949$(LLVM_CONFIG):
950 @echo "*** llvm-config doesn't exist - rebuilding it."
951 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greifc848f9e2008-02-27 13:34:15 +0000952
Chris Lattner68c97542006-09-04 05:23:20 +0000953$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
954
Mikhail Glushenkovab6f8de2009-03-03 10:03:27 +0000955LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
956LLVMLibsPaths += $(LLVM_CONFIG) \
Misha Brukman5906bc12009-08-17 15:31:24 +0000957 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
Chris Lattnerf9ac33d2006-09-04 04:47:21 +0000958endif
Chris Lattner9a4a92e2006-09-04 04:50:10 +0000959endif
Reid Spencera80f1672005-05-19 00:37:31 +0000960
961###############################################################################
Reid Spencer81cd0492004-10-23 20:04:14 +0000962# Library Build Rules: Four ways to build a library
963###############################################################################
Chris Lattner2f7c9632001-06-06 20:29:01 +0000964
Reid Spencerd78077d2004-12-05 05:17:22 +0000965#---------------------------------------------------------
966# Bytecode Module Targets:
967# If the user set MODULE_NAME then they want to build a
968# bytecode module from the sources. We compile all the
969# sources and link it together into a single bytecode
970# module.
971#---------------------------------------------------------
972
973ifdef MODULE_NAME
Reid Spencere9fa5442005-02-14 21:54:08 +0000974ifeq ($(strip $(LLVMGCC)),)
Reid Spencer83745dd2005-05-13 18:32:54 +0000975$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
Reid Spencere9fa5442005-02-14 21:54:08 +0000976else
Reid Spencerd78077d2004-12-05 05:17:22 +0000977
978Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthdddb68c2008-02-25 22:41:55 +0000979LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Reid Spencer78ede562006-04-12 18:21:35 +0000980
Reid Spencerd78077d2004-12-05 05:17:22 +0000981
982ifdef EXPORTED_SYMBOL_FILE
Chris Lattnerb3eb31f2006-01-27 22:13:12 +0000983LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencerd78077d2004-12-05 05:17:22 +0000984endif
985
Reid Spencerb63d0c42007-02-09 15:52:07 +0000986$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer83745dd2005-05-13 18:32:54 +0000987 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencerd78077d2004-12-05 05:17:22 +0000988 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
989
990all-local:: $(Module)
991
992clean-local::
993ifneq ($(strip $(Module)),)
994 -$(Verb) $(RM) -f $(Module)
995endif
996
Reid Spencerefe3a822004-12-13 07:38:07 +0000997ifdef BYTECODE_DESTINATION
998ModuleDestDir := $(BYTECODE_DESTINATION)
999else
Reid Spencerba6a3db2005-01-16 02:20:54 +00001000ModuleDestDir := $(PROJ_libdir)
Reid Spencerefe3a822004-12-13 07:38:07 +00001001endif
Reid Spencerd78077d2004-12-05 05:17:22 +00001002
Reid Spencera79819d2007-02-06 18:53:14 +00001003ifdef NO_INSTALL
1004install-local::
1005 $(Echo) Install circumvented with NO_INSTALL
1006uninstall-local::
1007 $(Echo) Uninstall circumvented with NO_INSTALL
1008else
Reid Spencerefe3a822004-12-13 07:38:07 +00001009DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1010
1011install-module:: $(DestModule)
Reid Spencerd78077d2004-12-05 05:17:22 +00001012install-local:: $(DestModule)
1013
Misha Brukman2879c292009-01-08 02:11:55 +00001014$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencerd78077d2004-12-05 05:17:22 +00001015 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencerd77a4c02005-02-24 21:30:37 +00001016 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencerd78077d2004-12-05 05:17:22 +00001017
1018uninstall-local::
1019 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1020 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera79819d2007-02-06 18:53:14 +00001021endif
Reid Spencerd78077d2004-12-05 05:17:22 +00001022
1023endif
Reid Spencere9fa5442005-02-14 21:54:08 +00001024endif
Brian Gaekeecc92bf2004-01-22 22:53:48 +00001025
Reid Spencer81cd0492004-10-23 20:04:14 +00001026# if we're building a library ...
Chris Lattner2f7c9632001-06-06 20:29:01 +00001027ifdef LIBRARYNAME
Vikram S. Advefe346892001-07-15 13:16:47 +00001028
Misha Brukman5906bc12009-08-17 15:31:24 +00001029# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnere6e193ca2002-09-16 22:34:56 +00001030LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer87e645c2005-01-11 04:31:07 +00001031ifdef LOADABLE_MODULE
Nick Lewycky28c62d22009-02-26 07:44:16 +00001032LibName.A := $(LibDir)/$(LIBRARYNAME).a
1033LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer87e645c2005-01-11 04:31:07 +00001034else
Reid Spencerf88808a2004-10-30 09:19:36 +00001035LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewycky28c62d22009-02-26 07:44:16 +00001036LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1037endif
Reid Spencerf88808a2004-10-30 09:19:36 +00001038LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer32f7e422004-12-02 09:28:21 +00001039LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnere6e193ca2002-09-16 22:34:56 +00001040
Reid Spencer81cd0492004-10-23 20:04:14 +00001041#---------------------------------------------------------
1042# Shared Library Targets:
1043# If the user asked for a shared library to be built
1044# with the SHARED_LIBRARY variable, then we provide
1045# targets for building them.
1046#---------------------------------------------------------
Reid Spencerf206bd72004-10-22 21:01:56 +00001047ifdef SHARED_LIBRARY
1048
Nick Lewycky28c62d22009-02-26 07:44:16 +00001049all-local:: $(LibName.SO)
Reid Spencerf206bd72004-10-22 21:01:56 +00001050
Reid Spencera80f1672005-05-19 00:37:31 +00001051ifdef LINK_LIBS_IN_SHARED
Reid Spencere6458c32006-08-07 23:12:15 +00001052ifdef LOADABLE_MODULE
Chris Lattner7cab3de2006-11-15 21:04:15 +00001053SharedLibKindMessage := "Loadable Module"
Reid Spencere6458c32006-08-07 23:12:15 +00001054else
1055SharedLibKindMessage := "Shared Library"
1056endif
Nick Lewycky28c62d22009-02-26 07:44:16 +00001057$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Reid Spencere6458c32006-08-07 23:12:15 +00001058 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1059 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001060 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin49db7382009-05-26 19:11:47 +00001061 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencera80f1672005-05-19 00:37:31 +00001062else
Nick Lewycky28c62d22009-02-26 07:44:16 +00001063$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001064 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001065 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencera80f1672005-05-19 00:37:31 +00001066endif
Reid Spencer81cd0492004-10-23 20:04:14 +00001067
1068clean-local::
Nick Lewycky28c62d22009-02-26 07:44:16 +00001069ifneq ($(strip $(LibName.SO)),)
1070 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencer12a3a052004-10-24 07:53:21 +00001071endif
Reid Spencerf206bd72004-10-22 21:01:56 +00001072
Reid Spencera79819d2007-02-06 18:53:14 +00001073ifdef NO_INSTALL
1074install-local::
1075 $(Echo) Install circumvented with NO_INSTALL
1076uninstall-local::
1077 $(Echo) Uninstall circumvented with NO_INSTALL
1078else
Reid Spencerba6a3db2005-01-16 02:20:54 +00001079DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencerf206bd72004-10-22 21:01:56 +00001080
Reid Spencerbe6a4e92004-10-28 07:57:28 +00001081install-local:: $(DestSharedLib)
Reid Spencer12a3a052004-10-24 07:53:21 +00001082
Nick Lewycky28c62d22009-02-26 07:44:16 +00001083$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001084 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001085 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencer12a3a052004-10-24 07:53:21 +00001086
Misha Brukman2879c292009-01-08 02:11:55 +00001087uninstall-local::
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001088 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Reid Spencerba6a3db2005-01-16 02:20:54 +00001089 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
Reid Spencera79819d2007-02-06 18:53:14 +00001090endif
Reid Spencerf206bd72004-10-22 21:01:56 +00001091endif
1092
Reid Spencer81cd0492004-10-23 20:04:14 +00001093#---------------------------------------------------------
1094# Bytecode Library Targets:
1095# If the user asked for a bytecode library to be built
Misha Brukman2879c292009-01-08 02:11:55 +00001096# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer81cd0492004-10-23 20:04:14 +00001097# targets for building them.
1098#---------------------------------------------------------
Reid Spencerf206bd72004-10-22 21:01:56 +00001099ifdef BYTECODE_LIBRARY
Reid Spencere9fa5442005-02-14 21:54:08 +00001100ifeq ($(strip $(LLVMGCC)),)
Reid Spencer83745dd2005-05-13 18:32:54 +00001101$(warning Bytecode libraries require llvm-gcc which could not be found ****)
Reid Spencere9fa5442005-02-14 21:54:08 +00001102else
Reid Spencerf206bd72004-10-22 21:01:56 +00001103
Reid Spencer32f7e422004-12-02 09:28:21 +00001104all-local:: $(LibName.BCA)
1105
1106ifdef EXPORTED_SYMBOL_FILE
Reid Spencerb63d0c42007-02-09 15:52:07 +00001107BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
Chris Lattner11c25cf2006-05-30 16:38:06 +00001108 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer32f7e422004-12-02 09:28:21 +00001109
Reid Spencerb63d0c42007-02-09 15:52:07 +00001110$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattnerc0bd4b12004-12-15 17:14:06 +00001111 $(LLVMToolDir)/llvm-ar
Reid Spencer32f7e422004-12-02 09:28:21 +00001112 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1113 "(internalize)"
Daniel Dunbar8d799c52009-08-28 16:14:46 +00001114 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencer85d55ad2004-12-13 03:59:35 +00001115 $(Verb) $(RM) -f $@
Daniel Dunbar8d799c52009-08-28 16:14:46 +00001116 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencerf206bd72004-10-22 21:01:56 +00001117else
Reid Spenceraeea3cf2004-12-16 07:36:08 +00001118$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattnerc0bd4b12004-12-15 17:14:06 +00001119 $(LLVMToolDir)/llvm-ar
Reid Spencer32f7e422004-12-02 09:28:21 +00001120 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencer85d55ad2004-12-13 03:59:35 +00001121 $(Verb) $(RM) -f $@
Reid Spencer32f7e422004-12-02 09:28:21 +00001122 $(Verb) $(LArchive) $@ $(ObjectsBC)
1123
Reid Spencerf206bd72004-10-22 21:01:56 +00001124endif
1125
Reid Spencer81cd0492004-10-23 20:04:14 +00001126clean-local::
Reid Spencer32f7e422004-12-02 09:28:21 +00001127ifneq ($(strip $(LibName.BCA)),)
1128 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencer12a3a052004-10-24 07:53:21 +00001129endif
Reid Spencerf206bd72004-10-22 21:01:56 +00001130
Reid Spencer65086be2004-12-13 07:28:21 +00001131ifdef BYTECODE_DESTINATION
1132BytecodeDestDir := $(BYTECODE_DESTINATION)
1133else
Reid Spencerba6a3db2005-01-16 02:20:54 +00001134BytecodeDestDir := $(PROJ_libdir)
Reid Spencer65086be2004-12-13 07:28:21 +00001135endif
1136
Daniel Dunbarc25ba422009-05-12 05:35:40 +00001137DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer32f7e422004-12-02 09:28:21 +00001138
Reid Spencerd4bd3752004-12-03 20:08:48 +00001139install-bytecode-local:: $(DestBytecodeLib)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001140
Reid Spencera79819d2007-02-06 18:53:14 +00001141ifdef NO_INSTALL
1142install-local::
1143 $(Echo) Install circumvented with NO_INSTALL
1144uninstall-local::
1145 $(Echo) Uninstall circumvented with NO_INSTALL
1146else
Reid Spencerbe6a4e92004-10-28 07:57:28 +00001147install-local:: $(DestBytecodeLib)
Chris Lattner0c4f4fe2003-08-15 02:18:35 +00001148
Mike Stump35f423e2009-02-12 23:45:11 +00001149$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer32f7e422004-12-02 09:28:21 +00001150 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerdcc53752005-02-24 21:36:32 +00001151 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencer12a3a052004-10-24 07:53:21 +00001152
Reid Spencerbe6a4e92004-10-28 07:57:28 +00001153uninstall-local::
Reid Spencer32f7e422004-12-02 09:28:21 +00001154 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001155 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera79819d2007-02-06 18:53:14 +00001156endif
Reid Spencerf206bd72004-10-22 21:01:56 +00001157endif
Reid Spencere9fa5442005-02-14 21:54:08 +00001158endif
Vikram S. Adve15bd3ad2002-08-02 18:34:12 +00001159
Reid Spencerf88808a2004-10-30 09:19:36 +00001160#---------------------------------------------------------
Chris Lattnereaae8d02009-06-16 23:00:42 +00001161# Library Targets:
1162# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1163# building an archive.
Reid Spencerf88808a2004-10-30 09:19:36 +00001164#---------------------------------------------------------
Chris Lattner1b91cbd2005-10-24 02:21:45 +00001165ifndef BUILD_ARCHIVE
Chris Lattnereaae8d02009-06-16 23:00:42 +00001166ifndef LOADABLE_MODULE
1167BUILD_ARCHIVE = 1
Reid Spencera79819d2007-02-06 18:53:14 +00001168endif
Chris Lattner76d98ba2002-07-23 17:56:16 +00001169endif
Chris Lattnerc2bd7cf2003-03-14 20:25:22 +00001170
Reid Spencerf88808a2004-10-30 09:19:36 +00001171#---------------------------------------------------------
1172# Archive Library Targets:
Misha Brukman2879c292009-01-08 02:11:55 +00001173# If the user wanted a regular archive library built,
Reid Spencerf88808a2004-10-30 09:19:36 +00001174# then we provide targets for building them.
1175#---------------------------------------------------------
Chris Lattner76d98ba2002-07-23 17:56:16 +00001176ifdef BUILD_ARCHIVE
Chris Lattner76d98ba2002-07-23 17:56:16 +00001177
Reid Spencerf88808a2004-10-30 09:19:36 +00001178all-local:: $(LibName.A)
1179
Reid Spenceraeea3cf2004-12-16 07:36:08 +00001180$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001181 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001182 -$(Verb) $(RM) -f $@
Bill Wendlingb2f724e2009-01-03 22:46:50 +00001183 $(Verb) $(Archive) $@ $(ObjectsO)
1184 $(Verb) $(Ranlib) $@
Vikram S. Adve20aa62f2002-09-20 14:03:13 +00001185
Reid Spencer81cd0492004-10-23 20:04:14 +00001186clean-local::
Reid Spencerf88808a2004-10-30 09:19:36 +00001187ifneq ($(strip $(LibName.A)),)
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001188 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner2f7c9632001-06-06 20:29:01 +00001189endif
1190
Reid Spencera79819d2007-02-06 18:53:14 +00001191ifdef NO_INSTALL
1192install-local::
1193 $(Echo) Install circumvented with NO_INSTALL
1194uninstall-local::
1195 $(Echo) Uninstall circumvented with NO_INSTALL
1196else
Reid Spencerba6a3db2005-01-16 02:20:54 +00001197DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencer12a3a052004-10-24 07:53:21 +00001198
Reid Spencerbe6a4e92004-10-28 07:57:28 +00001199install-local:: $(DestArchiveLib)
Reid Spencer12a3a052004-10-24 07:53:21 +00001200
Mike Stump35f423e2009-02-12 23:45:11 +00001201$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001202 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerba6a3db2005-01-16 02:20:54 +00001203 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001204 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencer12a3a052004-10-24 07:53:21 +00001205
Reid Spencerbe6a4e92004-10-28 07:57:28 +00001206uninstall-local::
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001207 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001208 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera79819d2007-02-06 18:53:14 +00001209endif
Reid Spencer12a3a052004-10-24 07:53:21 +00001210endif
1211
1212# endif LIBRARYNAME
Misha Brukman2879c292009-01-08 02:11:55 +00001213endif
Reid Spencerf206bd72004-10-22 21:01:56 +00001214
Reid Spencerdcba7782004-10-24 08:21:04 +00001215###############################################################################
1216# Tool Build Rules: Build executable tool based on TOOLNAME option
1217###############################################################################
1218
Chris Lattner07c7c192001-09-07 22:57:58 +00001219ifdef TOOLNAME
1220
Reid Spencerf88808a2004-10-30 09:19:36 +00001221#---------------------------------------------------------
1222# Set up variables for building a tool.
1223#---------------------------------------------------------
Daniel Dunbar0dd2b812009-11-19 00:14:53 +00001224TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer7e9e0b02004-11-18 10:03:46 +00001225ifdef EXAMPLE_TOOL
Daniel Dunbar0dd2b812009-11-19 00:14:53 +00001226ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer7e9e0b02004-11-18 10:03:46 +00001227else
Daniel Dunbar0dd2b812009-11-19 00:14:53 +00001228ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1229endif
1230
1231# TOOLALIAS is a name to symlink (or copy) the tool to.
1232ifdef TOOLALIAS
1233ifdef EXAMPLE_TOOL
1234ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1235else
1236ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1237endif
Reid Spencer7e9e0b02004-11-18 10:03:46 +00001238endif
Chris Lattner07c7c192001-09-07 22:57:58 +00001239
Reid Spencerf88808a2004-10-30 09:19:36 +00001240#---------------------------------------------------------
Chris Lattner0f1958092009-02-26 17:47:49 +00001241# Prune Exports
1242#---------------------------------------------------------
1243
1244# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1245# not exporting all of the weak symbols from the binary. This reduces dyld
1246# startup time by 4x on darwin in some cases.
1247ifdef TOOL_NO_EXPORTS
Anton Korobeynikov90e17e72009-08-18 00:40:33 +00001248ifeq ($(HOST_OS),Darwin)
Chris Lattner869b6bf2009-03-10 17:15:56 +00001249
1250# Tiger tools don't support this.
1251ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner0f1958092009-02-26 17:47:49 +00001252LD.Flags += -Wl,-exported_symbol -Wl,_main
1253endif
Chris Lattner869b6bf2009-03-10 17:15:56 +00001254endif
Chris Lattner0f1958092009-02-26 17:47:49 +00001255
Anton Korobeynikov90e17e72009-08-18 00:40:33 +00001256ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Nick Lewyckyefd3e902009-10-25 03:22:00 +00001257 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner0f1958092009-02-26 17:47:49 +00001258endif
1259endif
1260
1261
1262#---------------------------------------------------------
Reid Spencerf88808a2004-10-30 09:19:36 +00001263# Provide targets for building the tools
1264#---------------------------------------------------------
Daniel Dunbar0dd2b812009-11-19 00:14:53 +00001265all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell8224df92003-06-27 16:58:44 +00001266
Reid Spencer81cd0492004-10-23 20:04:14 +00001267clean-local::
Reid Spencerf88808a2004-10-30 09:19:36 +00001268ifneq ($(strip $(ToolBuildPath)),)
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001269 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencer12a3a052004-10-24 07:53:21 +00001270endif
Daniel Dunbar0dd2b812009-11-19 00:14:53 +00001271ifneq ($(strip $(ToolAliasBuildPath)),)
1272 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1273endif
Chris Lattner07c7c192001-09-07 22:57:58 +00001274
Reid Spencer7e9e0b02004-11-18 10:03:46 +00001275ifdef EXAMPLE_TOOL
1276$(ToolBuildPath): $(ExmplDir)/.dir
1277else
1278$(ToolBuildPath): $(ToolDir)/.dir
1279endif
1280
Chris Lattnera5d27b12006-09-04 06:39:52 +00001281$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001282 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001283 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencer10536582006-05-16 06:25:14 +00001284 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnere2dcbe02006-02-14 04:25:54 +00001285 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman2879c292009-01-08 02:11:55 +00001286 $(StripWarnMsg)
Reid Spencer12a3a052004-10-24 07:53:21 +00001287
Daniel Dunbar0dd2b812009-11-19 00:14:53 +00001288ifneq ($(strip $(ToolAliasBuildPath)),)
1289$(ToolAliasBuildPath): $(ToolBuildPath)
1290 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1291 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1292 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1293 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLNAME) \
1294 $(StripWarnMsg)
1295endif
1296
Reid Spencera79819d2007-02-06 18:53:14 +00001297ifdef NO_INSTALL
1298install-local::
1299 $(Echo) Install circumvented with NO_INSTALL
1300uninstall-local::
1301 $(Echo) Uninstall circumvented with NO_INSTALL
1302else
Daniel Dunbar0dd2b812009-11-19 00:14:53 +00001303DestTool = $(PROJ_bindir)/$(TOOLEXENAME)
Reid Spencer12a3a052004-10-24 07:53:21 +00001304
Reid Spencerbe6a4e92004-10-28 07:57:28 +00001305install-local:: $(DestTool)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001306
Mike Stump35f423e2009-02-12 23:45:11 +00001307$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001308 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencerc43b1d42005-02-24 03:56:32 +00001309 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencer12a3a052004-10-24 07:53:21 +00001310
Reid Spencerbe6a4e92004-10-28 07:57:28 +00001311uninstall-local::
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001312 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001313 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbar0dd2b812009-11-19 00:14:53 +00001314
1315# TOOLALIAS install.
1316ifdef TOOLALIAS
1317DestToolAlias = $(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
1318
1319install-local:: $(DestToolAlias)
1320
1321$(DestToolAlias): $(DestTool) $(PROJ_bindir)
1322 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1323 $(Verb) $(RM) -f $(DestToolAlias)
1324 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1325
1326uninstall-local::
1327 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1328 -$(Verb) $(RM) -f $(DestToolAlias)
1329endif
1330
Reid Spencera79819d2007-02-06 18:53:14 +00001331endif
Reid Spencerf206bd72004-10-22 21:01:56 +00001332endif
Chris Lattner07c7c192001-09-07 22:57:58 +00001333
Reid Spencerf88808a2004-10-30 09:19:36 +00001334###############################################################################
Misha Brukman2879c292009-01-08 02:11:55 +00001335# Object Build Rules: Build object files based on sources
Reid Spencerf88808a2004-10-30 09:19:36 +00001336###############################################################################
1337
Duraid Madinacbbc1842006-02-15 03:23:26 +00001338# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikov90e17e72009-08-18 00:40:33 +00001339ifeq ($(HOST_OS),HP-UX)
Duraid Madinacbbc1842006-02-15 03:23:26 +00001340 DISABLE_AUTO_DEPENDENCIES=1
1341endif
1342
Reid Spencerf88808a2004-10-30 09:19:36 +00001343# Provide rule sets for when dependency generation is enabled
Reid Spencerf206bd72004-10-22 21:01:56 +00001344ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve20aa62f2002-09-20 14:03:13 +00001345
Reid Spencerf88808a2004-10-30 09:19:36 +00001346#---------------------------------------------------------
Nick Lewycky28c62d22009-02-26 07:44:16 +00001347# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencerf88808a2004-10-30 09:19:36 +00001348#---------------------------------------------------------
Reid Spencer81cd0492004-10-23 20:04:14 +00001349
Chris Lattnerc23e6352007-12-31 23:58:31 +00001350DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewycky28c62d22009-02-26 07:44:16 +00001351 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greifc848f9e2008-02-27 13:34:15 +00001352
Daniel Dunbar8a28e012009-05-12 06:35:50 +00001353# If the build succeeded, move the dependency file over, otherwise
1354# remove it.
Chris Lattnerc23e6352007-12-31 23:58:31 +00001355DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1356 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1357
Daniel Dunbar99ab0e02010-01-22 18:10:54 +00001358$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Jakob Stoklund Olesenbefc8532009-10-04 17:54:36 +00001359 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001360 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnerc23e6352007-12-31 23:58:31 +00001361 $(DEPEND_MOVEFILE)
Reid Spencer81cd0492004-10-23 20:04:14 +00001362
Daniel Dunbar99ab0e02010-01-22 18:10:54 +00001363$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Chris Lattner085c7152006-06-21 20:58:03 +00001364 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001365 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnerc23e6352007-12-31 23:58:31 +00001366 $(DEPEND_MOVEFILE)
Chris Lattnerf60c1702005-02-04 21:28:50 +00001367
Daniel Dunbar99ab0e02010-01-22 18:10:54 +00001368$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Chris Lattner085c7152006-06-21 20:58:03 +00001369 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001370 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnerc23e6352007-12-31 23:58:31 +00001371 $(DEPEND_MOVEFILE)
Reid Spencer81cd0492004-10-23 20:04:14 +00001372
Reid Spencerf88808a2004-10-30 09:19:36 +00001373#---------------------------------------------------------
Chris Lattnerf60c1702005-02-04 21:28:50 +00001374# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencerf88808a2004-10-30 09:19:36 +00001375#---------------------------------------------------------
Chris Lattnerb3eb31f2006-01-27 22:13:12 +00001376
Daniel Dunbar8a28e012009-05-12 06:35:50 +00001377BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1378 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1379
1380# If the build succeeded, move the dependency file over, otherwise
1381# remove it.
1382BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1383 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1384
Reid Spencer96edbd52006-12-30 16:31:02 +00001385$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001386 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbar8a28e012009-05-12 06:35:50 +00001387 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1388 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1389 $(BC_DEPEND_MOVEFILE)
Reid Spencerf206bd72004-10-22 21:01:56 +00001390
Reid Spencer96edbd52006-12-30 16:31:02 +00001391$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Chris Lattnerf60c1702005-02-04 21:28:50 +00001392 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbar8a28e012009-05-12 06:35:50 +00001393 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1394 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1395 $(BC_DEPEND_MOVEFILE)
Chris Lattnerf60c1702005-02-04 21:28:50 +00001396
Reid Spencer96edbd52006-12-30 16:31:02 +00001397$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001398 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbar8a28e012009-05-12 06:35:50 +00001399 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1400 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1401 $(BC_DEPEND_MOVEFILE)
Reid Spencerf206bd72004-10-22 21:01:56 +00001402
Reid Spencerf88808a2004-10-30 09:19:36 +00001403# Provide alternate rule sets if dependencies are disabled
Reid Spencerf206bd72004-10-22 21:01:56 +00001404else
1405
Nick Lewycky28c62d22009-02-26 07:44:16 +00001406$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner085c7152006-06-21 20:58:03 +00001407 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001408 $(Compile.CXX) $< -o $@
Reid Spencer81cd0492004-10-23 20:04:14 +00001409
Nick Lewycky28c62d22009-02-26 07:44:16 +00001410$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner085c7152006-06-21 20:58:03 +00001411 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001412 $(Compile.CXX) $< -o $@
Chris Lattnerf60c1702005-02-04 21:28:50 +00001413
Nick Lewycky28c62d22009-02-26 07:44:16 +00001414$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner085c7152006-06-21 20:58:03 +00001415 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001416 $(Compile.C) $< -o $@
Reid Spencerf206bd72004-10-22 21:01:56 +00001417
Reid Spencer96edbd52006-12-30 16:31:02 +00001418$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001419 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattnerb3eb31f2006-01-27 22:13:12 +00001420 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Reid Spencerf206bd72004-10-22 21:01:56 +00001421
Reid Spencer96edbd52006-12-30 16:31:02 +00001422$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Chris Lattnerf60c1702005-02-04 21:28:50 +00001423 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattnerb3eb31f2006-01-27 22:13:12 +00001424 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Chris Lattnerf60c1702005-02-04 21:28:50 +00001425
Reid Spencer96edbd52006-12-30 16:31:02 +00001426$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001427 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattnerb3eb31f2006-01-27 22:13:12 +00001428 $(BCCompile.C) $< -o $@ -S -emit-llvm
Brian Gaeke0f148bc2003-12-10 00:26:28 +00001429
Chris Lattner07c7c192001-09-07 22:57:58 +00001430endif
1431
Chris Lattner161a84e2006-06-21 21:01:20 +00001432
1433## Rules for building preprocessed (.i/.ii) outputs.
1434$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1435 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1436 $(Verb) $(Preprocess.CXX) $< -o $@
1437
1438$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1439 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1440 $(Verb) $(Preprocess.CXX) $< -o $@
1441
Reid Spencerbef61c52006-12-10 04:56:38 +00001442$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner161a84e2006-06-21 21:01:20 +00001443 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1444 $(Verb) $(Preprocess.C) $< -o $@
1445
1446
1447$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1448 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001449 $(Compile.CXX) $< -o $@ -S
Chris Lattner161a84e2006-06-21 21:01:20 +00001450
1451$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1452 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001453 $(Compile.CXX) $< -o $@ -S
Chris Lattner161a84e2006-06-21 21:01:20 +00001454
1455$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1456 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky28c62d22009-02-26 07:44:16 +00001457 $(Compile.C) $< -o $@ -S
Chris Lattner161a84e2006-06-21 21:01:20 +00001458
Reid Spencer4b8067f2006-11-17 03:32:33 +00001459
Chris Lattnerb3eb31f2006-01-27 22:13:12 +00001460# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer4b8067f2006-11-17 03:32:33 +00001461ifdef DEBUG_RUNTIME
Dan Gohman40d204f2009-09-08 15:52:56 +00001462$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer4b8067f2006-11-17 03:32:33 +00001463 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman40d204f2009-09-08 15:52:56 +00001464 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer4b8067f2006-11-17 03:32:33 +00001465else
Dan Gohman40d204f2009-09-08 15:52:56 +00001466$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattnerb3eb31f2006-01-27 22:13:12 +00001467 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman40d204f2009-09-08 15:52:56 +00001468 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer4b8067f2006-11-17 03:32:33 +00001469endif
1470
Chris Lattnerb3eb31f2006-01-27 22:13:12 +00001471
Reid Spencerf88808a2004-10-30 09:19:36 +00001472#---------------------------------------------------------
1473# Provide rule to build .bc files from .ll sources,
1474# regardless of dependencies
1475#---------------------------------------------------------
1476$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencerb5b92fb2004-11-01 07:50:27 +00001477 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencerf88808a2004-10-30 09:19:36 +00001478 $(Verb) $(LLVMAS) $< -f -o $@
1479
1480###############################################################################
1481# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1482###############################################################################
Chris Lattner0c4f4fe2003-08-15 02:18:35 +00001483
Reid Spencerf206bd72004-10-22 21:01:56 +00001484ifdef TARGET
Mikhail Glushenkovc6333bd2009-03-02 09:42:59 +00001485TABLEGEN_INC_FILES_COMMON = 1
1486endif
Reid Spencerf206bd72004-10-22 21:01:56 +00001487
Mikhail Glushenkovc6333bd2009-03-02 09:42:59 +00001488ifdef LLVMC_BUILD_AUTOGENERATED_INC
1489TABLEGEN_INC_FILES_COMMON = 1
1490endif
1491
1492ifdef TABLEGEN_INC_FILES_COMMON
1493
Reid Spencerf88808a2004-10-30 09:19:36 +00001494INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner2a023902004-12-16 17:28:50 +00001495INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1496.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencerf206bd72004-10-22 21:01:56 +00001497
Misha Brukman2879c292009-01-08 02:11:55 +00001498# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattnerf86914d2004-12-16 17:38:56 +00001499# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1500# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbard395a172008-11-03 17:33:36 +00001501# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattnerf86914d2004-12-16 17:38:56 +00001502# dependencies of the .inc files are, unless the contents of the .inc file
1503# changes.
1504$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerafdc82c2004-12-16 18:26:53 +00001505 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner2a023902004-12-16 17:28:50 +00001506
Mikhail Glushenkovc6333bd2009-03-02 09:42:59 +00001507endif # TABLEGEN_INC_FILES_COMMON
1508
1509ifdef TARGET
1510
1511TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1512 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1513 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1514 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1515 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1516 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1517 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1518
Rafael Espindola59e371a2009-03-10 17:58:54 +00001519# All of these files depend on tblgen and the .td files.
1520$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1521
Chris Lattner2a023902004-12-16 17:28:50 +00001522$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1523$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencerf88808a2004-10-30 09:19:36 +00001524 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001525 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencerf206bd72004-10-22 21:01:56 +00001526
Chris Lattner2a023902004-12-16 17:28:50 +00001527$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1528$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencerf88808a2004-10-30 09:19:36 +00001529 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001530 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencerf206bd72004-10-22 21:01:56 +00001531
Chris Lattner2a023902004-12-16 17:28:50 +00001532$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1533$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencerf88808a2004-10-30 09:19:36 +00001534 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001535 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencerf206bd72004-10-22 21:01:56 +00001536
Chris Lattner2a023902004-12-16 17:28:50 +00001537$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1538$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencerf88808a2004-10-30 09:19:36 +00001539 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001540 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencerf206bd72004-10-22 21:01:56 +00001541
Chris Lattner2a023902004-12-16 17:28:50 +00001542$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1543$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencerf88808a2004-10-30 09:19:36 +00001544 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001545 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencerf206bd72004-10-22 21:01:56 +00001546
Chris Lattner2a023902004-12-16 17:28:50 +00001547$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1548$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencerf88808a2004-10-30 09:19:36 +00001549 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001550 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencerf206bd72004-10-22 21:01:56 +00001551
Chris Lattner22f937a2004-12-16 17:34:04 +00001552$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1553$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1554 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman2879c292009-01-08 02:11:55 +00001555 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencerf206bd72004-10-22 21:01:56 +00001556
Daniel Dunbar2841ea42009-07-13 18:35:35 +00001557$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1558$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1559 $(Echo) "Building $(<F) assembly matcher with tblgen"
1560 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1561
Chris Lattner2a023902004-12-16 17:28:50 +00001562$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1563$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencerf88808a2004-10-30 09:19:36 +00001564 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001565 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencerf206bd72004-10-22 21:01:56 +00001566
Chris Lattner33f98bd2005-09-03 01:15:25 +00001567$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1568$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb2226e22008-08-13 20:19:35 +00001569 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001570 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattner33f98bd2005-09-03 01:15:25 +00001571
Daniel Dunbare8b8cce2009-11-25 04:46:58 +00001572$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1573$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1574 $(Echo) "Building $(<F) disassembly tables with tblgen"
1575 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1576
Sean Callanan82436d12010-01-29 00:21:04 +00001577$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1578$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1579 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1580 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1581
Dan Gohmanb2226e22008-08-13 20:19:35 +00001582$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1583$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1584 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1585 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1586
Jim Laskey9ed90322005-10-21 19:05:19 +00001587$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1588$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1589 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001590 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattner33f98bd2005-09-03 01:15:25 +00001591
Chris Lattneree0fe3b2007-02-27 20:44:12 +00001592$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1593$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1594 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner50475362008-01-15 23:27:40 +00001595 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattneree0fe3b2007-02-27 20:44:12 +00001596
Dale Johannesenb842d522009-02-05 01:49:45 +00001597$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen79843052009-10-15 18:48:47 +00001598$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1599 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesenb842d522009-02-05 01:49:45 +00001600 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1601
Reid Spencer81cd0492004-10-23 20:04:14 +00001602clean-local::
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001603 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencerf206bd72004-10-22 21:01:56 +00001604
Mikhail Glushenkovc6333bd2009-03-02 09:42:59 +00001605endif # TARGET
1606
1607ifdef LLVMC_BUILD_AUTOGENERATED_INC
1608
Mikhail Glushenkov2c332fe2009-04-21 19:46:10 +00001609LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1610 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkovc6333bd2009-03-02 09:42:59 +00001611
1612TDFiles := $(LLVMCPluginSrc) \
1613 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1614
1615$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1616 $(TBLGEN) $(TD_COMMON)
1617 $(Echo) "Building LLVMC configuration library with tblgen"
1618 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1619
1620endif # LLVMC_BUILD_AUTOGENERATED_INC
1621
Reid Spencerf88808a2004-10-30 09:19:36 +00001622###############################################################################
Reid Spencerf88808a2004-10-30 09:19:36 +00001623# OTHER RULES: Other rules needed
1624###############################################################################
Reid Spencerf206bd72004-10-22 21:01:56 +00001625
Chris Lattner23d47392003-01-16 21:06:18 +00001626# To create postscript files from dot files...
John Criswell4ffb8442003-10-02 19:02:02 +00001627ifneq ($(DOT),false)
Chris Lattner23d47392003-01-16 21:06:18 +00001628%.ps: %.dot
Reid Spencerf206bd72004-10-22 21:01:56 +00001629 $(DOT) -Tps < $< > $@
John Criswell3ef61af2003-06-30 21:59:07 +00001630else
1631%.ps: %.dot
Reid Spencerf88808a2004-10-30 09:19:36 +00001632 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell3ef61af2003-06-30 21:59:07 +00001633endif
Chris Lattner23d47392003-01-16 21:06:18 +00001634
John Criswell0a6e6aa2003-09-06 14:44:17 +00001635# This rules ensures that header files that are removed still have a rule for
1636# which they can be "generated." This allows make to ignore them and
1637# reproduce the dependency lists.
John Criswella8391af2003-09-18 18:37:08 +00001638%.h:: ;
Chris Lattnerf60c1702005-02-04 21:28:50 +00001639%.hpp:: ;
John Criswell0a6e6aa2003-09-06 14:44:17 +00001640
Reid Spencerf88808a2004-10-30 09:19:36 +00001641# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman2879c292009-01-08 02:11:55 +00001642# very conservative approach ensuring that empty variables do not cause
Reid Spencerf88808a2004-10-30 09:19:36 +00001643# errors or disastrous removal.
Reid Spencer81cd0492004-10-23 20:04:14 +00001644clean-local::
Jim Grosbach009db892008-10-02 22:56:44 +00001645ifneq ($(strip $(ObjRootDir)),)
1646 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencer12a3a052004-10-24 07:53:21 +00001647endif
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001648 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke8625f682004-01-21 19:53:11 +00001649ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001650 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke8625f682004-01-21 19:53:11 +00001651endif
John Criswell3ef61af2003-06-30 21:59:07 +00001652
Reid Spencer9d0c1e02004-11-02 16:36:03 +00001653clean-all-local::
Reid Spencer651dd3ad2004-11-02 16:56:15 +00001654 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer9d0c1e02004-11-02 16:36:03 +00001655
Reid Spenceraee67e62004-11-12 02:27:36 +00001656
Reid Spencer81cd0492004-10-23 20:04:14 +00001657###############################################################################
1658# DEPENDENCIES: Include the dependency files if we should
1659###############################################################################
Chris Lattnere9d7d702003-08-22 14:10:16 +00001660ifndef DISABLE_AUTO_DEPENDENCIES
1661
Reid Spencer81cd0492004-10-23 20:04:14 +00001662# If its not one of the cleaning targets
Daniel Dunbar78caa022008-10-03 19:11:19 +00001663ifndef IS_CLEANING_TARGET
Reid Spencerf206bd72004-10-22 21:01:56 +00001664
Reid Spencer81cd0492004-10-23 20:04:14 +00001665# Get the list of dependency files
Daniel Dunbar8a28e012009-05-12 06:35:50 +00001666DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1667DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1668
1669# Include bitcode dependency files if using bitcode libraries
1670ifdef BYTECODE_LIBRARY
1671DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1672endif
Misha Brukmanb891ffb2003-11-09 21:36:19 +00001673
Reid Spencerfcd78152007-07-23 08:20:46 +00001674-include $(DependFiles) ""
Reid Spencer81cd0492004-10-23 20:04:14 +00001675
John Criswell48ecca62003-08-12 18:51:51 +00001676endif
Chris Lattner598222b2003-08-18 17:27:40 +00001677
Misha Brukman2879c292009-01-08 02:11:55 +00001678endif
Reid Spencerf206bd72004-10-22 21:01:56 +00001679
Reid Spencer100080c2004-10-25 08:27:37 +00001680###############################################################################
Reid Spencer8b5ebe52004-12-06 05:35:13 +00001681# CHECK: Running the test suite
1682###############################################################################
1683
Bill Wendlingf704f902009-04-09 18:26:57 +00001684check::
Reid Spencerba6a3db2005-01-16 02:20:54 +00001685 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1686 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer8b5ebe52004-12-06 05:35:13 +00001687 $(EchoCmd) Running test suite ; \
Reid Spencerba6a3db2005-01-16 02:20:54 +00001688 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer8b5ebe52004-12-06 05:35:13 +00001689 TESTSUITE=$(TESTSUITE) ; \
1690 else \
1691 $(EchoCmd) No Makefile in test directory ; \
1692 fi ; \
1693 else \
1694 $(EchoCmd) No test directory ; \
1695 fi
1696
Daniel Dunbar3eeddd22009-09-08 05:31:44 +00001697check-lit::
1698 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1699 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1700 $(EchoCmd) Running test suite ; \
1701 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1702 else \
1703 $(EchoCmd) No Makefile in test directory ; \
1704 fi ; \
1705 else \
1706 $(EchoCmd) No test directory ; \
1707 fi
1708
Daniel Dunbarf2719e62009-09-20 06:17:21 +00001709check-all::
1710 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1711 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1712 $(EchoCmd) Running test suite ; \
1713 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1714 else \
1715 $(EchoCmd) No Makefile in test directory ; \
1716 fi ; \
1717 else \
1718 $(EchoCmd) No test directory ; \
1719 fi
1720
Reid Spencer8b5ebe52004-12-06 05:35:13 +00001721###############################################################################
Bill Wendling8790e322009-01-04 23:12:21 +00001722# UNITTESTS: Running the unittests test suite
1723###############################################################################
1724
Bill Wendlingf704f902009-04-09 18:26:57 +00001725unittests::
Bill Wendling8790e322009-01-04 23:12:21 +00001726 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1727 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1728 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar96ccc472009-09-13 22:39:27 +00001729 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling8790e322009-01-04 23:12:21 +00001730 else \
1731 $(EchoCmd) No Makefile in unittests directory ; \
1732 fi ; \
1733 else \
1734 $(EchoCmd) No unittests directory ; \
1735 fi
1736
1737###############################################################################
Reid Spencerf88808a2004-10-30 09:19:36 +00001738# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer100080c2004-10-25 08:27:37 +00001739###############################################################################
1740
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001741#------------------------------------------------------------------------
1742# Define distribution related variables
1743#------------------------------------------------------------------------
Reid Spencerba6a3db2005-01-16 02:20:54 +00001744DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1745DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1746TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1747DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1748DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1749DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer100080c2004-10-25 08:27:37 +00001750DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1751 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001752 Makefile.config.in configure autoconf
1753DistOther := $(notdir $(wildcard \
Reid Spencerba6a3db2005-01-16 02:20:54 +00001754 $(PROJ_SRC_DIR)/*.h \
1755 $(PROJ_SRC_DIR)/*.td \
1756 $(PROJ_SRC_DIR)/*.def \
1757 $(PROJ_SRC_DIR)/*.ll \
1758 $(PROJ_SRC_DIR)/*.in))
Reid Spencerf88808a2004-10-30 09:19:36 +00001759DistSubDirs := $(SubDirs)
Reid Spencerfc66af42004-11-29 05:00:33 +00001760DistSources = $(Sources) $(EXTRA_DIST)
1761DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer100080c2004-10-25 08:27:37 +00001762
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001763#------------------------------------------------------------------------
1764# We MUST build distribution with OBJ_DIR != SRC_DIR
1765#------------------------------------------------------------------------
Reid Spencerba6a3db2005-01-16 02:20:54 +00001766ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001767dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencerf88808a2004-10-30 09:19:36 +00001768 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001769
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001770else
1771
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001772#------------------------------------------------------------------------
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001773# Prevent attempt to run dist targets from anywhere but the top level
1774#------------------------------------------------------------------------
1775ifneq ($(LEVEL),.)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001776dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencerba6a3db2005-01-16 02:20:54 +00001777 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001778else
1779
1780#------------------------------------------------------------------------
1781# Provide the top level targets
1782#------------------------------------------------------------------------
1783
Reid Spencerf88808a2004-10-30 09:19:36 +00001784dist-gzip:: $(DistTarGZip)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001785
Reid Spencer81546582004-12-04 22:34:09 +00001786$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencerf88808a2004-10-30 09:19:36 +00001787 $(Echo) Packing gzipped distribution tar file.
Reid Spencerba6a3db2005-01-16 02:20:54 +00001788 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfc66af42004-11-29 05:00:33 +00001789 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001790
Reid Spencerf88808a2004-10-30 09:19:36 +00001791dist-bzip2:: $(DistTarBZ2)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001792
Reid Spencer81546582004-12-04 22:34:09 +00001793$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencerf88808a2004-10-30 09:19:36 +00001794 $(Echo) Packing bzipped distribution tar file.
Reid Spencerba6a3db2005-01-16 02:20:54 +00001795 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfc66af42004-11-29 05:00:33 +00001796 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001797
Reid Spencerf88808a2004-10-30 09:19:36 +00001798dist-zip:: $(DistZip)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001799
Reid Spencer81546582004-12-04 22:34:09 +00001800$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencerf88808a2004-10-30 09:19:36 +00001801 $(Echo) Packing zipped distribution file.
1802 $(Verb) rm -f $(DistZip)
Reid Spencerba6a3db2005-01-16 02:20:54 +00001803 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001804
Misha Brukman2879c292009-01-08 02:11:55 +00001805dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencerf88808a2004-10-30 09:19:36 +00001806 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001807
Reid Spencer3a468752005-01-28 19:52:32 +00001808DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001809
Reid Spencer81546582004-12-04 22:34:09 +00001810dist-check:: $(DistTarGZip)
Reid Spencerf88808a2004-10-30 09:19:36 +00001811 $(Echo) Checking distribution tar file.
1812 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001813 $(RM) -rf $(DistCheckDir) ; \
1814 fi
Reid Spencerf88808a2004-10-30 09:19:36 +00001815 $(Verb) $(MKDIR) $(DistCheckDir)
1816 $(Verb) cd $(DistCheckDir) && \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001817 $(MKDIR) $(DistCheckDir)/build && \
1818 $(MKDIR) $(DistCheckDir)/install && \
1819 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1820 cd build && \
1821 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer13f51932005-05-24 02:33:20 +00001822 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer81546582004-12-04 22:34:09 +00001823 $(MAKE) all && \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001824 $(MAKE) check && \
Bill Wendling8790e322009-01-04 23:12:21 +00001825 $(MAKE) unittests && \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001826 $(MAKE) install && \
1827 $(MAKE) uninstall && \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001828 $(MAKE) dist-clean && \
Reid Spencerf88808a2004-10-30 09:19:36 +00001829 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001830
1831dist-clean::
Reid Spencerf88808a2004-10-30 09:19:36 +00001832 $(Echo) Cleaning distribution files
Reid Spencer81546582004-12-04 22:34:09 +00001833 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1834 $(DistCheckDir)
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001835
1836endif
1837
1838#------------------------------------------------------------------------
1839# Provide the recursive distdir target for building the distribution directory
1840#------------------------------------------------------------------------
Reid Spencer81546582004-12-04 22:34:09 +00001841distdir: $(DistDir)/.makedistdir
1842$(DistDir)/.makedistdir: $(DistSources)
Reid Spencerf88808a2004-10-30 09:19:36 +00001843 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001844 if test -d "$(DistDir)" ; then \
1845 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1846 exit 1 ; \
1847 fi ; \
Reid Spencer81546582004-12-04 22:34:09 +00001848 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001849 $(RM) -rf $(DistDir); \
Reid Spencer8b5ebe52004-12-06 05:35:13 +00001850 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer15b85092006-04-10 16:46:04 +00001851 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001852 fi
Reid Spencerfc66af42004-11-29 05:00:33 +00001853 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman2879c292009-01-08 02:11:55 +00001854 $(Verb) $(MKDIR) $(DistDir)
Reid Spencerba6a3db2005-01-16 02:20:54 +00001855 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1856 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer100080c2004-10-25 08:27:37 +00001857 for file in $(DistFiles) ; do \
1858 case "$$file" in \
Reid Spencerba6a3db2005-01-16 02:20:54 +00001859 $(PROJ_SRC_DIR)/*) \
Reid Spencer81546582004-12-04 22:34:09 +00001860 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1861 ;; \
Reid Spencerba6a3db2005-01-16 02:20:54 +00001862 $(PROJ_SRC_ROOT)/*) \
Reid Spencer81546582004-12-04 22:34:09 +00001863 file=`echo "$$file" | \
1864 sed "s#^$$srcrootstrip/##"` \
1865 ;; \
Reid Spencer100080c2004-10-25 08:27:37 +00001866 esac; \
Reid Spencerba6a3db2005-01-16 02:20:54 +00001867 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1868 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1869 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer81546582004-12-04 22:34:09 +00001870 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer100080c2004-10-25 08:27:37 +00001871 from_dir=. ; \
Reid Spencer81546582004-12-04 22:34:09 +00001872 fi ; \
1873 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer100080c2004-10-25 08:27:37 +00001874 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1875 to_dir="$(DistDir)/$$dir"; \
1876 $(MKDIR) "$$to_dir" ; \
1877 else \
1878 to_dir="$(DistDir)"; \
1879 fi; \
1880 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1881 if test -n "$$mid_dir" ; then \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001882 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer100080c2004-10-25 08:27:37 +00001883 fi ; \
1884 if test -d "$$from_dir/$$file"; then \
Reid Spencerba6a3db2005-01-16 02:20:54 +00001885 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1886 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer13f51932005-05-24 02:33:20 +00001887 cd $(PROJ_SRC_DIR) ; \
1888 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1889 ( cd $$to_dir ; $(TAR) xf - ) ; \
1890 cd $(PROJ_OBJ_DIR) ; \
1891 else \
1892 cd $$from_dir ; \
1893 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1894 ( cd $$to_dir ; $(TAR) xf - ) ; \
1895 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer100080c2004-10-25 08:27:37 +00001896 fi; \
Reid Spencer100080c2004-10-25 08:27:37 +00001897 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerafdc82c2004-12-16 18:26:53 +00001898 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer100080c2004-10-25 08:27:37 +00001899 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerafdc82c2004-12-16 18:26:53 +00001900 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer100080c2004-10-25 08:27:37 +00001901 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer81546582004-12-04 22:34:09 +00001902 $(EchoCmd) "===== WARNING: Distribution Source " \
1903 "$$from_dir/$$file Not Found!" ; \
Reid Spencerf88808a2004-10-30 09:19:36 +00001904 elif test "$(Verb)" != '@' ; then \
1905 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer100080c2004-10-25 08:27:37 +00001906 fi; \
1907 done
Reid Spencerf88808a2004-10-30 09:19:36 +00001908 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer100080c2004-10-25 08:27:37 +00001909 if test "$$subdir" \!= "." ; then \
Reid Spencer100080c2004-10-25 08:27:37 +00001910 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencer8da1b5d2004-10-26 07:09:33 +00001911 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer15b85092006-04-10 16:46:04 +00001912 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencer056f0222006-04-07 16:06:18 +00001913 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer100080c2004-10-25 08:27:37 +00001914 fi; \
1915 done
Reid Spencer81546582004-12-04 22:34:09 +00001916 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer13f51932005-05-24 02:33:20 +00001917 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattnerb8e7aa02006-02-14 04:27:15 +00001918 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1919 -name .svn \) -print` ;\
Reid Spencer81546582004-12-04 22:34:09 +00001920 $(MAKE) dist-hook ; \
1921 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1922 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1923 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1924 -o ! -type d ! -perm -444 -exec \
1925 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1926 || chmod -R a+r $(DistDir) ; \
1927 fi
Reid Spencer100080c2004-10-25 08:27:37 +00001928
Reid Spencerf88808a2004-10-30 09:19:36 +00001929# This is invoked by distdir target, define it as a no-op to avoid errors if not
1930# defined by user.
Reid Spencer100080c2004-10-25 08:27:37 +00001931dist-hook::
1932
Reid Spencer23a70372004-10-22 23:06:30 +00001933endif
Reid Spencerf206bd72004-10-22 21:01:56 +00001934
1935###############################################################################
Reid Spencer12a3a052004-10-24 07:53:21 +00001936# TOP LEVEL - targets only to apply at the top level directory
1937###############################################################################
1938
1939ifeq ($(LEVEL),.)
1940
1941#------------------------------------------------------------------------
Reid Spencer8b5ebe52004-12-06 05:35:13 +00001942# Install support for the project's include files:
Reid Spencer12a3a052004-10-24 07:53:21 +00001943#------------------------------------------------------------------------
Reid Spencera79819d2007-02-06 18:53:14 +00001944ifdef NO_INSTALL
1945install-local::
1946 $(Echo) Install circumvented with NO_INSTALL
1947uninstall-local::
1948 $(Echo) Uninstall circumvented with NO_INSTALL
1949else
Reid Spencer12a3a052004-10-24 07:53:21 +00001950install-local::
Reid Spencerf88808a2004-10-30 09:19:36 +00001951 $(Echo) Installing include files
Reid Spencerba6a3db2005-01-16 02:20:54 +00001952 $(Verb) $(MKDIR) $(PROJ_includedir)
Reid Spencerc43b1d42005-02-24 03:56:32 +00001953 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencerba6a3db2005-01-16 02:20:54 +00001954 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattner814d9ee2009-01-02 07:16:45 +00001955 for hdr in `find . -type f '!' '(' -name '*~' \
Reid Spencerc82c2cf2007-04-09 19:08:58 +00001956 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1957 grep -v .svn` ; do \
Reid Spencerc43b1d42005-02-24 03:56:32 +00001958 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1959 if test \! -d "$$instdir" ; then \
1960 $(EchoCmd) Making install directory $$instdir ; \
1961 $(MKDIR) $$instdir ;\
1962 fi ; \
1963 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer48a82f42005-02-16 15:54:03 +00001964 done ; \
Reid Spencer12a3a052004-10-24 07:53:21 +00001965 fi
Reid Spencer528c9802005-12-23 22:27:56 +00001966ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencerc43b1d42005-02-24 03:56:32 +00001967 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer48a82f42005-02-16 15:54:03 +00001968 cd $(PROJ_OBJ_ROOT)/include && \
Reid Spencer528c9802005-12-23 22:27:56 +00001969 for hdr in `find . -type f -print | grep -v CVS` ; do \
Reid Spencerc43b1d42005-02-24 03:56:32 +00001970 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer48a82f42005-02-16 15:54:03 +00001971 done ; \
Chris Lattner81bfc9e2005-02-09 02:24:00 +00001972 fi
Reid Spencer528c9802005-12-23 22:27:56 +00001973endif
Reid Spencer12a3a052004-10-24 07:53:21 +00001974
1975uninstall-local::
Reid Spencerf88808a2004-10-30 09:19:36 +00001976 $(Echo) Uninstalling include files
Reid Spencerba6a3db2005-01-16 02:20:54 +00001977 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1978 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencer12a3a052004-10-24 07:53:21 +00001979 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattner814d9ee2009-01-02 07:16:45 +00001980 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnere2dcbe02006-02-14 04:25:54 +00001981 -o -name '*.in' ')' -print ')' | \
1982 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
Chris Lattner81bfc9e2005-02-09 02:24:00 +00001983 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnere2dcbe02006-02-14 04:25:54 +00001984 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1985 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
Chris Lattner81bfc9e2005-02-09 02:24:00 +00001986 fi
Reid Spencera79819d2007-02-06 18:53:14 +00001987endif
Reid Spencer12a3a052004-10-24 07:53:21 +00001988endif
1989
Chris Lattnerf8adf7a2007-04-14 23:35:45 +00001990check-line-length:
Gabor Greif697e94c2008-05-15 10:04:30 +00001991 @echo searching for overlength lines in files: $(Sources)
1992 @echo
1993 @echo
Gabor Greif2dd54ed2008-08-28 22:32:39 +00001994 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattnerf8adf7a2007-04-14 23:35:45 +00001995
Anton Korobeynikovfb801512007-04-16 18:10:23 +00001996check-for-tabs:
Gabor Greif697e94c2008-05-15 10:04:30 +00001997 @echo searching for tabs in files: $(Sources)
1998 @echo
1999 @echo
Gabor Greif2dd54ed2008-08-28 22:32:39 +00002000 egrep -n ' ' $(Sources) /dev/null
Gabor Greif697e94c2008-05-15 10:04:30 +00002001
Reid Spencere6bc2062007-05-02 21:29:39 +00002002check-footprint:
2003 @ls -l $(LibDir) | awk '\
2004 BEGIN { sum = 0; } \
2005 { sum += $$5; } \
2006 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2007 @ls -l $(ToolDir) | awk '\
2008 BEGIN { sum = 0; } \
2009 { sum += $$5; } \
2010 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencerf206bd72004-10-22 21:01:56 +00002011#------------------------------------------------------------------------
2012# Print out the directories used for building
Reid Spencerf88808a2004-10-30 09:19:36 +00002013#------------------------------------------------------------------------
Reid Spencer81cd0492004-10-23 20:04:14 +00002014printvars::
Reid Spencerba6a3db2005-01-16 02:20:54 +00002015 $(Echo) "BuildMode : " '$(BuildMode)'
2016 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2017 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2018 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2019 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2020 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2021 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2022 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2023 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2024 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2025 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencerfe0a01e2005-02-16 16:13:02 +00002026 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencerba6a3db2005-01-16 02:20:54 +00002027 $(Echo) "UserTargets : " '$(UserTargets)'
2028 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2029 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2030 $(Echo) "ObjDir : " '$(ObjDir)'
2031 $(Echo) "LibDir : " '$(LibDir)'
2032 $(Echo) "ToolDir : " '$(ToolDir)'
2033 $(Echo) "ExmplDir : " '$(ExmplDir)'
2034 $(Echo) "Sources : " '$(Sources)'
2035 $(Echo) "TDFiles : " '$(TDFiles)'
2036 $(Echo) "INCFiles : " '$(INCFiles)'
2037 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencerfefb9ea2005-03-01 16:27:06 +00002038 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencerba6a3db2005-01-16 02:20:54 +00002039 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2040 $(Echo) "Compile.C : " '$(Compile.C)'
2041 $(Echo) "Archive : " '$(Archive)'
2042 $(Echo) "YaccFiles : " '$(YaccFiles)'
2043 $(Echo) "LexFiles : " '$(LexFiles)'
2044 $(Echo) "Module : " '$(Module)'
Reid Spencerb48e3f82005-08-24 10:43:10 +00002045 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerece13582006-04-09 23:41:14 +00002046 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer200c6f92007-03-29 19:05:44 +00002047 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2048 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar0094e342009-02-21 20:42:39 +00002049
2050###
2051# Debugging
2052
Daniel Dunbar3b3c3f02009-03-06 22:23:25 +00002053# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar0094e342009-02-21 20:42:39 +00002054# definition, value and origin of XXX.
Daniel Dunbar3b3c3f02009-03-06 22:23:25 +00002055make-print-%:
Daniel Dunbar0094e342009-02-21 20:42:39 +00002056 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))