blob: 887ec945a895cc5d9d89f2c74ea9b909ee95fcc2 [file] [log] [blame]
Misha Brukman6d5ab862004-04-24 00:10:56 +00001#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2#
John Criswelld8846c12003-10-21 14:33:46 +00003# The LLVM Compiler Infrastructure
4#
Chris Lattner57360d12007-12-29 20:11:13 +00005# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
Misha Brukmanef5dc702009-01-08 02:11:55 +00007#
Misha Brukman6d5ab862004-04-24 00:10:56 +00008#===------------------------------------------------------------------------===#
Chris Lattner00950542001-06-06 20:29:01 +00009#
Reid Spencer3a561f52004-10-23 20:04:14 +000010# This file is included by all of the LLVM makefiles. For details on how to use
11# it properly, please see the document MakefileGuide.html in the docs directory.
Chris Lattneraf06a082003-08-15 03:02:52 +000012#
Chris Lattner77efe272006-02-14 04:27:15 +000013#===-----------------------------------------------------------------------====#
Chris Lattner00950542001-06-06 20:29:01 +000014
Reid Spencercc2d1e22004-10-30 09:19:36 +000015################################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +000016# TARGETS: Define standard targets that can be invoked
Reid Spencercc2d1e22004-10-30 09:19:36 +000017################################################################################
John Criswell7a73b802003-06-30 21:59:07 +000018
Chris Lattner00950542001-06-06 20:29:01 +000019#--------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +000020# Define the various target sets
21#--------------------------------------------------------------------
Daniel Dunbar7f068f42009-09-13 22:39:27 +000022RecursiveTargets := all clean clean-all install uninstall install-bytecode \
23 unitcheck
Reid Spencer9e8d54a2004-12-06 05:35:13 +000024LocalTargets := all-local clean-local clean-all-local check-local \
Reid Spencer44cb1b32004-12-03 20:08:48 +000025 install-local printvars uninstall-local \
Daniel Dunbar7f068f42009-09-13 22:39:27 +000026 install-bytecode-local
Chris Lattner72e46332007-09-26 06:10:47 +000027TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
Bill Wendling4113bd12009-01-04 23:12:21 +000028 dist-zip unittests
Reid Spencercc2d1e22004-10-30 09:19:36 +000029UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30InternalTargets := preconditions distdir dist-hook
Reid Spencer3a561f52004-10-23 20:04:14 +000031
Reid Spencercc2d1e22004-10-30 09:19:36 +000032################################################################################
Reid Spencer9411c642004-10-26 22:26:33 +000033# INITIALIZATION: Basic things the makefile needs
Reid Spencercc2d1e22004-10-30 09:19:36 +000034################################################################################
35
36#--------------------------------------------------------------------
37# Set the VPATH so that we can find source files.
38#--------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +000039VPATH=$(PROJ_SRC_DIR)
Reid Spencer9411c642004-10-26 22:26:33 +000040
41#--------------------------------------------------------------------
Reid Spencer1abd46d2007-06-29 14:02:07 +000042# Reset the list of suffixes we know how to build.
Reid Spencer9411c642004-10-26 22:26:33 +000043#--------------------------------------------------------------------
44.SUFFIXES:
Nick Lewyckya15dc032009-02-26 07:44:16 +000045.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
Reid Spencercc2d1e22004-10-30 09:19:36 +000046.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
Reid Spencer9411c642004-10-26 22:26:33 +000047
Reid Spencer3a561f52004-10-23 20:04:14 +000048#--------------------------------------------------------------------
49# Mark all of these targets as phony to avoid implicit rule search
50#--------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +000051.PHONY: $(UserTargets) $(InternalTargets)
Reid Spencer3a561f52004-10-23 20:04:14 +000052
53#--------------------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +000054# Make sure all the user-target rules are double colon rules and
Reid Spencer9411c642004-10-26 22:26:33 +000055# they are defined first.
Reid Spencer3a561f52004-10-23 20:04:14 +000056#--------------------------------------------------------------------
57
Reid Spencercc2d1e22004-10-30 09:19:36 +000058$(UserTargets)::
Reid Spencer151f8ba2004-10-25 08:27:37 +000059
Reid Spencer9411c642004-10-26 22:26:33 +000060################################################################################
61# PRECONDITIONS: that which must be built/checked first
62################################################################################
63
Reid Spencer44cb1b32004-12-03 20:08:48 +000064SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencer11fde542005-01-16 02:20:54 +000065 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
66ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
67ConfigureScript := $(PROJ_SRC_ROOT)/configure
68ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
69MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
70MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
71MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
72MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
73PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
74ifneq ($(MakefileCommonIn),)
75PreConditions += $(MakefileCommon)
76endif
Chris Lattner0a1db822006-09-04 05:23:20 +000077
Reid Spencer11fde542005-01-16 02:20:54 +000078ifneq ($(MakefileConfigIn),)
79PreConditions += $(MakefileConfig)
80endif
Reid Spencer9411c642004-10-26 22:26:33 +000081
Reid Spencerca739c62005-08-25 04:59:49 +000082preconditions: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +000083
84#------------------------------------------------------------------------
85# Make sure the BUILT_SOURCES are built first
86#------------------------------------------------------------------------
Reid Spencer07a549a2004-12-16 07:15:16 +000087$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000088
Reid Spencer9bb399c2007-02-07 19:13:19 +000089clean-all-local::
Reid Spencer9411c642004-10-26 22:26:33 +000090ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +000091 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000092endif
93
Reid Spencer11fde542005-01-16 02:20:54 +000094ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer31f95242004-12-16 08:00:46 +000095spotless:
Reid Spencer31f95242004-12-16 08:00:46 +000096 $(Verb) if test -x config.status ; then \
Reid Spencer11fde542005-01-16 02:20:54 +000097 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +000098 $(MKDIR) .spotless.save ; \
99 $(MV) config.status .spotless.save ; \
100 $(MV) mklib .spotless.save ; \
101 $(MV) projects .spotless.save ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000102 $(RM) -rf * ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000103 $(MV) .spotless.save/config.status . ; \
104 $(MV) .spotless.save/mklib . ; \
105 $(MV) .spotless.save/projects . ; \
106 $(RM) -rf .spotless.save ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000107 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000108 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109 $(ConfigStatusScript) ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000110 else \
Reid Spencer11fde542005-01-16 02:20:54 +0000111 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer31f95242004-12-16 08:00:46 +0000112 fi
Reid Spencer25e8a702005-12-21 23:17:06 +0000113else
114spotless:
115 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer31f95242004-12-16 08:00:46 +0000116endif
117
Reid Spencercc2d1e22004-10-30 09:19:36 +0000118$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencer80f0ef72004-10-28 00:41:43 +0000119
Reid Spencer9411c642004-10-26 22:26:33 +0000120#------------------------------------------------------------------------
121# Make sure we're not using a stale configuration
122#------------------------------------------------------------------------
Reid Spencerc3719842004-12-16 18:26:53 +0000123reconfigure:
Reid Spencer11fde542005-01-16 02:20:54 +0000124 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
125 $(Verb) cd $(PROJ_OBJ_ROOT) && \
126 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
127 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000128 fi ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000129 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130 $(ConfigStatusScript)
131
Anton Korobeynikov7a677a32009-08-14 18:53:19 +0000132# FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
Daniel Dunbar25a619f2009-08-13 17:22:49 +0000133# up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
134
Reid Spencercc2d1e22004-10-30 09:19:36 +0000135.PRECIOUS: $(ConfigStatusScript)
Anton Korobeynikov7a677a32009-08-14 18:53:19 +0000136$(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(LLVM_SRC_ROOT)/lib/Target/MSP430/AsmPrinter/Makefile
Reid Spencercc2d1e22004-10-30 09:19:36 +0000137 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000138 $(Verb) cd $(PROJ_OBJ_ROOT) && \
139 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
140 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000141 fi ; \
Reid Spencer7d277002004-11-29 12:37:44 +0000142 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
143 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000144
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000145#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000146# Make sure the configuration makefile is up to date
147#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000148ifneq ($(MakefileConfigIn),)
149$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000150 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000151 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
152endif
153
154ifneq ($(MakefileCommonIn),)
155$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
156 $(Echo) Regenerating $@
157 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
158endif
Reid Spencer9411c642004-10-26 22:26:33 +0000159
160#------------------------------------------------------------------------
161# If the Makefile in the source tree has been updated, copy it over into the
162# build tree. But, only do this if the source and object makefiles differ
163#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000164ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000165
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000166Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000167 $(Echo) "Updating Makefile"
168 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000169 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000170
171# Copy the Makefile.* files unless we're in the root directory which avoids
172# the copying of Makefile.config.in or other things that should be explicitly
173# taken care of.
Reid Spencer11fde542005-01-16 02:20:54 +0000174$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
Reid Spencer86606782004-10-26 23:10:00 +0000175 @case '$?' in \
176 *Makefile.rules) ;; \
177 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000178 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000179 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000180 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000181 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000182
Reid Spencer9411c642004-10-26 22:26:33 +0000183endif
184
185#------------------------------------------------------------------------
186# Set up the basic dependencies
187#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000188$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000189
190all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000191clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000192clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000193install:: install-local
194uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000195install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000196install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000197
198###############################################################################
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000199# LLVMC: Provide rules for compiling llvmc plugins
200###############################################################################
201
202ifdef LLVMC_PLUGIN
203
204LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
Mikhail Glushenkovd80d8692009-06-23 20:46:48 +0000205CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN)
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000206REQUIRES_EH := 1
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000207
208ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
209 LD.Flags += -lCompilerDriver
210endif
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000211
212# Build a dynamic library if the user runs `make` directly from the plugin
213# directory.
214ifndef LLVMC_BUILTIN_PLUGIN
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000215 LOADABLE_MODULE = 1
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000216endif
217
218# TableGen stuff...
219ifneq ($(BUILT_SOURCES),)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000220 LLVMC_BUILD_AUTOGENERATED_INC=1
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000221endif
222
223endif # LLVMC_PLUGIN
224
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000225ifdef LLVMC_BASED_DRIVER
226
227TOOLNAME = $(LLVMC_BASED_DRIVER)
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000228
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000229REQUIRES_EH := 1
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000230
231ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
232 LD.Flags += -lCompilerDriver
233else
234 LLVMLIBS = CompilerDriver.a
235 LINK_COMPONENTS = support system
236endif
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000237
238# Preprocessor magic that generates references to static variables in built-in
239# plugins.
240ifneq ($(LLVMC_BUILTIN_PLUGINS),)
241
242USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS))
243
244LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS))
245LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS))
246LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS))
247LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS))
248LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS))
Mikhail Glushenkov17d70ab2009-10-09 04:15:52 +0000249LLVMC_BUILTIN_PLUGIN_6 = $(word 6, $(LLVMC_BUILTIN_PLUGINS))
250LLVMC_BUILTIN_PLUGIN_7 = $(word 7, $(LLVMC_BUILTIN_PLUGINS))
251LLVMC_BUILTIN_PLUGIN_8 = $(word 8, $(LLVMC_BUILTIN_PLUGINS))
252LLVMC_BUILTIN_PLUGIN_9 = $(word 9, $(LLVMC_BUILTIN_PLUGINS))
253LLVMC_BUILTIN_PLUGIN_10 = $(word 10, $(LLVMC_BUILTIN_PLUGINS))
254
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000255
256ifneq ($(LLVMC_BUILTIN_PLUGIN_1),)
257CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1)
258endif
259
260ifneq ($(LLVMC_BUILTIN_PLUGIN_2),)
261CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2)
262endif
263
264ifneq ($(LLVMC_BUILTIN_PLUGIN_3),)
265CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3)
266endif
267
268ifneq ($(LLVMC_BUILTIN_PLUGIN_4),)
269CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4)
270endif
271
272ifneq ($(LLVMC_BUILTIN_PLUGIN_5),)
273CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5)
274endif
275
Mikhail Glushenkov17d70ab2009-10-09 04:15:52 +0000276ifneq ($(LLVMC_BUILTIN_PLUGIN_6),)
277CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_6)
278endif
279
280ifneq ($(LLVMC_BUILTIN_PLUGIN_7),)
281CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_7)
282endif
283
284ifneq ($(LLVMC_BUILTIN_PLUGIN_8),)
285CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_8)
286endif
287
288ifneq ($(LLVMC_BUILTIN_PLUGIN_9),)
289CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_9)
290endif
291
292ifneq ($(LLVMC_BUILTIN_PLUGIN_10),)
293CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_10)
294endif
295
296
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000297endif
298
299endif # LLVMC_BASED_DRIVER
300
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000301###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000302# VARIABLES: Set up various variables based on configuration data
303###############################################################################
304
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000305# Variable for if this make is for a "cleaning" target
306ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
307 IS_CLEANING_TARGET=1
308endif
309
Reid Spencer3a561f52004-10-23 20:04:14 +0000310#--------------------------------------------------------------------
311# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000312#--------------------------------------------------------------------
313
Reid Spencer0a522b12007-07-10 07:19:53 +0000314CPP.Defines :=
David Greenedbefd0c2009-04-17 14:49:22 +0000315ifeq ($(ENABLE_OPTIMIZED),1)
316 BuildMode := Release
317 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000318 ifneq ($(HOST_OS),FreeBSD)
319 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000320 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000321 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000322 endif
323
324 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000325 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
326 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000327 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000328 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
329 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000330 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
331 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
332 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000333 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000334 BuildMode := $(BuildMode)+Debug
335 CXX.Flags += -g
336 C.Flags += -g
337 LD.Flags += -g
338 KEEP_SYMBOLS := 1
339 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000340else
Daniel Dunbardee8dbe2009-11-16 22:37:52 +0000341 ifdef NO_DEBUG_SYMBOLS
342 BuildMode := Unoptimized
343 CXX.Flags +=
344 C.Flags +=
345 LD.Flags +=
346 KEEP_SYMBOLS := 1
347 else
348 BuildMode := Debug
349 CXX.Flags += -g
350 C.Flags += -g
351 LD.Flags += -g
352 KEEP_SYMBOLS := 1
353 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000354endif
355
356ifeq ($(ENABLE_PROFILING),1)
357 BuildMode := $(BuildMode)+Profile
358 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
359 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
360 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
361 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000362endif
363
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000364#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
365# CXX.Flags += -fvisibility-inlines-hidden
366#endif
367
Chris Lattnerc96d5082010-01-24 20:20:40 +0000368ifdef ENABLE_EXPENSIVE_CHECKS
369 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
370 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
371 REQUIRES_RTTI := 1
372endif
373
Reid Spencer99655e12006-08-25 19:54:53 +0000374# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000375ifndef REQUIRES_EH
376 CXX.Flags += -fno-exceptions
Chris Lattnerc6150382010-01-24 20:21:50 +0000377else
378 # If the library requires EH, it also requires RTTI.
379 REQUIRES_RTTI := 1
Reid Spencerdcea1402006-08-25 20:56:59 +0000380endif
Reid Spencer99655e12006-08-25 19:54:53 +0000381
Nicolas Geoffray8ed81412009-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 Dunbarccb75c22009-09-11 15:47:24 +0000388# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
Chris Lattner43b5f932010-01-24 20:43:08 +0000389ifneq ($(REQUIRES_RTTI), 1)
390 CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000391endif
392
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000393ifdef ENABLE_COVERAGE
394 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000395 CXX.Flags += -ftest-coverage -fprofile-arcs
396 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000397endif
398
Reid Spencer854071c2006-04-10 16:46:04 +0000399# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
400# then disable assertions by defining the appropriate preprocessor symbols.
Reid Spencerf9f431c2006-04-09 23:41:14 +0000401ifdef DISABLE_ASSERTIONS
Duncan Sands74a057b2009-03-27 11:35:00 +0000402 # Indicate that assertions are turned off using a minus sign
403 BuildMode := $(BuildMode)-Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000404 CPP.Defines += -DNDEBUG
Reid Spencerf9f431c2006-04-09 23:41:14 +0000405else
Reid Spencer0a522b12007-07-10 07:19:53 +0000406 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000407endif
408
Misha Brukmanef5dc702009-01-08 02:11:55 +0000409# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
410# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000411# appropriate preprocessor symbols.
David Greenea696d242007-06-28 19:36:08 +0000412ifdef ENABLE_EXPENSIVE_CHECKS
413 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000414 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000415endif
416
Nick Lewyckya15dc032009-02-26 07:44:16 +0000417# LOADABLE_MODULE implies several other things so we force them to be
418# defined/on.
419ifdef LOADABLE_MODULE
420 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000421 LINK_LIBS_IN_SHARED := 1
422endif
423
424ifdef SHARED_LIBRARY
425 ENABLE_PIC := 1
426 PIC_FLAG = "(PIC)"
427endif
428
Reid Spencer89b0d992006-12-16 22:07:52 +0000429ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000430 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000431 # Nothing. Win32 defaults to PIC and warns when given -fPIC
432 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000433 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000434 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000435 CXX.Flags += -fno-common
436 C.Flags += -fno-common
437 else
438 # Linux and others; pass -fPIC
439 CXX.Flags += -fPIC
440 C.Flags += -fPIC
441 endif
442 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000443else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000444 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000445 CXX.Flags += -mdynamic-no-pic
446 C.Flags += -mdynamic-no-pic
447 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000448endif
449
Anton Korobeynikov2b02b432010-01-16 14:06:58 +0000450ifeq ($(HOST_OS),MingW)
451 # Work around PR4957
452 CPP.Defines += -D__NO_CTYPE_INLINE
453 ifeq ($(LLVM_CROSS_COMPILING),1)
454 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
455 ifdef TOOLNAME
456 LD.Flags += -Wl,--allow-multiple-definition
457 endif
458 endif
459endif
460
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000461CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000462CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000463AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000464
Chris Lattner16620fc2006-07-27 18:19:51 +0000465# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000466ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000467 CXX.Flags += -mieee
468 CPP.BaseFlags += -mieee
469ifeq ($(ENABLE_PIC),0)
470 CXX.Flags += -fPIC
471 CPP.BaseFlags += -fPIC
472endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000473endif
474
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000475ifeq ($(ARCH),Alpha)
476 LD.Flags += -Wl,--no-relax
477endif
478
Reid Spencer3a561f52004-10-23 20:04:14 +0000479#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000480# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000481#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000482TargetMode :=
483ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000484 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000485endif
486
487ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000488ObjDir := $(ObjRootDir)
489LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
490ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
491ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
492LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
493LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
494LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
John Criswell7a73b802003-06-30 21:59:07 +0000495
Reid Spencer3a561f52004-10-23 20:04:14 +0000496#--------------------------------------------------------------------
Daniel Dunbar797faed2010-02-23 10:00:53 +0000497# LLVM Capable Compiler
498#--------------------------------------------------------------------
499
500ifeq ($(LLVMCC_OPTION),llvm-gcc)
501 LLVMCC := $(LLVMGCC)
502 LLVMCXX := $(LLVMGXX)
503else
504 ifeq ($(LLVMCC_OPTION),clang)
505 ifneq ($(CLANGPATH),)
506 LLVMCC := $(CLANGPATH)
507 LLVMCXX := $(CLANGXXPATH)
508 else
509 ifeq ($(ENABLE_BUILT_CLANG),1)
510 LLVMCC := $(LLVMToolDir)/clang
511 LLVMCXX := $(LLVMToolDir)/clang++
512 endif
513 endif
514 endif
515endif
516
517#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000518# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000519#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000520EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
521Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000522ifndef LLVMAS
523LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
524endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000525ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000526 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000527 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000528 else
529 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
530 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000531endif
Misha Brukmanef5dc702009-01-08 02:11:55 +0000532LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencer43eb96c2007-02-09 15:52:07 +0000533ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000534LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000535endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000536ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000537LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
538endif
539ifndef LLI
540LLI := $(LLVMToolDir)/lli$(EXEEXT)
541endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000542ifndef LLC
543LLC := $(LLVMToolDir)/llc$(EXEEXT)
544endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000545ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000546LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000547endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000548ifndef LBUGPOINT
549LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
550endif
Reid Spencere46687c2006-12-03 21:01:45 +0000551
Reid Spencer3a561f52004-10-23 20:04:14 +0000552#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000553# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000554#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000555
Anton Korobeynikove55db742009-08-18 00:40:33 +0000556ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000557 DARWIN_VERSION := `sw_vers -productVersion`
558 # Strip a number like 10.4.7 to 10.4
559 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
560 # Get "4" out of 10.4 for later pieces in the makefile.
561 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000562
Dan Gohmane05f6092010-04-16 22:58:15 +0000563 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined,suppress \
Evan Chenga5e225e2009-09-08 18:52:20 +0000564 -dynamiclib
565 ifneq ($(ARCH),ARM)
566 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
567 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000568else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000569 ifeq ($(HOST_OS),Cygwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000570 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000571 -Wl,--enable-auto-import -Wl,--enable-auto-image-base
Scott Michel87af5f02009-03-12 21:03:53 +0000572 else
573 SharedLinkOptions=-shared
574 endif
575endif
576
Anton Korobeynikove55db742009-08-18 00:40:33 +0000577ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000578 ifneq ($(ARCH),ARM)
579 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
580 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000581endif
582
Reid Spencer492c2932005-01-11 04:31:07 +0000583ifdef SHARED_LIBRARY
Scott Michel87af5f02009-03-12 21:03:53 +0000584ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky1dace482009-03-03 04:55:15 +0000585 LD.Flags += $(RPATH) -Wl,$(LibDir)
John Criswell82f4a5a2003-07-31 20:58:51 +0000586endif
Scott Michel87af5f02009-03-12 21:03:53 +0000587endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000588
Reid Spencercceed9f2004-11-08 17:32:12 +0000589ifdef TOOL_VERBOSE
590 C.Flags += -v
591 CXX.Flags += -v
592 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000593 VERBOSE := 1
594endif
595
Reid Spencer3a561f52004-10-23 20:04:14 +0000596# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000597ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000598 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000599 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000600 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000601else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000602 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000603endif
604
Vikram S. Advefeeae582002-09-18 11:55:13 +0000605# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000606ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000607 Strip := $(PLATFORMSTRIPOPTS)
608 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000609 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000610endif
611
Reid Spencer3a561f52004-10-23 20:04:14 +0000612# Adjust linker flags for building an executable
Anton Korobeynikove55db742009-08-18 00:40:33 +0000613ifneq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000614ifneq ($(DARWIN_MAJVERS),4)
Reid Spencer4d71b662004-10-22 21:01:56 +0000615ifdef TOOLNAME
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000616 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
617 ifdef EXAMPLE_TOOL
618 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
619 else
620 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
621 endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000622endif
Nick Lewyckya15dc032009-02-26 07:44:16 +0000623endif
Nick Lewyckya15dc032009-02-26 07:44:16 +0000624endif
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000625
Reid Spencer3a561f52004-10-23 20:04:14 +0000626#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000627# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000628#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000629
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000630ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000631CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000632endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000633CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
634 $(EXTRA_OPTIONS)
Dan Gohman3072b8a2010-04-19 18:33:28 +0000635# Enable cast-qual for C++; the workaround is to use const_cast.
636CXX.Flags += -Wcast-qual
Reid Spencer4d71b662004-10-22 21:01:56 +0000637
Anton Korobeynikove55db742009-08-18 00:40:33 +0000638ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000639 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000640endif
641
Chris Lattner73faa392006-05-30 16:38:06 +0000642# If we are building a universal binary on Mac OS/X, pass extra options. This
643# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000644# apps.
645#
646# The following can be optionally specified:
647# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
648# For Mac OS/X 10.4 Intel machines, the traditional one is:
649# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
650# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
651# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
652# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000653ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000654 ifndef UNIVERSAL_ARCH
655 UNIVERSAL_ARCH := i386 ppc
656 endif
657 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
658 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000659 ifdef UNIVERSAL_SDK_PATH
660 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000661 endif
662
663 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000664 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000665else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000666 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000667 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000668 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000669 else
670 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000671 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000672 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000673 endif
674 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000675endif
676
Anton Korobeynikove55db742009-08-18 00:40:33 +0000677ifeq ($(HOST_OS),SunOS)
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000678CPP.BaseFlags += -include llvm/System/Solaris.h
679endif
680
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000681ifeq ($(HOST_OS),AuroraUX)
682CPP.BaseFlags += -include llvm/System/Solaris.h
683endif # !HOST_OS - AuroraUX.
684
Misha Brukmanef5dc702009-01-08 02:11:55 +0000685LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman63f97202008-10-17 01:33:43 +0000686CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000687# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000688CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
689 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000690 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
691 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
692 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000693
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000694ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000695 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000696 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000697 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
698 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000699 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000700 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000701 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000702 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
703 $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000704 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000705else
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000706 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000707 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000708 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000709 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000710 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner6be92662009-06-16 23:00:42 +0000711 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000712 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000713 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000714endif
715
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000716BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000717 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000718Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000719 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000720
Daniel Dunbar7cfbe252010-02-23 10:28:06 +0000721BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000722 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000723
Misha Brukmanef5dc702009-01-08 02:11:55 +0000724ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
725ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000726DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000727
728# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
729# paths. In this case, the SYSPATH function (defined in
730# Makefile.config) transforms Unix paths into Windows paths.
731TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000732 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000733 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
734 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
735
Reid Spencercc2d1e22004-10-30 09:19:36 +0000736Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000737LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000738ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000739Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000740else
Reid Spencer3a561f52004-10-23 20:04:14 +0000741Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000742endif
743
Daniel Dunbarfd96b132009-11-19 00:14:53 +0000744AliasTool = ln -s
745
Chris Lattner00950542001-06-06 20:29:01 +0000746#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000747# Get the list of source files and compute object file
748# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000749#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000750
751ifndef SOURCES
752 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000753 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000754else
Chris Lattner89681112006-01-27 22:13:12 +0000755 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000756endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000757
Chris Lattner89681112006-01-27 22:13:12 +0000758ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000759Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000760endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000761
Chris Lattner89681112006-01-27 22:13:12 +0000762BaseNameSources := $(sort $(basename $(Sources)))
763
764ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000765ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
766
Reid Spencer3a561f52004-10-23 20:04:14 +0000767###############################################################################
768# DIRECTORIES: Handle recursive descent of directory structure
769###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000770
Chris Lattner00950542001-06-06 20:29:01 +0000771#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000772# Provide rules to make install dirs. This must be early
773# in the file so they get built before dependencies
774#---------------------------------------------------------
775
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000776$(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000777 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000778
Reid Spencercc2d1e22004-10-30 09:19:36 +0000779# To create other directories, as needed, and timestamp their creation
780%/.dir:
781 $(Verb) $(MKDIR) $* > /dev/null
Reid Spencerfbbf3072004-11-29 05:00:33 +0000782 $(Verb) $(DATE) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000783
Reid Spencer815cbcf2004-11-18 10:03:46 +0000784.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
785.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000786
787#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000788# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000789#---------------------------------------------------------
790
Misha Brukmanef5dc702009-01-08 02:11:55 +0000791SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000792ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000793SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000794
795ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000796$(RecursiveTargets)::
797 $(Verb) for dir in $(DIRS); do \
Reid Spencer4d71b662004-10-22 21:01:56 +0000798 if [ ! -f $$dir/Makefile ]; then \
799 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000800 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000801 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000802 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000803 done
Chris Lattner82033602006-07-26 20:22:26 +0000804else
805$(RecursiveTargets)::
806 $(Verb) for dir in $(DIRS); do \
807 ($(MAKE) -C $$dir $@ ) || exit 1; \
808 done
809endif
810
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000811endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000812
Reid Spencer3a561f52004-10-23 20:04:14 +0000813#---------------------------------------------------------
814# Handle the EXPERIMENTAL_DIRS options ensuring success
815# after each directory is built.
816#---------------------------------------------------------
817ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000818$(RecursiveTargets)::
819 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Reid Spencer3a561f52004-10-23 20:04:14 +0000820 if [ ! -f $$dir/Makefile ]; then \
821 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000822 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000823 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000824 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000825 done
826endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000827
Reid Spencer25e8a702005-12-21 23:17:06 +0000828#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000829# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
830#-----------------------------------------------------------
831ifdef OPTIONAL_PARALLEL_DIRS
832 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
833endif
834
835#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000836# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000837#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000838ifdef PARALLEL_DIRS
839
Reid Spencercc2d1e22004-10-30 09:19:36 +0000840SubDirs += $(PARALLEL_DIRS)
841
Reid Spencer44cb1b32004-12-03 20:08:48 +0000842# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000843all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
844clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000845clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000846install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000847uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000848install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000849unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000850
Reid Spencer345235ca2004-12-04 22:34:09 +0000851ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000852
Reid Spencer345235ca2004-12-04 22:34:09 +0000853$(ParallelTargets) :
Reid Spencercc2d1e22004-10-30 09:19:36 +0000854 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000855 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000856 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000857 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000858 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000859endif
860
Reid Spencer3a561f52004-10-23 20:04:14 +0000861#---------------------------------------------------------
862# Handle the OPTIONAL_DIRS options for directores that may
863# or may not exist.
864#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000865ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000866
Reid Spencercc2d1e22004-10-30 09:19:36 +0000867SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000868
Chris Lattner82033602006-07-26 20:22:26 +0000869ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000870$(RecursiveTargets)::
871 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000872 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Reid Spencer4d71b662004-10-22 21:01:56 +0000873 if [ ! -f $$dir/Makefile ]; then \
874 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000875 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000876 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000877 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000878 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000879 done
Chris Lattner82033602006-07-26 20:22:26 +0000880else
881$(RecursiveTargets)::
882 $(Verb) for dir in $(OPTIONAL_DIRS); do \
883 ($(MAKE) -C$$dir $@ ) || exit 1; \
884 done
885endif
John Criswell2a6530f2003-06-27 16:58:44 +0000886endif
887
Reid Spencerfc945082004-08-20 09:20:05 +0000888#---------------------------------------------------------
889# Handle the CONFIG_FILES options
890#---------------------------------------------------------
891ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000892
Reid Spencera2a31bf2007-02-06 18:53:14 +0000893ifdef NO_INSTALL
894install-local::
895 $(Echo) Install circumvented with NO_INSTALL
896uninstall-local::
897 $(Echo) UnInstall circumvented with NO_INSTALL
898else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000899install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
900 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000901 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000902 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000903 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000904 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000905 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000906 else \
907 $(ECHO) Error: cannot find config file $${file}. ; \
908 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000909 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000910
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000911uninstall-local::
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000912 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000913 $(Verb)for file in $(CONFIG_FILES); do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +0000914 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000915 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000916endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000917
Reid Spencerfc945082004-08-20 09:20:05 +0000918endif
919
Reid Spencer3a561f52004-10-23 20:04:14 +0000920###############################################################################
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000921# Set up variables for building libararies
922###############################################################################
923
924#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000925# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000926# libraries needed when linking. There are "Proj" libs
927# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000928# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000929#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000930
Chris Lattneref0d0f12006-09-04 04:47:21 +0000931ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000932ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
933ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000934ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
935ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
936endif
937
938ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000939LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
940LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000941LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000942LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000943endif
944
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000945ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000946ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000947
948# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
949# clean in tools, then do a make in tools (instead of at the top level).
950$(LLVM_CONFIG):
951 @echo "*** llvm-config doesn't exist - rebuilding it."
952 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000953
Chris Lattner0a1db822006-09-04 05:23:20 +0000954$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
955
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000956ifeq ($(ENABLE_SHARED), 1)
957LLVMLibsOptions += -lLLVM-$(LLVMVersion)
958LLVMLibsPaths += $(LibDir)/libLLVM-$(LLVMVersion)$(SHLIBEXT)
959else
Mikhail Glushenkov533384e2009-03-03 10:03:27 +0000960LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
961LLVMLibsPaths += $(LLVM_CONFIG) \
Misha Brukmanf547a122009-08-17 15:31:24 +0000962 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000963endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000964endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +0000965endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000966
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000967# Set up the library exports file.
968ifdef EXPORTED_SYMBOL_FILE
969
970# First, set up the native export file, which may differ from the source
971# export file.
972
973ifeq ($(HOST_OS),Darwin)
974# Darwin convention prefixes symbols with underscores.
Dan Gohman7c52f2e2010-04-15 23:08:00 +0000975NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
Dan Gohman2d675f12010-04-15 22:46:27 +0000976$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000977 $(Verb) sed -e 's/[[:<:]]/_/' < $< > $@
978clean-local::
979 -$(Verb) $(RM) -f $(NativeExportsFile)
980else
981NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
982endif
983
984# Now add the linker command-line options to use the native export file.
985
986ifeq ($(HOST_OS),Darwin)
Dan Gohmane05f6092010-04-16 22:58:15 +0000987LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000988endif
989
Dan Gohmane05f6092010-04-16 22:58:15 +0000990# gold, bfd ld, etc.
991ifeq ($(HAVE_LINK_RETAIN_SYMBOLS_FILE),1)
992LLVMLibsOptions += -Wl,-retain-symbols-file,$(NativeExportsFile)
Dan Gohmanb16b53b2010-04-15 20:54:25 +0000993endif
994
995endif
996
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000997###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000998# Library Build Rules: Four ways to build a library
999###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +00001000
Reid Spencer7980ea42004-12-05 05:17:22 +00001001#---------------------------------------------------------
1002# Bytecode Module Targets:
1003# If the user set MODULE_NAME then they want to build a
1004# bytecode module from the sources. We compile all the
1005# sources and link it together into a single bytecode
1006# module.
1007#---------------------------------------------------------
1008
1009ifdef MODULE_NAME
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001010ifeq ($(strip $(LLVMCC)),)
1011$(warning Modules require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001012else
Reid Spencer7980ea42004-12-05 05:17:22 +00001013
1014Module := $(LibDir)/$(MODULE_NAME).bc
Daniel Dunbar112257d2010-02-23 09:28:50 +00001015LinkModule := $(LLVMLD) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +00001016
Reid Spencer7980ea42004-12-05 05:17:22 +00001017
1018ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +00001019LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +00001020endif
1021
Reid Spencer43eb96c2007-02-09 15:52:07 +00001022$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001023 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +00001024 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1025
1026all-local:: $(Module)
1027
1028clean-local::
1029ifneq ($(strip $(Module)),)
1030 -$(Verb) $(RM) -f $(Module)
1031endif
1032
Reid Spencerab3690b2004-12-13 07:38:07 +00001033ifdef BYTECODE_DESTINATION
1034ModuleDestDir := $(BYTECODE_DESTINATION)
1035else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001036ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +00001037endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001038
Reid Spencera2a31bf2007-02-06 18:53:14 +00001039ifdef NO_INSTALL
1040install-local::
1041 $(Echo) Install circumvented with NO_INSTALL
1042uninstall-local::
1043 $(Echo) Uninstall circumvented with NO_INSTALL
1044else
Reid Spencerab3690b2004-12-13 07:38:07 +00001045DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1046
1047install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001048install-local:: $(DestModule)
1049
Misha Brukmanef5dc702009-01-08 02:11:55 +00001050$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001051 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001052 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001053
1054uninstall-local::
1055 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1056 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001057endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001058
1059endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001060endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001061
Reid Spencer3a561f52004-10-23 20:04:14 +00001062# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001063ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001064
Misha Brukmanf547a122009-08-17 15:31:24 +00001065# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001066LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001067ifdef LOADABLE_MODULE
Nick Lewyckya15dc032009-02-26 07:44:16 +00001068LibName.A := $(LibDir)/$(LIBRARYNAME).a
1069LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001070else
Reid Spencercc2d1e22004-10-30 09:19:36 +00001071LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewyckya15dc032009-02-26 07:44:16 +00001072LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1073endif
Reid Spencercc2d1e22004-10-30 09:19:36 +00001074LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001075LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001076
Reid Spencer3a561f52004-10-23 20:04:14 +00001077#---------------------------------------------------------
1078# Shared Library Targets:
1079# If the user asked for a shared library to be built
1080# with the SHARED_LIBRARY variable, then we provide
1081# targets for building them.
1082#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001083ifdef SHARED_LIBRARY
1084
Nick Lewyckya15dc032009-02-26 07:44:16 +00001085all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001086
Dan Gohmanb16b53b2010-04-15 20:54:25 +00001087ifdef EXPORTED_SYMBOL_FILE
1088$(LibName.SO): $(NativeExportsFile)
1089endif
1090
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001091ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001092ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001093SharedLibKindMessage := "Loadable Module"
Reid Spencer42fe4552006-08-07 23:12:15 +00001094else
1095SharedLibKindMessage := "Shared Library"
1096endif
Nick Lewyckya15dc032009-02-26 07:44:16 +00001097$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001098 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1099 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001100 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001101 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001102else
Nick Lewyckya15dc032009-02-26 07:44:16 +00001103$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001104 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001105 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001106endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001107
1108clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001109ifneq ($(strip $(LibName.SO)),)
1110 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001111endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001112
Reid Spencera2a31bf2007-02-06 18:53:14 +00001113ifdef NO_INSTALL
1114install-local::
1115 $(Echo) Install circumvented with NO_INSTALL
1116uninstall-local::
1117 $(Echo) Uninstall circumvented with NO_INSTALL
1118else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001119DestSharedLib = $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer4d71b662004-10-22 21:01:56 +00001120
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001121install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001122
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001123$(DestSharedLib): $(LibName.SO) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001124 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001125 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001126
Misha Brukmanef5dc702009-01-08 02:11:55 +00001127uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001128 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001129 -$(Verb) $(RM) -f $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001130endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001131endif
1132
Reid Spencer3a561f52004-10-23 20:04:14 +00001133#---------------------------------------------------------
1134# Bytecode Library Targets:
1135# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001136# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001137# targets for building them.
1138#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001139ifdef BYTECODE_LIBRARY
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001140ifeq ($(strip $(LLVMCC)),)
1141$(warning Bytecode libraries require LLVM capable compiler but none is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001142else
Reid Spencer4d71b662004-10-22 21:01:56 +00001143
Reid Spencer9a2f1372004-12-02 09:28:21 +00001144all-local:: $(LibName.BCA)
1145
1146ifdef EXPORTED_SYMBOL_FILE
Daniel Dunbar112257d2010-02-23 09:28:50 +00001147BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001148
Reid Spencer43eb96c2007-02-09 15:52:07 +00001149$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001150 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001151 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1152 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001153 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001154 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001155 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001156else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001157$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001158 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001159 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001160 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001161 $(Verb) $(LArchive) $@ $(ObjectsBC)
1162
Reid Spencer4d71b662004-10-22 21:01:56 +00001163endif
1164
Reid Spencer3a561f52004-10-23 20:04:14 +00001165clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001166ifneq ($(strip $(LibName.BCA)),)
1167 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001168endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001169
Reid Spencer8f094f32004-12-13 07:28:21 +00001170ifdef BYTECODE_DESTINATION
1171BytecodeDestDir := $(BYTECODE_DESTINATION)
1172else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001173BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001174endif
1175
Daniel Dunbard62031e2009-05-12 05:35:40 +00001176DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001177
Reid Spencer44cb1b32004-12-03 20:08:48 +00001178install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001179
Reid Spencera2a31bf2007-02-06 18:53:14 +00001180ifdef NO_INSTALL
1181install-local::
1182 $(Echo) Install circumvented with NO_INSTALL
1183uninstall-local::
1184 $(Echo) Uninstall circumvented with NO_INSTALL
1185else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001186install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001187
Mike Stumpb445d742009-02-12 23:45:11 +00001188$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001189 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001190 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001191
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001192uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001193 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001194 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001195endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001196endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001197endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001198
Reid Spencercc2d1e22004-10-30 09:19:36 +00001199#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001200# Library Targets:
1201# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1202# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001203#---------------------------------------------------------
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001204ifndef NO_BUILD_ARCHIVE
Chris Lattner89938082005-10-24 02:21:45 +00001205ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001206ifndef LOADABLE_MODULE
1207BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001208endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001209endif
Jeffrey Yasskinc9017192010-02-25 06:34:33 +00001210endif
Chris Lattner760da062003-03-14 20:25:22 +00001211
Reid Spencercc2d1e22004-10-30 09:19:36 +00001212#---------------------------------------------------------
1213# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001214# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001215# then we provide targets for building them.
1216#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001217ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001218
Reid Spencercc2d1e22004-10-30 09:19:36 +00001219all-local:: $(LibName.A)
1220
Reid Spencerf2ac1892004-12-16 07:36:08 +00001221$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001222 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001223 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001224 $(Verb) $(Archive) $@ $(ObjectsO)
1225 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001226
Reid Spencer3a561f52004-10-23 20:04:14 +00001227clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001228ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001229 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001230endif
1231
Reid Spencera2a31bf2007-02-06 18:53:14 +00001232ifdef NO_INSTALL
1233install-local::
1234 $(Echo) Install circumvented with NO_INSTALL
1235uninstall-local::
1236 $(Echo) Uninstall circumvented with NO_INSTALL
Daniel Dunbar24d9d972010-04-30 20:04:53 +00001237else ifdef NO_INSTALL_ARCHIVES
1238install-local::
1239 $(Echo) Install circumvented with NO_INSTALL
1240uninstall-local::
1241 $(Echo) Uninstall circumvented with NO_INSTALL
Reid Spencera2a31bf2007-02-06 18:53:14 +00001242else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001243DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001244
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001245install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001246
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001247$(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001248 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001249 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001250 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001251
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001252uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001253 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001254 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001255endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001256endif
1257
1258# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001259endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001260
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001261###############################################################################
1262# Tool Build Rules: Build executable tool based on TOOLNAME option
1263###############################################################################
1264
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001265ifdef TOOLNAME
1266
Reid Spencercc2d1e22004-10-30 09:19:36 +00001267#---------------------------------------------------------
1268# Set up variables for building a tool.
1269#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001270TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001271ifdef EXAMPLE_TOOL
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001272ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001273else
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001274ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1275endif
1276
1277# TOOLALIAS is a name to symlink (or copy) the tool to.
1278ifdef TOOLALIAS
1279ifdef EXAMPLE_TOOL
1280ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1281else
1282ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1283endif
Reid Spencer815cbcf2004-11-18 10:03:46 +00001284endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001285
Reid Spencercc2d1e22004-10-30 09:19:36 +00001286#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001287# Prune Exports
1288#---------------------------------------------------------
1289
1290# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1291# not exporting all of the weak symbols from the binary. This reduces dyld
1292# startup time by 4x on darwin in some cases.
1293ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001294ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001295
1296# Tiger tools don't support this.
1297ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmane05f6092010-04-16 22:58:15 +00001298LD.Flags += -Wl,-exported_symbol,_main
Chris Lattner61863a32009-02-26 17:47:49 +00001299endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001300endif
Chris Lattner61863a32009-02-26 17:47:49 +00001301
Anton Korobeynikove55db742009-08-18 00:40:33 +00001302ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Nick Lewycky0d203662009-10-25 03:22:00 +00001303 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001304endif
1305endif
1306
1307
1308#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001309# Provide targets for building the tools
1310#---------------------------------------------------------
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001311all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001312
Reid Spencer3a561f52004-10-23 20:04:14 +00001313clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001314ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001315 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001316endif
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001317ifneq ($(strip $(ToolAliasBuildPath)),)
1318 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1319endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001320
Reid Spencer815cbcf2004-11-18 10:03:46 +00001321ifdef EXAMPLE_TOOL
1322$(ToolBuildPath): $(ExmplDir)/.dir
1323else
1324$(ToolBuildPath): $(ToolDir)/.dir
1325endif
1326
Chris Lattnera7868af2006-09-04 06:39:52 +00001327$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001328 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001329 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001330 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001331 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001332 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001333
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001334ifneq ($(strip $(ToolAliasBuildPath)),)
1335$(ToolAliasBuildPath): $(ToolBuildPath)
1336 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1337 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1338 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1339 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLNAME) \
1340 $(StripWarnMsg)
1341endif
1342
Reid Spencera2a31bf2007-02-06 18:53:14 +00001343ifdef NO_INSTALL
1344install-local::
1345 $(Echo) Install circumvented with NO_INSTALL
1346uninstall-local::
1347 $(Echo) Uninstall circumvented with NO_INSTALL
1348else
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001349DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001350
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001351install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001352
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00001353$(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001354 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001355 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001356
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001357uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001358 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001359 -$(Verb) $(RM) -f $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001360
1361# TOOLALIAS install.
1362ifdef TOOLALIAS
Chris Lattner97d7b102010-03-10 21:27:53 +00001363DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001364
1365install-local:: $(DestToolAlias)
1366
Daniel Dunbar8fcd4182010-04-30 20:47:09 +00001367$(DestToolAlias): $(DestTool)
Daniel Dunbarfd96b132009-11-19 00:14:53 +00001368 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1369 $(Verb) $(RM) -f $(DestToolAlias)
1370 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1371
1372uninstall-local::
1373 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1374 -$(Verb) $(RM) -f $(DestToolAlias)
1375endif
1376
Reid Spencera2a31bf2007-02-06 18:53:14 +00001377endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001378endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001379
Reid Spencercc2d1e22004-10-30 09:19:36 +00001380###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001381# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001382###############################################################################
1383
Duraid Madina197ab872006-02-15 03:23:26 +00001384# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001385ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001386 DISABLE_AUTO_DEPENDENCIES=1
1387endif
1388
Reid Spencercc2d1e22004-10-30 09:19:36 +00001389# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001390ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001391
Reid Spencercc2d1e22004-10-30 09:19:36 +00001392#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001393# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001394#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001395
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001396DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001397 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001398
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001399# If the build succeeded, move the dependency file over, otherwise
1400# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001401DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1402 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1403
Daniel Dunbar016f7652010-01-22 18:10:54 +00001404$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001405 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001406 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001407 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001408
Daniel Dunbar016f7652010-01-22 18:10:54 +00001409$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Chris Lattnerd92490f2006-06-21 20:58:03 +00001410 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001411 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001412 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001413
Daniel Dunbar016f7652010-01-22 18:10:54 +00001414$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
Chris Lattnerd92490f2006-06-21 20:58:03 +00001415 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001416 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001417 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001418
Reid Spencercc2d1e22004-10-30 09:19:36 +00001419#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001420# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001421#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001422
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001423BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1424 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1425
1426# If the build succeeded, move the dependency file over, otherwise
1427# remove it.
1428BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1429 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1430
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001431$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001432 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001433 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1434 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1435 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001436
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001437$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001438 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001439 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1440 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1441 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001442
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001443$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001444 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001445 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1446 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1447 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001448
Reid Spencercc2d1e22004-10-30 09:19:36 +00001449# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001450else
1451
Nick Lewyckya15dc032009-02-26 07:44:16 +00001452$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001453 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001454 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001455
Nick Lewyckya15dc032009-02-26 07:44:16 +00001456$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001457 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001458 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001459
Nick Lewyckya15dc032009-02-26 07:44:16 +00001460$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001461 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001462 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001463
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001464$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001465 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001466 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Reid Spencer4d71b662004-10-22 21:01:56 +00001467
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001468$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001469 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001470 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001471
Daniel Dunbar7cfbe252010-02-23 10:28:06 +00001472$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001473 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001474 $(BCCompile.C) $< -o $@ -S -emit-llvm
Brian Gaeke44909cf2003-12-10 00:26:28 +00001475
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001476endif
1477
Chris Lattner8eb12de2006-06-21 21:01:20 +00001478
1479## Rules for building preprocessed (.i/.ii) outputs.
1480$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1481 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1482 $(Verb) $(Preprocess.CXX) $< -o $@
1483
1484$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1485 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1486 $(Verb) $(Preprocess.CXX) $< -o $@
1487
Reid Spencer44136722006-12-10 04:56:38 +00001488$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001489 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1490 $(Verb) $(Preprocess.C) $< -o $@
1491
1492
1493$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1494 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001495 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001496
1497$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1498 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001499 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001500
1501$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1502 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001503 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001504
Reid Spencer8b2e1412006-11-17 03:32:33 +00001505
Chris Lattner89681112006-01-27 22:13:12 +00001506# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001507ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001508$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001509 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001510 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001511else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001512$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001513 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001514 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001515endif
1516
Chris Lattner89681112006-01-27 22:13:12 +00001517
Reid Spencercc2d1e22004-10-30 09:19:36 +00001518#---------------------------------------------------------
1519# Provide rule to build .bc files from .ll sources,
1520# regardless of dependencies
1521#---------------------------------------------------------
1522$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001523 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001524 $(Verb) $(LLVMAS) $< -f -o $@
1525
1526###############################################################################
1527# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1528###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001529
Reid Spencer4d71b662004-10-22 21:01:56 +00001530ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001531TABLEGEN_INC_FILES_COMMON = 1
1532endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001533
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001534ifdef LLVMC_BUILD_AUTOGENERATED_INC
1535TABLEGEN_INC_FILES_COMMON = 1
1536endif
1537
1538ifdef TABLEGEN_INC_FILES_COMMON
1539
Reid Spencercc2d1e22004-10-30 09:19:36 +00001540INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001541INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1542.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001543
Misha Brukmanef5dc702009-01-08 02:11:55 +00001544# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001545# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1546# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001547# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001548# dependencies of the .inc files are, unless the contents of the .inc file
1549# changes.
1550$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001551 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001552
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001553endif # TABLEGEN_INC_FILES_COMMON
1554
1555ifdef TARGET
1556
1557TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1558 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1559 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1560 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1561 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1562 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1563 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1564
Rafael Espindola075630a2009-03-10 17:58:54 +00001565# All of these files depend on tblgen and the .td files.
1566$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1567
Chris Lattner3c473472004-12-16 17:28:50 +00001568$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1569$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001570 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001571 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001572
Chris Lattner3c473472004-12-16 17:28:50 +00001573$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1574$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001575 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001576 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001577
Chris Lattner3c473472004-12-16 17:28:50 +00001578$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1579$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001580 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001581 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001582
Chris Lattner3c473472004-12-16 17:28:50 +00001583$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1584$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001585 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001586 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001587
Chris Lattner3c473472004-12-16 17:28:50 +00001588$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1589$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001590 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001591 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001592
Chris Lattner3c473472004-12-16 17:28:50 +00001593$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1594$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001595 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001596 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001597
Chris Lattner02a4f902004-12-16 17:34:04 +00001598$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1599$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1600 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001601 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001602
Daniel Dunbarc464e512009-07-13 18:35:35 +00001603$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1604$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1605 $(Echo) "Building $(<F) assembly matcher with tblgen"
1606 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1607
Chris Lattner3c473472004-12-16 17:28:50 +00001608$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1609$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001610 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001611 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001612
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001613$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1614$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001615 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001616 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001617
Daniel Dunbarf87ea4d2009-11-25 04:46:58 +00001618$(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1619$(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1620 $(Echo) "Building $(<F) disassembly tables with tblgen"
1621 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1622
Sean Callanan95fcebd2010-01-29 00:21:04 +00001623$(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1624$(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1625 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1626 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1627
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001628$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1629$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1630 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1631 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1632
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001633$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1634$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1635 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001636 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001637
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001638$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1639$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1640 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001641 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001642
Dale Johannesen49de9822009-02-05 01:49:45 +00001643$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001644$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1645 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesen49de9822009-02-05 01:49:45 +00001646 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1647
Johnny Chenb68a3ee2010-04-02 22:27:38 +00001648$(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1649 $(Echo) "Building $(<F) decoder tables with tblgen"
1650 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1651
1652
Reid Spencer3a561f52004-10-23 20:04:14 +00001653clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001654 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001655
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001656endif # TARGET
1657
1658ifdef LLVMC_BUILD_AUTOGENERATED_INC
1659
Mikhail Glushenkov4558f482009-04-21 19:46:10 +00001660LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1661 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001662
1663TDFiles := $(LLVMCPluginSrc) \
1664 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1665
1666$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1667 $(TBLGEN) $(TD_COMMON)
1668 $(Echo) "Building LLVMC configuration library with tblgen"
1669 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1670
1671endif # LLVMC_BUILD_AUTOGENERATED_INC
1672
Reid Spencercc2d1e22004-10-30 09:19:36 +00001673###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001674# OTHER RULES: Other rules needed
1675###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001676
Chris Lattner30440c62003-01-16 21:06:18 +00001677# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001678ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001679%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001680 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001681else
1682%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001683 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001684endif
Chris Lattner30440c62003-01-16 21:06:18 +00001685
John Criswell7f336952003-09-06 14:44:17 +00001686# This rules ensures that header files that are removed still have a rule for
1687# which they can be "generated." This allows make to ignore them and
1688# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001689%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001690%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001691
Reid Spencercc2d1e22004-10-30 09:19:36 +00001692# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001693# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001694# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001695clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001696ifneq ($(strip $(ObjRootDir)),)
1697 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001698endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001699 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001700ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001701 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001702endif
John Criswell7a73b802003-06-30 21:59:07 +00001703
Reid Spencer3d659492004-11-02 16:36:03 +00001704clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001705 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001706
Reid Spencer12d79512004-11-12 02:27:36 +00001707
Reid Spencer3a561f52004-10-23 20:04:14 +00001708###############################################################################
1709# DEPENDENCIES: Include the dependency files if we should
1710###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001711ifndef DISABLE_AUTO_DEPENDENCIES
1712
Reid Spencer3a561f52004-10-23 20:04:14 +00001713# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001714ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001715
Reid Spencer3a561f52004-10-23 20:04:14 +00001716# Get the list of dependency files
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001717DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1718DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1719
1720# Include bitcode dependency files if using bitcode libraries
1721ifdef BYTECODE_LIBRARY
1722DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1723endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001724
Reid Spencer491a6cd2007-07-23 08:20:46 +00001725-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001726
John Criswelld741bcf2003-08-12 18:51:51 +00001727endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001728
Misha Brukmanef5dc702009-01-08 02:11:55 +00001729endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001730
Reid Spencer151f8ba2004-10-25 08:27:37 +00001731###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001732# CHECK: Running the test suite
1733###############################################################################
1734
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001735check::
Reid Spencer11fde542005-01-16 02:20:54 +00001736 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1737 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001738 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001739 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001740 TESTSUITE=$(TESTSUITE) ; \
1741 else \
1742 $(EchoCmd) No Makefile in test directory ; \
1743 fi ; \
1744 else \
1745 $(EchoCmd) No test directory ; \
1746 fi
1747
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001748check-lit::
1749 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1750 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1751 $(EchoCmd) Running test suite ; \
1752 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1753 else \
1754 $(EchoCmd) No Makefile in test directory ; \
1755 fi ; \
1756 else \
1757 $(EchoCmd) No test directory ; \
1758 fi
1759
Daniel Dunbar34185792009-09-20 06:17:21 +00001760check-all::
1761 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1762 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1763 $(EchoCmd) Running test suite ; \
1764 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1765 else \
1766 $(EchoCmd) No Makefile in test directory ; \
1767 fi ; \
1768 else \
1769 $(EchoCmd) No test directory ; \
1770 fi
1771
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001772###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001773# UNITTESTS: Running the unittests test suite
1774###############################################################################
1775
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001776unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001777 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1778 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1779 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001780 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001781 else \
1782 $(EchoCmd) No Makefile in unittests directory ; \
1783 fi ; \
1784 else \
1785 $(EchoCmd) No unittests directory ; \
1786 fi
1787
1788###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001789# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001790###############################################################################
1791
Reid Spencere45ebfa2004-10-26 07:09:33 +00001792#------------------------------------------------------------------------
1793# Define distribution related variables
1794#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001795DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1796DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1797TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1798DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1799DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1800DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001801DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1802 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001803 Makefile.config.in configure autoconf
1804DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001805 $(PROJ_SRC_DIR)/*.h \
1806 $(PROJ_SRC_DIR)/*.td \
1807 $(PROJ_SRC_DIR)/*.def \
1808 $(PROJ_SRC_DIR)/*.ll \
1809 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001810DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001811DistSources = $(Sources) $(EXTRA_DIST)
1812DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001813
Reid Spencere45ebfa2004-10-26 07:09:33 +00001814#------------------------------------------------------------------------
1815# We MUST build distribution with OBJ_DIR != SRC_DIR
1816#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001817ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001818dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001819 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001820
Reid Spencere45ebfa2004-10-26 07:09:33 +00001821else
1822
Reid Spencere45ebfa2004-10-26 07:09:33 +00001823#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001824# Prevent attempt to run dist targets from anywhere but the top level
1825#------------------------------------------------------------------------
1826ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001827dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001828 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001829else
1830
1831#------------------------------------------------------------------------
1832# Provide the top level targets
1833#------------------------------------------------------------------------
1834
Reid Spencercc2d1e22004-10-30 09:19:36 +00001835dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001836
Reid Spencer345235ca2004-12-04 22:34:09 +00001837$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001838 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001839 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001840 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001841
Reid Spencercc2d1e22004-10-30 09:19:36 +00001842dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001843
Reid Spencer345235ca2004-12-04 22:34:09 +00001844$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001845 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001846 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001847 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001848
Reid Spencercc2d1e22004-10-30 09:19:36 +00001849dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001850
Reid Spencer345235ca2004-12-04 22:34:09 +00001851$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001852 $(Echo) Packing zipped distribution file.
1853 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00001854 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001855
Misha Brukmanef5dc702009-01-08 02:11:55 +00001856dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001857 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001858
Reid Spencerf8f57402005-01-28 19:52:32 +00001859DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00001860
Reid Spencer345235ca2004-12-04 22:34:09 +00001861dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001862 $(Echo) Checking distribution tar file.
1863 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001864 $(RM) -rf $(DistCheckDir) ; \
1865 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00001866 $(Verb) $(MKDIR) $(DistCheckDir)
1867 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001868 $(MKDIR) $(DistCheckDir)/build && \
1869 $(MKDIR) $(DistCheckDir)/install && \
1870 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1871 cd build && \
1872 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00001873 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00001874 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001875 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00001876 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001877 $(MAKE) install && \
1878 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001879 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001880 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001881
1882dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001883 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00001884 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1885 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001886
1887endif
1888
1889#------------------------------------------------------------------------
1890# Provide the recursive distdir target for building the distribution directory
1891#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00001892distdir: $(DistDir)/.makedistdir
1893$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001894 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001895 if test -d "$(DistDir)" ; then \
1896 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1897 exit 1 ; \
1898 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001899 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001900 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001901 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00001902 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001903 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00001904 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00001905 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00001906 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1907 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001908 for file in $(DistFiles) ; do \
1909 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00001910 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001911 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1912 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00001913 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001914 file=`echo "$$file" | \
1915 sed "s#^$$srcrootstrip/##"` \
1916 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001917 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00001918 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1919 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1920 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001921 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001922 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001923 fi ; \
1924 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001925 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1926 to_dir="$(DistDir)/$$dir"; \
1927 $(MKDIR) "$$to_dir" ; \
1928 else \
1929 to_dir="$(DistDir)"; \
1930 fi; \
1931 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1932 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001933 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001934 fi ; \
1935 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00001936 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1937 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001938 cd $(PROJ_SRC_DIR) ; \
1939 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1940 ( cd $$to_dir ; $(TAR) xf - ) ; \
1941 cd $(PROJ_OBJ_DIR) ; \
1942 else \
1943 cd $$from_dir ; \
1944 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1945 ( cd $$to_dir ; $(TAR) xf - ) ; \
1946 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001947 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001948 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001949 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001950 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001951 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001952 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00001953 $(EchoCmd) "===== WARNING: Distribution Source " \
1954 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001955 elif test "$(Verb)" != '@' ; then \
1956 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001957 fi; \
1958 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00001959 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001960 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001961 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001962 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00001963 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00001964 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001965 fi; \
1966 done
Reid Spencer345235ca2004-12-04 22:34:09 +00001967 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001968 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00001969 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1970 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00001971 $(MAKE) dist-hook ; \
1972 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1973 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1974 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1975 -o ! -type d ! -perm -444 -exec \
1976 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1977 || chmod -R a+r $(DistDir) ; \
1978 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00001979
Reid Spencercc2d1e22004-10-30 09:19:36 +00001980# This is invoked by distdir target, define it as a no-op to avoid errors if not
1981# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00001982dist-hook::
1983
Reid Spencere53e3972004-10-22 23:06:30 +00001984endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001985
1986###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00001987# TOP LEVEL - targets only to apply at the top level directory
1988###############################################################################
1989
1990ifeq ($(LEVEL),.)
1991
1992#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001993# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00001994#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00001995ifdef NO_INSTALL
1996install-local::
1997 $(Echo) Install circumvented with NO_INSTALL
1998uninstall-local::
1999 $(Echo) Uninstall circumvented with NO_INSTALL
2000else
Reid Spencere5487ba2004-10-24 07:53:21 +00002001install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002002 $(Echo) Installing include files
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002003 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002004 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00002005 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerc9480642009-01-02 07:16:45 +00002006 for hdr in `find . -type f '!' '(' -name '*~' \
Reid Spencer0522d8b2007-04-09 19:08:58 +00002007 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2008 grep -v .svn` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002009 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002010 if test \! -d "$$instdir" ; then \
2011 $(EchoCmd) Making install directory $$instdir ; \
2012 $(MKDIR) $$instdir ;\
2013 fi ; \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002014 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002015 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00002016 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002017ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00002018 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00002019 cd $(PROJ_OBJ_ROOT)/include && \
Reid Spencer443045a2005-12-23 22:27:56 +00002020 for hdr in `find . -type f -print | grep -v CVS` ; do \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002021 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00002022 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002023 fi
Reid Spencer443045a2005-12-23 22:27:56 +00002024endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002025
2026uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00002027 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00002028 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2029 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00002030 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00002031 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002032 -o -name '*.in' ')' -print ')' | \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002033 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002034 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00002035 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
Erick Tryzelaard4076cf2010-03-04 20:56:19 +00002036 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00002037 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00002038endif
Reid Spencere5487ba2004-10-24 07:53:21 +00002039endif
2040
Chris Lattner03840ac2007-04-14 23:35:45 +00002041check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002042 @echo searching for overlength lines in files: $(Sources)
2043 @echo
2044 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002045 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00002046
Anton Korobeynikovbed29462007-04-16 18:10:23 +00002047check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002048 @echo searching for tabs in files: $(Sources)
2049 @echo
2050 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00002051 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00002052
Reid Spencer6548bf12007-05-02 21:29:39 +00002053check-footprint:
2054 @ls -l $(LibDir) | awk '\
2055 BEGIN { sum = 0; } \
2056 { sum += $$5; } \
2057 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2058 @ls -l $(ToolDir) | awk '\
2059 BEGIN { sum = 0; } \
2060 { sum += $$5; } \
2061 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00002062#------------------------------------------------------------------------
2063# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00002064#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00002065printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00002066 $(Echo) "BuildMode : " '$(BuildMode)'
2067 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2068 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2069 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2070 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2071 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2072 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2073 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2074 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2075 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2076 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00002077 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00002078 $(Echo) "UserTargets : " '$(UserTargets)'
2079 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2080 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2081 $(Echo) "ObjDir : " '$(ObjDir)'
2082 $(Echo) "LibDir : " '$(LibDir)'
2083 $(Echo) "ToolDir : " '$(ToolDir)'
2084 $(Echo) "ExmplDir : " '$(ExmplDir)'
2085 $(Echo) "Sources : " '$(Sources)'
2086 $(Echo) "TDFiles : " '$(TDFiles)'
2087 $(Echo) "INCFiles : " '$(INCFiles)'
2088 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00002089 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00002090 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2091 $(Echo) "Compile.C : " '$(Compile.C)'
2092 $(Echo) "Archive : " '$(Archive)'
2093 $(Echo) "YaccFiles : " '$(YaccFiles)'
2094 $(Echo) "LexFiles : " '$(LexFiles)'
2095 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00002096 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00002097 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00002098 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2099 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00002100
2101###
2102# Debugging
2103
Daniel Dunbar3c898122009-03-06 22:23:25 +00002104# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002105# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002106make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002107 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))