blob: 33069184aa402dee6a64d4b811b0db91fd5f52c2 [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 :=
Chris Lattnerd63b9642006-05-24 23:02:40 +0000315# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
316# this can be overridden on the make command line.
Evan Chengb306e382009-04-20 22:16:40 +0000317ifndef OPTIMIZE_OPTION
Anton Korobeynikove55db742009-08-18 00:40:33 +0000318 ifneq ($(HOST_OS),MingW)
Evan Chengb306e382009-04-20 22:16:40 +0000319 OPTIMIZE_OPTION := -O3
320 else
321 OPTIMIZE_OPTION := -O2
322 endif
Reid Spencer48fdf912006-06-01 19:03:21 +0000323endif
Chris Lattnerd63b9642006-05-24 23:02:40 +0000324
David Greenedbefd0c2009-04-17 14:49:22 +0000325ifeq ($(ENABLE_OPTIMIZED),1)
326 BuildMode := Release
327 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
Anton Korobeynikove55db742009-08-18 00:40:33 +0000328 ifneq ($(HOST_OS),FreeBSD)
329 ifneq ($(HOST_OS),Darwin)
David Greenedbefd0c2009-04-17 14:49:22 +0000330 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000331 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000332 endif
333
334 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000335 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
336 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Anton Korobeynikove55db742009-08-18 00:40:33 +0000337 #ifeq ($(HOST_OS),Darwin)
Evan Chengb306e382009-04-20 22:16:40 +0000338 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
339 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000340 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
341 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
342 LD.Flags += $(OPTIMIZE_OPTION)
Jeffrey Yasskin7fd82e52009-09-27 17:47:29 +0000343 ifdef DEBUG_SYMBOLS
Jeffrey Yasskind4482922009-09-25 16:46:09 +0000344 BuildMode := $(BuildMode)+Debug
345 CXX.Flags += -g
346 C.Flags += -g
347 LD.Flags += -g
348 KEEP_SYMBOLS := 1
349 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000350else
351 BuildMode := Debug
352 CXX.Flags += -g
353 C.Flags += -g
354 LD.Flags += -g
355 KEEP_SYMBOLS := 1
356endif
357
358ifeq ($(ENABLE_PROFILING),1)
359 BuildMode := $(BuildMode)+Profile
360 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
361 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
362 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
363 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000364endif
365
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000366#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
367# CXX.Flags += -fvisibility-inlines-hidden
368#endif
369
Reid Spencer99655e12006-08-25 19:54:53 +0000370# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000371ifndef REQUIRES_EH
372 CXX.Flags += -fno-exceptions
373endif
Reid Spencer99655e12006-08-25 19:54:53 +0000374
Nicolas Geoffray8ed81412009-08-19 22:04:44 +0000375ifdef REQUIRES_FRAME_POINTER
376 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
377 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
378 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
379endif
380
Daniel Dunbarccb75c22009-09-11 15:47:24 +0000381# If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
382ifeq ($(REQUIRES_RTTI), 1)
Daniel Dunbard5b352b2009-09-11 15:45:13 +0000383 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
384 CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS))
Reid Spencer6548bf12007-05-02 21:29:39 +0000385endif
386
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000387ifdef ENABLE_COVERAGE
388 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000389 CXX.Flags += -ftest-coverage -fprofile-arcs
390 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000391endif
392
Reid Spencer854071c2006-04-10 16:46:04 +0000393# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
394# then disable assertions by defining the appropriate preprocessor symbols.
Reid Spencerf9f431c2006-04-09 23:41:14 +0000395ifdef DISABLE_ASSERTIONS
Duncan Sands74a057b2009-03-27 11:35:00 +0000396 # Indicate that assertions are turned off using a minus sign
397 BuildMode := $(BuildMode)-Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000398 CPP.Defines += -DNDEBUG
Reid Spencerf9f431c2006-04-09 23:41:14 +0000399else
Reid Spencer0a522b12007-07-10 07:19:53 +0000400 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000401endif
402
Misha Brukmanef5dc702009-01-08 02:11:55 +0000403# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
404# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000405# appropriate preprocessor symbols.
David Greenea696d242007-06-28 19:36:08 +0000406ifdef ENABLE_EXPENSIVE_CHECKS
407 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000408 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000409endif
410
Nick Lewyckya15dc032009-02-26 07:44:16 +0000411# LOADABLE_MODULE implies several other things so we force them to be
412# defined/on.
413ifdef LOADABLE_MODULE
414 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000415 LINK_LIBS_IN_SHARED := 1
416endif
417
418ifdef SHARED_LIBRARY
419 ENABLE_PIC := 1
420 PIC_FLAG = "(PIC)"
421endif
422
Reid Spencer89b0d992006-12-16 22:07:52 +0000423ifeq ($(ENABLE_PIC),1)
Anton Korobeynikove55db742009-08-18 00:40:33 +0000424 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000425 # Nothing. Win32 defaults to PIC and warns when given -fPIC
426 else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000427 ifeq ($(HOST_OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000428 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000429 CXX.Flags += -fno-common
430 C.Flags += -fno-common
431 else
432 # Linux and others; pass -fPIC
433 CXX.Flags += -fPIC
434 C.Flags += -fPIC
435 endif
436 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000437else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000438 ifeq ($(HOST_OS),Darwin)
Mike Stump3fbdbd92009-05-08 23:08:58 +0000439 CXX.Flags += -mdynamic-no-pic
440 C.Flags += -mdynamic-no-pic
441 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000442endif
443
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000444CXX.Flags += -Woverloaded-virtual
David Greenea696d242007-06-28 19:36:08 +0000445CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000446AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000447
Chris Lattner16620fc2006-07-27 18:19:51 +0000448# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000449ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000450 CXX.Flags += -mieee
451 CPP.BaseFlags += -mieee
452ifeq ($(ENABLE_PIC),0)
453 CXX.Flags += -fPIC
454 CPP.BaseFlags += -fPIC
455endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000456endif
457
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000458ifeq ($(ARCH),Alpha)
459 LD.Flags += -Wl,--no-relax
460endif
461
Anton Korobeynikove55db742009-08-18 00:40:33 +0000462ifeq ($(HOST_OS),MingW)
Mike Stumpfe095f32009-05-04 18:40:41 +0000463 ifeq ($(LLVM_CROSS_COMPILING),1)
464 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
465 ifdef TOOLNAME
466 LD.Flags += -Wl,--allow-multiple-definition
467 endif
468 endif
469endif
470
Jay Foad3b001622009-05-15 18:13:31 +0000471ifdef ENABLE_EXPENSIVE_CHECKS
472 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
473 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
474 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
Daniel Dunbaraa60dbf2009-09-03 08:41:19 +0000475 CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS))
Jay Foad3b001622009-05-15 18:13:31 +0000476endif
477
Reid Spencer3a561f52004-10-23 20:04:14 +0000478#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000479# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000480#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000481TargetMode :=
482ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000483 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000484endif
485
486ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000487ObjDir := $(ObjRootDir)
488LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
489ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
490ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
491LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
492LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
493LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Reid Spencer2f138e72004-12-22 05:57:21 +0000494CFERuntimeLibDir := $(LLVMGCCDIR)/lib
John Criswell7a73b802003-06-30 21:59:07 +0000495
Reid Spencer3a561f52004-10-23 20:04:14 +0000496#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000497# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000498#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000499EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
500Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000501ifndef LLVMAS
502LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
503endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000504ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000505 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000506 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000507 else
508 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
509 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000510endif
Misha Brukmanef5dc702009-01-08 02:11:55 +0000511LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencer43eb96c2007-02-09 15:52:07 +0000512ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000513LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000514endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000515ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000516LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
517endif
518ifndef LLI
519LLI := $(LLVMToolDir)/lli$(EXEEXT)
520endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000521ifndef LLC
522LLC := $(LLVMToolDir)/llc$(EXEEXT)
523endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000524ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000525LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000526endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000527ifndef LBUGPOINT
528LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
529endif
Reid Spencere46687c2006-12-03 21:01:45 +0000530ifndef LUPGRADE
531LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
532endif
533ifeq ($(LLVMGCC_MAJVERS),3)
Reid Spencer44136722006-12-10 04:56:38 +0000534LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
535LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
Reid Spencere46687c2006-12-03 21:01:45 +0000536else
Reid Spencer44136722006-12-10 04:56:38 +0000537LLVMGCCWITHPATH := $(LLVMGCC)
538LLVMGXXWITHPATH := $(LLVMGXX)
Reid Spencere46687c2006-12-03 21:01:45 +0000539endif
540
Reid Spencer3a561f52004-10-23 20:04:14 +0000541#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000542# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000543#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000544
Anton Korobeynikove55db742009-08-18 00:40:33 +0000545ifeq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000546 DARWIN_VERSION := `sw_vers -productVersion`
547 # Strip a number like 10.4.7 to 10.4
548 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
549 # Get "4" out of 10.4 for later pieces in the makefile.
550 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000551
Julien Lerougea6b37c092009-03-27 18:18:00 +0000552 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
Evan Chenga5e225e2009-09-08 18:52:20 +0000553 -dynamiclib
554 ifneq ($(ARCH),ARM)
555 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
556 endif
Scott Michel87af5f02009-03-12 21:03:53 +0000557else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000558 ifeq ($(HOST_OS),Cygwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000559 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
Mikhail Glushenkov2373c992009-07-03 03:52:47 +0000560 -Wl,--enable-auto-import -Wl,--enable-auto-image-base
Scott Michel87af5f02009-03-12 21:03:53 +0000561 else
562 SharedLinkOptions=-shared
563 endif
564endif
565
Anton Korobeynikove55db742009-08-18 00:40:33 +0000566ifeq ($(TARGET_OS),Darwin)
Evan Chenga5e225e2009-09-08 18:52:20 +0000567 ifneq ($(ARCH),ARM)
568 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Jim Grosbach43301202009-10-30 21:33:05 +0000569 else
570 TargetCommonOpts += -marm
Evan Chenga5e225e2009-09-08 18:52:20 +0000571 endif
Anton Korobeynikove55db742009-08-18 00:40:33 +0000572endif
573
Nick Lewyckya15dc032009-02-26 07:44:16 +0000574# Adjust LD.Flags depending on the kind of library that is to be built. Note
575# that if LOADABLE_MODULE is specified then the resulting shared library can
576# be opened with dlopen.
Reid Spencer42fe4552006-08-07 23:12:15 +0000577ifdef LOADABLE_MODULE
Reid Spencer42fe4552006-08-07 23:12:15 +0000578 LD.Flags += -module
579endif
580
Reid Spencer492c2932005-01-11 04:31:07 +0000581ifdef SHARED_LIBRARY
Scott Michel87af5f02009-03-12 21:03:53 +0000582ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky1dace482009-03-03 04:55:15 +0000583 LD.Flags += $(RPATH) -Wl,$(LibDir)
John Criswell82f4a5a2003-07-31 20:58:51 +0000584endif
Scott Michel87af5f02009-03-12 21:03:53 +0000585endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000586
Reid Spencercceed9f2004-11-08 17:32:12 +0000587ifdef TOOL_VERBOSE
588 C.Flags += -v
589 CXX.Flags += -v
590 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000591 VERBOSE := 1
592endif
593
Reid Spencer3a561f52004-10-23 20:04:14 +0000594# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000595ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000596 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000597 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000598 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000599else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000600 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000601endif
602
Vikram S. Advefeeae582002-09-18 11:55:13 +0000603# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000604ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000605 Strip := $(PLATFORMSTRIPOPTS)
606 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000607 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000608endif
609
Reid Spencer3a561f52004-10-23 20:04:14 +0000610# Adjust linker flags for building an executable
Anton Korobeynikove55db742009-08-18 00:40:33 +0000611ifneq ($(HOST_OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000612ifneq ($(DARWIN_MAJVERS),4)
Reid Spencer4d71b662004-10-22 21:01:56 +0000613ifdef TOOLNAME
Reid Spencer815cbcf2004-11-18 10:03:46 +0000614ifdef EXAMPLE_TOOL
Nick Lewycky34d74552009-03-07 22:17:05 +0000615 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
Reid Spencer815cbcf2004-11-18 10:03:46 +0000616else
Nick Lewycky34d74552009-03-07 22:17:05 +0000617 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000618endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000619endif
Nick Lewyckya15dc032009-02-26 07:44:16 +0000620endif
Nick Lewyckya15dc032009-02-26 07:44:16 +0000621endif
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000622
Reid Spencer3a561f52004-10-23 20:04:14 +0000623#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000624# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000625#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000626
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000627ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000628CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000629endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000630CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
631 $(EXTRA_OPTIONS)
Reid Spencer4d71b662004-10-22 21:01:56 +0000632
Anton Korobeynikove55db742009-08-18 00:40:33 +0000633ifeq ($(HOST_OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000634 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000635endif
636
Chris Lattner73faa392006-05-30 16:38:06 +0000637# If we are building a universal binary on Mac OS/X, pass extra options. This
638# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000639# apps.
640#
641# The following can be optionally specified:
642# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
643# For Mac OS/X 10.4 Intel machines, the traditional one is:
644# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
645# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
646# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
647# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000648ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000649 ifndef UNIVERSAL_ARCH
650 UNIVERSAL_ARCH := i386 ppc
651 endif
652 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
653 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000654 ifdef UNIVERSAL_SDK_PATH
655 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000656 endif
657
658 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000659 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000660else
Anton Korobeynikove55db742009-08-18 00:40:33 +0000661 ifeq ($(TARGET_OS),Darwin)
Bill Wendlinga0833352009-03-12 04:10:09 +0000662 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000663 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000664 else
665 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000666 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000667 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000668 endif
669 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000670endif
671
Anton Korobeynikove55db742009-08-18 00:40:33 +0000672ifeq ($(HOST_OS),SunOS)
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000673CPP.BaseFlags += -include llvm/System/Solaris.h
674endif
675
Edward O'Callaghandf199f12009-10-14 05:55:03 +0000676ifeq ($(HOST_OS),AuroraUX)
677CPP.BaseFlags += -include llvm/System/Solaris.h
678endif # !HOST_OS - AuroraUX.
679
Misha Brukmanef5dc702009-01-08 02:11:55 +0000680LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman63f97202008-10-17 01:33:43 +0000681CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000682# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000683CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
684 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000685 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
686 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
687 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000688
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000689ifeq ($(BUILD_COMPONENT), 1)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000690 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000691 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000692 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
693 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000694 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000695 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000696 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000697 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
698 $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000699 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000700else
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000701 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000702 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000703 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000704 $(TargetCommonOpts) $(CompileCommonOpts) -c
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000705 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
Chris Lattner6be92662009-06-16 23:00:42 +0000706 $(CompileCommonOpts) $(CXX.Flags) -E
Eric Christopher2a80dc72009-08-18 18:07:35 +0000707 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000708 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000709endif
710
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000711BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CFLAGS) \
712 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000713 $(TargetCommonOpts) $(CompileCommonOpts)
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000714Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000715 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000716
Eric Christopher2bd4bb02009-08-18 03:23:40 +0000717BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
718 $(CPPFLAGS) \
Evan Chenga38ff642009-03-23 03:45:56 +0000719 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000720
Misha Brukmanef5dc702009-01-08 02:11:55 +0000721ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
722ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000723DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000724
725# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
726# paths. In this case, the SYSPATH function (defined in
727# Makefile.config) transforms Unix paths into Windows paths.
728TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000729 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000730 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
731 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
732
Reid Spencercc2d1e22004-10-30 09:19:36 +0000733Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000734LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000735ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000736Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000737else
Reid Spencer3a561f52004-10-23 20:04:14 +0000738Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000739endif
740
Chris Lattner00950542001-06-06 20:29:01 +0000741#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000742# Get the list of source files and compute object file
743# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000744#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000745
746ifndef SOURCES
747 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000748 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000749else
Chris Lattner89681112006-01-27 22:13:12 +0000750 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000751endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000752
Chris Lattner89681112006-01-27 22:13:12 +0000753ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000754Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000755endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000756
Chris Lattner89681112006-01-27 22:13:12 +0000757BaseNameSources := $(sort $(basename $(Sources)))
758
759ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000760ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
761
Reid Spencer3a561f52004-10-23 20:04:14 +0000762###############################################################################
763# DIRECTORIES: Handle recursive descent of directory structure
764###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000765
Chris Lattner00950542001-06-06 20:29:01 +0000766#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000767# Provide rules to make install dirs. This must be early
768# in the file so they get built before dependencies
769#---------------------------------------------------------
770
Mike Stumpb445d742009-02-12 23:45:11 +0000771$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000772 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000773
Reid Spencercc2d1e22004-10-30 09:19:36 +0000774# To create other directories, as needed, and timestamp their creation
775%/.dir:
776 $(Verb) $(MKDIR) $* > /dev/null
Reid Spencerfbbf3072004-11-29 05:00:33 +0000777 $(Verb) $(DATE) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000778
Reid Spencer815cbcf2004-11-18 10:03:46 +0000779.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
780.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000781
782#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000783# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000784#---------------------------------------------------------
785
Misha Brukmanef5dc702009-01-08 02:11:55 +0000786SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000787ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000788SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000789
790ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000791$(RecursiveTargets)::
792 $(Verb) for dir in $(DIRS); do \
Reid Spencer4d71b662004-10-22 21:01:56 +0000793 if [ ! -f $$dir/Makefile ]; then \
794 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000795 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000796 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000797 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000798 done
Chris Lattner82033602006-07-26 20:22:26 +0000799else
800$(RecursiveTargets)::
801 $(Verb) for dir in $(DIRS); do \
802 ($(MAKE) -C $$dir $@ ) || exit 1; \
803 done
804endif
805
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000806endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000807
Reid Spencer3a561f52004-10-23 20:04:14 +0000808#---------------------------------------------------------
809# Handle the EXPERIMENTAL_DIRS options ensuring success
810# after each directory is built.
811#---------------------------------------------------------
812ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000813$(RecursiveTargets)::
814 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Reid Spencer3a561f52004-10-23 20:04:14 +0000815 if [ ! -f $$dir/Makefile ]; then \
816 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000817 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000818 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000819 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000820 done
821endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000822
Reid Spencer25e8a702005-12-21 23:17:06 +0000823#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000824# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
825#-----------------------------------------------------------
826ifdef OPTIONAL_PARALLEL_DIRS
827 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
828endif
829
830#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000831# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000832#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000833ifdef PARALLEL_DIRS
834
Reid Spencercc2d1e22004-10-30 09:19:36 +0000835SubDirs += $(PARALLEL_DIRS)
836
Reid Spencer44cb1b32004-12-03 20:08:48 +0000837# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000838all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
839clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000840clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000841install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000842uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000843install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Daniel Dunbar7f068f42009-09-13 22:39:27 +0000844unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000845
Reid Spencer345235ca2004-12-04 22:34:09 +0000846ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000847
Reid Spencer345235ca2004-12-04 22:34:09 +0000848$(ParallelTargets) :
Reid Spencercc2d1e22004-10-30 09:19:36 +0000849 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000850 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000851 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000852 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000853 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000854endif
855
Reid Spencer3a561f52004-10-23 20:04:14 +0000856#---------------------------------------------------------
857# Handle the OPTIONAL_DIRS options for directores that may
858# or may not exist.
859#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000860ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000861
Reid Spencercc2d1e22004-10-30 09:19:36 +0000862SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000863
Chris Lattner82033602006-07-26 20:22:26 +0000864ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000865$(RecursiveTargets)::
866 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000867 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Reid Spencer4d71b662004-10-22 21:01:56 +0000868 if [ ! -f $$dir/Makefile ]; then \
869 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000870 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000871 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000872 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000873 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000874 done
Chris Lattner82033602006-07-26 20:22:26 +0000875else
876$(RecursiveTargets)::
877 $(Verb) for dir in $(OPTIONAL_DIRS); do \
878 ($(MAKE) -C$$dir $@ ) || exit 1; \
879 done
880endif
John Criswell2a6530f2003-06-27 16:58:44 +0000881endif
882
Reid Spencerfc945082004-08-20 09:20:05 +0000883#---------------------------------------------------------
884# Handle the CONFIG_FILES options
885#---------------------------------------------------------
886ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000887
Reid Spencera2a31bf2007-02-06 18:53:14 +0000888ifdef NO_INSTALL
889install-local::
890 $(Echo) Install circumvented with NO_INSTALL
891uninstall-local::
892 $(Echo) UnInstall circumvented with NO_INSTALL
893else
Reid Spencer11fde542005-01-16 02:20:54 +0000894install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
895 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000896 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000897 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Reid Spencer4a0aaea2005-02-24 03:56:32 +0000898 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000899 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Reid Spencer4a0aaea2005-02-24 03:56:32 +0000900 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000901 else \
902 $(ECHO) Error: cannot find config file $${file}. ; \
903 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000904 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000905
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000906uninstall-local::
Reid Spencer11fde542005-01-16 02:20:54 +0000907 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000908 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000909 $(RM) -f $(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000910 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000911endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000912
Reid Spencerfc945082004-08-20 09:20:05 +0000913endif
914
Reid Spencer3a561f52004-10-23 20:04:14 +0000915###############################################################################
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000916# Set up variables for building libararies
917###############################################################################
918
919#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000920# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000921# libraries needed when linking. There are "Proj" libs
922# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000923# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000924#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000925
Chris Lattneref0d0f12006-09-04 04:47:21 +0000926ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000927ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
928ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000929ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
930ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
931endif
932
933ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000934LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
935LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000936LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000937LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000938endif
939
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000940ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000941ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000942
943# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
944# clean in tools, then do a make in tools (instead of at the top level).
945$(LLVM_CONFIG):
946 @echo "*** llvm-config doesn't exist - rebuilding it."
947 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000948
Chris Lattner0a1db822006-09-04 05:23:20 +0000949$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
950
Mikhail Glushenkov533384e2009-03-03 10:03:27 +0000951LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
952LLVMLibsPaths += $(LLVM_CONFIG) \
Misha Brukmanf547a122009-08-17 15:31:24 +0000953 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000954endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000955endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000956
957###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000958# Library Build Rules: Four ways to build a library
959###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000960
Reid Spencer7980ea42004-12-05 05:17:22 +0000961#---------------------------------------------------------
962# Bytecode Module Targets:
963# If the user set MODULE_NAME then they want to build a
964# bytecode module from the sources. We compile all the
965# sources and link it together into a single bytecode
966# module.
967#---------------------------------------------------------
968
969ifdef MODULE_NAME
Reid Spencer9a8398e2005-02-14 21:54:08 +0000970ifeq ($(strip $(LLVMGCC)),)
Reid Spencer0d255bd2005-05-13 18:32:54 +0000971$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +0000972else
Reid Spencer7980ea42004-12-05 05:17:22 +0000973
974Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenhartha7b33db2008-02-25 22:41:55 +0000975LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +0000976
Reid Spencer7980ea42004-12-05 05:17:22 +0000977
978ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +0000979LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +0000980endif
981
Reid Spencer43eb96c2007-02-09 15:52:07 +0000982$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +0000983 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +0000984 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
985
986all-local:: $(Module)
987
988clean-local::
989ifneq ($(strip $(Module)),)
990 -$(Verb) $(RM) -f $(Module)
991endif
992
Reid Spencerab3690b2004-12-13 07:38:07 +0000993ifdef BYTECODE_DESTINATION
994ModuleDestDir := $(BYTECODE_DESTINATION)
995else
Reid Spencer11fde542005-01-16 02:20:54 +0000996ModuleDestDir := $(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +0000997endif
Reid Spencer7980ea42004-12-05 05:17:22 +0000998
Reid Spencera2a31bf2007-02-06 18:53:14 +0000999ifdef NO_INSTALL
1000install-local::
1001 $(Echo) Install circumvented with NO_INSTALL
1002uninstall-local::
1003 $(Echo) Uninstall circumvented with NO_INSTALL
1004else
Reid Spencerab3690b2004-12-13 07:38:07 +00001005DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1006
1007install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001008install-local:: $(DestModule)
1009
Misha Brukmanef5dc702009-01-08 02:11:55 +00001010$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +00001011 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +00001012 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +00001013
1014uninstall-local::
1015 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1016 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001017endif
Reid Spencer7980ea42004-12-05 05:17:22 +00001018
1019endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001020endif
Brian Gaeke8abff792004-01-22 22:53:48 +00001021
Reid Spencer3a561f52004-10-23 20:04:14 +00001022# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +00001023ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +00001024
Misha Brukmanf547a122009-08-17 15:31:24 +00001025# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001026LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +00001027ifdef LOADABLE_MODULE
Nick Lewyckya15dc032009-02-26 07:44:16 +00001028LibName.A := $(LibDir)/$(LIBRARYNAME).a
1029LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +00001030else
Reid Spencercc2d1e22004-10-30 09:19:36 +00001031LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewyckya15dc032009-02-26 07:44:16 +00001032LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1033endif
Reid Spencercc2d1e22004-10-30 09:19:36 +00001034LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +00001035LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +00001036
Reid Spencer3a561f52004-10-23 20:04:14 +00001037#---------------------------------------------------------
1038# Shared Library Targets:
1039# If the user asked for a shared library to be built
1040# with the SHARED_LIBRARY variable, then we provide
1041# targets for building them.
1042#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001043ifdef SHARED_LIBRARY
1044
Nick Lewyckya15dc032009-02-26 07:44:16 +00001045all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +00001046
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001047ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +00001048ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +00001049SharedLibKindMessage := "Loadable Module"
Reid Spencer42fe4552006-08-07 23:12:15 +00001050else
1051SharedLibKindMessage := "Shared Library"
1052endif
Nick Lewyckya15dc032009-02-26 07:44:16 +00001053$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +00001054 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1055 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001056 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +00001057 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001058else
Nick Lewyckya15dc032009-02-26 07:44:16 +00001059$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001060 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001061 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +00001062endif
Reid Spencer3a561f52004-10-23 20:04:14 +00001063
1064clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +00001065ifneq ($(strip $(LibName.SO)),)
1066 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +00001067endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001068
Reid Spencera2a31bf2007-02-06 18:53:14 +00001069ifdef NO_INSTALL
1070install-local::
1071 $(Echo) Install circumvented with NO_INSTALL
1072uninstall-local::
1073 $(Echo) Uninstall circumvented with NO_INSTALL
1074else
Reid Spencer11fde542005-01-16 02:20:54 +00001075DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer4d71b662004-10-22 21:01:56 +00001076
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001077install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001078
Nick Lewyckya15dc032009-02-26 07:44:16 +00001079$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001080 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001081 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001082
Misha Brukmanef5dc702009-01-08 02:11:55 +00001083uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001084 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Reid Spencer11fde542005-01-16 02:20:54 +00001085 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001086endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001087endif
1088
Reid Spencer3a561f52004-10-23 20:04:14 +00001089#---------------------------------------------------------
1090# Bytecode Library Targets:
1091# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001092# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001093# targets for building them.
1094#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001095ifdef BYTECODE_LIBRARY
Reid Spencer9a8398e2005-02-14 21:54:08 +00001096ifeq ($(strip $(LLVMGCC)),)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001097$(warning Bytecode libraries require llvm-gcc which could not be found ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001098else
Reid Spencer4d71b662004-10-22 21:01:56 +00001099
Reid Spencer9a2f1372004-12-02 09:28:21 +00001100all-local:: $(LibName.BCA)
1101
1102ifdef EXPORTED_SYMBOL_FILE
Reid Spencer43eb96c2007-02-09 15:52:07 +00001103BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
Chris Lattner73faa392006-05-30 16:38:06 +00001104 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001105
Reid Spencer43eb96c2007-02-09 15:52:07 +00001106$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001107 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001108 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1109 "(internalize)"
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001110 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001111 $(Verb) $(RM) -f $@
Daniel Dunbare5f1b2f2009-08-28 16:14:46 +00001112 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
Reid Spencer4d71b662004-10-22 21:01:56 +00001113else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001114$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001115 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001116 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001117 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001118 $(Verb) $(LArchive) $@ $(ObjectsBC)
1119
Reid Spencer4d71b662004-10-22 21:01:56 +00001120endif
1121
Reid Spencer3a561f52004-10-23 20:04:14 +00001122clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001123ifneq ($(strip $(LibName.BCA)),)
1124 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001125endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001126
Reid Spencer8f094f32004-12-13 07:28:21 +00001127ifdef BYTECODE_DESTINATION
1128BytecodeDestDir := $(BYTECODE_DESTINATION)
1129else
Reid Spencer11fde542005-01-16 02:20:54 +00001130BytecodeDestDir := $(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001131endif
1132
Daniel Dunbard62031e2009-05-12 05:35:40 +00001133DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001134
Reid Spencer44cb1b32004-12-03 20:08:48 +00001135install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001136
Reid Spencera2a31bf2007-02-06 18:53:14 +00001137ifdef NO_INSTALL
1138install-local::
1139 $(Echo) Install circumvented with NO_INSTALL
1140uninstall-local::
1141 $(Echo) Uninstall circumvented with NO_INSTALL
1142else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001143install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001144
Mike Stumpb445d742009-02-12 23:45:11 +00001145$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001146 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001147 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001148
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001149uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001150 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001151 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001152endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001153endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001154endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001155
Reid Spencercc2d1e22004-10-30 09:19:36 +00001156#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001157# Library Targets:
1158# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1159# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001160#---------------------------------------------------------
Chris Lattner89938082005-10-24 02:21:45 +00001161ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001162ifndef LOADABLE_MODULE
1163BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001164endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001165endif
Chris Lattner760da062003-03-14 20:25:22 +00001166
Reid Spencercc2d1e22004-10-30 09:19:36 +00001167#---------------------------------------------------------
1168# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001169# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001170# then we provide targets for building them.
1171#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001172ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001173
Reid Spencercc2d1e22004-10-30 09:19:36 +00001174all-local:: $(LibName.A)
1175
Reid Spencerf2ac1892004-12-16 07:36:08 +00001176$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001177 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001178 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001179 $(Verb) $(Archive) $@ $(ObjectsO)
1180 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001181
Reid Spencer3a561f52004-10-23 20:04:14 +00001182clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001183ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001184 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001185endif
1186
Reid Spencera2a31bf2007-02-06 18:53:14 +00001187ifdef NO_INSTALL
1188install-local::
1189 $(Echo) Install circumvented with NO_INSTALL
1190uninstall-local::
1191 $(Echo) Uninstall circumvented with NO_INSTALL
1192else
Reid Spencer11fde542005-01-16 02:20:54 +00001193DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001194
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001195install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001196
Mike Stumpb445d742009-02-12 23:45:11 +00001197$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001198 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencer11fde542005-01-16 02:20:54 +00001199 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001200 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001201
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001202uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001203 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001204 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001205endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001206endif
1207
1208# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001209endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001210
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001211###############################################################################
1212# Tool Build Rules: Build executable tool based on TOOLNAME option
1213###############################################################################
1214
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001215ifdef TOOLNAME
1216
Reid Spencercc2d1e22004-10-30 09:19:36 +00001217#---------------------------------------------------------
1218# Set up variables for building a tool.
1219#---------------------------------------------------------
Reid Spencer815cbcf2004-11-18 10:03:46 +00001220ifdef EXAMPLE_TOOL
Reid Spencer5da2d082005-05-19 21:03:11 +00001221ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001222else
Reid Spencer5da2d082005-05-19 21:03:11 +00001223ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001224endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001225
Reid Spencercc2d1e22004-10-30 09:19:36 +00001226#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001227# Prune Exports
1228#---------------------------------------------------------
1229
1230# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1231# not exporting all of the weak symbols from the binary. This reduces dyld
1232# startup time by 4x on darwin in some cases.
1233ifdef TOOL_NO_EXPORTS
Anton Korobeynikove55db742009-08-18 00:40:33 +00001234ifeq ($(HOST_OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001235
1236# Tiger tools don't support this.
1237ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner61863a32009-02-26 17:47:49 +00001238LD.Flags += -Wl,-exported_symbol -Wl,_main
1239endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001240endif
Chris Lattner61863a32009-02-26 17:47:49 +00001241
Anton Korobeynikove55db742009-08-18 00:40:33 +00001242ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
Nick Lewycky0d203662009-10-25 03:22:00 +00001243 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001244endif
1245endif
1246
1247
1248#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001249# Provide targets for building the tools
1250#---------------------------------------------------------
1251all-local:: $(ToolBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001252
Reid Spencer3a561f52004-10-23 20:04:14 +00001253clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001254ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001255 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001256endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001257
Reid Spencer815cbcf2004-11-18 10:03:46 +00001258ifdef EXAMPLE_TOOL
1259$(ToolBuildPath): $(ExmplDir)/.dir
1260else
1261$(ToolBuildPath): $(ToolDir)/.dir
1262endif
1263
Chris Lattnera7868af2006-09-04 06:39:52 +00001264$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001265 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001266 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001267 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001268 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001269 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001270
Reid Spencera2a31bf2007-02-06 18:53:14 +00001271ifdef NO_INSTALL
1272install-local::
1273 $(Echo) Install circumvented with NO_INSTALL
1274uninstall-local::
1275 $(Echo) Uninstall circumvented with NO_INSTALL
1276else
Anton Korobeynikov0ab94a02009-08-05 09:37:43 +00001277DestTool = $(PROJ_bindir)/$(TOOLNAME)$(EXEEXT)
Reid Spencere5487ba2004-10-24 07:53:21 +00001278
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001279install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001280
Mike Stumpb445d742009-02-12 23:45:11 +00001281$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001282 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001283 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001284
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001285uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001286 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001287 -$(Verb) $(RM) -f $(DestTool)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001288endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001289endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001290
Reid Spencercc2d1e22004-10-30 09:19:36 +00001291###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001292# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001293###############################################################################
1294
Duraid Madina197ab872006-02-15 03:23:26 +00001295# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
Anton Korobeynikove55db742009-08-18 00:40:33 +00001296ifeq ($(HOST_OS),HP-UX)
Duraid Madina197ab872006-02-15 03:23:26 +00001297 DISABLE_AUTO_DEPENDENCIES=1
1298endif
1299
Reid Spencercc2d1e22004-10-30 09:19:36 +00001300# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001301ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001302
Reid Spencercc2d1e22004-10-30 09:19:36 +00001303#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001304# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001305#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001306
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001307DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001308 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001309
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001310# If the build succeeded, move the dependency file over, otherwise
1311# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001312DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1313 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1314
Nick Lewyckya15dc032009-02-26 07:44:16 +00001315$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Jakob Stoklund Olesen52020782009-10-04 17:54:36 +00001316 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001317 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001318 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001319
Nick Lewyckya15dc032009-02-26 07:44:16 +00001320$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001321 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001322 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001323 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001324
Nick Lewyckya15dc032009-02-26 07:44:16 +00001325$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001326 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001327 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001328 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001329
Reid Spencercc2d1e22004-10-30 09:19:36 +00001330#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001331# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001332#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001333
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001334BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1335 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1336
1337# If the build succeeded, move the dependency file over, otherwise
1338# remove it.
1339BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1340 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1341
Reid Spencer129f0042006-12-30 16:31:02 +00001342$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001343 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001344 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1345 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1346 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001347
Reid Spencer129f0042006-12-30 16:31:02 +00001348$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001349 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001350 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1351 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1352 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001353
Reid Spencer129f0042006-12-30 16:31:02 +00001354$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001355 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001356 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1357 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1358 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001359
Reid Spencercc2d1e22004-10-30 09:19:36 +00001360# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001361else
1362
Nick Lewyckya15dc032009-02-26 07:44:16 +00001363$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001364 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001365 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001366
Nick Lewyckya15dc032009-02-26 07:44:16 +00001367$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001368 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001369 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001370
Nick Lewyckya15dc032009-02-26 07:44:16 +00001371$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001372 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001373 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001374
Reid Spencer129f0042006-12-30 16:31:02 +00001375$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001376 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001377 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Reid Spencer4d71b662004-10-22 21:01:56 +00001378
Reid Spencer129f0042006-12-30 16:31:02 +00001379$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001380 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001381 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001382
Reid Spencer129f0042006-12-30 16:31:02 +00001383$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001384 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001385 $(BCCompile.C) $< -o $@ -S -emit-llvm
Brian Gaeke44909cf2003-12-10 00:26:28 +00001386
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001387endif
1388
Chris Lattner8eb12de2006-06-21 21:01:20 +00001389
1390## Rules for building preprocessed (.i/.ii) outputs.
1391$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1392 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1393 $(Verb) $(Preprocess.CXX) $< -o $@
1394
1395$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1396 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1397 $(Verb) $(Preprocess.CXX) $< -o $@
1398
Reid Spencer44136722006-12-10 04:56:38 +00001399$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001400 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1401 $(Verb) $(Preprocess.C) $< -o $@
1402
1403
1404$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1405 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001406 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001407
1408$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1409 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001410 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001411
1412$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1413 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001414 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001415
Reid Spencer8b2e1412006-11-17 03:32:33 +00001416
Chris Lattner89681112006-01-27 22:13:12 +00001417# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001418ifdef DEBUG_RUNTIME
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001419$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001420 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001421 $(Verb) $(LOPT) $< -std-compile-opts -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001422else
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001423$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001424 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Dan Gohman0e6a4da2009-09-08 15:52:56 +00001425 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
Reid Spencer8b2e1412006-11-17 03:32:33 +00001426endif
1427
Chris Lattner89681112006-01-27 22:13:12 +00001428
Reid Spencercc2d1e22004-10-30 09:19:36 +00001429#---------------------------------------------------------
1430# Provide rule to build .bc files from .ll sources,
1431# regardless of dependencies
1432#---------------------------------------------------------
1433$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001434 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001435 $(Verb) $(LLVMAS) $< -f -o $@
1436
1437###############################################################################
1438# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1439###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001440
Reid Spencer4d71b662004-10-22 21:01:56 +00001441ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001442TABLEGEN_INC_FILES_COMMON = 1
1443endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001444
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001445ifdef LLVMC_BUILD_AUTOGENERATED_INC
1446TABLEGEN_INC_FILES_COMMON = 1
1447endif
1448
1449ifdef TABLEGEN_INC_FILES_COMMON
1450
Reid Spencercc2d1e22004-10-30 09:19:36 +00001451INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001452INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1453.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001454
Misha Brukmanef5dc702009-01-08 02:11:55 +00001455# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001456# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1457# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001458# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001459# dependencies of the .inc files are, unless the contents of the .inc file
1460# changes.
1461$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001462 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001463
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001464endif # TABLEGEN_INC_FILES_COMMON
1465
1466ifdef TARGET
1467
1468TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1469 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1470 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1471 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1472 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1473 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1474 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1475
Rafael Espindola075630a2009-03-10 17:58:54 +00001476# All of these files depend on tblgen and the .td files.
1477$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1478
Chris Lattner3c473472004-12-16 17:28:50 +00001479$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1480$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001481 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001482 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001483
Chris Lattner3c473472004-12-16 17:28:50 +00001484$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1485$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001486 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001487 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001488
Chris Lattner3c473472004-12-16 17:28:50 +00001489$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1490$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001491 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001492 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001493
Chris Lattner3c473472004-12-16 17:28:50 +00001494$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1495$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001496 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001497 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001498
Chris Lattner3c473472004-12-16 17:28:50 +00001499$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1500$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001501 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001502 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001503
Chris Lattner3c473472004-12-16 17:28:50 +00001504$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1505$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001506 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001507 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001508
Chris Lattner02a4f902004-12-16 17:34:04 +00001509$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1510$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1511 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001512 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001513
Daniel Dunbarc464e512009-07-13 18:35:35 +00001514$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1515$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1516 $(Echo) "Building $(<F) assembly matcher with tblgen"
1517 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1518
Chris Lattner3c473472004-12-16 17:28:50 +00001519$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1520$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001521 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001522 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001523
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001524$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1525$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001526 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001527 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001528
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001529$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1530$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1531 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1532 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1533
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001534$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1535$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1536 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001537 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001538
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001539$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1540$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1541 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001542 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001543
Dale Johannesen49de9822009-02-05 01:49:45 +00001544$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
Jakob Stoklund Olesen7b68ffc2009-10-15 18:48:47 +00001545$(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1546 $(Echo) "Building $(<F) intrinsics information with tblgen"
Dale Johannesen49de9822009-02-05 01:49:45 +00001547 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1548
Reid Spencer3a561f52004-10-23 20:04:14 +00001549clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001550 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001551
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001552endif # TARGET
1553
1554ifdef LLVMC_BUILD_AUTOGENERATED_INC
1555
Mikhail Glushenkov4558f482009-04-21 19:46:10 +00001556LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1557 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001558
1559TDFiles := $(LLVMCPluginSrc) \
1560 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1561
1562$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1563 $(TBLGEN) $(TD_COMMON)
1564 $(Echo) "Building LLVMC configuration library with tblgen"
1565 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1566
1567endif # LLVMC_BUILD_AUTOGENERATED_INC
1568
Reid Spencercc2d1e22004-10-30 09:19:36 +00001569###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001570# OTHER RULES: Other rules needed
1571###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001572
Chris Lattner30440c62003-01-16 21:06:18 +00001573# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001574ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001575%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001576 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001577else
1578%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001579 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001580endif
Chris Lattner30440c62003-01-16 21:06:18 +00001581
John Criswell7f336952003-09-06 14:44:17 +00001582# This rules ensures that header files that are removed still have a rule for
1583# which they can be "generated." This allows make to ignore them and
1584# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001585%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001586%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001587
Reid Spencercc2d1e22004-10-30 09:19:36 +00001588# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001589# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001590# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001591clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001592ifneq ($(strip $(ObjRootDir)),)
1593 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001594endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001595 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001596ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001597 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001598endif
John Criswell7a73b802003-06-30 21:59:07 +00001599
Reid Spencer3d659492004-11-02 16:36:03 +00001600clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001601 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001602
Reid Spencer12d79512004-11-12 02:27:36 +00001603
Reid Spencer3a561f52004-10-23 20:04:14 +00001604###############################################################################
1605# DEPENDENCIES: Include the dependency files if we should
1606###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001607ifndef DISABLE_AUTO_DEPENDENCIES
1608
Reid Spencer3a561f52004-10-23 20:04:14 +00001609# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001610ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001611
Reid Spencer3a561f52004-10-23 20:04:14 +00001612# Get the list of dependency files
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001613DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1614DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1615
1616# Include bitcode dependency files if using bitcode libraries
1617ifdef BYTECODE_LIBRARY
1618DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1619endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001620
Reid Spencer491a6cd2007-07-23 08:20:46 +00001621-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001622
John Criswelld741bcf2003-08-12 18:51:51 +00001623endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001624
Misha Brukmanef5dc702009-01-08 02:11:55 +00001625endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001626
Reid Spencer151f8ba2004-10-25 08:27:37 +00001627###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001628# CHECK: Running the test suite
1629###############################################################################
1630
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001631check::
Reid Spencer11fde542005-01-16 02:20:54 +00001632 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1633 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001634 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001635 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001636 TESTSUITE=$(TESTSUITE) ; \
1637 else \
1638 $(EchoCmd) No Makefile in test directory ; \
1639 fi ; \
1640 else \
1641 $(EchoCmd) No test directory ; \
1642 fi
1643
Daniel Dunbar70a3b772009-09-08 05:31:44 +00001644check-lit::
1645 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1646 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1647 $(EchoCmd) Running test suite ; \
1648 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1649 else \
1650 $(EchoCmd) No Makefile in test directory ; \
1651 fi ; \
1652 else \
1653 $(EchoCmd) No test directory ; \
1654 fi
1655
Daniel Dunbar34185792009-09-20 06:17:21 +00001656check-all::
1657 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1658 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1659 $(EchoCmd) Running test suite ; \
1660 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1661 else \
1662 $(EchoCmd) No Makefile in test directory ; \
1663 fi ; \
1664 else \
1665 $(EchoCmd) No test directory ; \
1666 fi
1667
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001668###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001669# UNITTESTS: Running the unittests test suite
1670###############################################################################
1671
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001672unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001673 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1674 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1675 $(EchoCmd) Running unittests test suite ; \
Daniel Dunbar7f068f42009-09-13 22:39:27 +00001676 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
Bill Wendling4113bd12009-01-04 23:12:21 +00001677 else \
1678 $(EchoCmd) No Makefile in unittests directory ; \
1679 fi ; \
1680 else \
1681 $(EchoCmd) No unittests directory ; \
1682 fi
1683
1684###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001685# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001686###############################################################################
1687
Reid Spencere45ebfa2004-10-26 07:09:33 +00001688#------------------------------------------------------------------------
1689# Define distribution related variables
1690#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001691DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1692DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1693TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1694DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1695DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1696DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001697DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1698 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001699 Makefile.config.in configure autoconf
1700DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001701 $(PROJ_SRC_DIR)/*.h \
1702 $(PROJ_SRC_DIR)/*.td \
1703 $(PROJ_SRC_DIR)/*.def \
1704 $(PROJ_SRC_DIR)/*.ll \
1705 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001706DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001707DistSources = $(Sources) $(EXTRA_DIST)
1708DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001709
Reid Spencere45ebfa2004-10-26 07:09:33 +00001710#------------------------------------------------------------------------
1711# We MUST build distribution with OBJ_DIR != SRC_DIR
1712#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001713ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001714dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001715 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001716
Reid Spencere45ebfa2004-10-26 07:09:33 +00001717else
1718
Reid Spencere45ebfa2004-10-26 07:09:33 +00001719#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001720# Prevent attempt to run dist targets from anywhere but the top level
1721#------------------------------------------------------------------------
1722ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001723dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001724 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001725else
1726
1727#------------------------------------------------------------------------
1728# Provide the top level targets
1729#------------------------------------------------------------------------
1730
Reid Spencercc2d1e22004-10-30 09:19:36 +00001731dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001732
Reid Spencer345235ca2004-12-04 22:34:09 +00001733$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001734 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001735 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001736 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001737
Reid Spencercc2d1e22004-10-30 09:19:36 +00001738dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001739
Reid Spencer345235ca2004-12-04 22:34:09 +00001740$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001741 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001742 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001743 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001744
Reid Spencercc2d1e22004-10-30 09:19:36 +00001745dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001746
Reid Spencer345235ca2004-12-04 22:34:09 +00001747$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001748 $(Echo) Packing zipped distribution file.
1749 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00001750 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001751
Misha Brukmanef5dc702009-01-08 02:11:55 +00001752dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001753 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001754
Reid Spencerf8f57402005-01-28 19:52:32 +00001755DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00001756
Reid Spencer345235ca2004-12-04 22:34:09 +00001757dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001758 $(Echo) Checking distribution tar file.
1759 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001760 $(RM) -rf $(DistCheckDir) ; \
1761 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00001762 $(Verb) $(MKDIR) $(DistCheckDir)
1763 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001764 $(MKDIR) $(DistCheckDir)/build && \
1765 $(MKDIR) $(DistCheckDir)/install && \
1766 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1767 cd build && \
1768 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00001769 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00001770 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001771 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00001772 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001773 $(MAKE) install && \
1774 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001775 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001776 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001777
1778dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001779 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00001780 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1781 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001782
1783endif
1784
1785#------------------------------------------------------------------------
1786# Provide the recursive distdir target for building the distribution directory
1787#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00001788distdir: $(DistDir)/.makedistdir
1789$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001790 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001791 if test -d "$(DistDir)" ; then \
1792 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1793 exit 1 ; \
1794 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001795 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001796 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001797 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00001798 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001799 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00001800 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00001801 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00001802 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1803 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001804 for file in $(DistFiles) ; do \
1805 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00001806 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001807 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1808 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00001809 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001810 file=`echo "$$file" | \
1811 sed "s#^$$srcrootstrip/##"` \
1812 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001813 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00001814 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1815 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1816 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001817 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001818 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001819 fi ; \
1820 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001821 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1822 to_dir="$(DistDir)/$$dir"; \
1823 $(MKDIR) "$$to_dir" ; \
1824 else \
1825 to_dir="$(DistDir)"; \
1826 fi; \
1827 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1828 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001829 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001830 fi ; \
1831 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00001832 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1833 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001834 cd $(PROJ_SRC_DIR) ; \
1835 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1836 ( cd $$to_dir ; $(TAR) xf - ) ; \
1837 cd $(PROJ_OBJ_DIR) ; \
1838 else \
1839 cd $$from_dir ; \
1840 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1841 ( cd $$to_dir ; $(TAR) xf - ) ; \
1842 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001843 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001844 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001845 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001846 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001847 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001848 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00001849 $(EchoCmd) "===== WARNING: Distribution Source " \
1850 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001851 elif test "$(Verb)" != '@' ; then \
1852 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001853 fi; \
1854 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00001855 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001856 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001857 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001858 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00001859 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00001860 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001861 fi; \
1862 done
Reid Spencer345235ca2004-12-04 22:34:09 +00001863 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001864 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00001865 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1866 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00001867 $(MAKE) dist-hook ; \
1868 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1869 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1870 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1871 -o ! -type d ! -perm -444 -exec \
1872 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1873 || chmod -R a+r $(DistDir) ; \
1874 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00001875
Reid Spencercc2d1e22004-10-30 09:19:36 +00001876# This is invoked by distdir target, define it as a no-op to avoid errors if not
1877# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00001878dist-hook::
1879
Reid Spencere53e3972004-10-22 23:06:30 +00001880endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001881
1882###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00001883# TOP LEVEL - targets only to apply at the top level directory
1884###############################################################################
1885
1886ifeq ($(LEVEL),.)
1887
1888#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001889# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00001890#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00001891ifdef NO_INSTALL
1892install-local::
1893 $(Echo) Install circumvented with NO_INSTALL
1894uninstall-local::
1895 $(Echo) Uninstall circumvented with NO_INSTALL
1896else
Reid Spencere5487ba2004-10-24 07:53:21 +00001897install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001898 $(Echo) Installing include files
Reid Spencer11fde542005-01-16 02:20:54 +00001899 $(Verb) $(MKDIR) $(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001900 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00001901 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerc9480642009-01-02 07:16:45 +00001902 for hdr in `find . -type f '!' '(' -name '*~' \
Reid Spencer0522d8b2007-04-09 19:08:58 +00001903 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1904 grep -v .svn` ; do \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001905 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1906 if test \! -d "$$instdir" ; then \
1907 $(EchoCmd) Making install directory $$instdir ; \
1908 $(MKDIR) $$instdir ;\
1909 fi ; \
1910 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00001911 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00001912 fi
Reid Spencer443045a2005-12-23 22:27:56 +00001913ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001914 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00001915 cd $(PROJ_OBJ_ROOT)/include && \
Reid Spencer443045a2005-12-23 22:27:56 +00001916 for hdr in `find . -type f -print | grep -v CVS` ; do \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001917 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00001918 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001919 fi
Reid Spencer443045a2005-12-23 22:27:56 +00001920endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001921
1922uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001923 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00001924 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1925 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00001926 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00001927 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00001928 -o -name '*.in' ')' -print ')' | \
1929 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001930 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00001931 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1932 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001933 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00001934endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001935endif
1936
Chris Lattner03840ac2007-04-14 23:35:45 +00001937check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001938 @echo searching for overlength lines in files: $(Sources)
1939 @echo
1940 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00001941 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00001942
Anton Korobeynikovbed29462007-04-16 18:10:23 +00001943check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001944 @echo searching for tabs in files: $(Sources)
1945 @echo
1946 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00001947 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001948
Reid Spencer6548bf12007-05-02 21:29:39 +00001949check-footprint:
1950 @ls -l $(LibDir) | awk '\
1951 BEGIN { sum = 0; } \
1952 { sum += $$5; } \
1953 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1954 @ls -l $(ToolDir) | awk '\
1955 BEGIN { sum = 0; } \
1956 { sum += $$5; } \
1957 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00001958#------------------------------------------------------------------------
1959# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00001960#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001961printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00001962 $(Echo) "BuildMode : " '$(BuildMode)'
1963 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1964 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1965 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1966 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1967 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1968 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1969 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1970 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1971 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1972 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00001973 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00001974 $(Echo) "UserTargets : " '$(UserTargets)'
1975 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1976 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1977 $(Echo) "ObjDir : " '$(ObjDir)'
1978 $(Echo) "LibDir : " '$(LibDir)'
1979 $(Echo) "ToolDir : " '$(ToolDir)'
1980 $(Echo) "ExmplDir : " '$(ExmplDir)'
1981 $(Echo) "Sources : " '$(Sources)'
1982 $(Echo) "TDFiles : " '$(TDFiles)'
1983 $(Echo) "INCFiles : " '$(INCFiles)'
1984 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00001985 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00001986 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1987 $(Echo) "Compile.C : " '$(Compile.C)'
1988 $(Echo) "Archive : " '$(Archive)'
1989 $(Echo) "YaccFiles : " '$(YaccFiles)'
1990 $(Echo) "LexFiles : " '$(LexFiles)'
1991 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00001992 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00001993 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00001994 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1995 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00001996
1997###
1998# Debugging
1999
Daniel Dunbar3c898122009-03-06 22:23:25 +00002000# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00002001# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00002002make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00002003 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))