blob: 9325ca4b5d1b8f75f9c10232143c712598ce0079 [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
Chris Lattner20cba1c2009-06-16 23:00:42 +0000290 CXX.Flags += -ftest-coverage -fprofile-arcs
291 C.Flags += -ftest-coverage -fprofile-arcs
Daniel Dunbar3fd1aa72009-03-13 20:59:41 +0000292endif
293
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
295# then disable assertions by defining the appropriate preprocessor symbols.
296ifdef DISABLE_ASSERTIONS
Duncan Sands86a7a222009-03-27 11:35:00 +0000297 # Indicate that assertions are turned off using a minus sign
298 BuildMode := $(BuildMode)-Asserts
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299 CPP.Defines += -DNDEBUG
300else
301 CPP.Defines += -D_DEBUG
302endif
303
Misha Brukman89fe5162009-01-08 02:11:55 +0000304# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
305# configured), then enable expensive checks by defining the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306# appropriate preprocessor symbols.
307ifdef ENABLE_EXPENSIVE_CHECKS
308 BuildMode := $(BuildMode)+Checks
Duncan Sands871e55f2008-12-09 21:33:20 +0000309 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000310endif
311
Nick Lewycky8d91e192009-02-26 07:44:16 +0000312# LOADABLE_MODULE implies several other things so we force them to be
313# defined/on.
314ifdef LOADABLE_MODULE
315 SHARED_LIBRARY := 1
Nick Lewycky8d91e192009-02-26 07:44:16 +0000316 LINK_LIBS_IN_SHARED := 1
317endif
318
319ifdef SHARED_LIBRARY
320 ENABLE_PIC := 1
321 PIC_FLAG = "(PIC)"
322endif
323
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000324ifeq ($(ENABLE_PIC),1)
Nick Lewyckyce6daa452009-03-03 03:36:50 +0000325 ifeq ($(OS), $(filter $(OS), Cygwin MingW))
Nick Lewycky5b882f22009-02-21 08:41:09 +0000326 # Nothing. Win32 defaults to PIC and warns when given -fPIC
327 else
328 ifeq ($(OS),Darwin)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000329 # Common symbols not allowed in dylib files
Nick Lewycky5b882f22009-02-21 08:41:09 +0000330 CXX.Flags += -fno-common
331 C.Flags += -fno-common
332 else
333 # Linux and others; pass -fPIC
334 CXX.Flags += -fPIC
335 C.Flags += -fPIC
336 endif
337 endif
Mike Stump8efa3542009-05-08 23:08:58 +0000338else
339 ifeq ($(OS),Darwin)
340 CXX.Flags += -mdynamic-no-pic
341 C.Flags += -mdynamic-no-pic
342 endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343endif
344
345CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
346C.Flags += $(CFLAGS)
347CPP.Defines += $(CPPFLAGS)
348CPP.BaseFlags += $(CPP.Defines)
349LD.Flags += $(LDFLAGS)
350AR.Flags := cru
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000351
352# Make Floating point IEEE compliant on Alpha.
353ifeq ($(ARCH),Alpha)
354 CXX.Flags += -mieee
355 CPP.BaseFlags += -mieee
356ifeq ($(ENABLE_PIC),0)
357 CXX.Flags += -fPIC
358 CPP.BaseFlags += -fPIC
359endif
360endif
361
362ifeq ($(ARCH),Alpha)
363 LD.Flags += -Wl,--no-relax
364endif
365
Anton Korobeynikov025ddd42009-05-04 10:25:30 +0000366ifeq ($(OS),MingW)
367 ifeq ($(LLVM_CROSS_COMPILING),1)
368 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
369 ifdef TOOLNAME
370 LD.Flags += -Wl,--allow-multiple-definition
371 endif
372 endif
373endif
374
Jay Foad188e6472009-05-15 18:13:31 +0000375ifdef ENABLE_EXPENSIVE_CHECKS
376 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
377 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
378 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
379endif
380
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381#--------------------------------------------------------------------
382# Directory locations
383#--------------------------------------------------------------------
Jim Grosbache4c032e2008-10-02 22:56:44 +0000384TargetMode :=
385ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000386 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
Jim Grosbache4c032e2008-10-02 22:56:44 +0000387endif
388
389ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000390ObjDir := $(ObjRootDir)
391LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
392ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
393ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
394LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
395LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
396LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000397CFERuntimeLibDir := $(LLVMGCCDIR)/lib
398
399#--------------------------------------------------------------------
400# Full Paths To Compiled Tools and Utilities
401#--------------------------------------------------------------------
402EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
403Echo = @$(EchoCmd)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404ifndef LLVMAS
405LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
406endif
407ifndef TBLGEN
408 ifeq ($(LLVM_CROSS_COMPILING),1)
Anton Korobeynikov06565172008-11-10 07:33:13 +0000409 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410 else
411 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
412 endif
413endif
Misha Brukman89fe5162009-01-08 02:11:55 +0000414LLVM_CONFIG := $(LLVMToolDir)/llvm-config
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415ifndef LLVMLD
416LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
417endif
418ifndef LLVMDIS
419LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
420endif
421ifndef LLI
422LLI := $(LLVMToolDir)/lli$(EXEEXT)
423endif
424ifndef LLC
425LLC := $(LLVMToolDir)/llc$(EXEEXT)
426endif
427ifndef LOPT
428LOPT := $(LLVMToolDir)/opt$(EXEEXT)
429endif
430ifndef LBUGPOINT
431LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
432endif
433ifndef LUPGRADE
434LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
435endif
436ifeq ($(LLVMGCC_MAJVERS),3)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000437LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
438LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
439else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440LLVMGCCWITHPATH := $(LLVMGCC)
441LLVMGXXWITHPATH := $(LLVMGXX)
442endif
443
444#--------------------------------------------------------------------
445# Adjust to user's request
446#--------------------------------------------------------------------
447
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000448ifeq ($(OS),Darwin)
449 DARWIN_VERSION := `sw_vers -productVersion`
450 # Strip a number like 10.4.7 to 10.4
451 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
452 # Get "4" out of 10.4 for later pieces in the makefile.
453 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
Bill Wendling3c0d23b2009-03-22 08:28:45 +0000454
Julien Lerouge64e1db82009-03-27 18:18:00 +0000455 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
456 -dynamiclib -mmacosx-version-min=$(DARWIN_VERSION)
Evan Chengd1f1fc12009-03-23 03:45:56 +0000457 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000458else
459 ifeq ($(OS),Cygwin)
460 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
461 -Wl,--enable-auto-import -Wl,--enable-auto-image-base \
462 -Wl,--enable-runtime-pseudo-relocs
463 else
464 SharedLinkOptions=-shared
465 endif
466endif
467
Nick Lewycky8d91e192009-02-26 07:44:16 +0000468# Adjust LD.Flags depending on the kind of library that is to be built. Note
469# that if LOADABLE_MODULE is specified then the resulting shared library can
470# be opened with dlopen.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471ifdef LOADABLE_MODULE
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472 LD.Flags += -module
473endif
474
475ifdef SHARED_LIBRARY
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000476ifneq ($(DARWIN_MAJVERS),4)
Nick Lewycky12015c12009-03-03 04:55:15 +0000477 LD.Flags += $(RPATH) -Wl,$(LibDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478endif
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000479endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480
481ifdef TOOL_VERBOSE
482 C.Flags += -v
483 CXX.Flags += -v
484 LD.Flags += -v
485 VERBOSE := 1
486endif
487
488# Adjust settings for verbose mode
489ifndef VERBOSE
490 Verb := @
Reid Spencerdfb3d5b2007-07-23 08:20:46 +0000491 AR.Flags += >/dev/null 2>/dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000492 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
493else
Misha Brukman89fe5162009-01-08 02:11:55 +0000494 ConfigureScriptFLAGS :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495endif
496
497# By default, strip symbol information from executable
498ifndef KEEP_SYMBOLS
499 Strip := $(PLATFORMSTRIPOPTS)
500 StripWarnMsg := "(without symbols)"
501 Install.StripFlag += -s
502endif
503
504# Adjust linker flags for building an executable
Nick Lewycky324b1192009-02-26 08:03:36 +0000505ifneq ($(OS),Darwin)
Scott Michelf9c9d7e2009-03-12 21:03:53 +0000506ifneq ($(DARWIN_MAJVERS),4)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507ifdef TOOLNAME
508ifdef EXAMPLE_TOOL
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000509 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510else
Nick Lewyckyaca7e1c2009-03-07 22:17:05 +0000511 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512endif
513endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000514endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000515endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516
517#----------------------------------------------------------
518# Options To Invoke Tools
519#----------------------------------------------------------
520
Daniel Dunbarb47afd52009-05-12 07:26:49 +0000521ifndef NO_PEDANTIC
Duncan Sands7d9ea942009-06-19 12:40:30 +0000522CompileCommonOpts += -pedantic -Wno-long-long
Daniel Dunbarb47afd52009-05-12 07:26:49 +0000523endif
Duncan Sands7d9ea942009-06-19 12:40:30 +0000524CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
525 $(EXTRA_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526
527ifeq ($(OS),HP-UX)
528 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
529endif
530
531# If we are building a universal binary on Mac OS/X, pass extra options. This
532# is useful to people that want to link the LLVM libraries into their universal
533# apps.
534#
535# The following can be optionally specified:
536# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
537# For Mac OS/X 10.4 Intel machines, the traditional one is:
538# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
539# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
540# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
541# i386/ppc only.
542ifdef UNIVERSAL
543 ifndef UNIVERSAL_ARCH
544 UNIVERSAL_ARCH := i386 ppc
545 endif
546 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
547 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 ifdef UNIVERSAL_SDK_PATH
549 CompileCommonOpts += -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)
Chris Lattner20cba1c2009-06-16 23:00:42 +0000580 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000581 $(TargetCommonOpts) $(CompileCommonOpts) -c
Chris Lattner20cba1c2009-06-16 23:00:42 +0000582 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000583 $(TargetCommonOpts) $(CompileCommonOpts) -c
584 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(TargetCommonOpts) \
Chris Lattner20cba1c2009-06-16 23:00:42 +0000585 $(CompileCommonOpts) $(CXX.Flags) -E
586 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000587 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000588else
Chris Lattner20cba1c2009-06-16 23:00:42 +0000589 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000590 $(TargetCommonOpts) $(CompileCommonOpts) -c
Chris Lattner20cba1c2009-06-16 23:00:42 +0000591 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000592 $(TargetCommonOpts) $(CompileCommonOpts) -c
593 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) \
Chris Lattner20cba1c2009-06-16 23:00:42 +0000594 $(CompileCommonOpts) $(CXX.Flags) -E
595 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000596 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
Jim Grosbache4c032e2008-10-02 22:56:44 +0000597endif
598
Evan Chengd1f1fc12009-03-23 03:45:56 +0000599BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) \
600 $(TargetCommonOpts) $(CompileCommonOpts)
601Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) \
602 $(TargetCommonOpts) $(CompileCommonOpts) -E
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
Evan Chengd1f1fc12009-03-23 03:45:56 +0000605 $(TargetCommonOpts) $(CompileCommonOpts)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606
Misha Brukman89fe5162009-01-08 02:11:55 +0000607ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
608ScriptInstall = $(INSTALL) -m 0755
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000609DataInstall = $(INSTALL) -m 0644
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000610
611# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
612# paths. In this case, the SYSPATH function (defined in
613# Makefile.config) transforms Unix paths into Windows paths.
614TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
Mikhail Glushenkov3e6bf9a2009-01-09 16:31:01 +0000615 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
Chris Lattner1b0a3a12008-01-15 23:27:40 +0000616 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
617 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
618
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619Archive = $(AR) $(AR.Flags)
620LArchive = $(LLVMToolDir)/llvm-ar rcsf
621ifdef RANLIB
622Ranlib = $(RANLIB)
623else
624Ranlib = ranlib
625endif
626
627#----------------------------------------------------------
Misha Brukman89fe5162009-01-08 02:11:55 +0000628# Get the list of source files and compute object file
629# names from them.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630#----------------------------------------------------------
631
632ifndef SOURCES
633 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000634 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000635else
636 Sources := $(SOURCES)
Misha Brukman89fe5162009-01-08 02:11:55 +0000637endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638
639ifdef BUILT_SOURCES
Chris Lattnerbfaed4c2009-01-02 07:16:45 +0000640Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641endif
642
643BaseNameSources := $(sort $(basename $(Sources)))
644
645ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000646ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
647
648###############################################################################
649# DIRECTORIES: Handle recursive descent of directory structure
650###############################################################################
651
652#---------------------------------------------------------
653# Provide rules to make install dirs. This must be early
654# in the file so they get built before dependencies
655#---------------------------------------------------------
656
Mike Stump98f72e02009-02-12 23:45:11 +0000657$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
Mike Stumpf0feefd2009-01-22 03:24:22 +0000658 $(Verb) $(MKDIR) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000659
660# To create other directories, as needed, and timestamp their creation
661%/.dir:
662 $(Verb) $(MKDIR) $* > /dev/null
663 $(Verb) $(DATE) > $@
664
665.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
666.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
667
668#---------------------------------------------------------
669# Handle the DIRS options for sequential construction
670#---------------------------------------------------------
671
Misha Brukman89fe5162009-01-08 02:11:55 +0000672SubDirs :=
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673ifdef DIRS
674SubDirs += $(DIRS)
675
676ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
677$(RecursiveTargets)::
678 $(Verb) for dir in $(DIRS); do \
679 if [ ! -f $$dir/Makefile ]; then \
680 $(MKDIR) $$dir; \
681 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
682 fi; \
683 ($(MAKE) -C $$dir $@ ) || exit 1; \
684 done
685else
686$(RecursiveTargets)::
687 $(Verb) for dir in $(DIRS); do \
688 ($(MAKE) -C $$dir $@ ) || exit 1; \
689 done
690endif
691
692endif
693
694#---------------------------------------------------------
695# Handle the EXPERIMENTAL_DIRS options ensuring success
696# after each directory is built.
697#---------------------------------------------------------
698ifdef EXPERIMENTAL_DIRS
699$(RecursiveTargets)::
700 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
701 if [ ! -f $$dir/Makefile ]; then \
702 $(MKDIR) $$dir; \
703 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
704 fi; \
705 ($(MAKE) -C $$dir $@ ) || exit 0; \
706 done
707endif
708
709#-----------------------------------------------------------
Mike Stump0fec3192009-01-24 00:00:41 +0000710# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
711#-----------------------------------------------------------
712ifdef OPTIONAL_PARALLEL_DIRS
713 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
714endif
715
716#-----------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717# Handle the PARALLEL_DIRS options for parallel construction
718#-----------------------------------------------------------
719ifdef PARALLEL_DIRS
720
721SubDirs += $(PARALLEL_DIRS)
722
723# Unfortunately, this list must be maintained if new recursive targets are added
724all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
725clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
726clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
727install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
728uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
729install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
730
731ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
732
733$(ParallelTargets) :
734 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
735 $(MKDIR) $(@D); \
736 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
737 fi; \
738 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
739endif
740
741#---------------------------------------------------------
742# Handle the OPTIONAL_DIRS options for directores that may
743# or may not exist.
744#---------------------------------------------------------
745ifdef OPTIONAL_DIRS
746
747SubDirs += $(OPTIONAL_DIRS)
748
749ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
750$(RecursiveTargets)::
751 $(Verb) for dir in $(OPTIONAL_DIRS); do \
752 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
753 if [ ! -f $$dir/Makefile ]; then \
754 $(MKDIR) $$dir; \
755 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
756 fi; \
757 ($(MAKE) -C$$dir $@ ) || exit 1; \
758 fi \
759 done
760else
761$(RecursiveTargets)::
762 $(Verb) for dir in $(OPTIONAL_DIRS); do \
763 ($(MAKE) -C$$dir $@ ) || exit 1; \
764 done
765endif
766endif
767
768#---------------------------------------------------------
769# Handle the CONFIG_FILES options
770#---------------------------------------------------------
771ifdef CONFIG_FILES
772
773ifdef NO_INSTALL
774install-local::
775 $(Echo) Install circumvented with NO_INSTALL
776uninstall-local::
777 $(Echo) UnInstall circumvented with NO_INSTALL
778else
779install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
780 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
781 $(Verb)for file in $(CONFIG_FILES); do \
782 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
783 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
784 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
785 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
786 else \
787 $(ECHO) Error: cannot find config file $${file}. ; \
788 fi \
789 done
790
791uninstall-local::
792 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
793 $(Verb)for file in $(CONFIG_FILES); do \
794 $(RM) -f $(PROJ_etcdir)/$${file} ; \
795 done
796endif
797
798endif
799
800###############################################################################
801# Set up variables for building libararies
802###############################################################################
803
804#---------------------------------------------------------
805# Define various command line options pertaining to the
Misha Brukman89fe5162009-01-08 02:11:55 +0000806# libraries needed when linking. There are "Proj" libs
807# (defined by the user's project) and "LLVM" libs (defined
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808# by the LLVM project).
809#---------------------------------------------------------
810
811ifdef USEDLIBS
812ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
813ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
814ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
815ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
816endif
817
818ifdef LLVMLIBS
819LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
820LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
821LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
822LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
823endif
824
Daniel Dunbara89194e2008-10-03 19:11:19 +0000825ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826ifdef LINK_COMPONENTS
827
828# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
829# clean in tools, then do a make in tools (instead of at the top level).
830$(LLVM_CONFIG):
831 @echo "*** llvm-config doesn't exist - rebuilding it."
832 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
Gabor Greif14c4c8e2008-02-27 13:34:15 +0000833
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000834$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
835
Mikhail Glushenkovfc320822009-03-03 10:03:27 +0000836LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
837LLVMLibsPaths += $(LLVM_CONFIG) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
839endif
840endif
841
842###############################################################################
843# Library Build Rules: Four ways to build a library
844###############################################################################
845
846#---------------------------------------------------------
847# Bytecode Module Targets:
848# If the user set MODULE_NAME then they want to build a
849# bytecode module from the sources. We compile all the
850# sources and link it together into a single bytecode
851# module.
852#---------------------------------------------------------
853
854ifdef MODULE_NAME
855ifeq ($(strip $(LLVMGCC)),)
856$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
857else
858
859Module := $(LibDir)/$(MODULE_NAME).bc
Andrew Lenharthd0020772008-02-25 22:41:55 +0000860LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000861
862
863ifdef EXPORTED_SYMBOL_FILE
864LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
865endif
866
867$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
868 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
869 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
870
871all-local:: $(Module)
872
873clean-local::
874ifneq ($(strip $(Module)),)
875 -$(Verb) $(RM) -f $(Module)
876endif
877
878ifdef BYTECODE_DESTINATION
879ModuleDestDir := $(BYTECODE_DESTINATION)
880else
881ModuleDestDir := $(PROJ_libdir)
882endif
883
884ifdef NO_INSTALL
885install-local::
886 $(Echo) Install circumvented with NO_INSTALL
887uninstall-local::
888 $(Echo) Uninstall circumvented with NO_INSTALL
889else
890DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
891
892install-module:: $(DestModule)
893install-local:: $(DestModule)
894
Misha Brukman89fe5162009-01-08 02:11:55 +0000895$(DestModule): $(ModuleDestDir) $(Module)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000896 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
897 $(Verb) $(DataInstall) $(Module) $(DestModule)
898
899uninstall-local::
900 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
901 -$(Verb) $(RM) -f $(DestModule)
902endif
903
904endif
905endif
906
907# if we're building a library ...
908ifdef LIBRARYNAME
909
910# Make sure there isn't any extranous whitespace on the LIBRARYNAME option
911LIBRARYNAME := $(strip $(LIBRARYNAME))
912ifdef LOADABLE_MODULE
Nick Lewycky8d91e192009-02-26 07:44:16 +0000913LibName.A := $(LibDir)/$(LIBRARYNAME).a
914LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000916LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
Nick Lewycky8d91e192009-02-26 07:44:16 +0000917LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
918endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000919LibName.O := $(LibDir)/$(LIBRARYNAME).o
920LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
921
922#---------------------------------------------------------
923# Shared Library Targets:
924# If the user asked for a shared library to be built
925# with the SHARED_LIBRARY variable, then we provide
926# targets for building them.
927#---------------------------------------------------------
928ifdef SHARED_LIBRARY
929
Nick Lewycky8d91e192009-02-26 07:44:16 +0000930all-local:: $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931
932ifdef LINK_LIBS_IN_SHARED
933ifdef LOADABLE_MODULE
934SharedLibKindMessage := "Loadable Module"
935else
936SharedLibKindMessage := "Shared Library"
937endif
Nick Lewycky8d91e192009-02-26 07:44:16 +0000938$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
940 $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000941 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
Edwin Töröke59edce2009-05-26 19:11:47 +0000942 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000943else
Nick Lewycky8d91e192009-02-26 07:44:16 +0000944$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000946 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000947endif
948
949clean-local::
Nick Lewycky8d91e192009-02-26 07:44:16 +0000950ifneq ($(strip $(LibName.SO)),)
951 -$(Verb) $(RM) -f $(LibName.SO)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000952endif
953
954ifdef NO_INSTALL
955install-local::
956 $(Echo) Install circumvented with NO_INSTALL
957uninstall-local::
958 $(Echo) Uninstall circumvented with NO_INSTALL
959else
960DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
961
962install-local:: $(DestSharedLib)
963
Nick Lewycky8d91e192009-02-26 07:44:16 +0000964$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000965 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
Nick Lewycky8d91e192009-02-26 07:44:16 +0000966 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000967
Misha Brukman89fe5162009-01-08 02:11:55 +0000968uninstall-local::
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000969 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
970 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
971endif
972endif
973
974#---------------------------------------------------------
975# Bytecode Library Targets:
976# If the user asked for a bytecode library to be built
Misha Brukman89fe5162009-01-08 02:11:55 +0000977# with the BYTECODE_LIBRARY variable, then we provide
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000978# targets for building them.
979#---------------------------------------------------------
980ifdef BYTECODE_LIBRARY
981ifeq ($(strip $(LLVMGCC)),)
982$(warning Bytecode libraries require llvm-gcc which could not be found ****)
983else
984
985all-local:: $(LibName.BCA)
986
987ifdef EXPORTED_SYMBOL_FILE
988BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
989 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
990
991$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
992 $(LLVMToolDir)/llvm-ar
993 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
994 "(internalize)"
995 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
996 $(Verb) $(RM) -f $@
997 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
998else
999$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1000 $(LLVMToolDir)/llvm-ar
1001 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1002 $(Verb) $(RM) -f $@
1003 $(Verb) $(LArchive) $@ $(ObjectsBC)
1004
1005endif
1006
1007clean-local::
1008ifneq ($(strip $(LibName.BCA)),)
1009 -$(Verb) $(RM) -f $(LibName.BCA)
1010endif
1011
1012ifdef BYTECODE_DESTINATION
1013BytecodeDestDir := $(BYTECODE_DESTINATION)
1014else
1015BytecodeDestDir := $(PROJ_libdir)
1016endif
1017
Daniel Dunbar659cef82009-05-12 05:35:40 +00001018DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019
1020install-bytecode-local:: $(DestBytecodeLib)
1021
1022ifdef NO_INSTALL
1023install-local::
1024 $(Echo) Install circumvented with NO_INSTALL
1025uninstall-local::
1026 $(Echo) Uninstall circumvented with NO_INSTALL
1027else
1028install-local:: $(DestBytecodeLib)
1029
Mike Stump98f72e02009-02-12 23:45:11 +00001030$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001031 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1032 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1033
1034uninstall-local::
1035 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1036 -$(Verb) $(RM) -f $(DestBytecodeLib)
1037endif
1038endif
1039endif
1040
1041#---------------------------------------------------------
Chris Lattner20cba1c2009-06-16 23:00:42 +00001042# Library Targets:
1043# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1044# building an archive.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045#---------------------------------------------------------
1046ifndef BUILD_ARCHIVE
Chris Lattner20cba1c2009-06-16 23:00:42 +00001047ifndef LOADABLE_MODULE
1048BUILD_ARCHIVE = 1
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049endif
1050endif
1051
1052#---------------------------------------------------------
1053# Archive Library Targets:
Misha Brukman89fe5162009-01-08 02:11:55 +00001054# If the user wanted a regular archive library built,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001055# then we provide targets for building them.
1056#---------------------------------------------------------
1057ifdef BUILD_ARCHIVE
1058
1059all-local:: $(LibName.A)
1060
1061$(LibName.A): $(ObjectsO) $(LibDir)/.dir
1062 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1063 -$(Verb) $(RM) -f $@
Bill Wendling3d6df102009-01-03 22:46:50 +00001064 $(Verb) $(Archive) $@ $(ObjectsO)
1065 $(Verb) $(Ranlib) $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001066
1067clean-local::
1068ifneq ($(strip $(LibName.A)),)
1069 -$(Verb) $(RM) -f $(LibName.A)
1070endif
1071
1072ifdef NO_INSTALL
1073install-local::
1074 $(Echo) Install circumvented with NO_INSTALL
1075uninstall-local::
1076 $(Echo) Uninstall circumvented with NO_INSTALL
1077else
1078DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1079
1080install-local:: $(DestArchiveLib)
1081
Mike Stump98f72e02009-02-12 23:45:11 +00001082$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001083 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1084 $(Verb) $(MKDIR) $(PROJ_libdir)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001085 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001086
1087uninstall-local::
1088 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1089 -$(Verb) $(RM) -f $(DestArchiveLib)
1090endif
1091endif
1092
1093# endif LIBRARYNAME
Misha Brukman89fe5162009-01-08 02:11:55 +00001094endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001095
1096###############################################################################
1097# Tool Build Rules: Build executable tool based on TOOLNAME option
1098###############################################################################
1099
1100ifdef TOOLNAME
1101
1102#---------------------------------------------------------
1103# Set up variables for building a tool.
1104#---------------------------------------------------------
1105ifdef EXAMPLE_TOOL
1106ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1107else
1108ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1109endif
1110
1111#---------------------------------------------------------
Chris Lattner8b04ea72009-02-26 17:47:49 +00001112# Prune Exports
1113#---------------------------------------------------------
1114
1115# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1116# not exporting all of the weak symbols from the binary. This reduces dyld
1117# startup time by 4x on darwin in some cases.
1118ifdef TOOL_NO_EXPORTS
1119ifeq ($(OS),Darwin)
Chris Lattnerc6c51352009-03-10 17:15:56 +00001120
1121# Tiger tools don't support this.
1122ifneq ($(DARWIN_MAJVERS),4)
Chris Lattner8b04ea72009-02-26 17:47:49 +00001123LD.Flags += -Wl,-exported_symbol -Wl,_main
1124endif
Chris Lattnerc6c51352009-03-10 17:15:56 +00001125endif
Chris Lattner8b04ea72009-02-26 17:47:49 +00001126
1127ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
Chris Lattner7c024612009-02-26 18:38:40 +00001128LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
Chris Lattner8b04ea72009-02-26 17:47:49 +00001129endif
1130endif
1131
1132
1133#---------------------------------------------------------
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001134# Provide targets for building the tools
1135#---------------------------------------------------------
1136all-local:: $(ToolBuildPath)
1137
1138clean-local::
1139ifneq ($(strip $(ToolBuildPath)),)
1140 -$(Verb) $(RM) -f $(ToolBuildPath)
1141endif
1142
1143ifdef EXAMPLE_TOOL
1144$(ToolBuildPath): $(ExmplDir)/.dir
1145else
1146$(ToolBuildPath): $(ToolDir)/.dir
1147endif
1148
1149$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1150 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001151 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001152 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1153 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
Misha Brukman89fe5162009-01-08 02:11:55 +00001154 $(StripWarnMsg)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001155
1156ifdef NO_INSTALL
1157install-local::
1158 $(Echo) Install circumvented with NO_INSTALL
1159uninstall-local::
1160 $(Echo) Uninstall circumvented with NO_INSTALL
1161else
1162DestTool = $(PROJ_bindir)/$(TOOLNAME)
1163
1164install-local:: $(DestTool)
1165
Mike Stump98f72e02009-02-12 23:45:11 +00001166$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001167 $(Echo) Installing $(BuildMode) $(DestTool)
1168 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1169
1170uninstall-local::
1171 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1172 -$(Verb) $(RM) -f $(DestTool)
1173endif
1174endif
1175
1176###############################################################################
Misha Brukman89fe5162009-01-08 02:11:55 +00001177# Object Build Rules: Build object files based on sources
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001178###############################################################################
1179
1180# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1181ifeq ($(OS),HP-UX)
1182 DISABLE_AUTO_DEPENDENCIES=1
1183endif
1184
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001185# Provide rule sets for when dependency generation is enabled
1186ifndef DISABLE_AUTO_DEPENDENCIES
1187
1188#---------------------------------------------------------
Nick Lewycky8d91e192009-02-26 07:44:16 +00001189# Create .o files in the ObjDir directory from the .cpp and .c files...
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001190#---------------------------------------------------------
1191
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001192DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
Nick Lewycky8d91e192009-02-26 07:44:16 +00001193 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
Gabor Greif14c4c8e2008-02-27 13:34:15 +00001194
Daniel Dunbar285108f2009-05-12 06:35:50 +00001195# If the build succeeded, move the dependency file over, otherwise
1196# remove it.
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001197DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1198 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1199
Nick Lewycky8d91e192009-02-26 07:44:16 +00001200$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001201 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001202 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001203 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001204
Nick Lewycky8d91e192009-02-26 07:44:16 +00001205$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001206 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001207 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001208 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001209
Nick Lewycky8d91e192009-02-26 07:44:16 +00001210$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001211 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001212 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
Chris Lattner87fd1ec2007-12-31 23:58:31 +00001213 $(DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001214
1215#---------------------------------------------------------
1216# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1217#---------------------------------------------------------
1218
Daniel Dunbar285108f2009-05-12 06:35:50 +00001219BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1220 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1221
1222# If the build succeeded, move the dependency file over, otherwise
1223# remove it.
1224BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1225 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1226
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001227$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1228 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001229 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1230 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1231 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001232
1233$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1234 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001235 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1236 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1237 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001238
1239$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1240 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
Daniel Dunbar285108f2009-05-12 06:35:50 +00001241 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1242 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1243 $(BC_DEPEND_MOVEFILE)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001244
1245# Provide alternate rule sets if dependencies are disabled
1246else
1247
Nick Lewycky8d91e192009-02-26 07:44:16 +00001248$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001250 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001251
Nick Lewycky8d91e192009-02-26 07:44:16 +00001252$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001253 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001254 $(Compile.CXX) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001255
Nick Lewycky8d91e192009-02-26 07:44:16 +00001256$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001257 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001258 $(Compile.C) $< -o $@
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001259
1260$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1261 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1262 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001263
1264$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1265 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1266 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001267
1268$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1269 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1270 $(BCCompile.C) $< -o $@ -S -emit-llvm
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001271
1272endif
1273
1274
1275## Rules for building preprocessed (.i/.ii) outputs.
1276$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1277 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1278 $(Verb) $(Preprocess.CXX) $< -o $@
1279
1280$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1281 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1282 $(Verb) $(Preprocess.CXX) $< -o $@
1283
1284$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1285 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1286 $(Verb) $(Preprocess.C) $< -o $@
1287
1288
1289$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1290 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001291 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001292
1293$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1294 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001295 $(Compile.CXX) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001296
1297$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1298 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
Nick Lewycky8d91e192009-02-26 07:44:16 +00001299 $(Compile.C) $< -o $@ -S
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001300
1301
1302# make the C and C++ compilers strip debug info out of bytecode libraries.
1303ifdef DEBUG_RUNTIME
1304$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1305 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1306 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1307else
1308$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1309 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1310 $(Verb) $(LLVMAS) $< -o - | \
1311 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1312endif
1313
1314
1315#---------------------------------------------------------
1316# Provide rule to build .bc files from .ll sources,
1317# regardless of dependencies
1318#---------------------------------------------------------
1319$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1320 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1321 $(Verb) $(LLVMAS) $< -f -o $@
1322
1323###############################################################################
1324# TABLEGEN: Provide rules for running tblgen to produce *.inc files
1325###############################################################################
1326
1327ifdef TARGET
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001328TABLEGEN_INC_FILES_COMMON = 1
1329endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001330
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001331ifdef LLVMC_BUILD_AUTOGENERATED_INC
1332TABLEGEN_INC_FILES_COMMON = 1
1333endif
1334
1335ifdef TABLEGEN_INC_FILES_COMMON
1336
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001337INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1338INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1339.PRECIOUS: $(INCTMPFiles) $(INCFiles)
1340
Misha Brukman89fe5162009-01-08 02:11:55 +00001341# INCFiles rule: All of the tblgen generated files are emitted to
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1343# us to only "touch" the real file if the contents of it change. IOW, if
Daniel Dunbar90f3e7f2008-11-03 17:33:36 +00001344# tblgen is modified, all of the .inc.tmp files are regenerated, but no
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001345# dependencies of the .inc files are, unless the contents of the .inc file
1346# changes.
1347$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1348 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1349
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001350endif # TABLEGEN_INC_FILES_COMMON
1351
1352ifdef TARGET
1353
1354TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1355 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1356 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1357 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1358 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1359 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1360 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1361
Rafael Espindola4d8cd532009-03-10 17:58:54 +00001362# All of these files depend on tblgen and the .td files.
1363$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1364
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001365$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1366$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1367 $(Echo) "Building $(<F) register names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001368 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001369
1370$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1371$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1372 $(Echo) "Building $(<F) register information header with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001373 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001374
1375$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1376$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1377 $(Echo) "Building $(<F) register info implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001378 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001379
1380$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1381$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1382 $(Echo) "Building $(<F) instruction names with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001383 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001384
1385$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1386$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1387 $(Echo) "Building $(<F) instruction information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001388 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001389
1390$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1391$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1392 $(Echo) "Building $(<F) assembly writer with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001393 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001394
1395$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1396$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1397 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
Misha Brukman89fe5162009-01-08 02:11:55 +00001398 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001399
1400$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1401$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1402 $(Echo) "Building $(<F) code emitter with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001403 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001404
1405$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1406$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
Dan Gohmanb75dead2008-08-13 20:19:35 +00001407 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001408 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001409
Dan Gohmanb75dead2008-08-13 20:19:35 +00001410$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1411$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1412 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1413 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1414
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001415$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1416$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1417 $(Echo) "Building $(<F) subtarget information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001418 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001419
1420$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1421$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1422 $(Echo) "Building $(<F) calling convention information with tblgen"
Chris Lattner1b0a3a12008-01-15 23:27:40 +00001423 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001424
Dale Johannesenfe5921a2009-02-05 01:49:45 +00001425$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1426$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1427 $(Echo) "Building $(<F) calling convention information with tblgen"
1428 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1429
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001430clean-local::
1431 -$(Verb) $(RM) -f $(INCFiles)
1432
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001433endif # TARGET
1434
1435ifdef LLVMC_BUILD_AUTOGENERATED_INC
1436
Mikhail Glushenkov3b335a42009-04-21 19:46:10 +00001437LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1438 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
Mikhail Glushenkov72145e32009-03-02 09:42:59 +00001439
1440TDFiles := $(LLVMCPluginSrc) \
1441 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1442
1443$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1444 $(TBLGEN) $(TD_COMMON)
1445 $(Echo) "Building LLVMC configuration library with tblgen"
1446 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1447
1448endif # LLVMC_BUILD_AUTOGENERATED_INC
1449
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001450###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001451# OTHER RULES: Other rules needed
1452###############################################################################
1453
1454# To create postscript files from dot files...
1455ifneq ($(DOT),false)
1456%.ps: %.dot
1457 $(DOT) -Tps < $< > $@
1458else
1459%.ps: %.dot
1460 $(Echo) "Cannot build $@: The program dot is not installed"
1461endif
1462
1463# This rules ensures that header files that are removed still have a rule for
1464# which they can be "generated." This allows make to ignore them and
1465# reproduce the dependency lists.
1466%.h:: ;
1467%.hpp:: ;
1468
1469# Define clean-local to clean the current directory. Note that this uses a
Misha Brukman89fe5162009-01-08 02:11:55 +00001470# very conservative approach ensuring that empty variables do not cause
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001471# errors or disastrous removal.
1472clean-local::
Jim Grosbache4c032e2008-10-02 22:56:44 +00001473ifneq ($(strip $(ObjRootDir)),)
1474 -$(Verb) $(RM) -rf $(ObjRootDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001475endif
1476 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1477ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1478 -$(Verb) $(RM) -f *$(SHLIBEXT)
1479endif
1480
1481clean-all-local::
1482 -$(Verb) $(RM) -rf Debug Release Profile
1483
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001484
1485###############################################################################
1486# DEPENDENCIES: Include the dependency files if we should
1487###############################################################################
1488ifndef DISABLE_AUTO_DEPENDENCIES
1489
1490# If its not one of the cleaning targets
Daniel Dunbara89194e2008-10-03 19:11:19 +00001491ifndef IS_CLEANING_TARGET
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001492
1493# Get the list of dependency files
Daniel Dunbar285108f2009-05-12 06:35:50 +00001494DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1495DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1496
1497# Include bitcode dependency files if using bitcode libraries
1498ifdef BYTECODE_LIBRARY
1499DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1500endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001501
Reid Spencerdfb3d5b2007-07-23 08:20:46 +00001502-include $(DependFiles) ""
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001503
1504endif
1505
Misha Brukman89fe5162009-01-08 02:11:55 +00001506endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001507
1508###############################################################################
1509# CHECK: Running the test suite
1510###############################################################################
1511
Bill Wendlingea4af672009-04-09 18:26:57 +00001512check::
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001513 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1514 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1515 $(EchoCmd) Running test suite ; \
1516 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1517 TESTSUITE=$(TESTSUITE) ; \
1518 else \
1519 $(EchoCmd) No Makefile in test directory ; \
1520 fi ; \
1521 else \
1522 $(EchoCmd) No test directory ; \
1523 fi
1524
1525###############################################################################
Bill Wendling2e3646a2009-01-04 23:12:21 +00001526# UNITTESTS: Running the unittests test suite
1527###############################################################################
1528
Bill Wendlingea4af672009-04-09 18:26:57 +00001529unittests::
Bill Wendling2e3646a2009-01-04 23:12:21 +00001530 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1531 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1532 $(EchoCmd) Running unittests test suite ; \
1533 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1534 else \
1535 $(EchoCmd) No Makefile in unittests directory ; \
1536 fi ; \
1537 else \
1538 $(EchoCmd) No unittests directory ; \
1539 fi
1540
1541###############################################################################
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001542# DISTRIBUTION: Handle construction of a distribution tarball
1543###############################################################################
1544
1545#------------------------------------------------------------------------
1546# Define distribution related variables
1547#------------------------------------------------------------------------
1548DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1549DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1550TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1551DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1552DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1553DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1554DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1555 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1556 Makefile.config.in configure autoconf
1557DistOther := $(notdir $(wildcard \
1558 $(PROJ_SRC_DIR)/*.h \
1559 $(PROJ_SRC_DIR)/*.td \
1560 $(PROJ_SRC_DIR)/*.def \
1561 $(PROJ_SRC_DIR)/*.ll \
1562 $(PROJ_SRC_DIR)/*.in))
1563DistSubDirs := $(SubDirs)
1564DistSources = $(Sources) $(EXTRA_DIST)
1565DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1566
1567#------------------------------------------------------------------------
1568# We MUST build distribution with OBJ_DIR != SRC_DIR
1569#------------------------------------------------------------------------
1570ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1571dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1572 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1573
1574else
1575
1576#------------------------------------------------------------------------
1577# Prevent attempt to run dist targets from anywhere but the top level
1578#------------------------------------------------------------------------
1579ifneq ($(LEVEL),.)
1580dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1581 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1582else
1583
1584#------------------------------------------------------------------------
1585# Provide the top level targets
1586#------------------------------------------------------------------------
1587
1588dist-gzip:: $(DistTarGZip)
1589
1590$(DistTarGZip) : $(TopDistDir)/.makedistdir
1591 $(Echo) Packing gzipped distribution tar file.
1592 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1593 $(GZIP) -c > "$(DistTarGZip)"
1594
1595dist-bzip2:: $(DistTarBZ2)
1596
1597$(DistTarBZ2) : $(TopDistDir)/.makedistdir
1598 $(Echo) Packing bzipped distribution tar file.
1599 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1600 $(BZIP2) -c >$(DistTarBZ2)
1601
1602dist-zip:: $(DistZip)
1603
1604$(DistZip) : $(TopDistDir)/.makedistdir
1605 $(Echo) Packing zipped distribution file.
1606 $(Verb) rm -f $(DistZip)
1607 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1608
Misha Brukman89fe5162009-01-08 02:11:55 +00001609dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001610 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1611
1612DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1613
1614dist-check:: $(DistTarGZip)
1615 $(Echo) Checking distribution tar file.
1616 $(Verb) if test -d $(DistCheckDir) ; then \
1617 $(RM) -rf $(DistCheckDir) ; \
1618 fi
1619 $(Verb) $(MKDIR) $(DistCheckDir)
1620 $(Verb) cd $(DistCheckDir) && \
1621 $(MKDIR) $(DistCheckDir)/build && \
1622 $(MKDIR) $(DistCheckDir)/install && \
1623 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1624 cd build && \
1625 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1626 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1627 $(MAKE) all && \
1628 $(MAKE) check && \
Bill Wendling2e3646a2009-01-04 23:12:21 +00001629 $(MAKE) unittests && \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001630 $(MAKE) install && \
1631 $(MAKE) uninstall && \
1632 $(MAKE) dist-clean && \
1633 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1634
1635dist-clean::
1636 $(Echo) Cleaning distribution files
1637 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1638 $(DistCheckDir)
1639
1640endif
1641
1642#------------------------------------------------------------------------
1643# Provide the recursive distdir target for building the distribution directory
1644#------------------------------------------------------------------------
1645distdir: $(DistDir)/.makedistdir
1646$(DistDir)/.makedistdir: $(DistSources)
1647 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1648 if test -d "$(DistDir)" ; then \
1649 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1650 exit 1 ; \
1651 fi ; \
1652 $(EchoCmd) Removing old $(DistDir) ; \
1653 $(RM) -rf $(DistDir); \
1654 $(EchoCmd) Making 'all' to verify build ; \
1655 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1656 fi
1657 $(Echo) Building Distribution Directory $(DistDir)
Misha Brukman89fe5162009-01-08 02:11:55 +00001658 $(Verb) $(MKDIR) $(DistDir)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001659 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1660 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1661 for file in $(DistFiles) ; do \
1662 case "$$file" in \
1663 $(PROJ_SRC_DIR)/*) \
1664 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1665 ;; \
1666 $(PROJ_SRC_ROOT)/*) \
1667 file=`echo "$$file" | \
1668 sed "s#^$$srcrootstrip/##"` \
1669 ;; \
1670 esac; \
1671 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1672 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1673 from_dir="$(PROJ_SRC_DIR)" ; \
1674 elif test -f "$$file" || test -d "$$file" ; then \
1675 from_dir=. ; \
1676 fi ; \
1677 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1678 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1679 to_dir="$(DistDir)/$$dir"; \
1680 $(MKDIR) "$$to_dir" ; \
1681 else \
1682 to_dir="$(DistDir)"; \
1683 fi; \
1684 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1685 if test -n "$$mid_dir" ; then \
1686 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1687 fi ; \
1688 if test -d "$$from_dir/$$file"; then \
1689 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1690 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1691 cd $(PROJ_SRC_DIR) ; \
1692 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1693 ( cd $$to_dir ; $(TAR) xf - ) ; \
1694 cd $(PROJ_OBJ_DIR) ; \
1695 else \
1696 cd $$from_dir ; \
1697 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1698 ( cd $$to_dir ; $(TAR) xf - ) ; \
1699 cd $(PROJ_OBJ_DIR) ; \
1700 fi; \
1701 elif test -f "$$from_dir/$$file" ; then \
1702 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1703 elif test -L "$$from_dir/$$file" ; then \
1704 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1705 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1706 $(EchoCmd) "===== WARNING: Distribution Source " \
1707 "$$from_dir/$$file Not Found!" ; \
1708 elif test "$(Verb)" != '@' ; then \
1709 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1710 fi; \
1711 done
1712 $(Verb) for subdir in $(DistSubDirs) ; do \
1713 if test "$$subdir" \!= "." ; then \
1714 new_distdir="$(DistDir)/$$subdir" ; \
1715 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1716 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1717 DistDir="$$new_distdir" distdir ) || exit 1; \
1718 fi; \
1719 done
1720 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1721 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1722 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1723 -name .svn \) -print` ;\
1724 $(MAKE) dist-hook ; \
1725 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1726 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1727 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1728 -o ! -type d ! -perm -444 -exec \
1729 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1730 || chmod -R a+r $(DistDir) ; \
1731 fi
1732
1733# This is invoked by distdir target, define it as a no-op to avoid errors if not
1734# defined by user.
1735dist-hook::
1736
1737endif
1738
1739###############################################################################
1740# TOP LEVEL - targets only to apply at the top level directory
1741###############################################################################
1742
1743ifeq ($(LEVEL),.)
1744
1745#------------------------------------------------------------------------
1746# Install support for the project's include files:
1747#------------------------------------------------------------------------
1748ifdef NO_INSTALL
1749install-local::
1750 $(Echo) Install circumvented with NO_INSTALL
1751uninstall-local::
1752 $(Echo) Uninstall circumvented with NO_INSTALL
1753else
1754install-local::
1755 $(Echo) Installing include files
1756 $(Verb) $(MKDIR) $(PROJ_includedir)
1757 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1758 cd $(PROJ_SRC_ROOT)/include && \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001759 for hdr in `find . -type f '!' '(' -name '*~' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001760 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1761 grep -v .svn` ; do \
1762 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1763 if test \! -d "$$instdir" ; then \
1764 $(EchoCmd) Making install directory $$instdir ; \
1765 $(MKDIR) $$instdir ;\
1766 fi ; \
1767 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1768 done ; \
1769 fi
1770ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1771 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1772 cd $(PROJ_OBJ_ROOT)/include && \
1773 for hdr in `find . -type f -print | grep -v CVS` ; do \
1774 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1775 done ; \
1776 fi
1777endif
1778
1779uninstall-local::
1780 $(Echo) Uninstalling include files
1781 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1782 cd $(PROJ_SRC_ROOT)/include && \
1783 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
Chris Lattnerbfaed4c2009-01-02 07:16:45 +00001784 '!' '(' -name '*~' -o -name '.#*' \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001785 -o -name '*.in' ')' -print ')' | \
1786 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1787 cd $(PROJ_SRC_ROOT)/include && \
1788 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1789 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1790 fi
1791endif
1792endif
1793
1794check-line-length:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001795 @echo searching for overlength lines in files: $(Sources)
1796 @echo
1797 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001798 egrep -n '.{81}' $(Sources) /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001799
1800check-for-tabs:
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001801 @echo searching for tabs in files: $(Sources)
1802 @echo
1803 @echo
Gabor Greif3033d032008-08-28 22:32:39 +00001804 egrep -n ' ' $(Sources) /dev/null
Gabor Greifb91ea9d2008-05-15 10:04:30 +00001805
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001806check-footprint:
1807 @ls -l $(LibDir) | awk '\
1808 BEGIN { sum = 0; } \
1809 { sum += $$5; } \
1810 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1811 @ls -l $(ToolDir) | awk '\
1812 BEGIN { sum = 0; } \
1813 { sum += $$5; } \
1814 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1815#------------------------------------------------------------------------
1816# Print out the directories used for building
1817#------------------------------------------------------------------------
1818printvars::
1819 $(Echo) "BuildMode : " '$(BuildMode)'
1820 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1821 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1822 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1823 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1824 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1825 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1826 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1827 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1828 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1829 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1830 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1831 $(Echo) "UserTargets : " '$(UserTargets)'
1832 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1833 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1834 $(Echo) "ObjDir : " '$(ObjDir)'
1835 $(Echo) "LibDir : " '$(LibDir)'
1836 $(Echo) "ToolDir : " '$(ToolDir)'
1837 $(Echo) "ExmplDir : " '$(ExmplDir)'
1838 $(Echo) "Sources : " '$(Sources)'
1839 $(Echo) "TDFiles : " '$(TDFiles)'
1840 $(Echo) "INCFiles : " '$(INCFiles)'
1841 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1842 $(Echo) "PreConditions: " '$(PreConditions)'
1843 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1844 $(Echo) "Compile.C : " '$(Compile.C)'
1845 $(Echo) "Archive : " '$(Archive)'
1846 $(Echo) "YaccFiles : " '$(YaccFiles)'
1847 $(Echo) "LexFiles : " '$(LexFiles)'
1848 $(Echo) "Module : " '$(Module)'
1849 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1850 $(Echo) "SubDirs : " '$(SubDirs)'
1851 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1852 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001853
1854###
1855# Debugging
1856
Daniel Dunbara6b02752009-03-06 22:23:25 +00001857# General debugging rule, use 'make dbg-print-XXX' to print the
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001858# definition, value and origin of XXX.
Daniel Dunbara6b02752009-03-06 22:23:25 +00001859make-print-%:
Daniel Dunbar190b3d52009-02-21 20:42:39 +00001860 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))