blob: 66d90f12094ca883416b8dd5311c49547174105f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2#
3# The LLVM Compiler Infrastructure
4#
Chris Lattner3876aa72007-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 Brukman89fe5162009-01-08 02:11:55 +00007#
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008#===------------------------------------------------------------------------===#
9#
10# 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.
12#
13#===-----------------------------------------------------------------------====#
14
15################################################################################
16# TARGETS: Define standard targets that can be invoked
17################################################################################
18
19#--------------------------------------------------------------------
20# Define the various target sets
21#--------------------------------------------------------------------
22RecursiveTargets := all clean clean-all install uninstall install-bytecode
23LocalTargets := all-local clean-local clean-all-local check-local \
24 install-local printvars uninstall-local \
Bill Wendling2e3646a2009-01-04 23:12:21 +000025 install-bytecode-local unittests
Chris Lattner42596062007-09-26 06:10:47 +000026TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
Bill Wendling2e3646a2009-01-04 23:12:21 +000027 dist-zip unittests
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
29InternalTargets := preconditions distdir dist-hook
30
31################################################################################
32# INITIALIZATION: Basic things the makefile needs
33################################################################################
34
35#--------------------------------------------------------------------
36# Set the VPATH so that we can find source files.
37#--------------------------------------------------------------------
38VPATH=$(PROJ_SRC_DIR)
39
40#--------------------------------------------------------------------
41# Reset the list of suffixes we know how to build.
42#--------------------------------------------------------------------
43.SUFFIXES:
Nick Lewycky8d91e192009-02-26 07:44:16 +000044.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
46
47#--------------------------------------------------------------------
48# Mark all of these targets as phony to avoid implicit rule search
49#--------------------------------------------------------------------
50.PHONY: $(UserTargets) $(InternalTargets)
51
52#--------------------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +000053# Make sure all the user-target rules are double colon rules and
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054# they are defined first.
55#--------------------------------------------------------------------
56
57$(UserTargets)::
58
59################################################################################
60# PRECONDITIONS: that which must be built/checked first
61################################################################################
62
63SrcMakefiles := $(filter %Makefile %Makefile.tests,\
64 $(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
76
77ifneq ($(MakefileConfigIn),)
78PreConditions += $(MakefileConfig)
79endif
80
81preconditions: $(PreConditions)
82
83#------------------------------------------------------------------------
84# Make sure the BUILT_SOURCES are built first
85#------------------------------------------------------------------------
86$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
87
88clean-all-local::
89ifneq ($(strip $(BUILT_SOURCES)),)
90 -$(Verb) $(RM) -f $(BUILT_SOURCES)
91endif
92
93ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
94spotless:
95 $(Verb) if test -x config.status ; then \
96 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
97 $(MKDIR) .spotless.save ; \
98 $(MV) config.status .spotless.save ; \
99 $(MV) mklib .spotless.save ; \
100 $(MV) projects .spotless.save ; \
101 $(RM) -rf * ; \
102 $(MV) .spotless.save/config.status . ; \
103 $(MV) .spotless.save/mklib . ; \
104 $(MV) .spotless.save/projects . ; \
105 $(RM) -rf .spotless.save ; \
106 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
107 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108 $(ConfigStatusScript) ; \
109 else \
110 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
111 fi
112else
113spotless:
114 $(EchoCmd) "spotless target not supported for objdir == srcdir"
115endif
116
117$(BUILT_SOURCES) : $(ObjMakefiles)
118
119#------------------------------------------------------------------------
120# Make sure we're not using a stale configuration
121#------------------------------------------------------------------------
122reconfigure:
123 $(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 ; \
127 fi ; \
128 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129 $(ConfigStatusScript)
130
131.PRECIOUS: $(ConfigStatusScript)
132$(ConfigStatusScript): $(ConfigureScript)
133 $(Echo) Reconfiguring with $<
134 $(Verb) cd $(PROJ_OBJ_ROOT) && \
135 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
137 fi ; \
138 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139 $(ConfigStatusScript)
140
141#------------------------------------------------------------------------
142# Make sure the configuration makefile is up to date
143#------------------------------------------------------------------------
144ifneq ($(MakefileConfigIn),)
145$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
146 $(Echo) Regenerating $@
147 $(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
155
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#------------------------------------------------------------------------
160ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
161
Gordon Henriksen4290f662008-03-10 15:58:40 +0000162Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 $(Echo) "Updating Makefile"
164 $(Verb) $(MKDIR) $(@D)
165 $(Verb) $(CP) -f $< $@
166
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.
170$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
171 @case '$?' in \
172 *Makefile.rules) ;; \
173 *.in) ;; \
Gordon Henriksen4290f662008-03-10 15:58:40 +0000174 *) $(EchoCmd) "Updating $(@F)" ; \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 $(MKDIR) $(@D) ; \
176 $(CP) -f $< $@ ;; \
177 esac
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000178
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179endif
180
181#------------------------------------------------------------------------
182# Set up the basic dependencies
183#------------------------------------------------------------------------
184$(UserTargets):: $(PreConditions)
185
186all:: all-local
Anton Korobeynikov06565172008-11-10 07:33:13 +0000187clean:: clean-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188clean-all:: clean-local clean-all-local
189install:: install-local
190uninstall:: uninstall-local
Misha Brukman89fe5162009-01-08 02:11:55 +0000191install-local:: all-local
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192install-bytecode:: install-bytecode-local
193
194###############################################################################
Mikhail Glushenkov5f7ba0f2009-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))
201REQUIRES_EH := 1
202
203# Build a dynamic library if the user runs `make` directly from the plugin
204# directory.
205ifndef LLVMC_BUILTIN_PLUGIN
206LOADABLE_MODULE = 1
207endif
208
209# TableGen stuff...
210ifneq ($(BUILT_SOURCES),)
Mikhail Glushenkov72145e32009-03-02 09:42:59 +0000211LLVMC_BUILD_AUTOGENERATED_INC=1
Mikhail Glushenkov5f7ba0f2009-03-02 09:04:13 +0000212endif
213
214endif # LLVMC_PLUGIN
215
216###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217# VARIABLES: Set up various variables based on configuration data
218###############################################################################
219
Daniel Dunbara89194e2008-10-03 19:11:19 +0000220# Variable for if this make is for a "cleaning" target
221ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
222 IS_CLEANING_TARGET=1
223endif
224
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000225#--------------------------------------------------------------------
226# Variables derived from configuration we are building
227#--------------------------------------------------------------------
228
229CPP.Defines :=
230# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
231# this can be overridden on the make command line.
232ifneq ($(OS),MingW)
233 OPTIMIZE_OPTION := -O3
234else
235 OPTIMIZE_OPTION := -O2
236endif
237
238ifdef ENABLE_PROFILING
239 BuildMode := Profile
Gordon Henriksen09968862008-01-06 21:54:35 +0000240 CXX.Flags += $(OPTIMIZE_OPTION) -pg -g
241 C.Flags += $(OPTIMIZE_OPTION) -pg -g
242 LD.Flags += $(OPTIMIZE_OPTION) -pg -g
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243 KEEP_SYMBOLS := 1
244else
245 ifeq ($(ENABLE_OPTIMIZED),1)
246 BuildMode := Release
247 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
248 ifneq ($(OS),FreeBSD)
249 ifneq ($(OS),Darwin)
250 OmitFramePointer := -fomit-frame-pointer
251 endif
252 endif
253
254 # Darwin requires -fstrict-aliasing to be explicitly enabled.
255 ifeq ($(OS),Darwin)
Evan Cheng1bde8892008-06-05 23:00:08 +0000256 EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257 endif
258
Gordon Henriksen09968862008-01-06 21:54:35 +0000259 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
260 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
261 LD.Flags += $(OPTIMIZE_OPTION)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262 else
263 BuildMode := Debug
Gordon Henriksen09968862008-01-06 21:54:35 +0000264 CXX.Flags += -g
265 C.Flags += -g
266 LD.Flags += -g
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267 KEEP_SYMBOLS := 1
268 endif
269endif
270
Daniel Dunbar886e1832008-09-02 17:35:16 +0000271#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
272# CXX.Flags += -fvisibility-inlines-hidden
273#endif
274
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275# IF REQUIRES_EH=1 is specified then don't disable exceptions
276ifndef REQUIRES_EH
277 CXX.Flags += -fno-exceptions
278endif
279
280# IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
281ifndef REQUIRES_RTTI
282# CXX.Flags += -fno-rtti
283endif
284
285# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
286# then disable assertions by defining the appropriate preprocessor symbols.
287ifdef DISABLE_ASSERTIONS
288 BuildMode := $(BuildMode)-Asserts
289 CPP.Defines += -DNDEBUG
290else
291 CPP.Defines += -D_DEBUG
292endif
293
Misha Brukman89fe5162009-01-08 02:11:55 +0000294# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
295# configured), then enable expensive checks by defining the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000296# appropriate preprocessor symbols.
297ifdef ENABLE_EXPENSIVE_CHECKS
298 BuildMode := $(BuildMode)+Checks
Duncan Sands871e55f2008-12-09 21:33:20 +0000299 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300endif
301
Nick Lewycky8d91e192009-02-26 07:44:16 +0000302# LOADABLE_MODULE implies several other things so we force them to be
303# defined/on.
304ifdef LOADABLE_MODULE
305 SHARED_LIBRARY := 1
306 DONT_BUILD_RELINKED := 1
307 LINK_LIBS_IN_SHARED := 1
308endif
309
310ifdef SHARED_LIBRARY
311 ENABLE_PIC := 1
312 PIC_FLAG = "(PIC)"
313endif
314
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315ifeq ($(ENABLE_PIC),1)
Nick Lewyckyce6daa452009-03-03 03:36:50 +0000316 ifeq ($(OS), $(filter $(OS), Cygwin MingW))
Nick Lewycky5b882f22009-02-21 08:41:09 +0000317 # Nothing. Win32 defaults to PIC and warns when given -fPIC
318 else
319 ifeq ($(OS),Darwin)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000320 # Common symbols not allowed in dylib files
Nick Lewycky5b882f22009-02-21 08:41:09 +0000321 CXX.Flags += -fno-common
322 C.Flags += -fno-common
323 else
324 # Linux and others; pass -fPIC
325 CXX.Flags += -fPIC
326 C.Flags += -fPIC
327 endif
328 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329endif
330
331CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
332C.Flags += $(CFLAGS)
333CPP.Defines += $(CPPFLAGS)
334CPP.BaseFlags += $(CPP.Defines)
335LD.Flags += $(LDFLAGS)
336AR.Flags := cru
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337
338# Make Floating point IEEE compliant on Alpha.
339ifeq ($(ARCH),Alpha)
340 CXX.Flags += -mieee
341 CPP.BaseFlags += -mieee
342ifeq ($(ENABLE_PIC),0)
343 CXX.Flags += -fPIC
344 CPP.BaseFlags += -fPIC
345endif
346endif
347
348ifeq ($(ARCH),Alpha)
349 LD.Flags += -Wl,--no-relax
350endif
351
352#--------------------------------------------------------------------
353# Directory locations
354#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000355TargetMode :=
356ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000357 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000358endif
359
360ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000361ObjDir := $(ObjRootDir)
362LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
363ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
364ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
365LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
366LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
367LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368CFERuntimeLibDir := $(LLVMGCCDIR)/lib
369
370#--------------------------------------------------------------------
371# Full Paths To Compiled Tools and Utilities
372#--------------------------------------------------------------------
373EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
374Echo = @$(EchoCmd)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375ifndef LLVMAS
376LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
377endif
378ifndef TBLGEN
379 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000380 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381 else
382 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
383 endif
384endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000385LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386ifndef LLVMLD
387LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
388endif
389ifndef LLVMDIS
390LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
391endif
392ifndef LLI
393LLI := $(LLVMToolDir)/lli$(EXEEXT)
394endif
395ifndef LLC
396LLC := $(LLVMToolDir)/llc$(EXEEXT)
397endif
398ifndef LOPT
399LOPT := $(LLVMToolDir)/opt$(EXEEXT)
400endif
401ifndef LBUGPOINT
402LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
403endif
404ifndef LUPGRADE
405LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
406endif
407ifeq ($(LLVMGCC_MAJVERS),3)
408UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
409UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
410LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
411LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
412else
413UPGRADE_MSG =
414UPGRADE_LL =
415LLVMGCCWITHPATH := $(LLVMGCC)
416LLVMGXXWITHPATH := $(LLVMGXX)
417endif
418
419#--------------------------------------------------------------------
420# Adjust to user's request
421#--------------------------------------------------------------------
422
Nick Lewycky8d91e192009-02-26 07:44:16 +0000423# Adjust LD.Flags depending on the kind of library that is to be built. Note
424# that if LOADABLE_MODULE is specified then the resulting shared library can
425# be opened with dlopen.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426ifdef LOADABLE_MODULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427 LD.Flags += -module
428endif
429
430ifdef SHARED_LIBRARY
Nick Lewycky12015c12009-03-03 04:55:15 +0000431 LD.Flags += $(RPATH) -Wl,$(LibDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432endif
433
434ifdef TOOL_VERBOSE
435 C.Flags += -v
436 CXX.Flags += -v
437 LD.Flags += -v
438 VERBOSE := 1
439endif
440
441# Adjust settings for verbose mode
442ifndef VERBOSE
443 Verb := @
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000444 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
446else
Misha Brukman89fe5162009-01-08 02:11:55 +0000447 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448endif
449
450# By default, strip symbol information from executable
451ifndef KEEP_SYMBOLS
452 Strip := $(PLATFORMSTRIPOPTS)
453 StripWarnMsg := "(without symbols)"
454 Install.StripFlag += -s
455endif
456
457# Adjust linker flags for building an executable
Nick Lewycky324b1192009-02-26 08:03:36 +0000458ifneq ($(OS),Darwin)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459ifdef TOOLNAME
460ifdef EXAMPLE_TOOL
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000461 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462else
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000463 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464endif
465endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000466endif
467
468ifeq ($(OS),Darwin)
Chris Lattner323808e2009-02-26 17:44:38 +0000469 DARWIN_VERSION := `sw_vers -productVersion`
Chris Lattner93a59cb2009-03-09 04:45:03 +0000470 # Strip a number like 10.4.7 to 10.4
471 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
Chris Lattnerc6c51352009-03-10 17:15:56 +0000472 # Get "4" out of 10.4 for later pieces in the makefile.
473 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Chris Lattner93a59cb2009-03-09 04:45:03 +0000474
Chris Lattner323808e2009-02-26 17:44:38 +0000475 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress -bundle \
476 -mmacosx-version-min=$(DARWIN_VERSION)
477 CompileCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000478else
Nick Lewyckyce6daa452009-03-03 03:36:50 +0000479 ifeq ($(OS),Cygwin)
480 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
481 -Wl,--enable-auto-import -Wl,--enable-auto-image-base \
482 -Wl,--enable-runtime-pseudo-relocs
483 else
484 SharedLinkOptions=-shared
485 endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000486endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487
488#----------------------------------------------------------
489# Options To Invoke Tools
490#----------------------------------------------------------
491
Chris Lattner323808e2009-02-26 17:44:38 +0000492CompileCommonOpts += -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
494
495ifeq ($(OS),HP-UX)
496 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
497endif
498
499# If we are building a universal binary on Mac OS/X, pass extra options. This
500# is useful to people that want to link the LLVM libraries into their universal
501# apps.
502#
503# The following can be optionally specified:
504# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
505# For Mac OS/X 10.4 Intel machines, the traditional one is:
506# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
507# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
508# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
509# i386/ppc only.
510ifdef UNIVERSAL
511 ifndef UNIVERSAL_ARCH
512 UNIVERSAL_ARCH := i386 ppc
513 endif
514 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
515 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerc372e1c2009-02-26 19:08:30 +0000516 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 ifdef UNIVERSAL_SDK_PATH
518 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerc372e1c2009-02-26 19:08:30 +0000519 Relink.Flags += -isysroot $(UNIVERSAL_SDK_PATH)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520 endif
521
522 # Building universal cannot compute dependencies automatically.
523 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000524else
Bill Wendling025cce52009-03-12 04:10:09 +0000525 ifeq ($(OS),Darwin)
526 ifeq ($(ARCH),x86_64)
527 CompileCommonOpts += -m64
528 else
529 ifeq ($(ARCH),x86)
530 CompileCommonOpts += -m32
531 endif
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000532 endif
533 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534endif
535
Chris Lattner35c997c2008-06-24 17:44:42 +0000536ifeq ($(OS),SunOS)
537CPP.BaseFlags += -include llvm/System/Solaris.h
538endif
539
Misha Brukman89fe5162009-01-08 02:11:55 +0000540LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman5a5e6e92008-10-17 01:33:43 +0000541CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands3b960292008-01-28 17:38:30 +0000543CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
544 $(patsubst %,-I%/include,\
Chris Lattner6ee48752008-01-28 04:18:41 +0000545 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
546 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
547 $(CPP.BaseFlags)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548
Jim Grosbache4c032e2008-10-02 22:56:44 +0000549 ifeq ($(BUILD_COMPONENT), 1)
550 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
551 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
552 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
553 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
554 $(LD.Flags) $(Strip)
555 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
556 $(Relink.Flags)
557else
558 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
559 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
560 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
561 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
562 $(LD.Flags) $(Strip)
563 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
564 $(Relink.Flags)
565endif
566
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
568Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
569
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
571 $(CompileCommonOpts)
572
Misha Brukman89fe5162009-01-08 02:11:55 +0000573ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
574ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000576
577# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
578# paths. In this case, the SYSPATH function (defined in
579# Makefile.config) transforms Unix paths into Windows paths.
580TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000581 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000582 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
583 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
584
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585Archive = $(AR) $(AR.Flags)
586LArchive = $(LLVMToolDir)/llvm-ar rcsf
587ifdef RANLIB
588Ranlib = $(RANLIB)
589else
590Ranlib = ranlib
591endif
592
593#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000594# Get the list of source files and compute object file
595# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596#----------------------------------------------------------
597
598ifndef SOURCES
599 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000600 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601else
602 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000603endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604
605ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000606Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000607endif
608
609BaseNameSources := $(sort $(basename $(Sources)))
610
611ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
613
614###############################################################################
615# DIRECTORIES: Handle recursive descent of directory structure
616###############################################################################
617
618#---------------------------------------------------------
619# Provide rules to make install dirs. This must be early
620# in the file so they get built before dependencies
621#---------------------------------------------------------
622
Mike Stump98f72e02009-02-12 23:45:11 +0000623$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000624 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625
626# To create other directories, as needed, and timestamp their creation
627%/.dir:
628 $(Verb) $(MKDIR) $* > /dev/null
629 $(Verb) $(DATE) > $@
630
631.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
632.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
633
634#---------------------------------------------------------
635# Handle the DIRS options for sequential construction
636#---------------------------------------------------------
637
Misha Brukman89fe5162009-01-08 02:11:55 +0000638SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639ifdef DIRS
640SubDirs += $(DIRS)
641
642ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
643$(RecursiveTargets)::
644 $(Verb) for dir in $(DIRS); do \
645 if [ ! -f $$dir/Makefile ]; then \
646 $(MKDIR) $$dir; \
647 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
648 fi; \
649 ($(MAKE) -C $$dir $@ ) || exit 1; \
650 done
651else
652$(RecursiveTargets)::
653 $(Verb) for dir in $(DIRS); do \
654 ($(MAKE) -C $$dir $@ ) || exit 1; \
655 done
656endif
657
658endif
659
660#---------------------------------------------------------
661# Handle the EXPERIMENTAL_DIRS options ensuring success
662# after each directory is built.
663#---------------------------------------------------------
664ifdef EXPERIMENTAL_DIRS
665$(RecursiveTargets)::
666 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
667 if [ ! -f $$dir/Makefile ]; then \
668 $(MKDIR) $$dir; \
669 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
670 fi; \
671 ($(MAKE) -C $$dir $@ ) || exit 0; \
672 done
673endif
674
675#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000676# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
677#-----------------------------------------------------------
678ifdef OPTIONAL_PARALLEL_DIRS
679 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
680endif
681
682#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683# Handle the PARALLEL_DIRS options for parallel construction
684#-----------------------------------------------------------
685ifdef PARALLEL_DIRS
686
687SubDirs += $(PARALLEL_DIRS)
688
689# Unfortunately, this list must be maintained if new recursive targets are added
690all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
691clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
692clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
693install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
694uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
695install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
696
697ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
698
699$(ParallelTargets) :
700 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
701 $(MKDIR) $(@D); \
702 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
703 fi; \
704 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
705endif
706
707#---------------------------------------------------------
708# Handle the OPTIONAL_DIRS options for directores that may
709# or may not exist.
710#---------------------------------------------------------
711ifdef OPTIONAL_DIRS
712
713SubDirs += $(OPTIONAL_DIRS)
714
715ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
716$(RecursiveTargets)::
717 $(Verb) for dir in $(OPTIONAL_DIRS); do \
718 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
719 if [ ! -f $$dir/Makefile ]; then \
720 $(MKDIR) $$dir; \
721 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
722 fi; \
723 ($(MAKE) -C$$dir $@ ) || exit 1; \
724 fi \
725 done
726else
727$(RecursiveTargets)::
728 $(Verb) for dir in $(OPTIONAL_DIRS); do \
729 ($(MAKE) -C$$dir $@ ) || exit 1; \
730 done
731endif
732endif
733
734#---------------------------------------------------------
735# Handle the CONFIG_FILES options
736#---------------------------------------------------------
737ifdef CONFIG_FILES
738
739ifdef NO_INSTALL
740install-local::
741 $(Echo) Install circumvented with NO_INSTALL
742uninstall-local::
743 $(Echo) UnInstall circumvented with NO_INSTALL
744else
745install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
746 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
747 $(Verb)for file in $(CONFIG_FILES); do \
748 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
749 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
750 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
751 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
752 else \
753 $(ECHO) Error: cannot find config file $${file}. ; \
754 fi \
755 done
756
757uninstall-local::
758 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
759 $(Verb)for file in $(CONFIG_FILES); do \
760 $(RM) -f $(PROJ_etcdir)/$${file} ; \
761 done
762endif
763
764endif
765
766###############################################################################
767# Set up variables for building libararies
768###############################################################################
769
770#---------------------------------------------------------
771# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000772# libraries needed when linking. There are "Proj" libs
773# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000774# by the LLVM project).
775#---------------------------------------------------------
776
777ifdef USEDLIBS
778ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
779ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
780ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
781ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
782endif
783
784ifdef LLVMLIBS
785LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
786LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
787LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
788LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
789endif
790
Daniel Dunbara89194e2008-10-03 19:11:19 +0000791ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792ifdef LINK_COMPONENTS
793
794# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
795# clean in tools, then do a make in tools (instead of at the top level).
796$(LLVM_CONFIG):
797 @echo "*** llvm-config doesn't exist - rebuilding it."
798 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000799
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
801
Mikhail Glushenkovfc320822009-03-03 10:03:27 +0000802LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
803LLVMLibsPaths += $(LLVM_CONFIG) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000804 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
805endif
806endif
807
808###############################################################################
809# Library Build Rules: Four ways to build a library
810###############################################################################
811
812#---------------------------------------------------------
813# Bytecode Module Targets:
814# If the user set MODULE_NAME then they want to build a
815# bytecode module from the sources. We compile all the
816# sources and link it together into a single bytecode
817# module.
818#---------------------------------------------------------
819
820ifdef MODULE_NAME
821ifeq ($(strip $(LLVMGCC)),)
822$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
823else
824
825Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000826LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827
828
829ifdef EXPORTED_SYMBOL_FILE
830LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
831endif
832
833$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
834 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
835 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
836
837all-local:: $(Module)
838
839clean-local::
840ifneq ($(strip $(Module)),)
841 -$(Verb) $(RM) -f $(Module)
842endif
843
844ifdef BYTECODE_DESTINATION
845ModuleDestDir := $(BYTECODE_DESTINATION)
846else
847ModuleDestDir := $(PROJ_libdir)
848endif
849
850ifdef NO_INSTALL
851install-local::
852 $(Echo) Install circumvented with NO_INSTALL
853uninstall-local::
854 $(Echo) Uninstall circumvented with NO_INSTALL
855else
856DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
857
858install-module:: $(DestModule)
859install-local:: $(DestModule)
860
Misha Brukman89fe5162009-01-08 02:11:55 +0000861$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
863 $(Verb) $(DataInstall) $(Module) $(DestModule)
864
865uninstall-local::
866 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
867 -$(Verb) $(RM) -f $(DestModule)
868endif
869
870endif
871endif
872
873# if we're building a library ...
874ifdef LIBRARYNAME
875
876# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
877LIBRARYNAME := $(strip $(LIBRARYNAME))
878ifdef LOADABLE_MODULE
Nick Lewycky8d91e192009-02-26 07:44:16 +0000879LibName.A := $(LibDir)/$(LIBRARYNAME).a
880LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000881else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000882LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewycky8d91e192009-02-26 07:44:16 +0000883LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
884endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885LibName.O := $(LibDir)/$(LIBRARYNAME).o
886LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
887
888#---------------------------------------------------------
889# Shared Library Targets:
890# If the user asked for a shared library to be built
891# with the SHARED_LIBRARY variable, then we provide
892# targets for building them.
893#---------------------------------------------------------
894ifdef SHARED_LIBRARY
895
Nick Lewycky8d91e192009-02-26 07:44:16 +0000896all-local:: $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897
898ifdef LINK_LIBS_IN_SHARED
899ifdef LOADABLE_MODULE
900SharedLibKindMessage := "Loadable Module"
901else
902SharedLibKindMessage := "Shared Library"
903endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000904$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
906 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000907 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
908 $(ProjLibsOptions) $(LLVMLibsOptions)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000909else
Nick Lewycky8d91e192009-02-26 07:44:16 +0000910$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000912 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000913endif
914
915clean-local::
Nick Lewycky8d91e192009-02-26 07:44:16 +0000916ifneq ($(strip $(LibName.SO)),)
917 -$(Verb) $(RM) -f $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000918endif
919
920ifdef NO_INSTALL
921install-local::
922 $(Echo) Install circumvented with NO_INSTALL
923uninstall-local::
924 $(Echo) Uninstall circumvented with NO_INSTALL
925else
926DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
927
928install-local:: $(DestSharedLib)
929
Nick Lewycky8d91e192009-02-26 07:44:16 +0000930$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000932 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000933
Misha Brukman89fe5162009-01-08 02:11:55 +0000934uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000935 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
936 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
937endif
938endif
939
940#---------------------------------------------------------
941# Bytecode Library Targets:
942# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +0000943# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000944# targets for building them.
945#---------------------------------------------------------
946ifdef BYTECODE_LIBRARY
947ifeq ($(strip $(LLVMGCC)),)
948$(warning Bytecode libraries require llvm-gcc which could not be found ****)
949else
950
951all-local:: $(LibName.BCA)
952
953ifdef EXPORTED_SYMBOL_FILE
954BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
955 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
956
957$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
958 $(LLVMToolDir)/llvm-ar
959 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
960 "(internalize)"
961 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
962 $(Verb) $(RM) -f $@
963 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
964else
965$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
966 $(LLVMToolDir)/llvm-ar
967 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
968 $(Verb) $(RM) -f $@
969 $(Verb) $(LArchive) $@ $(ObjectsBC)
970
971endif
972
973clean-local::
974ifneq ($(strip $(LibName.BCA)),)
975 -$(Verb) $(RM) -f $(LibName.BCA)
976endif
977
978ifdef BYTECODE_DESTINATION
979BytecodeDestDir := $(BYTECODE_DESTINATION)
980else
981BytecodeDestDir := $(PROJ_libdir)
982endif
983
984DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
985
986install-bytecode-local:: $(DestBytecodeLib)
987
988ifdef NO_INSTALL
989install-local::
990 $(Echo) Install circumvented with NO_INSTALL
991uninstall-local::
992 $(Echo) Uninstall circumvented with NO_INSTALL
993else
994install-local:: $(DestBytecodeLib)
995
Mike Stump98f72e02009-02-12 23:45:11 +0000996$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000997 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
998 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
999
1000uninstall-local::
1001 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1002 -$(Verb) $(RM) -f $(DestBytecodeLib)
1003endif
1004endif
1005endif
1006
1007#---------------------------------------------------------
1008# ReLinked Library Targets:
1009# If the user explicitly requests a relinked library with
1010# BUILD_RELINKED, provide it. Otherwise, if they specify
1011# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
1012# them one.
1013#---------------------------------------------------------
1014ifndef BUILD_ARCHIVE
1015ifndef DONT_BUILD_RELINKED
1016BUILD_RELINKED = 1
1017endif
1018endif
1019
1020ifdef BUILD_RELINKED
1021
1022all-local:: $(LibName.O)
1023
1024$(LibName.O): $(ObjectsO) $(LibDir)/.dir
1025 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
Nick Lewycky14c68542009-02-26 08:48:14 +00001026 $(Verb) $(Relink) -Wl,-r -nodefaultlibs -nostdlib -nostartfiles -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027
1028clean-local::
1029ifneq ($(strip $(LibName.O)),)
1030 -$(Verb) $(RM) -f $(LibName.O)
1031endif
1032
1033ifdef NO_INSTALL
1034install-local::
1035 $(Echo) Install circumvented with NO_INSTALL
1036uninstall-local::
1037 $(Echo) Uninstall circumvented with NO_INSTALL
1038else
1039DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
1040
1041install-local:: $(DestRelinkedLib)
1042
Mike Stump98f72e02009-02-12 23:45:11 +00001043$(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001045 $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046
1047uninstall-local::
1048 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1049 -$(Verb) $(RM) -f $(DestRelinkedLib)
1050endif
1051endif
1052
1053#---------------------------------------------------------
1054# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +00001055# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056# then we provide targets for building them.
1057#---------------------------------------------------------
1058ifdef BUILD_ARCHIVE
1059
1060all-local:: $(LibName.A)
1061
1062$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1063 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1064 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001065 $(Verb) $(Archive) $@ $(ObjectsO)
1066 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067
1068clean-local::
1069ifneq ($(strip $(LibName.A)),)
1070 -$(Verb) $(RM) -f $(LibName.A)
1071endif
1072
1073ifdef NO_INSTALL
1074install-local::
1075 $(Echo) Install circumvented with NO_INSTALL
1076uninstall-local::
1077 $(Echo) Uninstall circumvented with NO_INSTALL
1078else
1079DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1080
1081install-local:: $(DestArchiveLib)
1082
Mike Stump98f72e02009-02-12 23:45:11 +00001083$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1085 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001086 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087
1088uninstall-local::
1089 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1090 -$(Verb) $(RM) -f $(DestArchiveLib)
1091endif
1092endif
1093
1094# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001095endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096
1097###############################################################################
1098# Tool Build Rules: Build executable tool based on TOOLNAME option
1099###############################################################################
1100
1101ifdef TOOLNAME
1102
1103#---------------------------------------------------------
1104# Set up variables for building a tool.
1105#---------------------------------------------------------
1106ifdef EXAMPLE_TOOL
1107ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1108else
1109ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1110endif
1111
1112#---------------------------------------------------------
Chris Lattner8b04ea72009-02-26 17:47:49 +00001113# Prune Exports
1114#---------------------------------------------------------
1115
1116# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1117# not exporting all of the weak symbols from the binary. This reduces dyld
1118# startup time by 4x on darwin in some cases.
1119ifdef TOOL_NO_EXPORTS
1120ifeq ($(OS),Darwin)
Chris Lattnerc6c51352009-03-10 17:15:56 +00001121
1122# Tiger tools don't support this.
1123ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner8b04ea72009-02-26 17:47:49 +00001124LD.Flags += -Wl,-exported_symbol -Wl,_main
1125endif
Chris Lattnerc6c51352009-03-10 17:15:56 +00001126endif
Chris Lattner8b04ea72009-02-26 17:47:49 +00001127
1128ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
Chris Lattner7c024612009-02-26 18:38:40 +00001129LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner8b04ea72009-02-26 17:47:49 +00001130endif
1131endif
1132
1133
1134#---------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001135# Provide targets for building the tools
1136#---------------------------------------------------------
1137all-local:: $(ToolBuildPath)
1138
1139clean-local::
1140ifneq ($(strip $(ToolBuildPath)),)
1141 -$(Verb) $(RM) -f $(ToolBuildPath)
1142endif
1143
1144ifdef EXAMPLE_TOOL
1145$(ToolBuildPath): $(ExmplDir)/.dir
1146else
1147$(ToolBuildPath): $(ToolDir)/.dir
1148endif
1149
1150$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1151 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001152 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001153 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1154 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001155 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156
1157ifdef NO_INSTALL
1158install-local::
1159 $(Echo) Install circumvented with NO_INSTALL
1160uninstall-local::
1161 $(Echo) Uninstall circumvented with NO_INSTALL
1162else
1163DestTool = $(PROJ_bindir)/$(TOOLNAME)
1164
1165install-local:: $(DestTool)
1166
Mike Stump98f72e02009-02-12 23:45:11 +00001167$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168 $(Echo) Installing $(BuildMode) $(DestTool)
1169 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1170
1171uninstall-local::
1172 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1173 -$(Verb) $(RM) -f $(DestTool)
1174endif
1175endif
1176
1177###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001178# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001179###############################################################################
1180
1181# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1182ifeq ($(OS),HP-UX)
1183 DISABLE_AUTO_DEPENDENCIES=1
1184endif
1185
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001186# Provide rule sets for when dependency generation is enabled
1187ifndef DISABLE_AUTO_DEPENDENCIES
1188
1189#---------------------------------------------------------
Nick Lewycky8d91e192009-02-26 07:44:16 +00001190# Create .o files in the ObjDir directory from the .cpp and .c files...
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001191#---------------------------------------------------------
1192
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001193DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewycky8d91e192009-02-26 07:44:16 +00001194 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001195
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001196# If the build succeeded, move the dependency file over. If it failed, put an
1197# empty file there.
1198DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1199 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1200
Nick Lewycky8d91e192009-02-26 07:44:16 +00001201$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001202 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001203 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001204 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001205
Nick Lewycky8d91e192009-02-26 07:44:16 +00001206$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001207 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001208 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001209 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001210
Nick Lewycky8d91e192009-02-26 07:44:16 +00001211$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001212 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001213 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001214 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001215
1216#---------------------------------------------------------
1217# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1218#---------------------------------------------------------
1219
1220$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1221 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1222 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1223 $< -o $@ -S -emit-llvm ; \
1224 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1225 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001226 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001227 $(call UPGRADE_LL,$@)
1228
1229$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1230 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1231 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1232 $< -o $@ -S -emit-llvm ; \
1233 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1234 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001235 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001236 $(call UPGRADE_LL,$@)
1237
1238$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1239 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1240 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1241 $< -o $@ -S -emit-llvm ; \
1242 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1243 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001244 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 $(call UPGRADE_LL,$@)
1246
1247# Provide alternate rule sets if dependencies are disabled
1248else
1249
Nick Lewycky8d91e192009-02-26 07:44:16 +00001250$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001251 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001252 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001253
Nick Lewycky8d91e192009-02-26 07:44:16 +00001254$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001255 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001256 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001257
Nick Lewycky8d91e192009-02-26 07:44:16 +00001258$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001259 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001260 $(Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001261
1262$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1263 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1264 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001265 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001266 $(call UPGRADE_LL,$@)
1267
1268$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1269 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1270 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001271 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001272 $(call UPGRADE_LL,$@)
1273
1274$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1275 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1276 $(BCCompile.C) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001277 $(call UPGRADE_MSG,@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278 $(call UPGRADE_LL,@)
1279
1280endif
1281
1282
1283## Rules for building preprocessed (.i/.ii) outputs.
1284$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1285 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1286 $(Verb) $(Preprocess.CXX) $< -o $@
1287
1288$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1289 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1290 $(Verb) $(Preprocess.CXX) $< -o $@
1291
1292$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1293 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1294 $(Verb) $(Preprocess.C) $< -o $@
1295
1296
1297$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1298 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001299 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001300
1301$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1302 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001303 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001304
1305$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1306 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001307 $(Compile.C) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001308
1309
1310# make the C and C++ compilers strip debug info out of bytecode libraries.
1311ifdef DEBUG_RUNTIME
1312$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1313 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1314 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1315else
1316$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1317 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1318 $(Verb) $(LLVMAS) $< -o - | \
1319 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1320endif
1321
1322
1323#---------------------------------------------------------
1324# Provide rule to build .bc files from .ll sources,
1325# regardless of dependencies
1326#---------------------------------------------------------
1327$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1328 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1329 $(Verb) $(LLVMAS) $< -f -o $@
1330
1331###############################################################################
1332# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1333###############################################################################
1334
1335ifdef TARGET
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001336TABLEGEN_INC_FILES_COMMON = 1
1337endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001338
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001339ifdef LLVMC_BUILD_AUTOGENERATED_INC
1340TABLEGEN_INC_FILES_COMMON = 1
1341endif
1342
1343ifdef TABLEGEN_INC_FILES_COMMON
1344
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001345INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1346INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1347.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1348
Misha Brukman89fe5162009-01-08 02:11:55 +00001349# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001350# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1351# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001352# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001353# dependencies of the .inc files are, unless the contents of the .inc file
1354# changes.
1355$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1356 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1357
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001358endif # TABLEGEN_INC_FILES_COMMON
1359
1360ifdef TARGET
1361
1362TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1363 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1364 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1365 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1366 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1367 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1368 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1369
Rafael Espindola4d8cd532009-03-10 17:58:54 +00001370# All of these files depend on tblgen and the .td files.
1371$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1372
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001373$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1374$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1375 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001376 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001377
1378$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1379$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1380 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001381 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001382
1383$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1384$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1385 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001386 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001387
1388$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1389$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1390 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001391 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001392
1393$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1394$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1395 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001396 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001397
1398$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1399$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1400 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001401 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001402
1403$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1404$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1405 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001406 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001407
1408$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1409$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1410 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001411 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001412
1413$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1414$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001415 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001416 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001417
Dan Gohmanb75dead2008-08-13 20:19:35 +00001418$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1419$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1420 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1421 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1422
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001423$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1424$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1425 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001426 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001427
1428$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1429$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1430 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001431 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001432
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001433$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1434$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1435 $(Echo) "Building $(<F) calling convention information with tblgen"
1436 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1437
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001438clean-local::
1439 -$(Verb) $(RM) -f $(INCFiles)
1440
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001441endif # TARGET
1442
1443ifdef LLVMC_BUILD_AUTOGENERATED_INC
1444
1445LLVMCPluginSrc := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td))
1446
1447TDFiles := $(LLVMCPluginSrc) \
1448 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1449
1450$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1451 $(TBLGEN) $(TD_COMMON)
1452 $(Echo) "Building LLVMC configuration library with tblgen"
1453 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1454
1455endif # LLVMC_BUILD_AUTOGENERATED_INC
1456
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001457
1458###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001459# OTHER RULES: Other rules needed
1460###############################################################################
1461
1462# To create postscript files from dot files...
1463ifneq ($(DOT),false)
1464%.ps: %.dot
1465 $(DOT) -Tps < $< > $@
1466else
1467%.ps: %.dot
1468 $(Echo) "Cannot build $@: The program dot is not installed"
1469endif
1470
1471# This rules ensures that header files that are removed still have a rule for
1472# which they can be "generated." This allows make to ignore them and
1473# reproduce the dependency lists.
1474%.h:: ;
1475%.hpp:: ;
1476
1477# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001478# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001479# errors or disastrous removal.
1480clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001481ifneq ($(strip $(ObjRootDir)),)
1482 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001483endif
1484 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1485ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1486 -$(Verb) $(RM) -f *$(SHLIBEXT)
1487endif
1488
1489clean-all-local::
1490 -$(Verb) $(RM) -rf Debug Release Profile
1491
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001492
1493###############################################################################
1494# DEPENDENCIES: Include the dependency files if we should
1495###############################################################################
1496ifndef DISABLE_AUTO_DEPENDENCIES
1497
1498# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001499ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001500
1501# Get the list of dependency files
1502DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1503DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1504
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001505-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001506
1507endif
1508
Misha Brukman89fe5162009-01-08 02:11:55 +00001509endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001510
1511###############################################################################
1512# CHECK: Running the test suite
1513###############################################################################
1514
1515check::
1516 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1517 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1518 $(EchoCmd) Running test suite ; \
1519 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1520 TESTSUITE=$(TESTSUITE) ; \
1521 else \
1522 $(EchoCmd) No Makefile in test directory ; \
1523 fi ; \
1524 else \
1525 $(EchoCmd) No test directory ; \
1526 fi
1527
1528###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001529# UNITTESTS: Running the unittests test suite
1530###############################################################################
1531
1532unittests::
1533 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1534 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1535 $(EchoCmd) Running unittests test suite ; \
1536 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1537 else \
1538 $(EchoCmd) No Makefile in unittests directory ; \
1539 fi ; \
1540 else \
1541 $(EchoCmd) No unittests directory ; \
1542 fi
1543
1544###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001545# DISTRIBUTION: Handle construction of a distribution tarball
1546###############################################################################
1547
1548#------------------------------------------------------------------------
1549# Define distribution related variables
1550#------------------------------------------------------------------------
1551DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1552DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1553TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1554DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1555DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1556DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1557DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1558 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1559 Makefile.config.in configure autoconf
1560DistOther := $(notdir $(wildcard \
1561 $(PROJ_SRC_DIR)/*.h \
1562 $(PROJ_SRC_DIR)/*.td \
1563 $(PROJ_SRC_DIR)/*.def \
1564 $(PROJ_SRC_DIR)/*.ll \
1565 $(PROJ_SRC_DIR)/*.in))
1566DistSubDirs := $(SubDirs)
1567DistSources = $(Sources) $(EXTRA_DIST)
1568DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1569
1570#------------------------------------------------------------------------
1571# We MUST build distribution with OBJ_DIR != SRC_DIR
1572#------------------------------------------------------------------------
1573ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1574dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1575 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1576
1577else
1578
1579#------------------------------------------------------------------------
1580# Prevent attempt to run dist targets from anywhere but the top level
1581#------------------------------------------------------------------------
1582ifneq ($(LEVEL),.)
1583dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1584 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1585else
1586
1587#------------------------------------------------------------------------
1588# Provide the top level targets
1589#------------------------------------------------------------------------
1590
1591dist-gzip:: $(DistTarGZip)
1592
1593$(DistTarGZip) : $(TopDistDir)/.makedistdir
1594 $(Echo) Packing gzipped distribution tar file.
1595 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1596 $(GZIP) -c > "$(DistTarGZip)"
1597
1598dist-bzip2:: $(DistTarBZ2)
1599
1600$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1601 $(Echo) Packing bzipped distribution tar file.
1602 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1603 $(BZIP2) -c >$(DistTarBZ2)
1604
1605dist-zip:: $(DistZip)
1606
1607$(DistZip) : $(TopDistDir)/.makedistdir
1608 $(Echo) Packing zipped distribution file.
1609 $(Verb) rm -f $(DistZip)
1610 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1611
Misha Brukman89fe5162009-01-08 02:11:55 +00001612dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001613 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1614
1615DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1616
1617dist-check:: $(DistTarGZip)
1618 $(Echo) Checking distribution tar file.
1619 $(Verb) if test -d $(DistCheckDir) ; then \
1620 $(RM) -rf $(DistCheckDir) ; \
1621 fi
1622 $(Verb) $(MKDIR) $(DistCheckDir)
1623 $(Verb) cd $(DistCheckDir) && \
1624 $(MKDIR) $(DistCheckDir)/build && \
1625 $(MKDIR) $(DistCheckDir)/install && \
1626 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1627 cd build && \
1628 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1629 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1630 $(MAKE) all && \
1631 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001632 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001633 $(MAKE) install && \
1634 $(MAKE) uninstall && \
1635 $(MAKE) dist-clean && \
1636 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1637
1638dist-clean::
1639 $(Echo) Cleaning distribution files
1640 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1641 $(DistCheckDir)
1642
1643endif
1644
1645#------------------------------------------------------------------------
1646# Provide the recursive distdir target for building the distribution directory
1647#------------------------------------------------------------------------
1648distdir: $(DistDir)/.makedistdir
1649$(DistDir)/.makedistdir: $(DistSources)
1650 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1651 if test -d "$(DistDir)" ; then \
1652 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1653 exit 1 ; \
1654 fi ; \
1655 $(EchoCmd) Removing old $(DistDir) ; \
1656 $(RM) -rf $(DistDir); \
1657 $(EchoCmd) Making 'all' to verify build ; \
1658 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1659 fi
1660 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001661 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001662 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1663 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1664 for file in $(DistFiles) ; do \
1665 case "$$file" in \
1666 $(PROJ_SRC_DIR)/*) \
1667 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1668 ;; \
1669 $(PROJ_SRC_ROOT)/*) \
1670 file=`echo "$$file" | \
1671 sed "s#^$$srcrootstrip/##"` \
1672 ;; \
1673 esac; \
1674 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1675 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1676 from_dir="$(PROJ_SRC_DIR)" ; \
1677 elif test -f "$$file" || test -d "$$file" ; then \
1678 from_dir=. ; \
1679 fi ; \
1680 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1681 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1682 to_dir="$(DistDir)/$$dir"; \
1683 $(MKDIR) "$$to_dir" ; \
1684 else \
1685 to_dir="$(DistDir)"; \
1686 fi; \
1687 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1688 if test -n "$$mid_dir" ; then \
1689 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1690 fi ; \
1691 if test -d "$$from_dir/$$file"; then \
1692 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1693 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1694 cd $(PROJ_SRC_DIR) ; \
1695 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1696 ( cd $$to_dir ; $(TAR) xf - ) ; \
1697 cd $(PROJ_OBJ_DIR) ; \
1698 else \
1699 cd $$from_dir ; \
1700 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1701 ( cd $$to_dir ; $(TAR) xf - ) ; \
1702 cd $(PROJ_OBJ_DIR) ; \
1703 fi; \
1704 elif test -f "$$from_dir/$$file" ; then \
1705 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1706 elif test -L "$$from_dir/$$file" ; then \
1707 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1708 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1709 $(EchoCmd) "===== WARNING: Distribution Source " \
1710 "$$from_dir/$$file Not Found!" ; \
1711 elif test "$(Verb)" != '@' ; then \
1712 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1713 fi; \
1714 done
1715 $(Verb) for subdir in $(DistSubDirs) ; do \
1716 if test "$$subdir" \!= "." ; then \
1717 new_distdir="$(DistDir)/$$subdir" ; \
1718 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1719 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1720 DistDir="$$new_distdir" distdir ) || exit 1; \
1721 fi; \
1722 done
1723 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1724 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1725 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1726 -name .svn \) -print` ;\
1727 $(MAKE) dist-hook ; \
1728 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1729 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1730 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1731 -o ! -type d ! -perm -444 -exec \
1732 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1733 || chmod -R a+r $(DistDir) ; \
1734 fi
1735
1736# This is invoked by distdir target, define it as a no-op to avoid errors if not
1737# defined by user.
1738dist-hook::
1739
1740endif
1741
1742###############################################################################
1743# TOP LEVEL - targets only to apply at the top level directory
1744###############################################################################
1745
1746ifeq ($(LEVEL),.)
1747
1748#------------------------------------------------------------------------
1749# Install support for the project's include files:
1750#------------------------------------------------------------------------
1751ifdef NO_INSTALL
1752install-local::
1753 $(Echo) Install circumvented with NO_INSTALL
1754uninstall-local::
1755 $(Echo) Uninstall circumvented with NO_INSTALL
1756else
1757install-local::
1758 $(Echo) Installing include files
1759 $(Verb) $(MKDIR) $(PROJ_includedir)
1760 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1761 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001762 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001763 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1764 grep -v .svn` ; do \
1765 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1766 if test \! -d "$$instdir" ; then \
1767 $(EchoCmd) Making install directory $$instdir ; \
1768 $(MKDIR) $$instdir ;\
1769 fi ; \
1770 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1771 done ; \
1772 fi
1773ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1774 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1775 cd $(PROJ_OBJ_ROOT)/include && \
1776 for hdr in `find . -type f -print | grep -v CVS` ; do \
1777 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1778 done ; \
1779 fi
1780endif
1781
1782uninstall-local::
1783 $(Echo) Uninstalling include files
1784 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1785 cd $(PROJ_SRC_ROOT)/include && \
1786 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001787 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001788 -o -name '*.in' ')' -print ')' | \
1789 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1790 cd $(PROJ_SRC_ROOT)/include && \
1791 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1792 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1793 fi
1794endif
1795endif
1796
1797check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001798 @echo searching for overlength lines in files: $(Sources)
1799 @echo
1800 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001801 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001802
1803check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001804 @echo searching for tabs in files: $(Sources)
1805 @echo
1806 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001807 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001808
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001809check-footprint:
1810 @ls -l $(LibDir) | awk '\
1811 BEGIN { sum = 0; } \
1812 { sum += $$5; } \
1813 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1814 @ls -l $(ToolDir) | awk '\
1815 BEGIN { sum = 0; } \
1816 { sum += $$5; } \
1817 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1818#------------------------------------------------------------------------
1819# Print out the directories used for building
1820#------------------------------------------------------------------------
1821printvars::
1822 $(Echo) "BuildMode : " '$(BuildMode)'
1823 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1824 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1825 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1826 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1827 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1828 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1829 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1830 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1831 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1832 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1833 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1834 $(Echo) "UserTargets : " '$(UserTargets)'
1835 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1836 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1837 $(Echo) "ObjDir : " '$(ObjDir)'
1838 $(Echo) "LibDir : " '$(LibDir)'
1839 $(Echo) "ToolDir : " '$(ToolDir)'
1840 $(Echo) "ExmplDir : " '$(ExmplDir)'
1841 $(Echo) "Sources : " '$(Sources)'
1842 $(Echo) "TDFiles : " '$(TDFiles)'
1843 $(Echo) "INCFiles : " '$(INCFiles)'
1844 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1845 $(Echo) "PreConditions: " '$(PreConditions)'
1846 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1847 $(Echo) "Compile.C : " '$(Compile.C)'
1848 $(Echo) "Archive : " '$(Archive)'
1849 $(Echo) "YaccFiles : " '$(YaccFiles)'
1850 $(Echo) "LexFiles : " '$(LexFiles)'
1851 $(Echo) "Module : " '$(Module)'
1852 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1853 $(Echo) "SubDirs : " '$(SubDirs)'
1854 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1855 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001856
1857###
1858# Debugging
1859
Daniel Dunbara6b02752009-03-06 22:23:25 +00001860# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001861# definition, value and origin of XXX.
Daniel Dunbara6b02752009-03-06 22:23:25 +00001862make-print-%:
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001863 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))