blob: a1a1924a9903eec991368f600689a28f367e5cb9 [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#--------------------------------------------------------------------
Chris Lattner7dc02822004-12-03 21:05:57 +000022RecursiveTargets := all clean clean-all install uninstall install-bytecode
Reid Spencer9e8d54a2004-12-06 05:35:13 +000023LocalTargets := all-local clean-local clean-all-local check-local \
Reid Spencer44cb1b32004-12-03 20:08:48 +000024 install-local printvars uninstall-local \
Bill Wendling4113bd12009-01-04 23:12:21 +000025 install-bytecode-local unittests
Chris Lattner72e46332007-09-26 06:10:47 +000026TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
Bill Wendling4113bd12009-01-04 23:12:21 +000027 dist-zip unittests
Reid Spencercc2d1e22004-10-30 09:19:36 +000028UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
29InternalTargets := preconditions distdir dist-hook
Reid Spencer3a561f52004-10-23 20:04:14 +000030
Reid Spencercc2d1e22004-10-30 09:19:36 +000031################################################################################
Reid Spencer9411c642004-10-26 22:26:33 +000032# INITIALIZATION: Basic things the makefile needs
Reid Spencercc2d1e22004-10-30 09:19:36 +000033################################################################################
34
35#--------------------------------------------------------------------
36# Set the VPATH so that we can find source files.
37#--------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +000038VPATH=$(PROJ_SRC_DIR)
Reid Spencer9411c642004-10-26 22:26:33 +000039
40#--------------------------------------------------------------------
Reid Spencer1abd46d2007-06-29 14:02:07 +000041# Reset the list of suffixes we know how to build.
Reid Spencer9411c642004-10-26 22:26:33 +000042#--------------------------------------------------------------------
43.SUFFIXES:
Nick Lewyckya15dc032009-02-26 07:44:16 +000044.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
Reid Spencercc2d1e22004-10-30 09:19:36 +000045.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
Reid Spencer9411c642004-10-26 22:26:33 +000046
Reid Spencer3a561f52004-10-23 20:04:14 +000047#--------------------------------------------------------------------
48# Mark all of these targets as phony to avoid implicit rule search
49#--------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +000050.PHONY: $(UserTargets) $(InternalTargets)
Reid Spencer3a561f52004-10-23 20:04:14 +000051
52#--------------------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +000053# Make sure all the user-target rules are double colon rules and
Reid Spencer9411c642004-10-26 22:26:33 +000054# they are defined first.
Reid Spencer3a561f52004-10-23 20:04:14 +000055#--------------------------------------------------------------------
56
Reid Spencercc2d1e22004-10-30 09:19:36 +000057$(UserTargets)::
Reid Spencer151f8ba2004-10-25 08:27:37 +000058
Reid Spencer9411c642004-10-26 22:26:33 +000059################################################################################
60# PRECONDITIONS: that which must be built/checked first
61################################################################################
62
Reid Spencer44cb1b32004-12-03 20:08:48 +000063SrcMakefiles := $(filter %Makefile %Makefile.tests,\
Reid Spencer11fde542005-01-16 02:20:54 +000064 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
65ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
66ConfigureScript := $(PROJ_SRC_ROOT)/configure
67ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
68MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
69MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
70MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
71MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
72PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
73ifneq ($(MakefileCommonIn),)
74PreConditions += $(MakefileCommon)
75endif
Chris Lattner0a1db822006-09-04 05:23:20 +000076
Reid Spencer11fde542005-01-16 02:20:54 +000077ifneq ($(MakefileConfigIn),)
78PreConditions += $(MakefileConfig)
79endif
Reid Spencer9411c642004-10-26 22:26:33 +000080
Reid Spencerca739c62005-08-25 04:59:49 +000081preconditions: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +000082
83#------------------------------------------------------------------------
84# Make sure the BUILT_SOURCES are built first
85#------------------------------------------------------------------------
Reid Spencer07a549a2004-12-16 07:15:16 +000086$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000087
Reid Spencer9bb399c2007-02-07 19:13:19 +000088clean-all-local::
Reid Spencer9411c642004-10-26 22:26:33 +000089ifneq ($(strip $(BUILT_SOURCES)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +000090 -$(Verb) $(RM) -f $(BUILT_SOURCES)
Reid Spencer9411c642004-10-26 22:26:33 +000091endif
92
Reid Spencer11fde542005-01-16 02:20:54 +000093ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
Reid Spencer31f95242004-12-16 08:00:46 +000094spotless:
Reid Spencer31f95242004-12-16 08:00:46 +000095 $(Verb) if test -x config.status ; then \
Reid Spencer11fde542005-01-16 02:20:54 +000096 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +000097 $(MKDIR) .spotless.save ; \
98 $(MV) config.status .spotless.save ; \
99 $(MV) mklib .spotless.save ; \
100 $(MV) projects .spotless.save ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000101 $(RM) -rf * ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000102 $(MV) .spotless.save/config.status . ; \
103 $(MV) .spotless.save/mklib . ; \
104 $(MV) .spotless.save/projects . ; \
105 $(RM) -rf .spotless.save ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000106 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
Reid Spencer39b73632004-12-17 07:45:03 +0000107 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108 $(ConfigStatusScript) ; \
Reid Spencer31f95242004-12-16 08:00:46 +0000109 else \
Reid Spencer11fde542005-01-16 02:20:54 +0000110 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
Reid Spencer31f95242004-12-16 08:00:46 +0000111 fi
Reid Spencer25e8a702005-12-21 23:17:06 +0000112else
113spotless:
114 $(EchoCmd) "spotless target not supported for objdir == srcdir"
Reid Spencer31f95242004-12-16 08:00:46 +0000115endif
116
Reid Spencercc2d1e22004-10-30 09:19:36 +0000117$(BUILT_SOURCES) : $(ObjMakefiles)
Reid Spencer80f0ef72004-10-28 00:41:43 +0000118
Reid Spencer9411c642004-10-26 22:26:33 +0000119#------------------------------------------------------------------------
120# Make sure we're not using a stale configuration
121#------------------------------------------------------------------------
Reid Spencerc3719842004-12-16 18:26:53 +0000122reconfigure:
Reid Spencer11fde542005-01-16 02:20:54 +0000123 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
124 $(Verb) cd $(PROJ_OBJ_ROOT) && \
125 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
126 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000127 fi ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000128 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129 $(ConfigStatusScript)
130
Reid Spencercc2d1e22004-10-30 09:19:36 +0000131.PRECIOUS: $(ConfigStatusScript)
132$(ConfigStatusScript): $(ConfigureScript)
133 $(Echo) Reconfiguring with $<
Reid Spencer11fde542005-01-16 02:20:54 +0000134 $(Verb) cd $(PROJ_OBJ_ROOT) && \
135 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
Reid Spencer32924e02004-12-24 03:36:31 +0000137 fi ; \
Reid Spencer7d277002004-11-29 12:37:44 +0000138 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139 $(ConfigStatusScript)
Reid Spencer9411c642004-10-26 22:26:33 +0000140
Reid Spencer6f5f8b32005-08-25 04:44:18 +0000141#------------------------------------------------------------------------
Reid Spencer9411c642004-10-26 22:26:33 +0000142# Make sure the configuration makefile is up to date
143#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000144ifneq ($(MakefileConfigIn),)
145$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000146 $(Echo) Regenerating $@
Reid Spencer11fde542005-01-16 02:20:54 +0000147 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
148endif
149
150ifneq ($(MakefileCommonIn),)
151$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
152 $(Echo) Regenerating $@
153 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
154endif
Reid Spencer9411c642004-10-26 22:26:33 +0000155
156#------------------------------------------------------------------------
157# If the Makefile in the source tree has been updated, copy it over into the
158# build tree. But, only do this if the source and object makefiles differ
159#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +0000160ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
Reid Spencer9411c642004-10-26 22:26:33 +0000161
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000162Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000163 $(Echo) "Updating Makefile"
164 $(Verb) $(MKDIR) $(@D)
Reid Spencerc3719842004-12-16 18:26:53 +0000165 $(Verb) $(CP) -f $< $@
Reid Spencer9411c642004-10-26 22:26:33 +0000166
167# Copy the Makefile.* files unless we're in the root directory which avoids
168# the copying of Makefile.config.in or other things that should be explicitly
169# taken care of.
Reid Spencer11fde542005-01-16 02:20:54 +0000170$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
Reid Spencer86606782004-10-26 23:10:00 +0000171 @case '$?' in \
172 *Makefile.rules) ;; \
173 *.in) ;; \
Gordon Henriksen7252dc02008-03-10 15:58:40 +0000174 *) $(EchoCmd) "Updating $(@F)" ; \
Reid Spencer86606782004-10-26 23:10:00 +0000175 $(MKDIR) $(@D) ; \
Reid Spencerc3719842004-12-16 18:26:53 +0000176 $(CP) -f $< $@ ;; \
Reid Spencer86606782004-10-26 23:10:00 +0000177 esac
Gabor Greif0a4c3782008-02-27 13:34:15 +0000178
Reid Spencer9411c642004-10-26 22:26:33 +0000179endif
180
181#------------------------------------------------------------------------
182# Set up the basic dependencies
183#------------------------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +0000184$(UserTargets):: $(PreConditions)
Reid Spencer9411c642004-10-26 22:26:33 +0000185
186all:: all-local
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000187clean:: clean-local
Reid Spencer3d659492004-11-02 16:36:03 +0000188clean-all:: clean-local clean-all-local
Reid Spencer9411c642004-10-26 22:26:33 +0000189install:: install-local
190uninstall:: uninstall-local
Misha Brukmanef5dc702009-01-08 02:11:55 +0000191install-local:: all-local
Reid Spencer44cb1b32004-12-03 20:08:48 +0000192install-bytecode:: install-bytecode-local
Reid Spencer3a561f52004-10-23 20:04:14 +0000193
194###############################################################################
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000195# LLVMC: Provide rules for compiling llvmc plugins
196###############################################################################
197
198ifdef LLVMC_PLUGIN
199
200LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
Mikhail Glushenkovd80d8692009-06-23 20:46:48 +0000201CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN)
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000202REQUIRES_EH := 1
203
204# Build a dynamic library if the user runs `make` directly from the plugin
205# directory.
206ifndef LLVMC_BUILTIN_PLUGIN
207LOADABLE_MODULE = 1
208endif
209
210# TableGen stuff...
211ifneq ($(BUILT_SOURCES),)
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +0000212LLVMC_BUILD_AUTOGENERATED_INC=1
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000213endif
214
215endif # LLVMC_PLUGIN
216
Mikhail Glushenkov0a1cb1e2009-06-25 01:07:00 +0000217ifdef LLVMC_BASED_DRIVER
218
219TOOLNAME = $(LLVMC_BASED_DRIVER)
220LLVMLIBS = CompilerDriver.a
221LINK_COMPONENTS = support system
222REQUIRES_EH := 1
223
224# Preprocessor magic that generates references to static variables in built-in
225# plugins.
226ifneq ($(LLVMC_BUILTIN_PLUGINS),)
227
228USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS))
229
230LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS))
231LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS))
232LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS))
233LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS))
234LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS))
235
236ifneq ($(LLVMC_BUILTIN_PLUGIN_1),)
237CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1)
238endif
239
240ifneq ($(LLVMC_BUILTIN_PLUGIN_2),)
241CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2)
242endif
243
244ifneq ($(LLVMC_BUILTIN_PLUGIN_3),)
245CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3)
246endif
247
248ifneq ($(LLVMC_BUILTIN_PLUGIN_4),)
249CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4)
250endif
251
252ifneq ($(LLVMC_BUILTIN_PLUGIN_5),)
253CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5)
254endif
255
256endif
257
258endif # LLVMC_BASED_DRIVER
259
Mikhail Glushenkov540d73f2009-03-02 09:04:13 +0000260###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000261# VARIABLES: Set up various variables based on configuration data
262###############################################################################
263
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000264# Variable for if this make is for a "cleaning" target
265ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
266 IS_CLEANING_TARGET=1
267endif
268
Reid Spencer3a561f52004-10-23 20:04:14 +0000269#--------------------------------------------------------------------
270# Variables derived from configuration we are building
Chris Lattner00950542001-06-06 20:29:01 +0000271#--------------------------------------------------------------------
272
Reid Spencer0a522b12007-07-10 07:19:53 +0000273CPP.Defines :=
Chris Lattnerd63b9642006-05-24 23:02:40 +0000274# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
275# this can be overridden on the make command line.
Evan Chengb306e382009-04-20 22:16:40 +0000276ifndef OPTIMIZE_OPTION
277 ifneq ($(OS),MingW)
278 OPTIMIZE_OPTION := -O3
279 else
280 OPTIMIZE_OPTION := -O2
281 endif
Reid Spencer48fdf912006-06-01 19:03:21 +0000282endif
Chris Lattnerd63b9642006-05-24 23:02:40 +0000283
David Greenedbefd0c2009-04-17 14:49:22 +0000284ifeq ($(ENABLE_OPTIMIZED),1)
285 BuildMode := Release
286 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
287 ifneq ($(OS),FreeBSD)
288 ifneq ($(OS),Darwin)
289 OmitFramePointer := -fomit-frame-pointer
Chris Lattner760da062003-03-14 20:25:22 +0000290 endif
David Greenedbefd0c2009-04-17 14:49:22 +0000291 endif
292
293 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Chengea84e932009-04-20 22:49:59 +0000294 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
295 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Evan Chengb306e382009-04-20 22:16:40 +0000296 #ifeq ($(OS),Darwin)
297 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
298 #endif
David Greenedbefd0c2009-04-17 14:49:22 +0000299 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
300 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
301 LD.Flags += $(OPTIMIZE_OPTION)
302else
303 BuildMode := Debug
304 CXX.Flags += -g
305 C.Flags += -g
306 LD.Flags += -g
307 KEEP_SYMBOLS := 1
308endif
309
310ifeq ($(ENABLE_PROFILING),1)
311 BuildMode := $(BuildMode)+Profile
312 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
313 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
314 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
315 KEEP_SYMBOLS := 1
Chris Lattner760da062003-03-14 20:25:22 +0000316endif
317
Daniel Dunbarecfe67c2008-09-02 17:35:16 +0000318#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
319# CXX.Flags += -fvisibility-inlines-hidden
320#endif
321
Reid Spencer99655e12006-08-25 19:54:53 +0000322# IF REQUIRES_EH=1 is specified then don't disable exceptions
Reid Spencerdcea1402006-08-25 20:56:59 +0000323ifndef REQUIRES_EH
324 CXX.Flags += -fno-exceptions
325endif
Reid Spencer99655e12006-08-25 19:54:53 +0000326
Reid Spencer6548bf12007-05-02 21:29:39 +0000327# IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
328ifndef REQUIRES_RTTI
Reid Spencer749a89b2007-05-02 21:31:09 +0000329# CXX.Flags += -fno-rtti
Reid Spencer6548bf12007-05-02 21:29:39 +0000330endif
331
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000332ifdef ENABLE_COVERAGE
333 BuildMode := $(BuildMode)+Coverage
Chris Lattner6be92662009-06-16 23:00:42 +0000334 CXX.Flags += -ftest-coverage -fprofile-arcs
335 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000336endif
337
Reid Spencer854071c2006-04-10 16:46:04 +0000338# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
339# then disable assertions by defining the appropriate preprocessor symbols.
Reid Spencerf9f431c2006-04-09 23:41:14 +0000340ifdef DISABLE_ASSERTIONS
Duncan Sands74a057b2009-03-27 11:35:00 +0000341 # Indicate that assertions are turned off using a minus sign
342 BuildMode := $(BuildMode)-Asserts
Reid Spencer0a522b12007-07-10 07:19:53 +0000343 CPP.Defines += -DNDEBUG
Reid Spencerf9f431c2006-04-09 23:41:14 +0000344else
Reid Spencer0a522b12007-07-10 07:19:53 +0000345 CPP.Defines += -D_DEBUG
Chris Lattner71927862006-03-21 01:06:41 +0000346endif
347
Misha Brukmanef5dc702009-01-08 02:11:55 +0000348# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
349# configured), then enable expensive checks by defining the
David Greenecba29182007-06-29 03:36:21 +0000350# appropriate preprocessor symbols.
David Greenea696d242007-06-28 19:36:08 +0000351ifdef ENABLE_EXPENSIVE_CHECKS
352 BuildMode := $(BuildMode)+Checks
Duncan Sands47d9dcc2008-12-09 21:33:20 +0000353 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
David Greenea696d242007-06-28 19:36:08 +0000354endif
355
Nick Lewyckya15dc032009-02-26 07:44:16 +0000356# LOADABLE_MODULE implies several other things so we force them to be
357# defined/on.
358ifdef LOADABLE_MODULE
359 SHARED_LIBRARY := 1
Nick Lewyckya15dc032009-02-26 07:44:16 +0000360 LINK_LIBS_IN_SHARED := 1
361endif
362
363ifdef SHARED_LIBRARY
364 ENABLE_PIC := 1
365 PIC_FLAG = "(PIC)"
366endif
367
Reid Spencer89b0d992006-12-16 22:07:52 +0000368ifeq ($(ENABLE_PIC),1)
Nick Lewycky1c08c0e2009-03-03 03:36:50 +0000369 ifeq ($(OS), $(filter $(OS), Cygwin MingW))
Nick Lewycky8e87e652009-02-21 08:41:09 +0000370 # Nothing. Win32 defaults to PIC and warns when given -fPIC
371 else
372 ifeq ($(OS),Darwin)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000373 # Common symbols not allowed in dylib files
Nick Lewycky8e87e652009-02-21 08:41:09 +0000374 CXX.Flags += -fno-common
375 C.Flags += -fno-common
376 else
377 # Linux and others; pass -fPIC
378 CXX.Flags += -fPIC
379 C.Flags += -fPIC
380 endif
381 endif
Mike Stump3fbdbd92009-05-08 23:08:58 +0000382else
383 ifeq ($(OS),Darwin)
384 CXX.Flags += -mdynamic-no-pic
385 C.Flags += -mdynamic-no-pic
386 endif
Reid Spencer89b0d992006-12-16 22:07:52 +0000387endif
388
Reid Spencer3a9ec242006-08-28 01:02:49 +0000389CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
Reid Spencerf2722ca2006-03-22 15:59:55 +0000390C.Flags += $(CFLAGS)
David Greenea696d242007-06-28 19:36:08 +0000391CPP.Defines += $(CPPFLAGS)
392CPP.BaseFlags += $(CPP.Defines)
Reid Spencerf2722ca2006-03-22 15:59:55 +0000393LD.Flags += $(LDFLAGS)
394AR.Flags := cru
Reid Spencer3a561f52004-10-23 20:04:14 +0000395
Chris Lattner16620fc2006-07-27 18:19:51 +0000396# Make Floating point IEEE compliant on Alpha.
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000397ifeq ($(ARCH),Alpha)
Reid Spencer89b0d992006-12-16 22:07:52 +0000398 CXX.Flags += -mieee
399 CPP.BaseFlags += -mieee
400ifeq ($(ENABLE_PIC),0)
401 CXX.Flags += -fPIC
402 CPP.BaseFlags += -fPIC
403endif
Andrew Lenharth39bcf5b2005-02-13 03:41:10 +0000404endif
405
Andrew Lenharthc5e455d2007-01-26 13:34:50 +0000406ifeq ($(ARCH),Alpha)
407 LD.Flags += -Wl,--no-relax
408endif
409
Mike Stumpfe095f32009-05-04 18:40:41 +0000410ifeq ($(OS),MingW)
411 ifeq ($(LLVM_CROSS_COMPILING),1)
412 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
413 ifdef TOOLNAME
414 LD.Flags += -Wl,--allow-multiple-definition
415 endif
416 endif
417endif
418
Jay Foad3b001622009-05-15 18:13:31 +0000419ifdef ENABLE_EXPENSIVE_CHECKS
420 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
421 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
422 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
423endif
424
Reid Spencer3a561f52004-10-23 20:04:14 +0000425#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000426# Directory locations
Reid Spencer3a561f52004-10-23 20:04:14 +0000427#--------------------------------------------------------------------
Jim Grosbach673612e2008-10-02 22:56:44 +0000428TargetMode :=
429ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000430 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbach673612e2008-10-02 22:56:44 +0000431endif
432
433ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000434ObjDir := $(ObjRootDir)
435LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
436ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
437ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
438LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
439LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
440LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Reid Spencer2f138e72004-12-22 05:57:21 +0000441CFERuntimeLibDir := $(LLVMGCCDIR)/lib
John Criswell7a73b802003-06-30 21:59:07 +0000442
Reid Spencer3a561f52004-10-23 20:04:14 +0000443#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000444# Full Paths To Compiled Tools and Utilities
Reid Spencer3a561f52004-10-23 20:04:14 +0000445#--------------------------------------------------------------------
Reid Spencer3ca6d8b2005-01-14 16:33:36 +0000446EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
447Echo = @$(EchoCmd)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000448ifndef LLVMAS
449LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
450endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000451ifndef TBLGEN
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000452 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov569c45c2008-11-10 07:33:13 +0000453 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Reid Spencere2cfe5d2006-07-26 21:14:56 +0000454 else
455 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
456 endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000457endif
Misha Brukmanef5dc702009-01-08 02:11:55 +0000458LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Reid Spencer43eb96c2007-02-09 15:52:07 +0000459ifndef LLVMLD
Reid Spencer18464122007-02-09 17:09:14 +0000460LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000461endif
Chris Lattner0a1db822006-09-04 05:23:20 +0000462ifndef LLVMDIS
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000463LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
464endif
465ifndef LLI
466LLI := $(LLVMToolDir)/lli$(EXEEXT)
467endif
Alkis Evlogimenoseebaf332005-02-27 10:21:37 +0000468ifndef LLC
469LLC := $(LLVMToolDir)/llc$(EXEEXT)
470endif
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000471ifndef LOPT
Alkis Evlogimenos20d793a2004-12-13 18:08:29 +0000472LOPT := $(LLVMToolDir)/opt$(EXEEXT)
Alkis Evlogimenos7e80cd92004-12-13 17:44:14 +0000473endif
Alkis Evlogimenos270e8512005-02-02 00:40:15 +0000474ifndef LBUGPOINT
475LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
476endif
Reid Spencere46687c2006-12-03 21:01:45 +0000477ifndef LUPGRADE
478LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
479endif
480ifeq ($(LLVMGCC_MAJVERS),3)
Reid Spencer44136722006-12-10 04:56:38 +0000481LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
482LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
Reid Spencere46687c2006-12-03 21:01:45 +0000483else
Reid Spencer44136722006-12-10 04:56:38 +0000484LLVMGCCWITHPATH := $(LLVMGCC)
485LLVMGXXWITHPATH := $(LLVMGXX)
Reid Spencere46687c2006-12-03 21:01:45 +0000486endif
487
Reid Spencer3a561f52004-10-23 20:04:14 +0000488#--------------------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000489# Adjust to user's request
Reid Spencer3a561f52004-10-23 20:04:14 +0000490#--------------------------------------------------------------------
Dinakar Dhurjatiffb55cd2003-05-29 16:18:20 +0000491
Scott Michel87af5f02009-03-12 21:03:53 +0000492ifeq ($(OS),Darwin)
493 DARWIN_VERSION := `sw_vers -productVersion`
494 # Strip a number like 10.4.7 to 10.4
495 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
496 # Get "4" out of 10.4 for later pieces in the makefile.
497 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendlingaca56952009-03-22 08:28:45 +0000498
Julien Lerougea6b37c092009-03-27 18:18:00 +0000499 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
500 -dynamiclib -mmacosx-version-min=$(DARWIN_VERSION)
Evan Chenga38ff642009-03-23 03:45:56 +0000501 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Scott Michel87af5f02009-03-12 21:03:53 +0000502else
503 ifeq ($(OS),Cygwin)
504 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
505 -Wl,--enable-auto-import -Wl,--enable-auto-image-base \
506 -Wl,--enable-runtime-pseudo-relocs
507 else
508 SharedLinkOptions=-shared
509 endif
510endif
511
Nick Lewyckya15dc032009-02-26 07:44:16 +0000512# Adjust LD.Flags depending on the kind of library that is to be built. Note
513# that if LOADABLE_MODULE is specified then the resulting shared library can
514# be opened with dlopen.
Reid Spencer42fe4552006-08-07 23:12:15 +0000515ifdef LOADABLE_MODULE
Reid Spencer42fe4552006-08-07 23:12:15 +0000516 LD.Flags += -module
517endif
518
Reid Spencer492c2932005-01-11 04:31:07 +0000519ifdef SHARED_LIBRARY
Scott Michel87af5f02009-03-12 21:03:53 +0000520ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky1dace482009-03-03 04:55:15 +0000521 LD.Flags += $(RPATH) -Wl,$(LibDir)
John Criswell82f4a5a2003-07-31 20:58:51 +0000522endif
Scott Michel87af5f02009-03-12 21:03:53 +0000523endif
John Criswell82f4a5a2003-07-31 20:58:51 +0000524
Reid Spencercceed9f2004-11-08 17:32:12 +0000525ifdef TOOL_VERBOSE
526 C.Flags += -v
527 CXX.Flags += -v
528 LD.Flags += -v
Reid Spencercceed9f2004-11-08 17:32:12 +0000529 VERBOSE := 1
530endif
531
Reid Spencer3a561f52004-10-23 20:04:14 +0000532# Adjust settings for verbose mode
Chris Lattner760da062003-03-14 20:25:22 +0000533ifndef VERBOSE
Reid Spencercc2d1e22004-10-30 09:19:36 +0000534 Verb := @
Reid Spencer491a6cd2007-07-23 08:20:46 +0000535 AR.Flags += >/dev/null 2>/dev/null
Reid Spencer11fde542005-01-16 02:20:54 +0000536 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
Reid Spencer151f8ba2004-10-25 08:27:37 +0000537else
Misha Brukmanef5dc702009-01-08 02:11:55 +0000538 ConfigureScriptFLAGS :=
Misha Brukmanb5f096f2002-09-12 16:05:39 +0000539endif
540
Vikram S. Advefeeae582002-09-18 11:55:13 +0000541# By default, strip symbol information from executable
Chris Lattner760da062003-03-14 20:25:22 +0000542ifndef KEEP_SYMBOLS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000543 Strip := $(PLATFORMSTRIPOPTS)
544 StripWarnMsg := "(without symbols)"
Reid Spencer860598a2005-02-24 07:12:43 +0000545 Install.StripFlag += -s
Vikram S. Advefeeae582002-09-18 11:55:13 +0000546endif
547
Reid Spencer3a561f52004-10-23 20:04:14 +0000548# Adjust linker flags for building an executable
Nick Lewycky2be20872009-02-26 08:03:36 +0000549ifneq ($(OS),Darwin)
Scott Michel87af5f02009-03-12 21:03:53 +0000550ifneq ($(DARWIN_MAJVERS),4)
Reid Spencer4d71b662004-10-22 21:01:56 +0000551ifdef TOOLNAME
Reid Spencer815cbcf2004-11-18 10:03:46 +0000552ifdef EXAMPLE_TOOL
Nick Lewycky34d74552009-03-07 22:17:05 +0000553 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
Reid Spencer815cbcf2004-11-18 10:03:46 +0000554else
Nick Lewycky34d74552009-03-07 22:17:05 +0000555 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000556endif
Reid Spencer815cbcf2004-11-18 10:03:46 +0000557endif
Nick Lewyckya15dc032009-02-26 07:44:16 +0000558endif
Nick Lewyckya15dc032009-02-26 07:44:16 +0000559endif
Dinakar Dhurjati87ea8aa2003-10-29 14:28:35 +0000560
Reid Spencer3a561f52004-10-23 20:04:14 +0000561#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000562# Options To Invoke Tools
Reid Spencer3a561f52004-10-23 20:04:14 +0000563#----------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000564
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000565ifndef NO_PEDANTIC
Duncan Sands9ff4c132009-06-19 12:40:30 +0000566CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbare36b6d42009-05-12 07:26:49 +0000567endif
Duncan Sands9ff4c132009-06-19 12:40:30 +0000568CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
569 $(EXTRA_OPTIONS)
Reid Spencer4d71b662004-10-22 21:01:56 +0000570
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000571ifeq ($(OS),HP-UX)
Duraid Madinaeb713402006-02-15 03:20:16 +0000572 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
Duraid Madina0ad8fcf2005-05-16 06:38:09 +0000573endif
574
Chris Lattner73faa392006-05-30 16:38:06 +0000575# If we are building a universal binary on Mac OS/X, pass extra options. This
576# is useful to people that want to link the LLVM libraries into their universal
Chris Lattner7dabf392006-06-29 19:38:04 +0000577# apps.
578#
579# The following can be optionally specified:
580# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
581# For Mac OS/X 10.4 Intel machines, the traditional one is:
582# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
583# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
584# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
585# i386/ppc only.
Chris Lattnerba466652006-04-06 06:30:15 +0000586ifdef UNIVERSAL
Chris Lattner7dabf392006-06-29 19:38:04 +0000587 ifndef UNIVERSAL_ARCH
588 UNIVERSAL_ARCH := i386 ppc
589 endif
590 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
591 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerf988e532006-06-16 21:47:59 +0000592 ifdef UNIVERSAL_SDK_PATH
593 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerf988e532006-06-16 21:47:59 +0000594 endif
595
596 # Building universal cannot compute dependencies automatically.
Chris Lattnerba466652006-04-06 06:30:15 +0000597 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengc785b4f2009-03-09 18:28:37 +0000598else
Bill Wendlinga0833352009-03-12 04:10:09 +0000599 ifeq ($(OS),Darwin)
600 ifeq ($(ARCH),x86_64)
Evan Chenga38ff642009-03-23 03:45:56 +0000601 TargetCommonOpts = -m64
Bill Wendlinga0833352009-03-12 04:10:09 +0000602 else
603 ifeq ($(ARCH),x86)
Evan Chenga38ff642009-03-23 03:45:56 +0000604 TargetCommonOpts = -m32
Bill Wendlinga0833352009-03-12 04:10:09 +0000605 endif
Evan Chengc785b4f2009-03-09 18:28:37 +0000606 endif
607 endif
Chris Lattnerba466652006-04-06 06:30:15 +0000608endif
609
Chris Lattner58a4c5e2008-06-24 17:44:42 +0000610ifeq ($(OS),SunOS)
611CPP.BaseFlags += -include llvm/System/Solaris.h
612endif
613
Misha Brukmanef5dc702009-01-08 02:11:55 +0000614LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman63f97202008-10-17 01:33:43 +0000615CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Reid Spencerf2722ca2006-03-22 15:59:55 +0000616# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands095765e2008-01-28 17:38:30 +0000617CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
618 $(patsubst %,-I%/include,\
Chris Lattner2671fc32008-01-28 04:18:41 +0000619 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
620 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
621 $(CPP.BaseFlags)
Reid Spencer4d71b662004-10-22 21:01:56 +0000622
Daniel Dunbar55a07b22009-03-13 20:59:41 +0000623ifeq ($(BUILD_COMPONENT), 1)
Chris Lattner6be92662009-06-16 23:00:42 +0000624 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) \
Evan Chenga38ff642009-03-23 03:45:56 +0000625 $(TargetCommonOpts) $(CompileCommonOpts) -c
Chris Lattner6be92662009-06-16 23:00:42 +0000626 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) \
Evan Chenga38ff642009-03-23 03:45:56 +0000627 $(TargetCommonOpts) $(CompileCommonOpts) -c
628 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000629 $(CompileCommonOpts) $(CXX.Flags) -E
630 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) \
Evan Chenga38ff642009-03-23 03:45:56 +0000631 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000632else
Chris Lattner6be92662009-06-16 23:00:42 +0000633 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) \
Evan Chenga38ff642009-03-23 03:45:56 +0000634 $(TargetCommonOpts) $(CompileCommonOpts) -c
Chris Lattner6be92662009-06-16 23:00:42 +0000635 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) \
Evan Chenga38ff642009-03-23 03:45:56 +0000636 $(TargetCommonOpts) $(CompileCommonOpts) -c
637 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) \
Chris Lattner6be92662009-06-16 23:00:42 +0000638 $(CompileCommonOpts) $(CXX.Flags) -E
639 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) \
Evan Chenga38ff642009-03-23 03:45:56 +0000640 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbach673612e2008-10-02 22:56:44 +0000641endif
642
Evan Chenga38ff642009-03-23 03:45:56 +0000643BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) \
644 $(TargetCommonOpts) $(CompileCommonOpts)
645Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) \
646 $(TargetCommonOpts) $(CompileCommonOpts) -E
Chris Lattner0cb09f12005-10-05 00:28:41 +0000647
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000648BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
Evan Chenga38ff642009-03-23 03:45:56 +0000649 $(TargetCommonOpts) $(CompileCommonOpts)
Chris Lattnerd95e3f22006-09-29 18:47:13 +0000650
Misha Brukmanef5dc702009-01-08 02:11:55 +0000651ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
652ScriptInstall = $(INSTALL) -m 0755
Reid Spencer860598a2005-02-24 07:12:43 +0000653DataInstall = $(INSTALL) -m 0644
Chris Lattner6e0a5292008-01-15 23:27:40 +0000654
655# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
656# paths. In this case, the SYSPATH function (defined in
657# Makefile.config) transforms Unix paths into Windows paths.
658TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkovafa22592009-01-09 16:31:01 +0000659 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner6e0a5292008-01-15 23:27:40 +0000660 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
661 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
662
Reid Spencercc2d1e22004-10-30 09:19:36 +0000663Archive = $(AR) $(AR.Flags)
Reid Spencer9a2f1372004-12-02 09:28:21 +0000664LArchive = $(LLVMToolDir)/llvm-ar rcsf
Reid Spencer4d71b662004-10-22 21:01:56 +0000665ifdef RANLIB
Reid Spencer3a561f52004-10-23 20:04:14 +0000666Ranlib = $(RANLIB)
Reid Spencer4d71b662004-10-22 21:01:56 +0000667else
Reid Spencer3a561f52004-10-23 20:04:14 +0000668Ranlib = ranlib
John Criswell7a73b802003-06-30 21:59:07 +0000669endif
670
Chris Lattner00950542001-06-06 20:29:01 +0000671#----------------------------------------------------------
Misha Brukmanef5dc702009-01-08 02:11:55 +0000672# Get the list of source files and compute object file
673# names from them.
Reid Spencer3a561f52004-10-23 20:04:14 +0000674#----------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +0000675
676ifndef SOURCES
677 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerc9480642009-01-02 07:16:45 +0000678 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000679else
Chris Lattner89681112006-01-27 22:13:12 +0000680 Sources := $(SOURCES)
Misha Brukmanef5dc702009-01-08 02:11:55 +0000681endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000682
Chris Lattner89681112006-01-27 22:13:12 +0000683ifdef BUILT_SOURCES
Chris Lattnerc9480642009-01-02 07:16:45 +0000684Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Reid Spencer345235ca2004-12-04 22:34:09 +0000685endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000686
Chris Lattner89681112006-01-27 22:13:12 +0000687BaseNameSources := $(sort $(basename $(Sources)))
688
689ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Chris Lattner89681112006-01-27 22:13:12 +0000690ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
691
Reid Spencer3a561f52004-10-23 20:04:14 +0000692###############################################################################
693# DIRECTORIES: Handle recursive descent of directory structure
694###############################################################################
John Criswell82f4a5a2003-07-31 20:58:51 +0000695
Chris Lattner00950542001-06-06 20:29:01 +0000696#---------------------------------------------------------
Reid Spencera69b1ea2004-10-28 09:15:28 +0000697# Provide rules to make install dirs. This must be early
698# in the file so they get built before dependencies
699#---------------------------------------------------------
700
Mike Stumpb445d742009-02-12 23:45:11 +0000701$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpe50f34a2009-01-22 03:24:22 +0000702 $(Verb) $(MKDIR) $@
Reid Spencera69b1ea2004-10-28 09:15:28 +0000703
Reid Spencercc2d1e22004-10-30 09:19:36 +0000704# To create other directories, as needed, and timestamp their creation
705%/.dir:
706 $(Verb) $(MKDIR) $* > /dev/null
Reid Spencerfbbf3072004-11-29 05:00:33 +0000707 $(Verb) $(DATE) > $@
Reid Spencercc2d1e22004-10-30 09:19:36 +0000708
Reid Spencer815cbcf2004-11-18 10:03:46 +0000709.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
710.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
Reid Spencera69b1ea2004-10-28 09:15:28 +0000711
712#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000713# Handle the DIRS options for sequential construction
Chris Lattner00950542001-06-06 20:29:01 +0000714#---------------------------------------------------------
715
Misha Brukmanef5dc702009-01-08 02:11:55 +0000716SubDirs :=
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000717ifdef DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000718SubDirs += $(DIRS)
Chris Lattner82033602006-07-26 20:22:26 +0000719
720ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000721$(RecursiveTargets)::
722 $(Verb) for dir in $(DIRS); do \
Reid Spencer4d71b662004-10-22 21:01:56 +0000723 if [ ! -f $$dir/Makefile ]; then \
724 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000725 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000726 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000727 ($(MAKE) -C $$dir $@ ) || exit 1; \
Chris Lattnerf1ffd992002-09-17 23:35:02 +0000728 done
Chris Lattner82033602006-07-26 20:22:26 +0000729else
730$(RecursiveTargets)::
731 $(Verb) for dir in $(DIRS); do \
732 ($(MAKE) -C $$dir $@ ) || exit 1; \
733 done
734endif
735
Anand Shukla7c7a07e2002-09-18 04:29:30 +0000736endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000737
Reid Spencer3a561f52004-10-23 20:04:14 +0000738#---------------------------------------------------------
739# Handle the EXPERIMENTAL_DIRS options ensuring success
740# after each directory is built.
741#---------------------------------------------------------
742ifdef EXPERIMENTAL_DIRS
Reid Spencercc2d1e22004-10-30 09:19:36 +0000743$(RecursiveTargets)::
744 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
Reid Spencer3a561f52004-10-23 20:04:14 +0000745 if [ ! -f $$dir/Makefile ]; then \
746 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000747 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000748 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000749 ($(MAKE) -C $$dir $@ ) || exit 0; \
Reid Spencer3a561f52004-10-23 20:04:14 +0000750 done
751endif
Chris Lattnera8abc222002-09-18 03:22:27 +0000752
Reid Spencer25e8a702005-12-21 23:17:06 +0000753#-----------------------------------------------------------
Mike Stump0a268912009-01-24 00:00:41 +0000754# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
755#-----------------------------------------------------------
756ifdef OPTIONAL_PARALLEL_DIRS
757 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
758endif
759
760#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000761# Handle the PARALLEL_DIRS options for parallel construction
Reid Spencer25e8a702005-12-21 23:17:06 +0000762#-----------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +0000763ifdef PARALLEL_DIRS
764
Reid Spencercc2d1e22004-10-30 09:19:36 +0000765SubDirs += $(PARALLEL_DIRS)
766
Reid Spencer44cb1b32004-12-03 20:08:48 +0000767# Unfortunately, this list must be maintained if new recursive targets are added
Reid Spencercc2d1e22004-10-30 09:19:36 +0000768all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
769clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
Reid Spencerca5fe8f2004-11-02 16:56:15 +0000770clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000771install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000772uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
Reid Spencer44cb1b32004-12-03 20:08:48 +0000773install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
Reid Spencer3a561f52004-10-23 20:04:14 +0000774
Reid Spencer345235ca2004-12-04 22:34:09 +0000775ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
Reid Spencer3a561f52004-10-23 20:04:14 +0000776
Reid Spencer345235ca2004-12-04 22:34:09 +0000777$(ParallelTargets) :
Reid Spencercc2d1e22004-10-30 09:19:36 +0000778 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
Reid Spencer4d71b662004-10-22 21:01:56 +0000779 $(MKDIR) $(@D); \
Reid Spencer11fde542005-01-16 02:20:54 +0000780 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
John Criswellb3866b62003-11-25 19:32:22 +0000781 fi; \
Reid Spencer91140e92007-02-07 03:29:29 +0000782 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
Chris Lattner00950542001-06-06 20:29:01 +0000783endif
784
Reid Spencer3a561f52004-10-23 20:04:14 +0000785#---------------------------------------------------------
786# Handle the OPTIONAL_DIRS options for directores that may
787# or may not exist.
788#---------------------------------------------------------
John Criswell2a6530f2003-06-27 16:58:44 +0000789ifdef OPTIONAL_DIRS
Reid Spencer151f8ba2004-10-25 08:27:37 +0000790
Reid Spencercc2d1e22004-10-30 09:19:36 +0000791SubDirs += $(OPTIONAL_DIRS)
Reid Spencer151f8ba2004-10-25 08:27:37 +0000792
Chris Lattner82033602006-07-26 20:22:26 +0000793ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencercc2d1e22004-10-30 09:19:36 +0000794$(RecursiveTargets)::
795 $(Verb) for dir in $(OPTIONAL_DIRS); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000796 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
Reid Spencer4d71b662004-10-22 21:01:56 +0000797 if [ ! -f $$dir/Makefile ]; then \
798 $(MKDIR) $$dir; \
Reid Spencer11fde542005-01-16 02:20:54 +0000799 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000800 fi; \
Reid Spencerdd1aac32006-05-17 22:55:35 +0000801 ($(MAKE) -C$$dir $@ ) || exit 1; \
Reid Spencer4d71b662004-10-22 21:01:56 +0000802 fi \
John Criswell2a6530f2003-06-27 16:58:44 +0000803 done
Chris Lattner82033602006-07-26 20:22:26 +0000804else
805$(RecursiveTargets)::
806 $(Verb) for dir in $(OPTIONAL_DIRS); do \
807 ($(MAKE) -C$$dir $@ ) || exit 1; \
808 done
809endif
John Criswell2a6530f2003-06-27 16:58:44 +0000810endif
811
Reid Spencerfc945082004-08-20 09:20:05 +0000812#---------------------------------------------------------
813# Handle the CONFIG_FILES options
814#---------------------------------------------------------
815ifdef CONFIG_FILES
Reid Spencerfc945082004-08-20 09:20:05 +0000816
Reid Spencera2a31bf2007-02-06 18:53:14 +0000817ifdef NO_INSTALL
818install-local::
819 $(Echo) Install circumvented with NO_INSTALL
820uninstall-local::
821 $(Echo) UnInstall circumvented with NO_INSTALL
822else
Reid Spencer11fde542005-01-16 02:20:54 +0000823install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
824 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000825 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000826 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
Reid Spencer4a0aaea2005-02-24 03:56:32 +0000827 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencer11fde542005-01-16 02:20:54 +0000828 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
Reid Spencer4a0aaea2005-02-24 03:56:32 +0000829 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
Reid Spencer1b426ab2004-11-23 05:59:53 +0000830 else \
831 $(ECHO) Error: cannot find config file $${file}. ; \
832 fi \
Reid Spencerfc945082004-08-20 09:20:05 +0000833 done
Reid Spencer3a561f52004-10-23 20:04:14 +0000834
Reid Spencerc6dcc6a2004-10-28 07:57:28 +0000835uninstall-local::
Reid Spencer11fde542005-01-16 02:20:54 +0000836 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
Reid Spencercc2d1e22004-10-30 09:19:36 +0000837 $(Verb)for file in $(CONFIG_FILES); do \
Reid Spencer11fde542005-01-16 02:20:54 +0000838 $(RM) -f $(PROJ_etcdir)/$${file} ; \
Reid Spencere5487ba2004-10-24 07:53:21 +0000839 done
Reid Spencera2a31bf2007-02-06 18:53:14 +0000840endif
Reid Spencere5487ba2004-10-24 07:53:21 +0000841
Reid Spencerfc945082004-08-20 09:20:05 +0000842endif
843
Reid Spencer3a561f52004-10-23 20:04:14 +0000844###############################################################################
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000845# Set up variables for building libararies
846###############################################################################
847
848#---------------------------------------------------------
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000849# Define various command line options pertaining to the
Misha Brukmanef5dc702009-01-08 02:11:55 +0000850# libraries needed when linking. There are "Proj" libs
851# (defined by the user's project) and "LLVM" libs (defined
Chris Lattneref0d0f12006-09-04 04:47:21 +0000852# by the LLVM project).
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000853#---------------------------------------------------------
Andrew Lenharth7ac17522005-08-13 05:09:50 +0000854
Chris Lattneref0d0f12006-09-04 04:47:21 +0000855ifdef USEDLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000856ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
857ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000858ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
859ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
860endif
861
862ifdef LLVMLIBS
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000863LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
864LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000865LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000866LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000867endif
868
Daniel Dunbar94e98af2008-10-03 19:11:19 +0000869ifndef IS_CLEANING_TARGET
Chris Lattneref0d0f12006-09-04 04:47:21 +0000870ifdef LINK_COMPONENTS
Chris Lattner0a1db822006-09-04 05:23:20 +0000871
872# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
873# clean in tools, then do a make in tools (instead of at the top level).
874$(LLVM_CONFIG):
875 @echo "*** llvm-config doesn't exist - rebuilding it."
876 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif0a4c3782008-02-27 13:34:15 +0000877
Chris Lattner0a1db822006-09-04 05:23:20 +0000878$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
879
Mikhail Glushenkov533384e2009-03-03 10:03:27 +0000880LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
881LLVMLibsPaths += $(LLVM_CONFIG) \
Chris Lattnera7868af2006-09-04 06:39:52 +0000882 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
Chris Lattneref0d0f12006-09-04 04:47:21 +0000883endif
Chris Lattner55e6c4a2006-09-04 04:50:10 +0000884endif
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000885
886###############################################################################
Reid Spencer3a561f52004-10-23 20:04:14 +0000887# Library Build Rules: Four ways to build a library
888###############################################################################
Chris Lattner00950542001-06-06 20:29:01 +0000889
Reid Spencer7980ea42004-12-05 05:17:22 +0000890#---------------------------------------------------------
891# Bytecode Module Targets:
892# If the user set MODULE_NAME then they want to build a
893# bytecode module from the sources. We compile all the
894# sources and link it together into a single bytecode
895# module.
896#---------------------------------------------------------
897
898ifdef MODULE_NAME
Reid Spencer9a8398e2005-02-14 21:54:08 +0000899ifeq ($(strip $(LLVMGCC)),)
Reid Spencer0d255bd2005-05-13 18:32:54 +0000900$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +0000901else
Reid Spencer7980ea42004-12-05 05:17:22 +0000902
903Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenhartha7b33db2008-02-25 22:41:55 +0000904LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Reid Spencerbbd5e432006-04-12 18:21:35 +0000905
Reid Spencer7980ea42004-12-05 05:17:22 +0000906
907ifdef EXPORTED_SYMBOL_FILE
Chris Lattner89681112006-01-27 22:13:12 +0000908LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer7980ea42004-12-05 05:17:22 +0000909endif
910
Reid Spencer43eb96c2007-02-09 15:52:07 +0000911$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
Reid Spencer0d255bd2005-05-13 18:32:54 +0000912 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
Reid Spencer7980ea42004-12-05 05:17:22 +0000913 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
914
915all-local:: $(Module)
916
917clean-local::
918ifneq ($(strip $(Module)),)
919 -$(Verb) $(RM) -f $(Module)
920endif
921
Reid Spencerab3690b2004-12-13 07:38:07 +0000922ifdef BYTECODE_DESTINATION
923ModuleDestDir := $(BYTECODE_DESTINATION)
924else
Reid Spencer11fde542005-01-16 02:20:54 +0000925ModuleDestDir := $(PROJ_libdir)
Reid Spencerab3690b2004-12-13 07:38:07 +0000926endif
Reid Spencer7980ea42004-12-05 05:17:22 +0000927
Reid Spencera2a31bf2007-02-06 18:53:14 +0000928ifdef NO_INSTALL
929install-local::
930 $(Echo) Install circumvented with NO_INSTALL
931uninstall-local::
932 $(Echo) Uninstall circumvented with NO_INSTALL
933else
Reid Spencerab3690b2004-12-13 07:38:07 +0000934DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
935
936install-module:: $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +0000937install-local:: $(DestModule)
938
Misha Brukmanef5dc702009-01-08 02:11:55 +0000939$(DestModule): $(ModuleDestDir) $(Module)
Reid Spencer7980ea42004-12-05 05:17:22 +0000940 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
Reid Spencer151bbe42005-02-24 21:30:37 +0000941 $(Verb) $(DataInstall) $(Module) $(DestModule)
Reid Spencer7980ea42004-12-05 05:17:22 +0000942
943uninstall-local::
944 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
945 -$(Verb) $(RM) -f $(DestModule)
Reid Spencera2a31bf2007-02-06 18:53:14 +0000946endif
Reid Spencer7980ea42004-12-05 05:17:22 +0000947
948endif
Reid Spencer9a8398e2005-02-14 21:54:08 +0000949endif
Brian Gaeke8abff792004-01-22 22:53:48 +0000950
Reid Spencer3a561f52004-10-23 20:04:14 +0000951# if we're building a library ...
Chris Lattner00950542001-06-06 20:29:01 +0000952ifdef LIBRARYNAME
Vikram S. Adve112a72c2001-07-15 13:16:47 +0000953
Chris Lattner2a548c52002-09-16 22:36:42 +0000954# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000955LIBRARYNAME := $(strip $(LIBRARYNAME))
Reid Spencer492c2932005-01-11 04:31:07 +0000956ifdef LOADABLE_MODULE
Nick Lewyckya15dc032009-02-26 07:44:16 +0000957LibName.A := $(LibDir)/$(LIBRARYNAME).a
958LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer492c2932005-01-11 04:31:07 +0000959else
Reid Spencercc2d1e22004-10-30 09:19:36 +0000960LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewyckya15dc032009-02-26 07:44:16 +0000961LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
962endif
Reid Spencercc2d1e22004-10-30 09:19:36 +0000963LibName.O := $(LibDir)/$(LIBRARYNAME).o
Reid Spencer9a2f1372004-12-02 09:28:21 +0000964LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
Chris Lattnerccb4ebd2002-09-16 22:34:56 +0000965
Reid Spencer3a561f52004-10-23 20:04:14 +0000966#---------------------------------------------------------
967# Shared Library Targets:
968# If the user asked for a shared library to be built
969# with the SHARED_LIBRARY variable, then we provide
970# targets for building them.
971#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +0000972ifdef SHARED_LIBRARY
973
Nick Lewyckya15dc032009-02-26 07:44:16 +0000974all-local:: $(LibName.SO)
Reid Spencer4d71b662004-10-22 21:01:56 +0000975
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000976ifdef LINK_LIBS_IN_SHARED
Reid Spencer42fe4552006-08-07 23:12:15 +0000977ifdef LOADABLE_MODULE
Chris Lattner166f45e2006-11-15 21:04:15 +0000978SharedLibKindMessage := "Loadable Module"
Reid Spencer42fe4552006-08-07 23:12:15 +0000979else
980SharedLibKindMessage := "Shared Library"
981endif
Nick Lewyckya15dc032009-02-26 07:44:16 +0000982$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Reid Spencer42fe4552006-08-07 23:12:15 +0000983 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
984 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000985 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Torok Edwin2efc73d2009-05-26 19:11:47 +0000986 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000987else
Nick Lewyckya15dc032009-02-26 07:44:16 +0000988$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +0000989 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewyckya15dc032009-02-26 07:44:16 +0000990 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Reid Spencer8f9e21e2005-05-19 00:37:31 +0000991endif
Reid Spencer3a561f52004-10-23 20:04:14 +0000992
993clean-local::
Nick Lewyckya15dc032009-02-26 07:44:16 +0000994ifneq ($(strip $(LibName.SO)),)
995 -$(Verb) $(RM) -f $(LibName.SO)
Reid Spencere5487ba2004-10-24 07:53:21 +0000996endif
Reid Spencer4d71b662004-10-22 21:01:56 +0000997
Reid Spencera2a31bf2007-02-06 18:53:14 +0000998ifdef NO_INSTALL
999install-local::
1000 $(Echo) Install circumvented with NO_INSTALL
1001uninstall-local::
1002 $(Echo) Uninstall circumvented with NO_INSTALL
1003else
Reid Spencer11fde542005-01-16 02:20:54 +00001004DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
Reid Spencer4d71b662004-10-22 21:01:56 +00001005
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001006install-local:: $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001007
Nick Lewyckya15dc032009-02-26 07:44:16 +00001008$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001009 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001010 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001011
Misha Brukmanef5dc702009-01-08 02:11:55 +00001012uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001013 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
Reid Spencer11fde542005-01-16 02:20:54 +00001014 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
Reid Spencera2a31bf2007-02-06 18:53:14 +00001015endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001016endif
1017
Reid Spencer3a561f52004-10-23 20:04:14 +00001018#---------------------------------------------------------
1019# Bytecode Library Targets:
1020# If the user asked for a bytecode library to be built
Misha Brukmanef5dc702009-01-08 02:11:55 +00001021# with the BYTECODE_LIBRARY variable, then we provide
Reid Spencer3a561f52004-10-23 20:04:14 +00001022# targets for building them.
1023#---------------------------------------------------------
Reid Spencer4d71b662004-10-22 21:01:56 +00001024ifdef BYTECODE_LIBRARY
Reid Spencer9a8398e2005-02-14 21:54:08 +00001025ifeq ($(strip $(LLVMGCC)),)
Reid Spencer0d255bd2005-05-13 18:32:54 +00001026$(warning Bytecode libraries require llvm-gcc which could not be found ****)
Reid Spencer9a8398e2005-02-14 21:54:08 +00001027else
Reid Spencer4d71b662004-10-22 21:01:56 +00001028
Reid Spencer9a2f1372004-12-02 09:28:21 +00001029all-local:: $(LibName.BCA)
1030
1031ifdef EXPORTED_SYMBOL_FILE
Reid Spencer43eb96c2007-02-09 15:52:07 +00001032BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
Chris Lattner73faa392006-05-30 16:38:06 +00001033 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001034
Reid Spencer43eb96c2007-02-09 15:52:07 +00001035$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001036 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001037 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1038 "(internalize)"
Chris Lattnerb0ea8642004-12-02 21:23:43 +00001039 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001040 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001041 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
Reid Spencer4d71b662004-10-22 21:01:56 +00001042else
Reid Spencerf2ac1892004-12-16 07:36:08 +00001043$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
Chris Lattner264ccbe2004-12-15 17:14:06 +00001044 $(LLVMToolDir)/llvm-ar
Reid Spencer9a2f1372004-12-02 09:28:21 +00001045 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
Reid Spencerefd6bb32004-12-13 03:59:35 +00001046 $(Verb) $(RM) -f $@
Reid Spencer9a2f1372004-12-02 09:28:21 +00001047 $(Verb) $(LArchive) $@ $(ObjectsBC)
1048
Reid Spencer4d71b662004-10-22 21:01:56 +00001049endif
1050
Reid Spencer3a561f52004-10-23 20:04:14 +00001051clean-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001052ifneq ($(strip $(LibName.BCA)),)
1053 -$(Verb) $(RM) -f $(LibName.BCA)
Reid Spencere5487ba2004-10-24 07:53:21 +00001054endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001055
Reid Spencer8f094f32004-12-13 07:28:21 +00001056ifdef BYTECODE_DESTINATION
1057BytecodeDestDir := $(BYTECODE_DESTINATION)
1058else
Reid Spencer11fde542005-01-16 02:20:54 +00001059BytecodeDestDir := $(PROJ_libdir)
Reid Spencer8f094f32004-12-13 07:28:21 +00001060endif
1061
Daniel Dunbard62031e2009-05-12 05:35:40 +00001062DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Reid Spencer9a2f1372004-12-02 09:28:21 +00001063
Reid Spencer44cb1b32004-12-03 20:08:48 +00001064install-bytecode-local:: $(DestBytecodeLib)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001065
Reid Spencera2a31bf2007-02-06 18:53:14 +00001066ifdef NO_INSTALL
1067install-local::
1068 $(Echo) Install circumvented with NO_INSTALL
1069uninstall-local::
1070 $(Echo) Uninstall circumvented with NO_INSTALL
1071else
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001072install-local:: $(DestBytecodeLib)
Chris Lattner481cc7c2003-08-15 02:18:35 +00001073
Mike Stumpb445d742009-02-12 23:45:11 +00001074$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Reid Spencer9a2f1372004-12-02 09:28:21 +00001075 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerb80621f2005-02-24 21:36:32 +00001076 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001077
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001078uninstall-local::
Reid Spencer9a2f1372004-12-02 09:28:21 +00001079 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001080 -$(Verb) $(RM) -f $(DestBytecodeLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001081endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001082endif
Reid Spencer9a8398e2005-02-14 21:54:08 +00001083endif
Vikram S. Adve60f56062002-08-02 18:34:12 +00001084
Reid Spencercc2d1e22004-10-30 09:19:36 +00001085#---------------------------------------------------------
Chris Lattner6be92662009-06-16 23:00:42 +00001086# Library Targets:
1087# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1088# building an archive.
Reid Spencercc2d1e22004-10-30 09:19:36 +00001089#---------------------------------------------------------
Chris Lattner89938082005-10-24 02:21:45 +00001090ifndef BUILD_ARCHIVE
Chris Lattner6be92662009-06-16 23:00:42 +00001091ifndef LOADABLE_MODULE
1092BUILD_ARCHIVE = 1
Reid Spencera2a31bf2007-02-06 18:53:14 +00001093endif
Chris Lattnere62dbe92002-07-23 17:56:16 +00001094endif
Chris Lattner760da062003-03-14 20:25:22 +00001095
Reid Spencercc2d1e22004-10-30 09:19:36 +00001096#---------------------------------------------------------
1097# Archive Library Targets:
Misha Brukmanef5dc702009-01-08 02:11:55 +00001098# If the user wanted a regular archive library built,
Reid Spencercc2d1e22004-10-30 09:19:36 +00001099# then we provide targets for building them.
1100#---------------------------------------------------------
Chris Lattnere62dbe92002-07-23 17:56:16 +00001101ifdef BUILD_ARCHIVE
Chris Lattnere62dbe92002-07-23 17:56:16 +00001102
Reid Spencercc2d1e22004-10-30 09:19:36 +00001103all-local:: $(LibName.A)
1104
Reid Spencerf2ac1892004-12-16 07:36:08 +00001105$(LibName.A): $(ObjectsO) $(LibDir)/.dir
Reid Spencer9af3b292004-11-01 07:50:27 +00001106 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001107 -$(Verb) $(RM) -f $@
Bill Wendlingdfaf4f92009-01-03 22:46:50 +00001108 $(Verb) $(Archive) $@ $(ObjectsO)
1109 $(Verb) $(Ranlib) $@
Vikram S. Adve41e78912002-09-20 14:03:13 +00001110
Reid Spencer3a561f52004-10-23 20:04:14 +00001111clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001112ifneq ($(strip $(LibName.A)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001113 -$(Verb) $(RM) -f $(LibName.A)
Chris Lattner00950542001-06-06 20:29:01 +00001114endif
1115
Reid Spencera2a31bf2007-02-06 18:53:14 +00001116ifdef NO_INSTALL
1117install-local::
1118 $(Echo) Install circumvented with NO_INSTALL
1119uninstall-local::
1120 $(Echo) Uninstall circumvented with NO_INSTALL
1121else
Reid Spencer11fde542005-01-16 02:20:54 +00001122DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
Reid Spencere5487ba2004-10-24 07:53:21 +00001123
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001124install-local:: $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001125
Mike Stumpb445d742009-02-12 23:45:11 +00001126$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001127 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencer11fde542005-01-16 02:20:54 +00001128 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001129 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Reid Spencere5487ba2004-10-24 07:53:21 +00001130
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001131uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001132 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001133 -$(Verb) $(RM) -f $(DestArchiveLib)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001134endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001135endif
1136
1137# endif LIBRARYNAME
Misha Brukmanef5dc702009-01-08 02:11:55 +00001138endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001139
Reid Spencerb1dd3dd2004-10-24 08:21:04 +00001140###############################################################################
1141# Tool Build Rules: Build executable tool based on TOOLNAME option
1142###############################################################################
1143
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001144ifdef TOOLNAME
1145
Reid Spencercc2d1e22004-10-30 09:19:36 +00001146#---------------------------------------------------------
1147# Set up variables for building a tool.
1148#---------------------------------------------------------
Reid Spencer815cbcf2004-11-18 10:03:46 +00001149ifdef EXAMPLE_TOOL
Reid Spencer5da2d082005-05-19 21:03:11 +00001150ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001151else
Reid Spencer5da2d082005-05-19 21:03:11 +00001152ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
Reid Spencer815cbcf2004-11-18 10:03:46 +00001153endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001154
Reid Spencercc2d1e22004-10-30 09:19:36 +00001155#---------------------------------------------------------
Chris Lattner61863a32009-02-26 17:47:49 +00001156# Prune Exports
1157#---------------------------------------------------------
1158
1159# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1160# not exporting all of the weak symbols from the binary. This reduces dyld
1161# startup time by 4x on darwin in some cases.
1162ifdef TOOL_NO_EXPORTS
1163ifeq ($(OS),Darwin)
Chris Lattner1b030a12009-03-10 17:15:56 +00001164
1165# Tiger tools don't support this.
1166ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner61863a32009-02-26 17:47:49 +00001167LD.Flags += -Wl,-exported_symbol -Wl,_main
1168endif
Chris Lattner1b030a12009-03-10 17:15:56 +00001169endif
Chris Lattner61863a32009-02-26 17:47:49 +00001170
1171ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
Chris Lattnerc953a882009-02-26 18:38:40 +00001172LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner61863a32009-02-26 17:47:49 +00001173endif
1174endif
1175
1176
1177#---------------------------------------------------------
Reid Spencercc2d1e22004-10-30 09:19:36 +00001178# Provide targets for building the tools
1179#---------------------------------------------------------
1180all-local:: $(ToolBuildPath)
John Criswell2a6530f2003-06-27 16:58:44 +00001181
Reid Spencer3a561f52004-10-23 20:04:14 +00001182clean-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001183ifneq ($(strip $(ToolBuildPath)),)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001184 -$(Verb) $(RM) -f $(ToolBuildPath)
Reid Spencere5487ba2004-10-24 07:53:21 +00001185endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001186
Reid Spencer815cbcf2004-11-18 10:03:46 +00001187ifdef EXAMPLE_TOOL
1188$(ToolBuildPath): $(ExmplDir)/.dir
1189else
1190$(ToolBuildPath): $(ToolDir)/.dir
1191endif
1192
Chris Lattnera7868af2006-09-04 06:39:52 +00001193$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
Reid Spencer9af3b292004-11-01 07:50:27 +00001194 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001195 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Reid Spencerab519972006-05-16 06:25:14 +00001196 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
Chris Lattnerd25ad612006-02-14 04:25:54 +00001197 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukmanef5dc702009-01-08 02:11:55 +00001198 $(StripWarnMsg)
Reid Spencere5487ba2004-10-24 07:53:21 +00001199
Reid Spencera2a31bf2007-02-06 18:53:14 +00001200ifdef NO_INSTALL
1201install-local::
1202 $(Echo) Install circumvented with NO_INSTALL
1203uninstall-local::
1204 $(Echo) Uninstall circumvented with NO_INSTALL
1205else
Reid Spencer11fde542005-01-16 02:20:54 +00001206DestTool = $(PROJ_bindir)/$(TOOLNAME)
Reid Spencere5487ba2004-10-24 07:53:21 +00001207
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001208install-local:: $(DestTool)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001209
Mike Stumpb445d742009-02-12 23:45:11 +00001210$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Reid Spencer9af3b292004-11-01 07:50:27 +00001211 $(Echo) Installing $(BuildMode) $(DestTool)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001212 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
Reid Spencere5487ba2004-10-24 07:53:21 +00001213
Reid Spencerc6dcc6a2004-10-28 07:57:28 +00001214uninstall-local::
Reid Spencer9af3b292004-11-01 07:50:27 +00001215 $(Echo) Uninstalling $(BuildMode) $(DestTool)
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001216 -$(Verb) $(RM) -f $(DestTool)
Reid Spencera2a31bf2007-02-06 18:53:14 +00001217endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001218endif
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001219
Reid Spencercc2d1e22004-10-30 09:19:36 +00001220###############################################################################
Misha Brukmanef5dc702009-01-08 02:11:55 +00001221# Object Build Rules: Build object files based on sources
Reid Spencercc2d1e22004-10-30 09:19:36 +00001222###############################################################################
1223
Duraid Madina197ab872006-02-15 03:23:26 +00001224# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1225ifeq ($(OS),HP-UX)
1226 DISABLE_AUTO_DEPENDENCIES=1
1227endif
1228
Reid Spencercc2d1e22004-10-30 09:19:36 +00001229# Provide rule sets for when dependency generation is enabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001230ifndef DISABLE_AUTO_DEPENDENCIES
Vikram S. Adve41e78912002-09-20 14:03:13 +00001231
Reid Spencercc2d1e22004-10-30 09:19:36 +00001232#---------------------------------------------------------
Nick Lewyckya15dc032009-02-26 07:44:16 +00001233# Create .o files in the ObjDir directory from the .cpp and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001234#---------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001235
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001236DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewyckya15dc032009-02-26 07:44:16 +00001237 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif0a4c3782008-02-27 13:34:15 +00001238
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001239# If the build succeeded, move the dependency file over, otherwise
1240# remove it.
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001241DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1242 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1243
Nick Lewyckya15dc032009-02-26 07:44:16 +00001244$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001245 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001246 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001247 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001248
Nick Lewyckya15dc032009-02-26 07:44:16 +00001249$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001250 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001251 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001252 $(DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001253
Nick Lewyckya15dc032009-02-26 07:44:16 +00001254$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001255 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001256 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattnere43ba3d2007-12-31 23:58:31 +00001257 $(DEPEND_MOVEFILE)
Reid Spencer3a561f52004-10-23 20:04:14 +00001258
Reid Spencercc2d1e22004-10-30 09:19:36 +00001259#---------------------------------------------------------
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001260# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
Reid Spencercc2d1e22004-10-30 09:19:36 +00001261#---------------------------------------------------------
Chris Lattner89681112006-01-27 22:13:12 +00001262
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001263BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1264 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1265
1266# If the build succeeded, move the dependency file over, otherwise
1267# remove it.
1268BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1269 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1270
Reid Spencer129f0042006-12-30 16:31:02 +00001271$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001272 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001273 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1274 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1275 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001276
Reid Spencer129f0042006-12-30 16:31:02 +00001277$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001278 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001279 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1280 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1281 $(BC_DEPEND_MOVEFILE)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001282
Reid Spencer129f0042006-12-30 16:31:02 +00001283$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001284 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001285 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1286 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1287 $(BC_DEPEND_MOVEFILE)
Reid Spencer4d71b662004-10-22 21:01:56 +00001288
Reid Spencercc2d1e22004-10-30 09:19:36 +00001289# Provide alternate rule sets if dependencies are disabled
Reid Spencer4d71b662004-10-22 21:01:56 +00001290else
1291
Nick Lewyckya15dc032009-02-26 07:44:16 +00001292$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001293 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001294 $(Compile.CXX) $< -o $@
Reid Spencer3a561f52004-10-23 20:04:14 +00001295
Nick Lewyckya15dc032009-02-26 07:44:16 +00001296$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001297 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001298 $(Compile.CXX) $< -o $@
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001299
Nick Lewyckya15dc032009-02-26 07:44:16 +00001300$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattnerd92490f2006-06-21 20:58:03 +00001301 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001302 $(Compile.C) $< -o $@
Reid Spencer4d71b662004-10-22 21:01:56 +00001303
Reid Spencer129f0042006-12-30 16:31:02 +00001304$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Reid Spencer9af3b292004-11-01 07:50:27 +00001305 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001306 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Reid Spencer4d71b662004-10-22 21:01:56 +00001307
Reid Spencer129f0042006-12-30 16:31:02 +00001308$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001309 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001310 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001311
Reid Spencer129f0042006-12-30 16:31:02 +00001312$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
Reid Spencer9af3b292004-11-01 07:50:27 +00001313 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Chris Lattner89681112006-01-27 22:13:12 +00001314 $(BCCompile.C) $< -o $@ -S -emit-llvm
Brian Gaeke44909cf2003-12-10 00:26:28 +00001315
Chris Lattner1cbc29f2001-09-07 22:57:58 +00001316endif
1317
Chris Lattner8eb12de2006-06-21 21:01:20 +00001318
1319## Rules for building preprocessed (.i/.ii) outputs.
1320$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1321 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1322 $(Verb) $(Preprocess.CXX) $< -o $@
1323
1324$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1325 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1326 $(Verb) $(Preprocess.CXX) $< -o $@
1327
Reid Spencer44136722006-12-10 04:56:38 +00001328$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Chris Lattner8eb12de2006-06-21 21:01:20 +00001329 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1330 $(Verb) $(Preprocess.C) $< -o $@
1331
1332
1333$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1334 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001335 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001336
1337$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1338 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001339 $(Compile.CXX) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001340
1341$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1342 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewyckya15dc032009-02-26 07:44:16 +00001343 $(Compile.C) $< -o $@ -S
Chris Lattner8eb12de2006-06-21 21:01:20 +00001344
Reid Spencer8b2e1412006-11-17 03:32:33 +00001345
Chris Lattner89681112006-01-27 22:13:12 +00001346# make the C and C++ compilers strip debug info out of bytecode libraries.
Reid Spencer8b2e1412006-11-17 03:32:33 +00001347ifdef DEBUG_RUNTIME
Reid Spencer43eb96c2007-02-09 15:52:07 +00001348$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
Reid Spencer8b2e1412006-11-17 03:32:33 +00001349 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Reid Spencer18464122007-02-09 17:09:14 +00001350 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
Reid Spencer8b2e1412006-11-17 03:32:33 +00001351else
Reid Spencer43eb96c2007-02-09 15:52:07 +00001352$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
Chris Lattner89681112006-01-27 22:13:12 +00001353 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
Reid Spencer43eb96c2007-02-09 15:52:07 +00001354 $(Verb) $(LLVMAS) $< -o - | \
Reid Spencer18464122007-02-09 17:09:14 +00001355 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
Reid Spencer8b2e1412006-11-17 03:32:33 +00001356endif
1357
Chris Lattner89681112006-01-27 22:13:12 +00001358
Reid Spencercc2d1e22004-10-30 09:19:36 +00001359#---------------------------------------------------------
1360# Provide rule to build .bc files from .ll sources,
1361# regardless of dependencies
1362#---------------------------------------------------------
1363$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
Reid Spencer9af3b292004-11-01 07:50:27 +00001364 $(Echo) "Compiling $*.ll for $(BuildMode) build"
Reid Spencercc2d1e22004-10-30 09:19:36 +00001365 $(Verb) $(LLVMAS) $< -f -o $@
1366
1367###############################################################################
1368# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1369###############################################################################
Chris Lattner481cc7c2003-08-15 02:18:35 +00001370
Reid Spencer4d71b662004-10-22 21:01:56 +00001371ifdef TARGET
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001372TABLEGEN_INC_FILES_COMMON = 1
1373endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001374
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001375ifdef LLVMC_BUILD_AUTOGENERATED_INC
1376TABLEGEN_INC_FILES_COMMON = 1
1377endif
1378
1379ifdef TABLEGEN_INC_FILES_COMMON
1380
Reid Spencercc2d1e22004-10-30 09:19:36 +00001381INCFiles := $(filter %.inc,$(BUILT_SOURCES))
Chris Lattner3c473472004-12-16 17:28:50 +00001382INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1383.PRECIOUS: $(INCTMPFiles) $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001384
Misha Brukmanef5dc702009-01-08 02:11:55 +00001385# INCFiles rule: All of the tblgen generated files are emitted to
Chris Lattner23ee7952004-12-16 17:38:56 +00001386# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1387# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbareb909ca2008-11-03 17:33:36 +00001388# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Chris Lattner23ee7952004-12-16 17:38:56 +00001389# dependencies of the .inc files are, unless the contents of the .inc file
1390# changes.
1391$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
Reid Spencerc3719842004-12-16 18:26:53 +00001392 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
Chris Lattner3c473472004-12-16 17:28:50 +00001393
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001394endif # TABLEGEN_INC_FILES_COMMON
1395
1396ifdef TARGET
1397
1398TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1399 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1400 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1401 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1402 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1403 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1404 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1405
Rafael Espindola075630a2009-03-10 17:58:54 +00001406# All of these files depend on tblgen and the .td files.
1407$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1408
Chris Lattner3c473472004-12-16 17:28:50 +00001409$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1410$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001411 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001412 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001413
Chris Lattner3c473472004-12-16 17:28:50 +00001414$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1415$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001416 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001417 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001418
Chris Lattner3c473472004-12-16 17:28:50 +00001419$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1420$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001421 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001422 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001423
Chris Lattner3c473472004-12-16 17:28:50 +00001424$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1425$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001426 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001427 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001428
Chris Lattner3c473472004-12-16 17:28:50 +00001429$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1430$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001431 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001432 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001433
Chris Lattner3c473472004-12-16 17:28:50 +00001434$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1435$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001436 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001437 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001438
Chris Lattner02a4f902004-12-16 17:34:04 +00001439$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1440$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1441 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukmanef5dc702009-01-08 02:11:55 +00001442 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001443
Chris Lattner3c473472004-12-16 17:28:50 +00001444$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1445$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001446 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001447 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Reid Spencer4d71b662004-10-22 21:01:56 +00001448
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001449$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1450$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001451 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001452 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001453
Dan Gohmanb0cf29c2008-08-13 20:19:35 +00001454$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1455$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1456 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1457 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1458
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +00001459$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1460$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1461 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001462 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Chris Lattnerf31f09e2005-09-03 01:15:25 +00001463
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001464$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1465$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1466 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner6e0a5292008-01-15 23:27:40 +00001467 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Chris Lattnerbcc3c192007-02-27 20:44:12 +00001468
Dale Johannesen49de9822009-02-05 01:49:45 +00001469$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1470$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1471 $(Echo) "Building $(<F) calling convention information with tblgen"
1472 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1473
Reid Spencer3a561f52004-10-23 20:04:14 +00001474clean-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001475 -$(Verb) $(RM) -f $(INCFiles)
Reid Spencer4d71b662004-10-22 21:01:56 +00001476
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001477endif # TARGET
1478
1479ifdef LLVMC_BUILD_AUTOGENERATED_INC
1480
Mikhail Glushenkov4558f482009-04-21 19:46:10 +00001481LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1482 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov1386ae42009-03-02 09:42:59 +00001483
1484TDFiles := $(LLVMCPluginSrc) \
1485 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1486
1487$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1488 $(TBLGEN) $(TD_COMMON)
1489 $(Echo) "Building LLVMC configuration library with tblgen"
1490 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1491
1492endif # LLVMC_BUILD_AUTOGENERATED_INC
1493
Reid Spencercc2d1e22004-10-30 09:19:36 +00001494###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001495# OTHER RULES: Other rules needed
1496###############################################################################
Reid Spencer4d71b662004-10-22 21:01:56 +00001497
Chris Lattner30440c62003-01-16 21:06:18 +00001498# To create postscript files from dot files...
John Criswelle0f9ac62003-10-02 19:02:02 +00001499ifneq ($(DOT),false)
Chris Lattner30440c62003-01-16 21:06:18 +00001500%.ps: %.dot
Reid Spencer4d71b662004-10-22 21:01:56 +00001501 $(DOT) -Tps < $< > $@
John Criswell7a73b802003-06-30 21:59:07 +00001502else
1503%.ps: %.dot
Reid Spencercc2d1e22004-10-30 09:19:36 +00001504 $(Echo) "Cannot build $@: The program dot is not installed"
John Criswell7a73b802003-06-30 21:59:07 +00001505endif
Chris Lattner30440c62003-01-16 21:06:18 +00001506
John Criswell7f336952003-09-06 14:44:17 +00001507# This rules ensures that header files that are removed still have a rule for
1508# which they can be "generated." This allows make to ignore them and
1509# reproduce the dependency lists.
John Criswell4b6e5d12003-09-18 18:37:08 +00001510%.h:: ;
Chris Lattnerb05a76c2005-02-04 21:28:50 +00001511%.hpp:: ;
John Criswell7f336952003-09-06 14:44:17 +00001512
Reid Spencercc2d1e22004-10-30 09:19:36 +00001513# Define clean-local to clean the current directory. Note that this uses a
Misha Brukmanef5dc702009-01-08 02:11:55 +00001514# very conservative approach ensuring that empty variables do not cause
Reid Spencercc2d1e22004-10-30 09:19:36 +00001515# errors or disastrous removal.
Reid Spencer3a561f52004-10-23 20:04:14 +00001516clean-local::
Jim Grosbach673612e2008-10-02 22:56:44 +00001517ifneq ($(strip $(ObjRootDir)),)
1518 -$(Verb) $(RM) -rf $(ObjRootDir)
Reid Spencere5487ba2004-10-24 07:53:21 +00001519endif
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001520 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001521ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001522 -$(Verb) $(RM) -f *$(SHLIBEXT)
Brian Gaeke9d3cd402004-01-21 19:53:11 +00001523endif
John Criswell7a73b802003-06-30 21:59:07 +00001524
Reid Spencer3d659492004-11-02 16:36:03 +00001525clean-all-local::
Reid Spencerca5fe8f2004-11-02 16:56:15 +00001526 -$(Verb) $(RM) -rf Debug Release Profile
Reid Spencer3d659492004-11-02 16:36:03 +00001527
Reid Spencer12d79512004-11-12 02:27:36 +00001528
Reid Spencer3a561f52004-10-23 20:04:14 +00001529###############################################################################
1530# DEPENDENCIES: Include the dependency files if we should
1531###############################################################################
Chris Lattner33ad24a2003-08-22 14:10:16 +00001532ifndef DISABLE_AUTO_DEPENDENCIES
1533
Reid Spencer3a561f52004-10-23 20:04:14 +00001534# If its not one of the cleaning targets
Daniel Dunbar94e98af2008-10-03 19:11:19 +00001535ifndef IS_CLEANING_TARGET
Reid Spencer4d71b662004-10-22 21:01:56 +00001536
Reid Spencer3a561f52004-10-23 20:04:14 +00001537# Get the list of dependency files
Daniel Dunbarfab3d682009-05-12 06:35:50 +00001538DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1539DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1540
1541# Include bitcode dependency files if using bitcode libraries
1542ifdef BYTECODE_LIBRARY
1543DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1544endif
Misha Brukman4f7a8cf2003-11-09 21:36:19 +00001545
Reid Spencer491a6cd2007-07-23 08:20:46 +00001546-include $(DependFiles) ""
Reid Spencer3a561f52004-10-23 20:04:14 +00001547
John Criswelld741bcf2003-08-12 18:51:51 +00001548endif
Chris Lattner1ddb6b62003-08-18 17:27:40 +00001549
Misha Brukmanef5dc702009-01-08 02:11:55 +00001550endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001551
Reid Spencer151f8ba2004-10-25 08:27:37 +00001552###############################################################################
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001553# CHECK: Running the test suite
1554###############################################################################
1555
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001556check::
Reid Spencer11fde542005-01-16 02:20:54 +00001557 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1558 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001559 $(EchoCmd) Running test suite ; \
Reid Spencer11fde542005-01-16 02:20:54 +00001560 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001561 TESTSUITE=$(TESTSUITE) ; \
1562 else \
1563 $(EchoCmd) No Makefile in test directory ; \
1564 fi ; \
1565 else \
1566 $(EchoCmd) No test directory ; \
1567 fi
1568
1569###############################################################################
Bill Wendling4113bd12009-01-04 23:12:21 +00001570# UNITTESTS: Running the unittests test suite
1571###############################################################################
1572
Bill Wendling29c0e3d2009-04-09 18:26:57 +00001573unittests::
Bill Wendling4113bd12009-01-04 23:12:21 +00001574 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1575 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1576 $(EchoCmd) Running unittests test suite ; \
1577 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1578 else \
1579 $(EchoCmd) No Makefile in unittests directory ; \
1580 fi ; \
1581 else \
1582 $(EchoCmd) No unittests directory ; \
1583 fi
1584
1585###############################################################################
Reid Spencercc2d1e22004-10-30 09:19:36 +00001586# DISTRIBUTION: Handle construction of a distribution tarball
Reid Spencer151f8ba2004-10-25 08:27:37 +00001587###############################################################################
1588
Reid Spencere45ebfa2004-10-26 07:09:33 +00001589#------------------------------------------------------------------------
1590# Define distribution related variables
1591#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001592DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1593DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1594TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1595DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1596DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1597DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
Reid Spencer151f8ba2004-10-25 08:27:37 +00001598DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1599 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001600 Makefile.config.in configure autoconf
1601DistOther := $(notdir $(wildcard \
Reid Spencer11fde542005-01-16 02:20:54 +00001602 $(PROJ_SRC_DIR)/*.h \
1603 $(PROJ_SRC_DIR)/*.td \
1604 $(PROJ_SRC_DIR)/*.def \
1605 $(PROJ_SRC_DIR)/*.ll \
1606 $(PROJ_SRC_DIR)/*.in))
Reid Spencercc2d1e22004-10-30 09:19:36 +00001607DistSubDirs := $(SubDirs)
Reid Spencerfbbf3072004-11-29 05:00:33 +00001608DistSources = $(Sources) $(EXTRA_DIST)
1609DistFiles = $(DistAlways) $(DistSources) $(DistOther)
Reid Spencer151f8ba2004-10-25 08:27:37 +00001610
Reid Spencere45ebfa2004-10-26 07:09:33 +00001611#------------------------------------------------------------------------
1612# We MUST build distribution with OBJ_DIR != SRC_DIR
1613#------------------------------------------------------------------------
Reid Spencer11fde542005-01-16 02:20:54 +00001614ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
Reid Spencere45ebfa2004-10-26 07:09:33 +00001615dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001616 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
Reid Spencere45ebfa2004-10-26 07:09:33 +00001617
Reid Spencere45ebfa2004-10-26 07:09:33 +00001618else
1619
Reid Spencere45ebfa2004-10-26 07:09:33 +00001620#------------------------------------------------------------------------
Reid Spencere45ebfa2004-10-26 07:09:33 +00001621# Prevent attempt to run dist targets from anywhere but the top level
1622#------------------------------------------------------------------------
1623ifneq ($(LEVEL),.)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001624dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
Reid Spencer11fde542005-01-16 02:20:54 +00001625 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001626else
1627
1628#------------------------------------------------------------------------
1629# Provide the top level targets
1630#------------------------------------------------------------------------
1631
Reid Spencercc2d1e22004-10-30 09:19:36 +00001632dist-gzip:: $(DistTarGZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001633
Reid Spencer345235ca2004-12-04 22:34:09 +00001634$(DistTarGZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001635 $(Echo) Packing gzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001636 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001637 $(GZIP) -c > "$(DistTarGZip)"
Reid Spencere45ebfa2004-10-26 07:09:33 +00001638
Reid Spencercc2d1e22004-10-30 09:19:36 +00001639dist-bzip2:: $(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001640
Reid Spencer345235ca2004-12-04 22:34:09 +00001641$(DistTarBZ2) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001642 $(Echo) Packing bzipped distribution tar file.
Reid Spencer11fde542005-01-16 02:20:54 +00001643 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
Reid Spencerfbbf3072004-11-29 05:00:33 +00001644 $(BZIP2) -c >$(DistTarBZ2)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001645
Reid Spencercc2d1e22004-10-30 09:19:36 +00001646dist-zip:: $(DistZip)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001647
Reid Spencer345235ca2004-12-04 22:34:09 +00001648$(DistZip) : $(TopDistDir)/.makedistdir
Reid Spencercc2d1e22004-10-30 09:19:36 +00001649 $(Echo) Packing zipped distribution file.
1650 $(Verb) rm -f $(DistZip)
Reid Spencer11fde542005-01-16 02:20:54 +00001651 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001652
Misha Brukmanef5dc702009-01-08 02:11:55 +00001653dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001654 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001655
Reid Spencerf8f57402005-01-28 19:52:32 +00001656DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
Reid Spencere45ebfa2004-10-26 07:09:33 +00001657
Reid Spencer345235ca2004-12-04 22:34:09 +00001658dist-check:: $(DistTarGZip)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001659 $(Echo) Checking distribution tar file.
1660 $(Verb) if test -d $(DistCheckDir) ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001661 $(RM) -rf $(DistCheckDir) ; \
1662 fi
Reid Spencercc2d1e22004-10-30 09:19:36 +00001663 $(Verb) $(MKDIR) $(DistCheckDir)
1664 $(Verb) cd $(DistCheckDir) && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001665 $(MKDIR) $(DistCheckDir)/build && \
1666 $(MKDIR) $(DistCheckDir)/install && \
1667 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1668 cd build && \
1669 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
Reid Spencer45eeed92005-05-24 02:33:20 +00001670 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
Reid Spencer345235ca2004-12-04 22:34:09 +00001671 $(MAKE) all && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001672 $(MAKE) check && \
Bill Wendling4113bd12009-01-04 23:12:21 +00001673 $(MAKE) unittests && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001674 $(MAKE) install && \
1675 $(MAKE) uninstall && \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001676 $(MAKE) dist-clean && \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001677 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
Reid Spencere45ebfa2004-10-26 07:09:33 +00001678
1679dist-clean::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001680 $(Echo) Cleaning distribution files
Reid Spencer345235ca2004-12-04 22:34:09 +00001681 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1682 $(DistCheckDir)
Reid Spencere45ebfa2004-10-26 07:09:33 +00001683
1684endif
1685
1686#------------------------------------------------------------------------
1687# Provide the recursive distdir target for building the distribution directory
1688#------------------------------------------------------------------------
Reid Spencer345235ca2004-12-04 22:34:09 +00001689distdir: $(DistDir)/.makedistdir
1690$(DistDir)/.makedistdir: $(DistSources)
Reid Spencercc2d1e22004-10-30 09:19:36 +00001691 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001692 if test -d "$(DistDir)" ; then \
1693 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1694 exit 1 ; \
1695 fi ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001696 $(EchoCmd) Removing old $(DistDir) ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001697 $(RM) -rf $(DistDir); \
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001698 $(EchoCmd) Making 'all' to verify build ; \
Reid Spencer854071c2006-04-10 16:46:04 +00001699 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001700 fi
Reid Spencerfbbf3072004-11-29 05:00:33 +00001701 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukmanef5dc702009-01-08 02:11:55 +00001702 $(Verb) $(MKDIR) $(DistDir)
Reid Spencer11fde542005-01-16 02:20:54 +00001703 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1704 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001705 for file in $(DistFiles) ; do \
1706 case "$$file" in \
Reid Spencer11fde542005-01-16 02:20:54 +00001707 $(PROJ_SRC_DIR)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001708 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1709 ;; \
Reid Spencer11fde542005-01-16 02:20:54 +00001710 $(PROJ_SRC_ROOT)/*) \
Reid Spencer345235ca2004-12-04 22:34:09 +00001711 file=`echo "$$file" | \
1712 sed "s#^$$srcrootstrip/##"` \
1713 ;; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001714 esac; \
Reid Spencer11fde542005-01-16 02:20:54 +00001715 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1716 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1717 from_dir="$(PROJ_SRC_DIR)" ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001718 elif test -f "$$file" || test -d "$$file" ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001719 from_dir=. ; \
Reid Spencer345235ca2004-12-04 22:34:09 +00001720 fi ; \
1721 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001722 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1723 to_dir="$(DistDir)/$$dir"; \
1724 $(MKDIR) "$$to_dir" ; \
1725 else \
1726 to_dir="$(DistDir)"; \
1727 fi; \
1728 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1729 if test -n "$$mid_dir" ; then \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001730 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001731 fi ; \
1732 if test -d "$$from_dir/$$file"; then \
Reid Spencer11fde542005-01-16 02:20:54 +00001733 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1734 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001735 cd $(PROJ_SRC_DIR) ; \
1736 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1737 ( cd $$to_dir ; $(TAR) xf - ) ; \
1738 cd $(PROJ_OBJ_DIR) ; \
1739 else \
1740 cd $$from_dir ; \
1741 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1742 ( cd $$to_dir ; $(TAR) xf - ) ; \
1743 cd $(PROJ_OBJ_DIR) ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001744 fi; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001745 elif test -f "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001746 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001747 elif test -L "$$from_dir/$$file" ; then \
Reid Spencerc3719842004-12-16 18:26:53 +00001748 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001749 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
Reid Spencer345235ca2004-12-04 22:34:09 +00001750 $(EchoCmd) "===== WARNING: Distribution Source " \
1751 "$$from_dir/$$file Not Found!" ; \
Reid Spencercc2d1e22004-10-30 09:19:36 +00001752 elif test "$(Verb)" != '@' ; then \
1753 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001754 fi; \
1755 done
Reid Spencercc2d1e22004-10-30 09:19:36 +00001756 $(Verb) for subdir in $(DistSubDirs) ; do \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001757 if test "$$subdir" \!= "." ; then \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001758 new_distdir="$(DistDir)/$$subdir" ; \
Reid Spencere45ebfa2004-10-26 07:09:33 +00001759 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
Reid Spencer854071c2006-04-10 16:46:04 +00001760 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
Reid Spencerbac3ca22006-04-07 16:06:18 +00001761 DistDir="$$new_distdir" distdir ) || exit 1; \
Reid Spencer151f8ba2004-10-25 08:27:37 +00001762 fi; \
1763 done
Reid Spencer345235ca2004-12-04 22:34:09 +00001764 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
Reid Spencer45eeed92005-05-24 02:33:20 +00001765 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
Chris Lattner77efe272006-02-14 04:27:15 +00001766 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1767 -name .svn \) -print` ;\
Reid Spencer345235ca2004-12-04 22:34:09 +00001768 $(MAKE) dist-hook ; \
1769 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1770 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1771 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1772 -o ! -type d ! -perm -444 -exec \
1773 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1774 || chmod -R a+r $(DistDir) ; \
1775 fi
Reid Spencer151f8ba2004-10-25 08:27:37 +00001776
Reid Spencercc2d1e22004-10-30 09:19:36 +00001777# This is invoked by distdir target, define it as a no-op to avoid errors if not
1778# defined by user.
Reid Spencer151f8ba2004-10-25 08:27:37 +00001779dist-hook::
1780
Reid Spencere53e3972004-10-22 23:06:30 +00001781endif
Reid Spencer4d71b662004-10-22 21:01:56 +00001782
1783###############################################################################
Reid Spencere5487ba2004-10-24 07:53:21 +00001784# TOP LEVEL - targets only to apply at the top level directory
1785###############################################################################
1786
1787ifeq ($(LEVEL),.)
1788
1789#------------------------------------------------------------------------
Reid Spencer9e8d54a2004-12-06 05:35:13 +00001790# Install support for the project's include files:
Reid Spencere5487ba2004-10-24 07:53:21 +00001791#------------------------------------------------------------------------
Reid Spencera2a31bf2007-02-06 18:53:14 +00001792ifdef NO_INSTALL
1793install-local::
1794 $(Echo) Install circumvented with NO_INSTALL
1795uninstall-local::
1796 $(Echo) Uninstall circumvented with NO_INSTALL
1797else
Reid Spencere5487ba2004-10-24 07:53:21 +00001798install-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001799 $(Echo) Installing include files
Reid Spencer11fde542005-01-16 02:20:54 +00001800 $(Verb) $(MKDIR) $(PROJ_includedir)
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001801 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
Reid Spencer11fde542005-01-16 02:20:54 +00001802 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerc9480642009-01-02 07:16:45 +00001803 for hdr in `find . -type f '!' '(' -name '*~' \
Reid Spencer0522d8b2007-04-09 19:08:58 +00001804 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1805 grep -v .svn` ; do \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001806 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1807 if test \! -d "$$instdir" ; then \
1808 $(EchoCmd) Making install directory $$instdir ; \
1809 $(MKDIR) $$instdir ;\
1810 fi ; \
1811 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00001812 done ; \
Reid Spencere5487ba2004-10-24 07:53:21 +00001813 fi
Reid Spencer443045a2005-12-23 22:27:56 +00001814ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001815 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
Reid Spencer2edabc02005-02-16 15:54:03 +00001816 cd $(PROJ_OBJ_ROOT)/include && \
Reid Spencer443045a2005-12-23 22:27:56 +00001817 for hdr in `find . -type f -print | grep -v CVS` ; do \
Reid Spencer4a0aaea2005-02-24 03:56:32 +00001818 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
Reid Spencer2edabc02005-02-16 15:54:03 +00001819 done ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001820 fi
Reid Spencer443045a2005-12-23 22:27:56 +00001821endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001822
1823uninstall-local::
Reid Spencercc2d1e22004-10-30 09:19:36 +00001824 $(Echo) Uninstalling include files
Reid Spencer11fde542005-01-16 02:20:54 +00001825 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1826 cd $(PROJ_SRC_ROOT)/include && \
Reid Spencere5487ba2004-10-24 07:53:21 +00001827 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerc9480642009-01-02 07:16:45 +00001828 '!' '(' -name '*~' -o -name '.#*' \
Chris Lattnerd25ad612006-02-14 04:25:54 +00001829 -o -name '*.in' ')' -print ')' | \
1830 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001831 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerd25ad612006-02-14 04:25:54 +00001832 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1833 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
Chris Lattnerca94fa22005-02-09 02:24:00 +00001834 fi
Reid Spencera2a31bf2007-02-06 18:53:14 +00001835endif
Reid Spencere5487ba2004-10-24 07:53:21 +00001836endif
1837
Chris Lattner03840ac2007-04-14 23:35:45 +00001838check-line-length:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001839 @echo searching for overlength lines in files: $(Sources)
1840 @echo
1841 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00001842 egrep -n '.{81}' $(Sources) /dev/null
Chris Lattner03840ac2007-04-14 23:35:45 +00001843
Anton Korobeynikovbed29462007-04-16 18:10:23 +00001844check-for-tabs:
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001845 @echo searching for tabs in files: $(Sources)
1846 @echo
1847 @echo
Gabor Greif5039a6f2008-08-28 22:32:39 +00001848 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb1dbcd82008-05-15 10:04:30 +00001849
Reid Spencer6548bf12007-05-02 21:29:39 +00001850check-footprint:
1851 @ls -l $(LibDir) | awk '\
1852 BEGIN { sum = 0; } \
1853 { sum += $$5; } \
1854 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1855 @ls -l $(ToolDir) | awk '\
1856 BEGIN { sum = 0; } \
1857 { sum += $$5; } \
1858 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
Reid Spencer4d71b662004-10-22 21:01:56 +00001859#------------------------------------------------------------------------
1860# Print out the directories used for building
Reid Spencercc2d1e22004-10-30 09:19:36 +00001861#------------------------------------------------------------------------
Reid Spencer3a561f52004-10-23 20:04:14 +00001862printvars::
Reid Spencer11fde542005-01-16 02:20:54 +00001863 $(Echo) "BuildMode : " '$(BuildMode)'
1864 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1865 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1866 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1867 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1868 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1869 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1870 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1871 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1872 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1873 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
Reid Spencer1a9a69c2005-02-16 16:13:02 +00001874 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
Reid Spencer11fde542005-01-16 02:20:54 +00001875 $(Echo) "UserTargets : " '$(UserTargets)'
1876 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1877 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1878 $(Echo) "ObjDir : " '$(ObjDir)'
1879 $(Echo) "LibDir : " '$(LibDir)'
1880 $(Echo) "ToolDir : " '$(ToolDir)'
1881 $(Echo) "ExmplDir : " '$(ExmplDir)'
1882 $(Echo) "Sources : " '$(Sources)'
1883 $(Echo) "TDFiles : " '$(TDFiles)'
1884 $(Echo) "INCFiles : " '$(INCFiles)'
1885 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
Reid Spencere0acb762005-03-01 16:27:06 +00001886 $(Echo) "PreConditions: " '$(PreConditions)'
Reid Spencer11fde542005-01-16 02:20:54 +00001887 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1888 $(Echo) "Compile.C : " '$(Compile.C)'
1889 $(Echo) "Archive : " '$(Archive)'
1890 $(Echo) "YaccFiles : " '$(YaccFiles)'
1891 $(Echo) "LexFiles : " '$(LexFiles)'
1892 $(Echo) "Module : " '$(Module)'
Reid Spencer755bcf02005-08-24 10:43:10 +00001893 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
Reid Spencerf9f431c2006-04-09 23:41:14 +00001894 $(Echo) "SubDirs : " '$(SubDirs)'
Reid Spencer8475ec02007-03-29 19:05:44 +00001895 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1896 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar92acef02009-02-21 20:42:39 +00001897
1898###
1899# Debugging
1900
Daniel Dunbar3c898122009-03-06 22:23:25 +00001901# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar92acef02009-02-21 20:42:39 +00001902# definition, value and origin of XXX.
Daniel Dunbar3c898122009-03-06 22:23:25 +00001903make-print-%:
Daniel Dunbar92acef02009-02-21 20:42:39 +00001904 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))