blob: caa3335aa35982432bb1dee961b9b7785727d2fa [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
Jay Foad188e6472009-05-15 18:13:31 +0000378ifdef ENABLE_EXPENSIVE_CHECKS
379 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
380 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
381 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
382endif
383
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384#--------------------------------------------------------------------
385# Directory locations
386#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000387TargetMode :=
388ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000389 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000390endif
391
392ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000393ObjDir := $(ObjRootDir)
394LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
395ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
396ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
397LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
398LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
399LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000400CFERuntimeLibDir := $(LLVMGCCDIR)/lib
401
402#--------------------------------------------------------------------
403# Full Paths To Compiled Tools and Utilities
404#--------------------------------------------------------------------
405EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
406Echo = @$(EchoCmd)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407ifndef LLVMAS
408LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
409endif
410ifndef TBLGEN
411 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000412 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413 else
414 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
415 endif
416endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000417LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418ifndef LLVMLD
419LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
420endif
421ifndef LLVMDIS
422LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
423endif
424ifndef LLI
425LLI := $(LLVMToolDir)/lli$(EXEEXT)
426endif
427ifndef LLC
428LLC := $(LLVMToolDir)/llc$(EXEEXT)
429endif
430ifndef LOPT
431LOPT := $(LLVMToolDir)/opt$(EXEEXT)
432endif
433ifndef LBUGPOINT
434LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
435endif
436ifndef LUPGRADE
437LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
438endif
439ifeq ($(LLVMGCC_MAJVERS),3)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
441LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
442else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000443LLVMGCCWITHPATH := $(LLVMGCC)
444LLVMGXXWITHPATH := $(LLVMGXX)
445endif
446
447#--------------------------------------------------------------------
448# Adjust to user's request
449#--------------------------------------------------------------------
450
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000451ifeq ($(OS),Darwin)
452 DARWIN_VERSION := `sw_vers -productVersion`
453 # Strip a number like 10.4.7 to 10.4
454 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
455 # Get "4" out of 10.4 for later pieces in the makefile.
456 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendling3c0d23b2009-03-22 08:28:45 +0000457
Julien Lerouge64e1db82009-03-27 18:18:00 +0000458 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
459 -dynamiclib -mmacosx-version-min=$(DARWIN_VERSION)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000460 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000461else
462 ifeq ($(OS),Cygwin)
463 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
464 -Wl,--enable-auto-import -Wl,--enable-auto-image-base \
465 -Wl,--enable-runtime-pseudo-relocs
466 else
467 SharedLinkOptions=-shared
468 endif
469endif
470
Nick Lewycky8d91e192009-02-26 07:44:16 +0000471# Adjust LD.Flags depending on the kind of library that is to be built. Note
472# that if LOADABLE_MODULE is specified then the resulting shared library can
473# be opened with dlopen.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000474ifdef LOADABLE_MODULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 LD.Flags += -module
476endif
477
478ifdef SHARED_LIBRARY
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000479ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky12015c12009-03-03 04:55:15 +0000480 LD.Flags += $(RPATH) -Wl,$(LibDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481endif
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000482endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000483
484ifdef TOOL_VERBOSE
485 C.Flags += -v
486 CXX.Flags += -v
487 LD.Flags += -v
488 VERBOSE := 1
489endif
490
491# Adjust settings for verbose mode
492ifndef VERBOSE
493 Verb := @
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000494 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
496else
Misha Brukman89fe5162009-01-08 02:11:55 +0000497 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000498endif
499
500# By default, strip symbol information from executable
501ifndef KEEP_SYMBOLS
502 Strip := $(PLATFORMSTRIPOPTS)
503 StripWarnMsg := "(without symbols)"
504 Install.StripFlag += -s
505endif
506
507# Adjust linker flags for building an executable
Nick Lewycky324b1192009-02-26 08:03:36 +0000508ifneq ($(OS),Darwin)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000509ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510ifdef TOOLNAME
511ifdef EXAMPLE_TOOL
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000512 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000513else
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000514 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515endif
516endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000517endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000518endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519
520#----------------------------------------------------------
521# Options To Invoke Tools
522#----------------------------------------------------------
523
Daniel Dunbarb47afd52009-05-12 07:26:49 +0000524ifndef NO_PEDANTIC
525CompileCommonOpts += -pedantic
526endif
527CompileCommonOpts += -Wall -W -Wwrite-strings -Wno-long-long \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
529
530ifeq ($(OS),HP-UX)
531 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
532endif
533
534# If we are building a universal binary on Mac OS/X, pass extra options. This
535# is useful to people that want to link the LLVM libraries into their universal
536# apps.
537#
538# The following can be optionally specified:
539# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
540# For Mac OS/X 10.4 Intel machines, the traditional one is:
541# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
542# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
543# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
544# i386/ppc only.
545ifdef UNIVERSAL
546 ifndef UNIVERSAL_ARCH
547 UNIVERSAL_ARCH := i386 ppc
548 endif
549 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
550 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Chris Lattnerc372e1c2009-02-26 19:08:30 +0000551 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000552 ifdef UNIVERSAL_SDK_PATH
553 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
Chris Lattnerc372e1c2009-02-26 19:08:30 +0000554 Relink.Flags += -isysroot $(UNIVERSAL_SDK_PATH)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 endif
556
557 # Building universal cannot compute dependencies automatically.
558 DISABLE_AUTO_DEPENDENCIES=1
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000559else
Bill Wendling025cce52009-03-12 04:10:09 +0000560 ifeq ($(OS),Darwin)
561 ifeq ($(ARCH),x86_64)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000562 TargetCommonOpts = -m64
Bill Wendling025cce52009-03-12 04:10:09 +0000563 else
564 ifeq ($(ARCH),x86)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000565 TargetCommonOpts = -m32
Bill Wendling025cce52009-03-12 04:10:09 +0000566 endif
Evan Chengd6ad5ff2009-03-09 18:28:37 +0000567 endif
568 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569endif
570
Chris Lattner35c997c2008-06-24 17:44:42 +0000571ifeq ($(OS),SunOS)
572CPP.BaseFlags += -include llvm/System/Solaris.h
573endif
574
Misha Brukman89fe5162009-01-08 02:11:55 +0000575LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
Dan Gohman5a5e6e92008-10-17 01:33:43 +0000576CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577# All -I flags should go here, so that they don't confuse llvm-config.
Duncan Sands3b960292008-01-28 17:38:30 +0000578CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
579 $(patsubst %,-I%/include,\
Chris Lattner6ee48752008-01-28 04:18:41 +0000580 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
581 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
582 $(CPP.BaseFlags)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000584ifeq ($(BUILD_COMPONENT), 1)
585 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(C.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000586 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000587 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000588 $(TargetCommonOpts) $(CompileCommonOpts) -c
589 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(TargetCommonOpts) \
590 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000591 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000592 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
593 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
594 $(CompileCommonOpts) $(Relink.Flags)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000595else
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000596 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(C.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000597 $(TargetCommonOpts) $(CompileCommonOpts) -c
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000598 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000599 $(TargetCommonOpts) $(CompileCommonOpts) -c
600 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) \
601 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000602 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000603 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
604 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
605 $(CompileCommonOpts) $(Relink.Flags)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000606endif
607
Evan Chengd1f1fc12009-03-23 03:45:56 +0000608BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) \
609 $(TargetCommonOpts) $(CompileCommonOpts)
610Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) \
611 $(TargetCommonOpts) $(CompileCommonOpts) -E
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000614 $(TargetCommonOpts) $(CompileCommonOpts)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615
Misha Brukman89fe5162009-01-08 02:11:55 +0000616ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
617ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000619
620# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
621# paths. In this case, the SYSPATH function (defined in
622# Makefile.config) transforms Unix paths into Windows paths.
623TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000624 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000625 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
626 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
627
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628Archive = $(AR) $(AR.Flags)
629LArchive = $(LLVMToolDir)/llvm-ar rcsf
630ifdef RANLIB
631Ranlib = $(RANLIB)
632else
633Ranlib = ranlib
634endif
635
636#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000637# Get the list of source files and compute object file
638# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639#----------------------------------------------------------
640
641ifndef SOURCES
642 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000643 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000644else
645 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000646endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647
648ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000649Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650endif
651
652BaseNameSources := $(sort $(basename $(Sources)))
653
654ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
656
657###############################################################################
658# DIRECTORIES: Handle recursive descent of directory structure
659###############################################################################
660
661#---------------------------------------------------------
662# Provide rules to make install dirs. This must be early
663# in the file so they get built before dependencies
664#---------------------------------------------------------
665
Mike Stump98f72e02009-02-12 23:45:11 +0000666$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000667 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668
669# To create other directories, as needed, and timestamp their creation
670%/.dir:
671 $(Verb) $(MKDIR) $* > /dev/null
672 $(Verb) $(DATE) > $@
673
674.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
675.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
676
677#---------------------------------------------------------
678# Handle the DIRS options for sequential construction
679#---------------------------------------------------------
680
Misha Brukman89fe5162009-01-08 02:11:55 +0000681SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682ifdef DIRS
683SubDirs += $(DIRS)
684
685ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
686$(RecursiveTargets)::
687 $(Verb) for dir in $(DIRS); do \
688 if [ ! -f $$dir/Makefile ]; then \
689 $(MKDIR) $$dir; \
690 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
691 fi; \
692 ($(MAKE) -C $$dir $@ ) || exit 1; \
693 done
694else
695$(RecursiveTargets)::
696 $(Verb) for dir in $(DIRS); do \
697 ($(MAKE) -C $$dir $@ ) || exit 1; \
698 done
699endif
700
701endif
702
703#---------------------------------------------------------
704# Handle the EXPERIMENTAL_DIRS options ensuring success
705# after each directory is built.
706#---------------------------------------------------------
707ifdef EXPERIMENTAL_DIRS
708$(RecursiveTargets)::
709 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
710 if [ ! -f $$dir/Makefile ]; then \
711 $(MKDIR) $$dir; \
712 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
713 fi; \
714 ($(MAKE) -C $$dir $@ ) || exit 0; \
715 done
716endif
717
718#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000719# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
720#-----------------------------------------------------------
721ifdef OPTIONAL_PARALLEL_DIRS
722 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
723endif
724
725#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726# Handle the PARALLEL_DIRS options for parallel construction
727#-----------------------------------------------------------
728ifdef PARALLEL_DIRS
729
730SubDirs += $(PARALLEL_DIRS)
731
732# Unfortunately, this list must be maintained if new recursive targets are added
733all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
734clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
735clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
736install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
737uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
738install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
739
740ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
741
742$(ParallelTargets) :
743 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
744 $(MKDIR) $(@D); \
745 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
746 fi; \
747 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
748endif
749
750#---------------------------------------------------------
751# Handle the OPTIONAL_DIRS options for directores that may
752# or may not exist.
753#---------------------------------------------------------
754ifdef OPTIONAL_DIRS
755
756SubDirs += $(OPTIONAL_DIRS)
757
758ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
759$(RecursiveTargets)::
760 $(Verb) for dir in $(OPTIONAL_DIRS); do \
761 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
762 if [ ! -f $$dir/Makefile ]; then \
763 $(MKDIR) $$dir; \
764 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
765 fi; \
766 ($(MAKE) -C$$dir $@ ) || exit 1; \
767 fi \
768 done
769else
770$(RecursiveTargets)::
771 $(Verb) for dir in $(OPTIONAL_DIRS); do \
772 ($(MAKE) -C$$dir $@ ) || exit 1; \
773 done
774endif
775endif
776
777#---------------------------------------------------------
778# Handle the CONFIG_FILES options
779#---------------------------------------------------------
780ifdef CONFIG_FILES
781
782ifdef NO_INSTALL
783install-local::
784 $(Echo) Install circumvented with NO_INSTALL
785uninstall-local::
786 $(Echo) UnInstall circumvented with NO_INSTALL
787else
788install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
789 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
790 $(Verb)for file in $(CONFIG_FILES); do \
791 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
792 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
793 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
794 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
795 else \
796 $(ECHO) Error: cannot find config file $${file}. ; \
797 fi \
798 done
799
800uninstall-local::
801 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
802 $(Verb)for file in $(CONFIG_FILES); do \
803 $(RM) -f $(PROJ_etcdir)/$${file} ; \
804 done
805endif
806
807endif
808
809###############################################################################
810# Set up variables for building libararies
811###############################################################################
812
813#---------------------------------------------------------
814# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000815# libraries needed when linking. There are "Proj" libs
816# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817# by the LLVM project).
818#---------------------------------------------------------
819
820ifdef USEDLIBS
821ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
822ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
823ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
824ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
825endif
826
827ifdef LLVMLIBS
828LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
829LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
830LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
831LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
832endif
833
Daniel Dunbara89194e2008-10-03 19:11:19 +0000834ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000835ifdef LINK_COMPONENTS
836
837# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
838# clean in tools, then do a make in tools (instead of at the top level).
839$(LLVM_CONFIG):
840 @echo "*** llvm-config doesn't exist - rebuilding it."
841 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000842
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
844
Mikhail Glushenkovfc320822009-03-03 10:03:27 +0000845LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
846LLVMLibsPaths += $(LLVM_CONFIG) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
848endif
849endif
850
851###############################################################################
852# Library Build Rules: Four ways to build a library
853###############################################################################
854
855#---------------------------------------------------------
856# Bytecode Module Targets:
857# If the user set MODULE_NAME then they want to build a
858# bytecode module from the sources. We compile all the
859# sources and link it together into a single bytecode
860# module.
861#---------------------------------------------------------
862
863ifdef MODULE_NAME
864ifeq ($(strip $(LLVMGCC)),)
865$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
866else
867
868Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000869LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000870
871
872ifdef EXPORTED_SYMBOL_FILE
873LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
874endif
875
876$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
877 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
878 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
879
880all-local:: $(Module)
881
882clean-local::
883ifneq ($(strip $(Module)),)
884 -$(Verb) $(RM) -f $(Module)
885endif
886
887ifdef BYTECODE_DESTINATION
888ModuleDestDir := $(BYTECODE_DESTINATION)
889else
890ModuleDestDir := $(PROJ_libdir)
891endif
892
893ifdef NO_INSTALL
894install-local::
895 $(Echo) Install circumvented with NO_INSTALL
896uninstall-local::
897 $(Echo) Uninstall circumvented with NO_INSTALL
898else
899DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
900
901install-module:: $(DestModule)
902install-local:: $(DestModule)
903
Misha Brukman89fe5162009-01-08 02:11:55 +0000904$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
906 $(Verb) $(DataInstall) $(Module) $(DestModule)
907
908uninstall-local::
909 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
910 -$(Verb) $(RM) -f $(DestModule)
911endif
912
913endif
914endif
915
916# if we're building a library ...
917ifdef LIBRARYNAME
918
919# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
920LIBRARYNAME := $(strip $(LIBRARYNAME))
921ifdef LOADABLE_MODULE
Nick Lewycky8d91e192009-02-26 07:44:16 +0000922LibName.A := $(LibDir)/$(LIBRARYNAME).a
923LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000925LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewycky8d91e192009-02-26 07:44:16 +0000926LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
927endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000928LibName.O := $(LibDir)/$(LIBRARYNAME).o
929LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
930
931#---------------------------------------------------------
932# Shared Library Targets:
933# If the user asked for a shared library to be built
934# with the SHARED_LIBRARY variable, then we provide
935# targets for building them.
936#---------------------------------------------------------
937ifdef SHARED_LIBRARY
938
Nick Lewycky8d91e192009-02-26 07:44:16 +0000939all-local:: $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000940
941ifdef LINK_LIBS_IN_SHARED
942ifdef LOADABLE_MODULE
943SharedLibKindMessage := "Loadable Module"
944else
945SharedLibKindMessage := "Shared Library"
946endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000947$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000948 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
949 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000950 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Edwin Töröke59edce2009-05-26 19:11:47 +0000951 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000952else
Nick Lewycky8d91e192009-02-26 07:44:16 +0000953$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000955 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000956endif
957
958clean-local::
Nick Lewycky8d91e192009-02-26 07:44:16 +0000959ifneq ($(strip $(LibName.SO)),)
960 -$(Verb) $(RM) -f $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000961endif
962
963ifdef NO_INSTALL
964install-local::
965 $(Echo) Install circumvented with NO_INSTALL
966uninstall-local::
967 $(Echo) Uninstall circumvented with NO_INSTALL
968else
969DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
970
971install-local:: $(DestSharedLib)
972
Nick Lewycky8d91e192009-02-26 07:44:16 +0000973$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000974 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000975 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976
Misha Brukman89fe5162009-01-08 02:11:55 +0000977uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000978 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
979 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
980endif
981endif
982
983#---------------------------------------------------------
984# Bytecode Library Targets:
985# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +0000986# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987# targets for building them.
988#---------------------------------------------------------
989ifdef BYTECODE_LIBRARY
990ifeq ($(strip $(LLVMGCC)),)
991$(warning Bytecode libraries require llvm-gcc which could not be found ****)
992else
993
994all-local:: $(LibName.BCA)
995
996ifdef EXPORTED_SYMBOL_FILE
997BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
998 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
999
1000$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1001 $(LLVMToolDir)/llvm-ar
1002 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1003 "(internalize)"
1004 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
1005 $(Verb) $(RM) -f $@
1006 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
1007else
1008$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1009 $(LLVMToolDir)/llvm-ar
1010 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1011 $(Verb) $(RM) -f $@
1012 $(Verb) $(LArchive) $@ $(ObjectsBC)
1013
1014endif
1015
1016clean-local::
1017ifneq ($(strip $(LibName.BCA)),)
1018 -$(Verb) $(RM) -f $(LibName.BCA)
1019endif
1020
1021ifdef BYTECODE_DESTINATION
1022BytecodeDestDir := $(BYTECODE_DESTINATION)
1023else
1024BytecodeDestDir := $(PROJ_libdir)
1025endif
1026
Daniel Dunbar659cef82009-05-12 05:35:40 +00001027DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001028
1029install-bytecode-local:: $(DestBytecodeLib)
1030
1031ifdef NO_INSTALL
1032install-local::
1033 $(Echo) Install circumvented with NO_INSTALL
1034uninstall-local::
1035 $(Echo) Uninstall circumvented with NO_INSTALL
1036else
1037install-local:: $(DestBytecodeLib)
1038
Mike Stump98f72e02009-02-12 23:45:11 +00001039$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001040 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1041 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1042
1043uninstall-local::
1044 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1045 -$(Verb) $(RM) -f $(DestBytecodeLib)
1046endif
1047endif
1048endif
1049
1050#---------------------------------------------------------
1051# ReLinked Library Targets:
1052# If the user explicitly requests a relinked library with
1053# BUILD_RELINKED, provide it. Otherwise, if they specify
1054# neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
1055# them one.
1056#---------------------------------------------------------
1057ifndef BUILD_ARCHIVE
1058ifndef DONT_BUILD_RELINKED
1059BUILD_RELINKED = 1
1060endif
1061endif
1062
1063ifdef BUILD_RELINKED
1064
1065all-local:: $(LibName.O)
1066
1067$(LibName.O): $(ObjectsO) $(LibDir)/.dir
1068 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
Nick Lewycky14c68542009-02-26 08:48:14 +00001069 $(Verb) $(Relink) -Wl,-r -nodefaultlibs -nostdlib -nostartfiles -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070
1071clean-local::
1072ifneq ($(strip $(LibName.O)),)
1073 -$(Verb) $(RM) -f $(LibName.O)
1074endif
1075
1076ifdef NO_INSTALL
1077install-local::
1078 $(Echo) Install circumvented with NO_INSTALL
1079uninstall-local::
1080 $(Echo) Uninstall circumvented with NO_INSTALL
1081else
1082DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
1083
1084install-local:: $(DestRelinkedLib)
1085
Mike Stump98f72e02009-02-12 23:45:11 +00001086$(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001088 $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001089
1090uninstall-local::
1091 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1092 -$(Verb) $(RM) -f $(DestRelinkedLib)
1093endif
1094endif
1095
1096#---------------------------------------------------------
1097# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +00001098# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001099# then we provide targets for building them.
1100#---------------------------------------------------------
1101ifdef BUILD_ARCHIVE
1102
1103all-local:: $(LibName.A)
1104
1105$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1106 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1107 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001108 $(Verb) $(Archive) $@ $(ObjectsO)
1109 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110
1111clean-local::
1112ifneq ($(strip $(LibName.A)),)
1113 -$(Verb) $(RM) -f $(LibName.A)
1114endif
1115
1116ifdef NO_INSTALL
1117install-local::
1118 $(Echo) Install circumvented with NO_INSTALL
1119uninstall-local::
1120 $(Echo) Uninstall circumvented with NO_INSTALL
1121else
1122DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1123
1124install-local:: $(DestArchiveLib)
1125
Mike Stump98f72e02009-02-12 23:45:11 +00001126$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1128 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001129 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001130
1131uninstall-local::
1132 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1133 -$(Verb) $(RM) -f $(DestArchiveLib)
1134endif
1135endif
1136
1137# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001138endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001139
1140###############################################################################
1141# Tool Build Rules: Build executable tool based on TOOLNAME option
1142###############################################################################
1143
1144ifdef TOOLNAME
1145
1146#---------------------------------------------------------
1147# Set up variables for building a tool.
1148#---------------------------------------------------------
1149ifdef EXAMPLE_TOOL
1150ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1151else
1152ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1153endif
1154
1155#---------------------------------------------------------
Chris Lattner8b04ea72009-02-26 17:47:49 +00001156# Prune Exports
1157#---------------------------------------------------------
1158
1159# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1160# not exporting all of the weak symbols from the binary. This reduces dyld
1161# startup time by 4x on darwin in some cases.
1162ifdef TOOL_NO_EXPORTS
1163ifeq ($(OS),Darwin)
Chris Lattnerc6c51352009-03-10 17:15:56 +00001164
1165# Tiger tools don't support this.
1166ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner8b04ea72009-02-26 17:47:49 +00001167LD.Flags += -Wl,-exported_symbol -Wl,_main
1168endif
Chris Lattnerc6c51352009-03-10 17:15:56 +00001169endif
Chris Lattner8b04ea72009-02-26 17:47:49 +00001170
1171ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
Chris Lattner7c024612009-02-26 18:38:40 +00001172LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner8b04ea72009-02-26 17:47:49 +00001173endif
1174endif
1175
1176
1177#---------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001178# Provide targets for building the tools
1179#---------------------------------------------------------
1180all-local:: $(ToolBuildPath)
1181
1182clean-local::
1183ifneq ($(strip $(ToolBuildPath)),)
1184 -$(Verb) $(RM) -f $(ToolBuildPath)
1185endif
1186
1187ifdef EXAMPLE_TOOL
1188$(ToolBuildPath): $(ExmplDir)/.dir
1189else
1190$(ToolBuildPath): $(ToolDir)/.dir
1191endif
1192
1193$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1194 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001195 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001196 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1197 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001198 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001199
1200ifdef NO_INSTALL
1201install-local::
1202 $(Echo) Install circumvented with NO_INSTALL
1203uninstall-local::
1204 $(Echo) Uninstall circumvented with NO_INSTALL
1205else
1206DestTool = $(PROJ_bindir)/$(TOOLNAME)
1207
1208install-local:: $(DestTool)
1209
Mike Stump98f72e02009-02-12 23:45:11 +00001210$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001211 $(Echo) Installing $(BuildMode) $(DestTool)
1212 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1213
1214uninstall-local::
1215 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1216 -$(Verb) $(RM) -f $(DestTool)
1217endif
1218endif
1219
1220###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001221# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001222###############################################################################
1223
1224# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1225ifeq ($(OS),HP-UX)
1226 DISABLE_AUTO_DEPENDENCIES=1
1227endif
1228
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001229# Provide rule sets for when dependency generation is enabled
1230ifndef DISABLE_AUTO_DEPENDENCIES
1231
1232#---------------------------------------------------------
Nick Lewycky8d91e192009-02-26 07:44:16 +00001233# Create .o files in the ObjDir directory from the .cpp and .c files...
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001234#---------------------------------------------------------
1235
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001236DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewycky8d91e192009-02-26 07:44:16 +00001237 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001238
Daniel Dunbar285108f2009-05-12 06:35:50 +00001239# If the build succeeded, move the dependency file over, otherwise
1240# remove it.
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001241DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1242 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1243
Nick Lewycky8d91e192009-02-26 07:44:16 +00001244$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 $(Echo) "Compiling $*.cpp 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: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001250 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001251 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001252 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001253
Nick Lewycky8d91e192009-02-26 07:44:16 +00001254$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001255 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001256 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001257 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001258
1259#---------------------------------------------------------
1260# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1261#---------------------------------------------------------
1262
Daniel Dunbar285108f2009-05-12 06:35:50 +00001263BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1264 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1265
1266# If the build succeeded, move the dependency file over, otherwise
1267# remove it.
1268BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1269 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1270
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001271$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1272 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001273 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1274 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1275 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001276
1277$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1278 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001279 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1280 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1281 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001282
1283$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1284 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001285 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1286 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1287 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001288
1289# Provide alternate rule sets if dependencies are disabled
1290else
1291
Nick Lewycky8d91e192009-02-26 07:44:16 +00001292$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001293 $(Echo) "Compiling $*.cpp 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: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001297 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001298 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001299
Nick Lewycky8d91e192009-02-26 07:44:16 +00001300$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001301 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001302 $(Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001303
1304$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1305 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1306 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001307
1308$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1309 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1310 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001311
1312$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1313 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1314 $(BCCompile.C) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001315
1316endif
1317
1318
1319## Rules for building preprocessed (.i/.ii) outputs.
1320$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1321 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1322 $(Verb) $(Preprocess.CXX) $< -o $@
1323
1324$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1325 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1326 $(Verb) $(Preprocess.CXX) $< -o $@
1327
1328$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1329 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1330 $(Verb) $(Preprocess.C) $< -o $@
1331
1332
1333$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1334 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001335 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001336
1337$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1338 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001339 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001340
1341$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1342 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001343 $(Compile.C) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001344
1345
1346# make the C and C++ compilers strip debug info out of bytecode libraries.
1347ifdef DEBUG_RUNTIME
1348$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1349 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1350 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1351else
1352$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1353 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1354 $(Verb) $(LLVMAS) $< -o - | \
1355 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1356endif
1357
1358
1359#---------------------------------------------------------
1360# Provide rule to build .bc files from .ll sources,
1361# regardless of dependencies
1362#---------------------------------------------------------
1363$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1364 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1365 $(Verb) $(LLVMAS) $< -f -o $@
1366
1367###############################################################################
1368# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1369###############################################################################
1370
1371ifdef TARGET
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001372TABLEGEN_INC_FILES_COMMON = 1
1373endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001374
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001375ifdef LLVMC_BUILD_AUTOGENERATED_INC
1376TABLEGEN_INC_FILES_COMMON = 1
1377endif
1378
1379ifdef TABLEGEN_INC_FILES_COMMON
1380
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001381INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1382INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1383.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1384
Misha Brukman89fe5162009-01-08 02:11:55 +00001385# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001386# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1387# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001388# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001389# dependencies of the .inc files are, unless the contents of the .inc file
1390# changes.
1391$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1392 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1393
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001394endif # TABLEGEN_INC_FILES_COMMON
1395
1396ifdef TARGET
1397
1398TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1399 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1400 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1401 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1402 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1403 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1404 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1405
Rafael Espindola4d8cd532009-03-10 17:58:54 +00001406# All of these files depend on tblgen and the .td files.
1407$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1408
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001409$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1410$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1411 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001412 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001413
1414$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1415$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1416 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001417 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001418
1419$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1420$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1421 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001422 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001423
1424$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1425$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1426 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001427 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001428
1429$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1430$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1431 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001432 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001433
1434$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1435$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1436 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001437 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001438
1439$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1440$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1441 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001442 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001443
1444$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1445$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1446 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001447 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001448
1449$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1450$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001451 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001452 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001453
Dan Gohmanb75dead2008-08-13 20:19:35 +00001454$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1455$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1456 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1457 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1458
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001459$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1460$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1461 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001462 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001463
1464$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1465$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1466 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001467 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001468
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001469$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1470$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1471 $(Echo) "Building $(<F) calling convention information with tblgen"
1472 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1473
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001474clean-local::
1475 -$(Verb) $(RM) -f $(INCFiles)
1476
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001477endif # TARGET
1478
1479ifdef LLVMC_BUILD_AUTOGENERATED_INC
1480
Mikhail Glushenkov3b335a42009-04-21 19:46:10 +00001481LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1482 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001483
1484TDFiles := $(LLVMCPluginSrc) \
1485 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1486
1487$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1488 $(TBLGEN) $(TD_COMMON)
1489 $(Echo) "Building LLVMC configuration library with tblgen"
1490 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1491
1492endif # LLVMC_BUILD_AUTOGENERATED_INC
1493
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001494###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001495# OTHER RULES: Other rules needed
1496###############################################################################
1497
1498# To create postscript files from dot files...
1499ifneq ($(DOT),false)
1500%.ps: %.dot
1501 $(DOT) -Tps < $< > $@
1502else
1503%.ps: %.dot
1504 $(Echo) "Cannot build $@: The program dot is not installed"
1505endif
1506
1507# This rules ensures that header files that are removed still have a rule for
1508# which they can be "generated." This allows make to ignore them and
1509# reproduce the dependency lists.
1510%.h:: ;
1511%.hpp:: ;
1512
1513# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001514# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001515# errors or disastrous removal.
1516clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001517ifneq ($(strip $(ObjRootDir)),)
1518 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001519endif
1520 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1521ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1522 -$(Verb) $(RM) -f *$(SHLIBEXT)
1523endif
1524
1525clean-all-local::
1526 -$(Verb) $(RM) -rf Debug Release Profile
1527
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001528
1529###############################################################################
1530# DEPENDENCIES: Include the dependency files if we should
1531###############################################################################
1532ifndef DISABLE_AUTO_DEPENDENCIES
1533
1534# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001535ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001536
1537# Get the list of dependency files
Daniel Dunbar285108f2009-05-12 06:35:50 +00001538DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1539DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1540
1541# Include bitcode dependency files if using bitcode libraries
1542ifdef BYTECODE_LIBRARY
1543DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1544endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001545
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001546-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001547
1548endif
1549
Misha Brukman89fe5162009-01-08 02:11:55 +00001550endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001551
1552###############################################################################
1553# CHECK: Running the test suite
1554###############################################################################
1555
Bill Wendlingea4af672009-04-09 18:26:57 +00001556check::
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001557 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1558 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1559 $(EchoCmd) Running test suite ; \
1560 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1561 TESTSUITE=$(TESTSUITE) ; \
1562 else \
1563 $(EchoCmd) No Makefile in test directory ; \
1564 fi ; \
1565 else \
1566 $(EchoCmd) No test directory ; \
1567 fi
1568
1569###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001570# UNITTESTS: Running the unittests test suite
1571###############################################################################
1572
Bill Wendlingea4af672009-04-09 18:26:57 +00001573unittests::
Bill Wendling2e3646a2009-01-04 23:12:21 +00001574 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1575 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1576 $(EchoCmd) Running unittests test suite ; \
1577 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1578 else \
1579 $(EchoCmd) No Makefile in unittests directory ; \
1580 fi ; \
1581 else \
1582 $(EchoCmd) No unittests directory ; \
1583 fi
1584
1585###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001586# DISTRIBUTION: Handle construction of a distribution tarball
1587###############################################################################
1588
1589#------------------------------------------------------------------------
1590# Define distribution related variables
1591#------------------------------------------------------------------------
1592DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1593DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1594TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1595DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1596DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1597DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1598DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1599 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1600 Makefile.config.in configure autoconf
1601DistOther := $(notdir $(wildcard \
1602 $(PROJ_SRC_DIR)/*.h \
1603 $(PROJ_SRC_DIR)/*.td \
1604 $(PROJ_SRC_DIR)/*.def \
1605 $(PROJ_SRC_DIR)/*.ll \
1606 $(PROJ_SRC_DIR)/*.in))
1607DistSubDirs := $(SubDirs)
1608DistSources = $(Sources) $(EXTRA_DIST)
1609DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1610
1611#------------------------------------------------------------------------
1612# We MUST build distribution with OBJ_DIR != SRC_DIR
1613#------------------------------------------------------------------------
1614ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1615dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1616 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1617
1618else
1619
1620#------------------------------------------------------------------------
1621# Prevent attempt to run dist targets from anywhere but the top level
1622#------------------------------------------------------------------------
1623ifneq ($(LEVEL),.)
1624dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1625 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1626else
1627
1628#------------------------------------------------------------------------
1629# Provide the top level targets
1630#------------------------------------------------------------------------
1631
1632dist-gzip:: $(DistTarGZip)
1633
1634$(DistTarGZip) : $(TopDistDir)/.makedistdir
1635 $(Echo) Packing gzipped distribution tar file.
1636 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1637 $(GZIP) -c > "$(DistTarGZip)"
1638
1639dist-bzip2:: $(DistTarBZ2)
1640
1641$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1642 $(Echo) Packing bzipped distribution tar file.
1643 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1644 $(BZIP2) -c >$(DistTarBZ2)
1645
1646dist-zip:: $(DistZip)
1647
1648$(DistZip) : $(TopDistDir)/.makedistdir
1649 $(Echo) Packing zipped distribution file.
1650 $(Verb) rm -f $(DistZip)
1651 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1652
Misha Brukman89fe5162009-01-08 02:11:55 +00001653dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001654 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1655
1656DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1657
1658dist-check:: $(DistTarGZip)
1659 $(Echo) Checking distribution tar file.
1660 $(Verb) if test -d $(DistCheckDir) ; then \
1661 $(RM) -rf $(DistCheckDir) ; \
1662 fi
1663 $(Verb) $(MKDIR) $(DistCheckDir)
1664 $(Verb) cd $(DistCheckDir) && \
1665 $(MKDIR) $(DistCheckDir)/build && \
1666 $(MKDIR) $(DistCheckDir)/install && \
1667 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1668 cd build && \
1669 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1670 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1671 $(MAKE) all && \
1672 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001673 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001674 $(MAKE) install && \
1675 $(MAKE) uninstall && \
1676 $(MAKE) dist-clean && \
1677 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1678
1679dist-clean::
1680 $(Echo) Cleaning distribution files
1681 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1682 $(DistCheckDir)
1683
1684endif
1685
1686#------------------------------------------------------------------------
1687# Provide the recursive distdir target for building the distribution directory
1688#------------------------------------------------------------------------
1689distdir: $(DistDir)/.makedistdir
1690$(DistDir)/.makedistdir: $(DistSources)
1691 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1692 if test -d "$(DistDir)" ; then \
1693 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1694 exit 1 ; \
1695 fi ; \
1696 $(EchoCmd) Removing old $(DistDir) ; \
1697 $(RM) -rf $(DistDir); \
1698 $(EchoCmd) Making 'all' to verify build ; \
1699 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1700 fi
1701 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001702 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001703 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1704 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1705 for file in $(DistFiles) ; do \
1706 case "$$file" in \
1707 $(PROJ_SRC_DIR)/*) \
1708 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1709 ;; \
1710 $(PROJ_SRC_ROOT)/*) \
1711 file=`echo "$$file" | \
1712 sed "s#^$$srcrootstrip/##"` \
1713 ;; \
1714 esac; \
1715 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1716 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1717 from_dir="$(PROJ_SRC_DIR)" ; \
1718 elif test -f "$$file" || test -d "$$file" ; then \
1719 from_dir=. ; \
1720 fi ; \
1721 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1722 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1723 to_dir="$(DistDir)/$$dir"; \
1724 $(MKDIR) "$$to_dir" ; \
1725 else \
1726 to_dir="$(DistDir)"; \
1727 fi; \
1728 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1729 if test -n "$$mid_dir" ; then \
1730 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1731 fi ; \
1732 if test -d "$$from_dir/$$file"; then \
1733 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1734 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1735 cd $(PROJ_SRC_DIR) ; \
1736 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1737 ( cd $$to_dir ; $(TAR) xf - ) ; \
1738 cd $(PROJ_OBJ_DIR) ; \
1739 else \
1740 cd $$from_dir ; \
1741 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1742 ( cd $$to_dir ; $(TAR) xf - ) ; \
1743 cd $(PROJ_OBJ_DIR) ; \
1744 fi; \
1745 elif test -f "$$from_dir/$$file" ; then \
1746 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1747 elif test -L "$$from_dir/$$file" ; then \
1748 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1749 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1750 $(EchoCmd) "===== WARNING: Distribution Source " \
1751 "$$from_dir/$$file Not Found!" ; \
1752 elif test "$(Verb)" != '@' ; then \
1753 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1754 fi; \
1755 done
1756 $(Verb) for subdir in $(DistSubDirs) ; do \
1757 if test "$$subdir" \!= "." ; then \
1758 new_distdir="$(DistDir)/$$subdir" ; \
1759 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1760 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1761 DistDir="$$new_distdir" distdir ) || exit 1; \
1762 fi; \
1763 done
1764 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1765 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1766 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1767 -name .svn \) -print` ;\
1768 $(MAKE) dist-hook ; \
1769 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1770 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1771 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1772 -o ! -type d ! -perm -444 -exec \
1773 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1774 || chmod -R a+r $(DistDir) ; \
1775 fi
1776
1777# This is invoked by distdir target, define it as a no-op to avoid errors if not
1778# defined by user.
1779dist-hook::
1780
1781endif
1782
1783###############################################################################
1784# TOP LEVEL - targets only to apply at the top level directory
1785###############################################################################
1786
1787ifeq ($(LEVEL),.)
1788
1789#------------------------------------------------------------------------
1790# Install support for the project's include files:
1791#------------------------------------------------------------------------
1792ifdef NO_INSTALL
1793install-local::
1794 $(Echo) Install circumvented with NO_INSTALL
1795uninstall-local::
1796 $(Echo) Uninstall circumvented with NO_INSTALL
1797else
1798install-local::
1799 $(Echo) Installing include files
1800 $(Verb) $(MKDIR) $(PROJ_includedir)
1801 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1802 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001803 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001804 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1805 grep -v .svn` ; do \
1806 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1807 if test \! -d "$$instdir" ; then \
1808 $(EchoCmd) Making install directory $$instdir ; \
1809 $(MKDIR) $$instdir ;\
1810 fi ; \
1811 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1812 done ; \
1813 fi
1814ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1815 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1816 cd $(PROJ_OBJ_ROOT)/include && \
1817 for hdr in `find . -type f -print | grep -v CVS` ; do \
1818 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1819 done ; \
1820 fi
1821endif
1822
1823uninstall-local::
1824 $(Echo) Uninstalling include files
1825 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1826 cd $(PROJ_SRC_ROOT)/include && \
1827 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001828 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001829 -o -name '*.in' ')' -print ')' | \
1830 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1831 cd $(PROJ_SRC_ROOT)/include && \
1832 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1833 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1834 fi
1835endif
1836endif
1837
1838check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001839 @echo searching for overlength lines in files: $(Sources)
1840 @echo
1841 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001842 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001843
1844check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001845 @echo searching for tabs in files: $(Sources)
1846 @echo
1847 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001848 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001849
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001850check-footprint:
1851 @ls -l $(LibDir) | awk '\
1852 BEGIN { sum = 0; } \
1853 { sum += $$5; } \
1854 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1855 @ls -l $(ToolDir) | awk '\
1856 BEGIN { sum = 0; } \
1857 { sum += $$5; } \
1858 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1859#------------------------------------------------------------------------
1860# Print out the directories used for building
1861#------------------------------------------------------------------------
1862printvars::
1863 $(Echo) "BuildMode : " '$(BuildMode)'
1864 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1865 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1866 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1867 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1868 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1869 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1870 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1871 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1872 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1873 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1874 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1875 $(Echo) "UserTargets : " '$(UserTargets)'
1876 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1877 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1878 $(Echo) "ObjDir : " '$(ObjDir)'
1879 $(Echo) "LibDir : " '$(LibDir)'
1880 $(Echo) "ToolDir : " '$(ToolDir)'
1881 $(Echo) "ExmplDir : " '$(ExmplDir)'
1882 $(Echo) "Sources : " '$(Sources)'
1883 $(Echo) "TDFiles : " '$(TDFiles)'
1884 $(Echo) "INCFiles : " '$(INCFiles)'
1885 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1886 $(Echo) "PreConditions: " '$(PreConditions)'
1887 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1888 $(Echo) "Compile.C : " '$(Compile.C)'
1889 $(Echo) "Archive : " '$(Archive)'
1890 $(Echo) "YaccFiles : " '$(YaccFiles)'
1891 $(Echo) "LexFiles : " '$(LexFiles)'
1892 $(Echo) "Module : " '$(Module)'
1893 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1894 $(Echo) "SubDirs : " '$(SubDirs)'
1895 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1896 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001897
1898###
1899# Debugging
1900
Daniel Dunbara6b02752009-03-06 22:23:25 +00001901# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001902# definition, value and origin of XXX.
Daniel Dunbara6b02752009-03-06 22:23:25 +00001903make-print-%:
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001904 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))