blob: 4acada3508c9754fd08d6dcaa5c38fce9322ca2c [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.
Evan Cheng107dae12009-04-20 22:16:40 +0000232ifndef OPTIMIZE_OPTION
233 ifneq ($(OS),MingW)
234 OPTIMIZE_OPTION := -O3
235 else
236 OPTIMIZE_OPTION := -O2
237 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238endif
239
David Greene8cd590c2009-04-17 14:49:22 +0000240ifeq ($(ENABLE_OPTIMIZED),1)
241 BuildMode := Release
242 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
243 ifneq ($(OS),FreeBSD)
244 ifneq ($(OS),Darwin)
245 OmitFramePointer := -fomit-frame-pointer
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 endif
David Greene8cd590c2009-04-17 14:49:22 +0000247 endif
248
249 # Darwin requires -fstrict-aliasing to be explicitly enabled.
Evan Cheng95e92ae2009-04-20 22:49:59 +0000250 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
251 # with -fstrict-aliasing and ipa-type-escape radr://6756684
Evan Cheng107dae12009-04-20 22:16:40 +0000252 #ifeq ($(OS),Darwin)
253 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
254 #endif
David Greene8cd590c2009-04-17 14:49:22 +0000255 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
256 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
257 LD.Flags += $(OPTIMIZE_OPTION)
258else
259 BuildMode := Debug
260 CXX.Flags += -g
261 C.Flags += -g
262 LD.Flags += -g
263 KEEP_SYMBOLS := 1
264endif
265
266ifeq ($(ENABLE_PROFILING),1)
267 BuildMode := $(BuildMode)+Profile
268 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
269 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
270 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
271 KEEP_SYMBOLS := 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272endif
273
Daniel Dunbar886e1832008-09-02 17:35:16 +0000274#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
275# CXX.Flags += -fvisibility-inlines-hidden
276#endif
277
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000278# IF REQUIRES_EH=1 is specified then don't disable exceptions
279ifndef REQUIRES_EH
280 CXX.Flags += -fno-exceptions
281endif
282
283# IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
284ifndef REQUIRES_RTTI
285# CXX.Flags += -fno-rtti
286endif
287
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000288ifdef ENABLE_COVERAGE
289 BuildMode := $(BuildMode)+Coverage
290 # These only go to .NoRelink because otherwise we will end up
291 # linking -lgcov into the .o libraries that get built.
292 CXX.Flags.NoRelink += -ftest-coverage -fprofile-arcs
293 C.Flags.NoRelink += -ftest-coverage -fprofile-arcs
294endif
295
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000296# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
297# then disable assertions by defining the appropriate preprocessor symbols.
298ifdef DISABLE_ASSERTIONS
Duncan Sands86a7a222009-03-27 11:35:00 +0000299 # Indicate that assertions are turned off using a minus sign
300 BuildMode := $(BuildMode)-Asserts
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301 CPP.Defines += -DNDEBUG
302else
303 CPP.Defines += -D_DEBUG
304endif
305
Misha Brukman89fe5162009-01-08 02:11:55 +0000306# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
307# configured), then enable expensive checks by defining the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308# appropriate preprocessor symbols.
309ifdef ENABLE_EXPENSIVE_CHECKS
310 BuildMode := $(BuildMode)+Checks
Duncan Sands871e55f2008-12-09 21:33:20 +0000311 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000312endif
313
Nick Lewycky8d91e192009-02-26 07:44:16 +0000314# LOADABLE_MODULE implies several other things so we force them to be
315# defined/on.
316ifdef LOADABLE_MODULE
317 SHARED_LIBRARY := 1
318 DONT_BUILD_RELINKED := 1
319 LINK_LIBS_IN_SHARED := 1
320endif
321
322ifdef SHARED_LIBRARY
323 ENABLE_PIC := 1
324 PIC_FLAG = "(PIC)"
325endif
326
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000327ifeq ($(ENABLE_PIC),1)
Nick Lewyckyce6daa452009-03-03 03:36:50 +0000328 ifeq ($(OS), $(filter $(OS), Cygwin MingW))
Nick Lewycky5b882f22009-02-21 08:41:09 +0000329 # Nothing. Win32 defaults to PIC and warns when given -fPIC
330 else
331 ifeq ($(OS),Darwin)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000332 # Common symbols not allowed in dylib files
Nick Lewycky5b882f22009-02-21 08:41:09 +0000333 CXX.Flags += -fno-common
334 C.Flags += -fno-common
335 else
336 # Linux and others; pass -fPIC
337 CXX.Flags += -fPIC
338 C.Flags += -fPIC
339 endif
340 endif
Mike Stump8efa3542009-05-08 23:08:58 +0000341else
342 ifeq ($(OS),Darwin)
343 CXX.Flags += -mdynamic-no-pic
344 C.Flags += -mdynamic-no-pic
345 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346endif
347
348CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
349C.Flags += $(CFLAGS)
350CPP.Defines += $(CPPFLAGS)
351CPP.BaseFlags += $(CPP.Defines)
352LD.Flags += $(LDFLAGS)
353AR.Flags := cru
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354
355# Make Floating point IEEE compliant on Alpha.
356ifeq ($(ARCH),Alpha)
357 CXX.Flags += -mieee
358 CPP.BaseFlags += -mieee
359ifeq ($(ENABLE_PIC),0)
360 CXX.Flags += -fPIC
361 CPP.BaseFlags += -fPIC
362endif
363endif
364
365ifeq ($(ARCH),Alpha)
366 LD.Flags += -Wl,--no-relax
367endif
368
Anton Korobeynikov025ddd42009-05-04 10:25:30 +0000369ifeq ($(OS),MingW)
370 ifeq ($(LLVM_CROSS_COMPILING),1)
371 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
372 ifdef TOOLNAME
373 LD.Flags += -Wl,--allow-multiple-definition
374 endif
375 endif
376endif
377
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378#--------------------------------------------------------------------
379# Directory locations
380#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000381TargetMode :=
382ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000383 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000384endif
385
386ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000387ObjDir := $(ObjRootDir)
388LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
389ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
390ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
391LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
392LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
393LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394CFERuntimeLibDir := $(LLVMGCCDIR)/lib
395
396#--------------------------------------------------------------------
397# Full Paths To Compiled Tools and Utilities
398#--------------------------------------------------------------------
399EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
400Echo = @$(EchoCmd)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401ifndef LLVMAS
402LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
403endif
404ifndef TBLGEN
405 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000406 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407 else
408 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
409 endif
410endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000411LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412ifndef LLVMLD
413LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
414endif
415ifndef LLVMDIS
416LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
417endif
418ifndef LLI
419LLI := $(LLVMToolDir)/lli$(EXEEXT)
420endif
421ifndef LLC
422LLC := $(LLVMToolDir)/llc$(EXEEXT)
423endif
424ifndef LOPT
425LOPT := $(LLVMToolDir)/opt$(EXEEXT)
426endif
427ifndef LBUGPOINT
428LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
429endif
430ifndef LUPGRADE
431LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
432endif
433ifeq ($(LLVMGCC_MAJVERS),3)
434UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
435UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
436LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
437LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
438else
439UPGRADE_MSG =
440UPGRADE_LL =
441LLVMGCCWITHPATH := $(LLVMGCC)
442LLVMGXXWITHPATH := $(LLVMGXX)
443endif
444
445#--------------------------------------------------------------------
446# Adjust to user's request
447#--------------------------------------------------------------------
448
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000449ifeq ($(OS),Darwin)
450 DARWIN_VERSION := `sw_vers -productVersion`
451 # Strip a number like 10.4.7 to 10.4
452 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
453 # Get "4" out of 10.4 for later pieces in the makefile.
454 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendling3c0d23b2009-03-22 08:28:45 +0000455
Julien Lerouge64e1db82009-03-27 18:18:00 +0000456 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
457 -dynamiclib -mmacosx-version-min=$(DARWIN_VERSION)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000458 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000459else
460 ifeq ($(OS),Cygwin)
461 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
462 -Wl,--enable-auto-import -Wl,--enable-auto-image-base \
463 -Wl,--enable-runtime-pseudo-relocs
464 else
465 SharedLinkOptions=-shared
466 endif
467endif
468
Nick Lewycky8d91e192009-02-26 07:44:16 +0000469# Adjust LD.Flags depending on the kind of library that is to be built. Note
470# that if LOADABLE_MODULE is specified then the resulting shared library can
471# be opened with dlopen.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472ifdef LOADABLE_MODULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 LD.Flags += -module
474endif
475
476ifdef SHARED_LIBRARY
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000477ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky12015c12009-03-03 04:55:15 +0000478 LD.Flags += $(RPATH) -Wl,$(LibDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479endif
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000480endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481
482ifdef TOOL_VERBOSE
483 C.Flags += -v
484 CXX.Flags += -v
485 LD.Flags += -v
486 VERBOSE := 1
487endif
488
489# Adjust settings for verbose mode
490ifndef VERBOSE
491 Verb := @
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000492 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
494else
Misha Brukman89fe5162009-01-08 02:11:55 +0000495 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496endif
497
498# By default, strip symbol information from executable
499ifndef KEEP_SYMBOLS
500 Strip := $(PLATFORMSTRIPOPTS)
501 StripWarnMsg := "(without symbols)"
502 Install.StripFlag += -s
503endif
504
505# Adjust linker flags for building an executable
Nick Lewycky324b1192009-02-26 08:03:36 +0000506ifneq ($(OS),Darwin)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000507ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508ifdef TOOLNAME
509ifdef EXAMPLE_TOOL
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000510 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511else
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000512 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000513endif
514endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000515endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000516endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517
518#----------------------------------------------------------
519# Options To Invoke Tools
520#----------------------------------------------------------
521
Chris Lattner323808e2009-02-26 17:44:38 +0000522CompileCommonOpts += -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000523 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
524
525ifeq ($(OS),HP-UX)
526 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
527endif
528
529# If we are building a universal binary on Mac OS/X, pass extra options. This
530# is useful to people that want to link the LLVM libraries into their universal
531# apps.
532#
533# The following can be optionally specified:
534# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
535# For Mac OS/X 10.4 Intel machines, the traditional one is:
536# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
537# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
538# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
539# i386/ppc only.
540ifdef UNIVERSAL
541 ifndef UNIVERSAL_ARCH
542 UNIVERSAL_ARCH := i386 ppc
543 endif
544 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
545 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerc372e1c2009-02-26 19:08:30 +0000546 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547 ifdef UNIVERSAL_SDK_PATH
548 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerc372e1c2009-02-26 19:08:30 +0000549 Relink.Flags += -isysroot $(UNIVERSAL_SDK_PATH)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550 endif
551
552 # Building universal cannot compute dependencies automatically.
553 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000554else
Bill Wendling025cce52009-03-12 04:10:09 +0000555 ifeq ($(OS),Darwin)
556 ifeq ($(ARCH),x86_64)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000557 TargetCommonOpts = -m64
Bill Wendling025cce52009-03-12 04:10:09 +0000558 else
559 ifeq ($(ARCH),x86)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000560 TargetCommonOpts = -m32
Bill Wendling025cce52009-03-12 04:10:09 +0000561 endif
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000562 endif
563 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564endif
565
Chris Lattner35c997c2008-06-24 17:44:42 +0000566ifeq ($(OS),SunOS)
567CPP.BaseFlags += -include llvm/System/Solaris.h
568endif
569
Misha Brukman89fe5162009-01-08 02:11:55 +0000570LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman5a5e6e92008-10-17 01:33:43 +0000571CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands3b960292008-01-28 17:38:30 +0000573CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
574 $(patsubst %,-I%/include,\
Chris Lattner6ee48752008-01-28 04:18:41 +0000575 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
576 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
577 $(CPP.BaseFlags)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000579ifeq ($(BUILD_COMPONENT), 1)
580 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(C.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000581 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000582 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000583 $(TargetCommonOpts) $(CompileCommonOpts) -c
584 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(TargetCommonOpts) \
585 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000586 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000587 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
588 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
589 $(CompileCommonOpts) $(Relink.Flags)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000590else
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000591 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(C.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000592 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000593 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000594 $(TargetCommonOpts) $(CompileCommonOpts) -c
595 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) \
596 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000597 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000598 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
599 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
600 $(CompileCommonOpts) $(Relink.Flags)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000601endif
602
Evan Chengd1f1fc12009-03-23 03:45:56 +0000603BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) \
604 $(TargetCommonOpts) $(CompileCommonOpts)
605Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) \
606 $(TargetCommonOpts) $(CompileCommonOpts) -E
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000607
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000609 $(TargetCommonOpts) $(CompileCommonOpts)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000610
Misha Brukman89fe5162009-01-08 02:11:55 +0000611ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
612ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000614
615# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
616# paths. In this case, the SYSPATH function (defined in
617# Makefile.config) transforms Unix paths into Windows paths.
618TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000619 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000620 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
621 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
622
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623Archive = $(AR) $(AR.Flags)
624LArchive = $(LLVMToolDir)/llvm-ar rcsf
625ifdef RANLIB
626Ranlib = $(RANLIB)
627else
628Ranlib = ranlib
629endif
630
631#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000632# Get the list of source files and compute object file
633# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634#----------------------------------------------------------
635
636ifndef SOURCES
637 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000638 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639else
640 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000641endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000642
643ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000644Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645endif
646
647BaseNameSources := $(sort $(basename $(Sources)))
648
649ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
651
652###############################################################################
653# DIRECTORIES: Handle recursive descent of directory structure
654###############################################################################
655
656#---------------------------------------------------------
657# Provide rules to make install dirs. This must be early
658# in the file so they get built before dependencies
659#---------------------------------------------------------
660
Mike Stump98f72e02009-02-12 23:45:11 +0000661$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000662 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663
664# To create other directories, as needed, and timestamp their creation
665%/.dir:
666 $(Verb) $(MKDIR) $* > /dev/null
667 $(Verb) $(DATE) > $@
668
669.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
670.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
671
672#---------------------------------------------------------
673# Handle the DIRS options for sequential construction
674#---------------------------------------------------------
675
Misha Brukman89fe5162009-01-08 02:11:55 +0000676SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677ifdef DIRS
678SubDirs += $(DIRS)
679
680ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
681$(RecursiveTargets)::
682 $(Verb) for dir in $(DIRS); do \
683 if [ ! -f $$dir/Makefile ]; then \
684 $(MKDIR) $$dir; \
685 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
686 fi; \
687 ($(MAKE) -C $$dir $@ ) || exit 1; \
688 done
689else
690$(RecursiveTargets)::
691 $(Verb) for dir in $(DIRS); do \
692 ($(MAKE) -C $$dir $@ ) || exit 1; \
693 done
694endif
695
696endif
697
698#---------------------------------------------------------
699# Handle the EXPERIMENTAL_DIRS options ensuring success
700# after each directory is built.
701#---------------------------------------------------------
702ifdef EXPERIMENTAL_DIRS
703$(RecursiveTargets)::
704 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
705 if [ ! -f $$dir/Makefile ]; then \
706 $(MKDIR) $$dir; \
707 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
708 fi; \
709 ($(MAKE) -C $$dir $@ ) || exit 0; \
710 done
711endif
712
713#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000714# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
715#-----------------------------------------------------------
716ifdef OPTIONAL_PARALLEL_DIRS
717 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
718endif
719
720#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000721# Handle the PARALLEL_DIRS options for parallel construction
722#-----------------------------------------------------------
723ifdef PARALLEL_DIRS
724
725SubDirs += $(PARALLEL_DIRS)
726
727# Unfortunately, this list must be maintained if new recursive targets are added
728all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
729clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
730clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
731install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
732uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
733install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
734
735ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
736
737$(ParallelTargets) :
738 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
739 $(MKDIR) $(@D); \
740 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
741 fi; \
742 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
743endif
744
745#---------------------------------------------------------
746# Handle the OPTIONAL_DIRS options for directores that may
747# or may not exist.
748#---------------------------------------------------------
749ifdef OPTIONAL_DIRS
750
751SubDirs += $(OPTIONAL_DIRS)
752
753ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
754$(RecursiveTargets)::
755 $(Verb) for dir in $(OPTIONAL_DIRS); do \
756 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
757 if [ ! -f $$dir/Makefile ]; then \
758 $(MKDIR) $$dir; \
759 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
760 fi; \
761 ($(MAKE) -C$$dir $@ ) || exit 1; \
762 fi \
763 done
764else
765$(RecursiveTargets)::
766 $(Verb) for dir in $(OPTIONAL_DIRS); do \
767 ($(MAKE) -C$$dir $@ ) || exit 1; \
768 done
769endif
770endif
771
772#---------------------------------------------------------
773# Handle the CONFIG_FILES options
774#---------------------------------------------------------
775ifdef CONFIG_FILES
776
777ifdef NO_INSTALL
778install-local::
779 $(Echo) Install circumvented with NO_INSTALL
780uninstall-local::
781 $(Echo) UnInstall circumvented with NO_INSTALL
782else
783install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
784 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
785 $(Verb)for file in $(CONFIG_FILES); do \
786 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
787 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
788 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
789 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
790 else \
791 $(ECHO) Error: cannot find config file $${file}. ; \
792 fi \
793 done
794
795uninstall-local::
796 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
797 $(Verb)for file in $(CONFIG_FILES); do \
798 $(RM) -f $(PROJ_etcdir)/$${file} ; \
799 done
800endif
801
802endif
803
804###############################################################################
805# Set up variables for building libararies
806###############################################################################
807
808#---------------------------------------------------------
809# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000810# libraries needed when linking. There are "Proj" libs
811# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000812# by the LLVM project).
813#---------------------------------------------------------
814
815ifdef USEDLIBS
816ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
817ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
818ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
819ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
820endif
821
822ifdef LLVMLIBS
823LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
824LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
825LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
826LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
827endif
828
Daniel Dunbara89194e2008-10-03 19:11:19 +0000829ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000830ifdef LINK_COMPONENTS
831
832# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
833# clean in tools, then do a make in tools (instead of at the top level).
834$(LLVM_CONFIG):
835 @echo "*** llvm-config doesn't exist - rebuilding it."
836 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000837
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
839
Mikhail Glushenkovfc320822009-03-03 10:03:27 +0000840LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
841LLVMLibsPaths += $(LLVM_CONFIG) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
843endif
844endif
845
846###############################################################################
847# Library Build Rules: Four ways to build a library
848###############################################################################
849
850#---------------------------------------------------------
851# Bytecode Module Targets:
852# If the user set MODULE_NAME then they want to build a
853# bytecode module from the sources. We compile all the
854# sources and link it together into a single bytecode
855# module.
856#---------------------------------------------------------
857
858ifdef MODULE_NAME
859ifeq ($(strip $(LLVMGCC)),)
860$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
861else
862
863Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000864LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000865
866
867ifdef EXPORTED_SYMBOL_FILE
868LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
869endif
870
871$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
872 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
873 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
874
875all-local:: $(Module)
876
877clean-local::
878ifneq ($(strip $(Module)),)
879 -$(Verb) $(RM) -f $(Module)
880endif
881
882ifdef BYTECODE_DESTINATION
883ModuleDestDir := $(BYTECODE_DESTINATION)
884else
885ModuleDestDir := $(PROJ_libdir)
886endif
887
888ifdef NO_INSTALL
889install-local::
890 $(Echo) Install circumvented with NO_INSTALL
891uninstall-local::
892 $(Echo) Uninstall circumvented with NO_INSTALL
893else
894DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
895
896install-module:: $(DestModule)
897install-local:: $(DestModule)
898
Misha Brukman89fe5162009-01-08 02:11:55 +0000899$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000900 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
901 $(Verb) $(DataInstall) $(Module) $(DestModule)
902
903uninstall-local::
904 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
905 -$(Verb) $(RM) -f $(DestModule)
906endif
907
908endif
909endif
910
911# if we're building a library ...
912ifdef LIBRARYNAME
913
914# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
915LIBRARYNAME := $(strip $(LIBRARYNAME))
916ifdef LOADABLE_MODULE
Nick Lewycky8d91e192009-02-26 07:44:16 +0000917LibName.A := $(LibDir)/$(LIBRARYNAME).a
918LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000919else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000920LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewycky8d91e192009-02-26 07:44:16 +0000921LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
922endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000923LibName.O := $(LibDir)/$(LIBRARYNAME).o
924LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
925
926#---------------------------------------------------------
927# Shared Library Targets:
928# If the user asked for a shared library to be built
929# with the SHARED_LIBRARY variable, then we provide
930# targets for building them.
931#---------------------------------------------------------
932ifdef SHARED_LIBRARY
933
Nick Lewycky8d91e192009-02-26 07:44:16 +0000934all-local:: $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000935
936ifdef LINK_LIBS_IN_SHARED
937ifdef LOADABLE_MODULE
938SharedLibKindMessage := "Loadable Module"
939else
940SharedLibKindMessage := "Shared Library"
941endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000942$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000943 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
944 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000945 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
946 $(ProjLibsOptions) $(LLVMLibsOptions)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000947else
Nick Lewycky8d91e192009-02-26 07:44:16 +0000948$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000950 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000951endif
952
953clean-local::
Nick Lewycky8d91e192009-02-26 07:44:16 +0000954ifneq ($(strip $(LibName.SO)),)
955 -$(Verb) $(RM) -f $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000956endif
957
958ifdef NO_INSTALL
959install-local::
960 $(Echo) Install circumvented with NO_INSTALL
961uninstall-local::
962 $(Echo) Uninstall circumvented with NO_INSTALL
963else
964DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
965
966install-local:: $(DestSharedLib)
967
Nick Lewycky8d91e192009-02-26 07:44:16 +0000968$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000969 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000970 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971
Misha Brukman89fe5162009-01-08 02:11:55 +0000972uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
974 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
975endif
976endif
977
978#---------------------------------------------------------
979# Bytecode Library Targets:
980# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +0000981# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000982# targets for building them.
983#---------------------------------------------------------
984ifdef BYTECODE_LIBRARY
985ifeq ($(strip $(LLVMGCC)),)
986$(warning Bytecode libraries require llvm-gcc which could not be found ****)
987else
988
989all-local:: $(LibName.BCA)
990
991ifdef EXPORTED_SYMBOL_FILE
992BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
993 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
994
995$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
996 $(LLVMToolDir)/llvm-ar
997 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
998 "(internalize)"
999 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
1000 $(Verb) $(RM) -f $@
1001 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
1002else
1003$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1004 $(LLVMToolDir)/llvm-ar
1005 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1006 $(Verb) $(RM) -f $@
1007 $(Verb) $(LArchive) $@ $(ObjectsBC)
1008
1009endif
1010
1011clean-local::
1012ifneq ($(strip $(LibName.BCA)),)
1013 -$(Verb) $(RM) -f $(LibName.BCA)
1014endif
1015
1016ifdef BYTECODE_DESTINATION
1017BytecodeDestDir := $(BYTECODE_DESTINATION)
1018else
1019BytecodeDestDir := $(PROJ_libdir)
1020endif
1021
1022DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
1023
1024install-bytecode-local:: $(DestBytecodeLib)
1025
1026ifdef NO_INSTALL
1027install-local::
1028 $(Echo) Install circumvented with NO_INSTALL
1029uninstall-local::
1030 $(Echo) Uninstall circumvented with NO_INSTALL
1031else
1032install-local:: $(DestBytecodeLib)
1033
Mike Stump98f72e02009-02-12 23:45:11 +00001034$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1036 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1037
1038uninstall-local::
1039 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1040 -$(Verb) $(RM) -f $(DestBytecodeLib)
1041endif
1042endif
1043endif
1044
1045#---------------------------------------------------------
1046# ReLinked Library Targets:
1047# If the user explicitly requests a relinked library with
1048# BUILD_RELINKED, provide it. Otherwise, if they specify
1049# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
1050# them one.
1051#---------------------------------------------------------
1052ifndef BUILD_ARCHIVE
1053ifndef DONT_BUILD_RELINKED
1054BUILD_RELINKED = 1
1055endif
1056endif
1057
1058ifdef BUILD_RELINKED
1059
1060all-local:: $(LibName.O)
1061
1062$(LibName.O): $(ObjectsO) $(LibDir)/.dir
1063 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
Nick Lewycky14c68542009-02-26 08:48:14 +00001064 $(Verb) $(Relink) -Wl,-r -nodefaultlibs -nostdlib -nostartfiles -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001065
1066clean-local::
1067ifneq ($(strip $(LibName.O)),)
1068 -$(Verb) $(RM) -f $(LibName.O)
1069endif
1070
1071ifdef NO_INSTALL
1072install-local::
1073 $(Echo) Install circumvented with NO_INSTALL
1074uninstall-local::
1075 $(Echo) Uninstall circumvented with NO_INSTALL
1076else
1077DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
1078
1079install-local:: $(DestRelinkedLib)
1080
Mike Stump98f72e02009-02-12 23:45:11 +00001081$(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001082 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001083 $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084
1085uninstall-local::
1086 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1087 -$(Verb) $(RM) -f $(DestRelinkedLib)
1088endif
1089endif
1090
1091#---------------------------------------------------------
1092# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +00001093# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001094# then we provide targets for building them.
1095#---------------------------------------------------------
1096ifdef BUILD_ARCHIVE
1097
1098all-local:: $(LibName.A)
1099
1100$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1101 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1102 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001103 $(Verb) $(Archive) $@ $(ObjectsO)
1104 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001105
1106clean-local::
1107ifneq ($(strip $(LibName.A)),)
1108 -$(Verb) $(RM) -f $(LibName.A)
1109endif
1110
1111ifdef NO_INSTALL
1112install-local::
1113 $(Echo) Install circumvented with NO_INSTALL
1114uninstall-local::
1115 $(Echo) Uninstall circumvented with NO_INSTALL
1116else
1117DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1118
1119install-local:: $(DestArchiveLib)
1120
Mike Stump98f72e02009-02-12 23:45:11 +00001121$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1123 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001124 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001125
1126uninstall-local::
1127 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1128 -$(Verb) $(RM) -f $(DestArchiveLib)
1129endif
1130endif
1131
1132# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001133endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001134
1135###############################################################################
1136# Tool Build Rules: Build executable tool based on TOOLNAME option
1137###############################################################################
1138
1139ifdef TOOLNAME
1140
1141#---------------------------------------------------------
1142# Set up variables for building a tool.
1143#---------------------------------------------------------
1144ifdef EXAMPLE_TOOL
1145ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1146else
1147ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1148endif
1149
1150#---------------------------------------------------------
Chris Lattner8b04ea72009-02-26 17:47:49 +00001151# Prune Exports
1152#---------------------------------------------------------
1153
1154# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1155# not exporting all of the weak symbols from the binary. This reduces dyld
1156# startup time by 4x on darwin in some cases.
1157ifdef TOOL_NO_EXPORTS
1158ifeq ($(OS),Darwin)
Chris Lattnerc6c51352009-03-10 17:15:56 +00001159
1160# Tiger tools don't support this.
1161ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner8b04ea72009-02-26 17:47:49 +00001162LD.Flags += -Wl,-exported_symbol -Wl,_main
1163endif
Chris Lattnerc6c51352009-03-10 17:15:56 +00001164endif
Chris Lattner8b04ea72009-02-26 17:47:49 +00001165
1166ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
Chris Lattner7c024612009-02-26 18:38:40 +00001167LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner8b04ea72009-02-26 17:47:49 +00001168endif
1169endif
1170
1171
1172#---------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001173# Provide targets for building the tools
1174#---------------------------------------------------------
1175all-local:: $(ToolBuildPath)
1176
1177clean-local::
1178ifneq ($(strip $(ToolBuildPath)),)
1179 -$(Verb) $(RM) -f $(ToolBuildPath)
1180endif
1181
1182ifdef EXAMPLE_TOOL
1183$(ToolBuildPath): $(ExmplDir)/.dir
1184else
1185$(ToolBuildPath): $(ToolDir)/.dir
1186endif
1187
1188$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1189 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001190 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001191 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1192 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001193 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001194
1195ifdef NO_INSTALL
1196install-local::
1197 $(Echo) Install circumvented with NO_INSTALL
1198uninstall-local::
1199 $(Echo) Uninstall circumvented with NO_INSTALL
1200else
1201DestTool = $(PROJ_bindir)/$(TOOLNAME)
1202
1203install-local:: $(DestTool)
1204
Mike Stump98f72e02009-02-12 23:45:11 +00001205$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001206 $(Echo) Installing $(BuildMode) $(DestTool)
1207 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1208
1209uninstall-local::
1210 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1211 -$(Verb) $(RM) -f $(DestTool)
1212endif
1213endif
1214
1215###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001216# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001217###############################################################################
1218
1219# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1220ifeq ($(OS),HP-UX)
1221 DISABLE_AUTO_DEPENDENCIES=1
1222endif
1223
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001224# Provide rule sets for when dependency generation is enabled
1225ifndef DISABLE_AUTO_DEPENDENCIES
1226
1227#---------------------------------------------------------
Nick Lewycky8d91e192009-02-26 07:44:16 +00001228# Create .o files in the ObjDir directory from the .cpp and .c files...
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001229#---------------------------------------------------------
1230
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001231DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewycky8d91e192009-02-26 07:44:16 +00001232 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001233
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001234# If the build succeeded, move the dependency file over. If it failed, put an
1235# empty file there.
1236DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1237 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1238
Nick Lewycky8d91e192009-02-26 07:44:16 +00001239$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001240 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001241 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001242 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001243
Nick Lewycky8d91e192009-02-26 07:44:16 +00001244$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001246 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001247 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001248
Nick Lewycky8d91e192009-02-26 07:44:16 +00001249$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001250 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001251 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001252 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001253
1254#---------------------------------------------------------
1255# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1256#---------------------------------------------------------
1257
1258$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1259 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1260 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1261 $< -o $@ -S -emit-llvm ; \
1262 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1263 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001264 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001265 $(call UPGRADE_LL,$@)
1266
1267$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1268 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1269 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1270 $< -o $@ -S -emit-llvm ; \
1271 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1272 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001273 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001274 $(call UPGRADE_LL,$@)
1275
1276$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1277 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1278 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1279 $< -o $@ -S -emit-llvm ; \
1280 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1281 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
Misha Brukman89fe5162009-01-08 02:11:55 +00001282 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001283 $(call UPGRADE_LL,$@)
1284
1285# Provide alternate rule sets if dependencies are disabled
1286else
1287
Nick Lewycky8d91e192009-02-26 07:44:16 +00001288$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001289 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001290 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001291
Nick Lewycky8d91e192009-02-26 07:44:16 +00001292$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001293 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001294 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001295
Nick Lewycky8d91e192009-02-26 07:44:16 +00001296$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001297 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001298 $(Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001299
1300$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1301 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1302 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001303 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001304 $(call UPGRADE_LL,$@)
1305
1306$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1307 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1308 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001309 $(call UPGRADE_MSG,$@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001310 $(call UPGRADE_LL,$@)
1311
1312$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1313 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1314 $(BCCompile.C) $< -o $@ -S -emit-llvm
Misha Brukman89fe5162009-01-08 02:11:55 +00001315 $(call UPGRADE_MSG,@)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001316 $(call UPGRADE_LL,@)
1317
1318endif
1319
1320
1321## Rules for building preprocessed (.i/.ii) outputs.
1322$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1323 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1324 $(Verb) $(Preprocess.CXX) $< -o $@
1325
1326$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1327 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1328 $(Verb) $(Preprocess.CXX) $< -o $@
1329
1330$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1331 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1332 $(Verb) $(Preprocess.C) $< -o $@
1333
1334
1335$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1336 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001337 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001338
1339$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1340 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001341 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342
1343$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1344 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001345 $(Compile.C) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001346
1347
1348# make the C and C++ compilers strip debug info out of bytecode libraries.
1349ifdef DEBUG_RUNTIME
1350$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1351 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1352 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1353else
1354$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1355 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1356 $(Verb) $(LLVMAS) $< -o - | \
1357 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1358endif
1359
1360
1361#---------------------------------------------------------
1362# Provide rule to build .bc files from .ll sources,
1363# regardless of dependencies
1364#---------------------------------------------------------
1365$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1366 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1367 $(Verb) $(LLVMAS) $< -f -o $@
1368
1369###############################################################################
1370# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1371###############################################################################
1372
1373ifdef TARGET
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001374TABLEGEN_INC_FILES_COMMON = 1
1375endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001376
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001377ifdef LLVMC_BUILD_AUTOGENERATED_INC
1378TABLEGEN_INC_FILES_COMMON = 1
1379endif
1380
1381ifdef TABLEGEN_INC_FILES_COMMON
1382
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001383INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1384INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1385.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1386
Misha Brukman89fe5162009-01-08 02:11:55 +00001387# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001388# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1389# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001390# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001391# dependencies of the .inc files are, unless the contents of the .inc file
1392# changes.
1393$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1394 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1395
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001396endif # TABLEGEN_INC_FILES_COMMON
1397
1398ifdef TARGET
1399
1400TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1401 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1402 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1403 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1404 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1405 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1406 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1407
Rafael Espindola4d8cd532009-03-10 17:58:54 +00001408# All of these files depend on tblgen and the .td files.
1409$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1410
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001411$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1412$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1413 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001414 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001415
1416$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1417$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1418 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001419 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001420
1421$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1422$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1423 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001424 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001425
1426$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1427$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1428 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001429 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001430
1431$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1432$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1433 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001434 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001435
1436$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1437$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1438 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001439 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001440
1441$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1442$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1443 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001444 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001445
1446$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1447$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1448 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001449 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001450
1451$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1452$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001453 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001454 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001455
Dan Gohmanb75dead2008-08-13 20:19:35 +00001456$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1457$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1458 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1459 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1460
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001461$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1462$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1463 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001464 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001465
1466$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1467$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1468 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001469 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001470
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001471$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1472$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1473 $(Echo) "Building $(<F) calling convention information with tblgen"
1474 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1475
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001476clean-local::
1477 -$(Verb) $(RM) -f $(INCFiles)
1478
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001479endif # TARGET
1480
1481ifdef LLVMC_BUILD_AUTOGENERATED_INC
1482
Mikhail Glushenkov3b335a42009-04-21 19:46:10 +00001483LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1484 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001485
1486TDFiles := $(LLVMCPluginSrc) \
1487 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1488
1489$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1490 $(TBLGEN) $(TD_COMMON)
1491 $(Echo) "Building LLVMC configuration library with tblgen"
1492 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1493
1494endif # LLVMC_BUILD_AUTOGENERATED_INC
1495
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001496###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001497# OTHER RULES: Other rules needed
1498###############################################################################
1499
1500# To create postscript files from dot files...
1501ifneq ($(DOT),false)
1502%.ps: %.dot
1503 $(DOT) -Tps < $< > $@
1504else
1505%.ps: %.dot
1506 $(Echo) "Cannot build $@: The program dot is not installed"
1507endif
1508
1509# This rules ensures that header files that are removed still have a rule for
1510# which they can be "generated." This allows make to ignore them and
1511# reproduce the dependency lists.
1512%.h:: ;
1513%.hpp:: ;
1514
1515# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001516# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001517# errors or disastrous removal.
1518clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001519ifneq ($(strip $(ObjRootDir)),)
1520 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001521endif
1522 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1523ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1524 -$(Verb) $(RM) -f *$(SHLIBEXT)
1525endif
1526
1527clean-all-local::
1528 -$(Verb) $(RM) -rf Debug Release Profile
1529
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001530
1531###############################################################################
1532# DEPENDENCIES: Include the dependency files if we should
1533###############################################################################
1534ifndef DISABLE_AUTO_DEPENDENCIES
1535
1536# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001537ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001538
1539# Get the list of dependency files
1540DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1541DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1542
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001543-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001544
1545endif
1546
Misha Brukman89fe5162009-01-08 02:11:55 +00001547endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001548
1549###############################################################################
1550# CHECK: Running the test suite
1551###############################################################################
1552
Bill Wendlingea4af672009-04-09 18:26:57 +00001553check::
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001554 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1555 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1556 $(EchoCmd) Running test suite ; \
1557 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1558 TESTSUITE=$(TESTSUITE) ; \
1559 else \
1560 $(EchoCmd) No Makefile in test directory ; \
1561 fi ; \
1562 else \
1563 $(EchoCmd) No test directory ; \
1564 fi
1565
1566###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001567# UNITTESTS: Running the unittests test suite
1568###############################################################################
1569
Bill Wendlingea4af672009-04-09 18:26:57 +00001570unittests::
Bill Wendling2e3646a2009-01-04 23:12:21 +00001571 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1572 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1573 $(EchoCmd) Running unittests test suite ; \
1574 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1575 else \
1576 $(EchoCmd) No Makefile in unittests directory ; \
1577 fi ; \
1578 else \
1579 $(EchoCmd) No unittests directory ; \
1580 fi
1581
1582###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001583# DISTRIBUTION: Handle construction of a distribution tarball
1584###############################################################################
1585
1586#------------------------------------------------------------------------
1587# Define distribution related variables
1588#------------------------------------------------------------------------
1589DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1590DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1591TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1592DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1593DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1594DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1595DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1596 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1597 Makefile.config.in configure autoconf
1598DistOther := $(notdir $(wildcard \
1599 $(PROJ_SRC_DIR)/*.h \
1600 $(PROJ_SRC_DIR)/*.td \
1601 $(PROJ_SRC_DIR)/*.def \
1602 $(PROJ_SRC_DIR)/*.ll \
1603 $(PROJ_SRC_DIR)/*.in))
1604DistSubDirs := $(SubDirs)
1605DistSources = $(Sources) $(EXTRA_DIST)
1606DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1607
1608#------------------------------------------------------------------------
1609# We MUST build distribution with OBJ_DIR != SRC_DIR
1610#------------------------------------------------------------------------
1611ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1612dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1613 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1614
1615else
1616
1617#------------------------------------------------------------------------
1618# Prevent attempt to run dist targets from anywhere but the top level
1619#------------------------------------------------------------------------
1620ifneq ($(LEVEL),.)
1621dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1622 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1623else
1624
1625#------------------------------------------------------------------------
1626# Provide the top level targets
1627#------------------------------------------------------------------------
1628
1629dist-gzip:: $(DistTarGZip)
1630
1631$(DistTarGZip) : $(TopDistDir)/.makedistdir
1632 $(Echo) Packing gzipped distribution tar file.
1633 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1634 $(GZIP) -c > "$(DistTarGZip)"
1635
1636dist-bzip2:: $(DistTarBZ2)
1637
1638$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1639 $(Echo) Packing bzipped distribution tar file.
1640 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1641 $(BZIP2) -c >$(DistTarBZ2)
1642
1643dist-zip:: $(DistZip)
1644
1645$(DistZip) : $(TopDistDir)/.makedistdir
1646 $(Echo) Packing zipped distribution file.
1647 $(Verb) rm -f $(DistZip)
1648 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1649
Misha Brukman89fe5162009-01-08 02:11:55 +00001650dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001651 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1652
1653DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1654
1655dist-check:: $(DistTarGZip)
1656 $(Echo) Checking distribution tar file.
1657 $(Verb) if test -d $(DistCheckDir) ; then \
1658 $(RM) -rf $(DistCheckDir) ; \
1659 fi
1660 $(Verb) $(MKDIR) $(DistCheckDir)
1661 $(Verb) cd $(DistCheckDir) && \
1662 $(MKDIR) $(DistCheckDir)/build && \
1663 $(MKDIR) $(DistCheckDir)/install && \
1664 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1665 cd build && \
1666 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1667 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1668 $(MAKE) all && \
1669 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001670 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001671 $(MAKE) install && \
1672 $(MAKE) uninstall && \
1673 $(MAKE) dist-clean && \
1674 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1675
1676dist-clean::
1677 $(Echo) Cleaning distribution files
1678 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1679 $(DistCheckDir)
1680
1681endif
1682
1683#------------------------------------------------------------------------
1684# Provide the recursive distdir target for building the distribution directory
1685#------------------------------------------------------------------------
1686distdir: $(DistDir)/.makedistdir
1687$(DistDir)/.makedistdir: $(DistSources)
1688 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1689 if test -d "$(DistDir)" ; then \
1690 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1691 exit 1 ; \
1692 fi ; \
1693 $(EchoCmd) Removing old $(DistDir) ; \
1694 $(RM) -rf $(DistDir); \
1695 $(EchoCmd) Making 'all' to verify build ; \
1696 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1697 fi
1698 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001699 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001700 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1701 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1702 for file in $(DistFiles) ; do \
1703 case "$$file" in \
1704 $(PROJ_SRC_DIR)/*) \
1705 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1706 ;; \
1707 $(PROJ_SRC_ROOT)/*) \
1708 file=`echo "$$file" | \
1709 sed "s#^$$srcrootstrip/##"` \
1710 ;; \
1711 esac; \
1712 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1713 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1714 from_dir="$(PROJ_SRC_DIR)" ; \
1715 elif test -f "$$file" || test -d "$$file" ; then \
1716 from_dir=. ; \
1717 fi ; \
1718 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1719 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1720 to_dir="$(DistDir)/$$dir"; \
1721 $(MKDIR) "$$to_dir" ; \
1722 else \
1723 to_dir="$(DistDir)"; \
1724 fi; \
1725 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1726 if test -n "$$mid_dir" ; then \
1727 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1728 fi ; \
1729 if test -d "$$from_dir/$$file"; then \
1730 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1731 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1732 cd $(PROJ_SRC_DIR) ; \
1733 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1734 ( cd $$to_dir ; $(TAR) xf - ) ; \
1735 cd $(PROJ_OBJ_DIR) ; \
1736 else \
1737 cd $$from_dir ; \
1738 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1739 ( cd $$to_dir ; $(TAR) xf - ) ; \
1740 cd $(PROJ_OBJ_DIR) ; \
1741 fi; \
1742 elif test -f "$$from_dir/$$file" ; then \
1743 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1744 elif test -L "$$from_dir/$$file" ; then \
1745 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1746 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1747 $(EchoCmd) "===== WARNING: Distribution Source " \
1748 "$$from_dir/$$file Not Found!" ; \
1749 elif test "$(Verb)" != '@' ; then \
1750 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1751 fi; \
1752 done
1753 $(Verb) for subdir in $(DistSubDirs) ; do \
1754 if test "$$subdir" \!= "." ; then \
1755 new_distdir="$(DistDir)/$$subdir" ; \
1756 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1757 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1758 DistDir="$$new_distdir" distdir ) || exit 1; \
1759 fi; \
1760 done
1761 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1762 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1763 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1764 -name .svn \) -print` ;\
1765 $(MAKE) dist-hook ; \
1766 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1767 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1768 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1769 -o ! -type d ! -perm -444 -exec \
1770 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1771 || chmod -R a+r $(DistDir) ; \
1772 fi
1773
1774# This is invoked by distdir target, define it as a no-op to avoid errors if not
1775# defined by user.
1776dist-hook::
1777
1778endif
1779
1780###############################################################################
1781# TOP LEVEL - targets only to apply at the top level directory
1782###############################################################################
1783
1784ifeq ($(LEVEL),.)
1785
1786#------------------------------------------------------------------------
1787# Install support for the project's include files:
1788#------------------------------------------------------------------------
1789ifdef NO_INSTALL
1790install-local::
1791 $(Echo) Install circumvented with NO_INSTALL
1792uninstall-local::
1793 $(Echo) Uninstall circumvented with NO_INSTALL
1794else
1795install-local::
1796 $(Echo) Installing include files
1797 $(Verb) $(MKDIR) $(PROJ_includedir)
1798 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1799 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001800 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001801 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1802 grep -v .svn` ; do \
1803 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1804 if test \! -d "$$instdir" ; then \
1805 $(EchoCmd) Making install directory $$instdir ; \
1806 $(MKDIR) $$instdir ;\
1807 fi ; \
1808 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1809 done ; \
1810 fi
1811ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1812 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1813 cd $(PROJ_OBJ_ROOT)/include && \
1814 for hdr in `find . -type f -print | grep -v CVS` ; do \
1815 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1816 done ; \
1817 fi
1818endif
1819
1820uninstall-local::
1821 $(Echo) Uninstalling include files
1822 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1823 cd $(PROJ_SRC_ROOT)/include && \
1824 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001825 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001826 -o -name '*.in' ')' -print ')' | \
1827 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1828 cd $(PROJ_SRC_ROOT)/include && \
1829 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1830 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1831 fi
1832endif
1833endif
1834
1835check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001836 @echo searching for overlength lines in files: $(Sources)
1837 @echo
1838 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001839 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001840
1841check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001842 @echo searching for tabs in files: $(Sources)
1843 @echo
1844 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001845 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001846
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001847check-footprint:
1848 @ls -l $(LibDir) | awk '\
1849 BEGIN { sum = 0; } \
1850 { sum += $$5; } \
1851 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1852 @ls -l $(ToolDir) | awk '\
1853 BEGIN { sum = 0; } \
1854 { sum += $$5; } \
1855 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1856#------------------------------------------------------------------------
1857# Print out the directories used for building
1858#------------------------------------------------------------------------
1859printvars::
1860 $(Echo) "BuildMode : " '$(BuildMode)'
1861 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1862 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1863 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1864 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1865 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1866 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1867 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1868 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1869 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1870 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1871 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1872 $(Echo) "UserTargets : " '$(UserTargets)'
1873 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1874 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1875 $(Echo) "ObjDir : " '$(ObjDir)'
1876 $(Echo) "LibDir : " '$(LibDir)'
1877 $(Echo) "ToolDir : " '$(ToolDir)'
1878 $(Echo) "ExmplDir : " '$(ExmplDir)'
1879 $(Echo) "Sources : " '$(Sources)'
1880 $(Echo) "TDFiles : " '$(TDFiles)'
1881 $(Echo) "INCFiles : " '$(INCFiles)'
1882 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1883 $(Echo) "PreConditions: " '$(PreConditions)'
1884 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1885 $(Echo) "Compile.C : " '$(Compile.C)'
1886 $(Echo) "Archive : " '$(Archive)'
1887 $(Echo) "YaccFiles : " '$(YaccFiles)'
1888 $(Echo) "LexFiles : " '$(LexFiles)'
1889 $(Echo) "Module : " '$(Module)'
1890 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1891 $(Echo) "SubDirs : " '$(SubDirs)'
1892 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1893 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001894
1895###
1896# Debugging
1897
Daniel Dunbara6b02752009-03-06 22:23:25 +00001898# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001899# definition, value and origin of XXX.
Daniel Dunbara6b02752009-03-06 22:23:25 +00001900make-print-%:
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001901 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))