1 #===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 #===------------------------------------------------------------------------===#
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.
13 #===-----------------------------------------------------------------------====#
15 ################################################################################
16 # TARGETS: Define standard targets that can be invoked
17 ################################################################################
19 #--------------------------------------------------------------------
20 # Define the various target sets
21 #--------------------------------------------------------------------
22 RecursiveTargets := all clean clean-all install uninstall install-bytecode \
24 LocalTargets := all-local clean-local clean-all-local check-local \
25 install-local printvars uninstall-local \
26 install-bytecode-local
27 TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
29 UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30 InternalTargets := preconditions distdir dist-hook
32 ################################################################################
33 # INITIALIZATION: Basic things the makefile needs
34 ################################################################################
36 #--------------------------------------------------------------------
37 # Set the VPATH so that we can find source files.
38 #--------------------------------------------------------------------
41 #--------------------------------------------------------------------
42 # Reset the list of suffixes we know how to build.
43 #--------------------------------------------------------------------
45 .SUFFIXES: .c .cpp .cc .h .hpp .o .a .td .ps .dot .m .mm
46 .SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
48 #--------------------------------------------------------------------
49 # Mark all of these targets as phony to avoid implicit rule search
50 #--------------------------------------------------------------------
51 .PHONY: $(UserTargets) $(InternalTargets)
53 #--------------------------------------------------------------------
54 # Make sure all the user-target rules are double colon rules and
55 # they are defined first.
56 #--------------------------------------------------------------------
60 #------------------------------------------------------------------------
61 # LLVMBuild Integration
62 #------------------------------------------------------------------------
64 # We use llvm-build to generate all the data required by the Makefile based
65 # build system in one swoop:
67 # - We generate a file (a Makefile fragment) in the object root which contains
68 # all the definitions that are required by Makefiles across the entire
71 # - We generate the library table used by llvm-config.
73 # - We generate the dependencies for the Makefile fragment, so that we will
74 # automatically reconfigure outselves.
76 # The path to the llvm-build tool itself.
77 LLVMBuildTool := $(PROJ_SRC_ROOT)/utils/llvm-build/llvm-build
79 # The files we are going to generate using llvm-build.
80 LLVMBuildMakeFrag := $(PROJ_OBJ_ROOT)/Makefile.llvmbuild
81 LLVMBuildCMakeFrag := $(PROJ_OBJ_ROOT)/LLVMBuild.cmake
82 LLVMBuildCMakeExportsFrag := $(PROJ_OBJ_ROOT)/cmake/modules/LLVMBuildExports.cmake
83 LLVMBuildMakeFrags := \
84 $(LLVMBuildMakeFrag) \
85 $(LLVMBuildCMakeFrag) \
86 $(LLVMBuildCMakeExportsFrag)
87 LLVMConfigLibraryDependenciesInc := \
88 $(PROJ_OBJ_ROOT)/tools/llvm-config/LibraryDependencies.inc
90 # This is for temporary backwards compatibility.
91 ifndef TARGET_NATIVE_ARCH
92 TARGET_NATIVE_ARCH := $(ARCH)
95 # The rule to create the LLVMBuild Makefile fragment as well as the llvm-config
98 # Note that this target gets its real dependencies generated for us by
101 # We include a dependency on this Makefile to ensure that changes to the
102 # generation command get picked up.
103 $(LLVMBuildMakeFrags): $(PROJ_SRC_ROOT)/Makefile.rules \
104 $(PROJ_OBJ_ROOT)/Makefile.config
105 $(Echo) Constructing LLVMBuild project information.
106 $(Verb)$(PYTHON) $(LLVMBuildTool) \
107 --native-target "$(TARGET_NATIVE_ARCH)" \
108 --enable-targets "$(TARGETS_TO_BUILD)" \
109 --enable-optional-components "$(OPTIONAL_COMPONENTS)" \
110 --write-library-table $(LLVMConfigLibraryDependenciesInc) \
111 --write-make-fragment $(LLVMBuildMakeFrag) \
112 --write-cmake-fragment $(LLVMBuildCMakeFrag) \
113 --write-cmake-exports-fragment $(LLVMBuildCMakeExportsFrag)
115 # For completeness, let Make know how the extra files are generated.
116 $(LLVMConfigLibraryDependenciesInc): $(LLVMBuildMakeFrags)
118 # Include the generated Makefile fragment.
120 # We currently only include the dependencies for the fragment itself if we are
121 # at the top-level. Otherwise, recursive invocations would ends up doing
122 # substantially more redundant stat'ing.
124 # This means that we won't properly regenerate things for developers used to
125 # building from a subdirectory, but that is always somewhat unreliable.
127 LLVMBUILD_INCLUDE_DEPENDENCIES := 1
129 # Clean the generated makefile fragment at the top-level.
131 -$(Verb) $(RM) -f $(LLVMBuildMakeFrags)
133 -include $(LLVMBuildMakeFrag)
135 ################################################################################
136 # PRECONDITIONS: that which must be built/checked first
137 ################################################################################
139 SrcMakefiles := $(filter %Makefile %Makefile.tests,\
140 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
141 ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
142 ConfigureScript := $(PROJ_SRC_ROOT)/configure
143 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
144 MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
145 MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
146 MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
147 MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
148 PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
149 ifneq ($(MakefileCommonIn),)
150 PreConditions += $(MakefileCommon)
153 ifneq ($(MakefileConfigIn),)
154 PreConditions += $(MakefileConfig)
157 preconditions: $(PreConditions)
159 #------------------------------------------------------------------------
160 # Make sure the BUILT_SOURCES are built first
161 #------------------------------------------------------------------------
162 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
165 ifneq ($(strip $(BUILT_SOURCES)),)
166 -$(Verb) $(RM) -f $(BUILT_SOURCES)
169 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
171 $(Verb) if test -x config.status ; then \
172 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
173 $(MKDIR) .spotless.save ; \
174 $(MV) config.status .spotless.save ; \
175 $(MV) mklib .spotless.save ; \
176 $(MV) projects .spotless.save ; \
178 $(MV) .spotless.save/config.status . ; \
179 $(MV) .spotless.save/mklib . ; \
180 $(MV) .spotless.save/projects . ; \
181 $(RM) -rf .spotless.save ; \
182 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
183 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
184 $(ConfigStatusScript) ; \
186 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
190 $(EchoCmd) "spotless target not supported for objdir == srcdir"
193 $(BUILT_SOURCES) : $(ObjMakefiles)
195 #------------------------------------------------------------------------
196 # Make sure we're not using a stale configuration
197 #------------------------------------------------------------------------
199 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
200 $(Verb) cd $(PROJ_OBJ_ROOT) && \
201 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
202 $(ConfigStatusScript)
204 .PRECIOUS: $(ConfigStatusScript)
205 $(ConfigStatusScript): $(ConfigureScript)
206 $(Echo) Reconfiguring with $<
207 $(Verb) cd $(PROJ_OBJ_ROOT) && \
208 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
209 $(ConfigStatusScript)
211 #------------------------------------------------------------------------
212 # Make sure the configuration makefile is up to date
213 #------------------------------------------------------------------------
214 ifneq ($(MakefileConfigIn),)
215 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
216 $(Echo) Regenerating $@
217 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
220 ifneq ($(MakefileCommonIn),)
221 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
222 $(Echo) Regenerating $@
223 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
226 #------------------------------------------------------------------------
227 # If the Makefile in the source tree has been updated, copy it over into the
228 # build tree. But, only do this if the source and object makefiles differ
229 #------------------------------------------------------------------------
231 PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
234 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
236 Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
237 $(Echo) "Updating Makefile"
238 $(Verb) $(MKDIR) $(@D)
239 $(Verb) $(CP) -f $< $@
241 # Copy the Makefile.* files unless we're in the root directory which avoids
242 # the copying of Makefile.config.in or other things that should be explicitly
244 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
246 *Makefile.rules) ;; \
248 *) $(EchoCmd) "Updating $(@F)" ; \
255 #------------------------------------------------------------------------
256 # Set up the basic dependencies
257 #------------------------------------------------------------------------
258 $(UserTargets):: $(PreConditions)
262 clean-all:: clean-local clean-all-local
263 install:: install-local
264 uninstall:: uninstall-local
265 install-local:: all-local
266 install-bytecode:: install-bytecode-local
268 ###############################################################################
269 # VARIABLES: Set up various variables based on configuration data
270 ###############################################################################
272 # Variable for if this make is for a "cleaning" target
273 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
277 #--------------------------------------------------------------------
278 # Variables derived from configuration we are building
279 #--------------------------------------------------------------------
282 ifeq ($(ENABLE_OPTIMIZED),1)
284 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
285 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin Darwin DragonFly FreeBSD GNU/kFreeBSD))
286 OmitFramePointer := -fomit-frame-pointer
289 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
290 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
291 LD.Flags += $(OPTIMIZE_OPTION)
293 BuildMode := $(BuildMode)+Debug
299 ifdef NO_DEBUG_SYMBOLS
300 BuildMode := Unoptimized
306 ifeq ($(ENABLE_SPLIT_DWARF), 1)
307 CXX.Flags += -gsplit-dwarf
308 C.Flags += -gsplit-dwarf
317 ifeq ($(ENABLE_LIBCPP),1)
318 CXX.Flags += -stdlib=libc++
319 LD.Flags += -stdlib=libc++
322 ifeq ($(ENABLE_CXX1Y),1)
323 CXX.Flags += -std=c++1y
325 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
326 # MinGW and Cygwin are a bit stricter and lack things like
327 # 'strdup', 'stricmp', etc in c++11 mode.
328 CXX.Flags += -std=gnu++11
330 CXX.Flags += -std=c++11
334 ifeq ($(ENABLE_WERROR),1)
339 ifeq ($(ENABLE_PROFILING),1)
340 BuildMode := $(BuildMode)+Profile
341 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
342 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
343 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg
347 ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
348 CXX.Flags += -fvisibility-inlines-hidden
351 ifdef ENABLE_EXPENSIVE_CHECKS
352 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
353 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
357 # IF REQUIRES_EH=1 is specified then don't disable exceptions
359 CXX.Flags += -fno-exceptions
361 # If the library requires EH, it also requires RTTI.
365 ifdef REQUIRES_FRAME_POINTER
366 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
367 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
368 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
371 # If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
372 ifneq ($(REQUIRES_RTTI), 1)
373 CXX.Flags += -fno-rtti
376 ifeq ($(ENABLE_COVERAGE),1)
377 BuildMode := $(BuildMode)+Coverage
378 CXX.Flags += -ftest-coverage -fprofile-arcs
379 C.Flags += -ftest-coverage -fprofile-arcs
380 LD.Flags += -ftest-coverage -fprofile-arcs
383 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
384 # then disable assertions by defining the appropriate preprocessor symbols.
385 ifeq ($(DISABLE_ASSERTIONS),1)
386 CPP.Defines += -DNDEBUG
388 BuildMode := $(BuildMode)+Asserts
389 CPP.Defines += -D_DEBUG
392 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
393 # configured), then enable expensive checks by defining the
394 # appropriate preprocessor symbols.
395 ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
396 BuildMode := $(BuildMode)+Checks
397 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
400 # LOADABLE_MODULE implies several other things so we force them to be
402 ifdef LOADABLE_MODULE
404 LINK_LIBS_IN_SHARED := 1
412 ifeq ($(ENABLE_PIC),1)
413 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
414 # Nothing. Win32 defaults to PIC and warns when given -fPIC
416 ifeq ($(HOST_OS),Darwin)
417 # Common symbols not allowed in dylib files
418 CXX.Flags += -fno-common
419 C.Flags += -fno-common
421 # Linux and others; pass -fPIC
427 ifeq ($(HOST_OS),Darwin)
428 CXX.Flags += -mdynamic-no-pic
429 C.Flags += -mdynamic-no-pic
433 # Support makefile variable to disable any kind of timestamp/non-deterministic
434 # info from being used in the build.
435 ifeq ($(ENABLE_TIMESTAMPS),1)
436 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
438 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
441 ifeq ($(HOST_OS),MingW)
443 CPP.Defines += -D__NO_CTYPE_INLINE
444 ifeq ($(LLVM_CROSS_COMPILING),1)
445 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
447 LD.Flags += -Wl,--allow-multiple-definition
452 CPP.BaseFlags += $(CPP.Defines)
455 # Make Floating point IEEE compliant on Alpha.
458 CPP.BaseFlags += -mieee
459 ifeq ($(ENABLE_PIC),0)
461 CPP.BaseFlags += -fPIC
464 LD.Flags += -Wl,--no-relax
467 # GNU ld/PECOFF accepts but ignores them below;
471 # FIXME: autoconf should be aware of them.
472 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
473 HAVE_LINK_VERSION_SCRIPT := 0
475 RDYNAMIC := -Wl,--export-all-symbols
478 #--------------------------------------------------------------------
479 # Directory locations
480 #--------------------------------------------------------------------
482 ifeq ($(LLVM_CROSS_COMPILING),1)
483 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
486 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
487 ObjDir := $(ObjRootDir)
488 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
489 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
490 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
491 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
492 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
493 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
495 #--------------------------------------------------------------------
496 # Locations of shared libraries
497 #--------------------------------------------------------------------
500 SharedLibDir := $(LibDir)
501 LLVMSharedLibDir := $(LLVMLibDir)
503 # Win32.DLL prefers to be located on the "PATH" of binaries.
504 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
505 SharedLibDir := $(ToolDir)
506 LLVMSharedLibDir := $(LLVMToolDir)
508 ifeq ($(HOST_OS),Cygwin)
515 #--------------------------------------------------------------------
516 # Full Paths To Compiled Tools and Utilities
517 #--------------------------------------------------------------------
518 EchoCmd := $(ECHO) llvm[$(MAKELEVEL)]:
519 ifdef BUILD_DIRS_ONLY
520 EchoCmd := $(EchoCmd) "(build tools)":
525 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
528 ifeq ($(LLVM_CROSS_COMPILING),1)
529 LLVM_TBLGEN := $(BuildLLVMToolDir)/llvm-tblgen$(BUILD_EXEEXT)
531 LLVM_TBLGEN := $(LLVMToolDir)/llvm-tblgen$(EXEEXT)
534 ifeq ($(LLVM_CROSS_COMPILING),1)
535 LLVM_CONFIG := $(BuildLLVMToolDir)/llvm-config$(BUILD_EXEEXT)
537 LLVM_CONFIG := $(LLVMToolDir)/llvm-config$(EXEEXT)
540 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
543 LLI := $(LLVMToolDir)/lli$(EXEEXT)
546 LLC := $(LLVMToolDir)/llc$(EXEEXT)
549 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
552 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
555 LLVMLINK := $(LLVMToolDir)/llvm-link$(EXEEXT)
558 #--------------------------------------------------------------------
559 # Adjust to user's request
560 #--------------------------------------------------------------------
562 ifeq ($(HOST_OS),Darwin)
563 ifdef MACOSX_DEPLOYMENT_TARGET
564 DARWIN_VERSION := $(MACOSX_DEPLOYMENT_TARGET)
566 DARWIN_VERSION := `sw_vers -productVersion`
568 # Strip a number like 10.4.7 to 10.4
569 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]+).*/\1/')
570 # Get "4" out of 10.4 for later pieces in the makefile.
571 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]+).*/\1/')
573 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
574 SharedLinkOptions := -dynamiclib
575 ifdef DEPLOYMENT_TARGET
576 SharedLinkOptions += $(DEPLOYMENT_TARGET)
579 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
583 SharedLinkOptions=-shared
586 ifeq ($(TARGET_OS),Darwin)
587 ifdef DEPLOYMENT_TARGET
588 TargetCommonOpts += $(DEPLOYMENT_TARGET)
591 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
597 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
598 ifneq ($(HOST_OS),Darwin)
599 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
601 LD.Flags += -Wl,-install_name -Wl,"@rpath/lib$(LIBRARYNAME)$(SHLIBEXT)"
613 # Adjust settings for verbose mode
616 AR.Flags += >/dev/null 2>/dev/null
617 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
619 ConfigureScriptFLAGS :=
622 # By default, strip symbol information from executable
624 Strip := $(PLATFORMSTRIPOPTS)
625 StripWarnMsg := "(without symbols)"
626 Install.StripFlag += -s
629 # By default, strip dead symbols at link time
630 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
631 ifneq ($(HOST_OS),Darwin)
632 ifneq ($(HOST_ARCH),Mips)
633 CXX.Flags += -ffunction-sections -fdata-sections
638 ifeq ($(HOST_OS),Darwin)
639 LD.Flags += -Wl,-dead_strip
641 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
642 LD.Flags += -Wl,--gc-sections
647 # Adjust linker flags for building an executable
648 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
649 ifndef TOOL_NO_EXPORTS
650 LD.Flags += $(RDYNAMIC)
652 ifneq ($(HOST_OS), Darwin)
654 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
657 ifneq ($(DARWIN_MAJVERS),4)
658 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
661 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
662 LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile)
668 #----------------------------------------------------------
669 # Options To Invoke Tools
670 #----------------------------------------------------------
672 ifdef EXTRA_LD_OPTIONS
673 LD.Flags += $(EXTRA_LD_OPTIONS)
677 CompileCommonOpts += -pedantic -Wno-long-long
679 CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
680 $(EXTRA_OPTIONS) $(COVERED_SWITCH_DEFAULT) \
681 $(NO_UNINITIALIZED) $(NO_MAYBE_UNINITIALIZED) \
682 $(NO_MISSING_FIELD_INITIALIZERS) $(NO_COMMENT)
683 # Enable cast-qual for C++; the workaround is to use const_cast.
684 CXX.Flags += -Wcast-qual
686 ifeq ($(HOST_OS),HP-UX)
687 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
690 # If we are building a universal binary on Mac OS X, pass extra options. This
691 # is useful to people that want to link the LLVM libraries into their universal
694 # The following can be optionally specified:
695 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
696 # For Mac OS X 10.4 Intel machines, the traditional one is:
697 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
698 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
699 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
702 ifndef UNIVERSAL_ARCH
703 UNIVERSAL_ARCH := i386 ppc
705 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
706 TargetCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
707 ifdef UNIVERSAL_SDK_PATH
708 TargetCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
711 # Building universal cannot compute dependencies automatically.
712 DISABLE_AUTO_DEPENDENCIES=1
714 ifeq ($(TARGET_OS),Darwin)
715 ifeq ($(ARCH),x86_64)
716 TargetCommonOpts = -m64
719 TargetCommonOpts = -m32
725 ifeq ($(HOST_OS),SunOS)
726 CPP.BaseFlags += -include llvm/Support/Solaris.h
729 # On Windows, SharedLibDir != LibDir. The order is important.
730 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
731 LD.Flags += -L$(SharedLibDir) -L$(LibDir) -L$(LLVMToolDir) -L$(LLVMLibDir)
733 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
736 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
737 # All -I flags should go here, so that they don't confuse llvm-config.
738 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
739 $(patsubst %,-I%/include,\
740 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
741 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
744 ifeq ($(INCLUDE_BUILD_DIR),1)
745 CPP.Flags += -I$(ObjDir)
748 # SHOW_DIAGNOSTICS support.
749 ifeq ($(SHOW_DIAGNOSTICS),1)
750 Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
751 CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
756 Compile.C = $(Compile.Wrapper) \
757 $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
758 $(TargetCommonOpts) $(CompileCommonOpts) -c
759 Compile.CXX = $(Compile.Wrapper) \
760 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
761 $(TargetCommonOpts) $(CompileCommonOpts) -c
762 Preprocess.CXX= $(Compile.Wrapper) \
763 $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
764 $(CompileCommonOpts) $(CXX.Flags) -E
765 Link = $(Compile.Wrapper) \
766 $(CXX) $(CXXFLAGS) $(LD.Flags) $(LDFLAGS) \
767 $(TargetCommonOpts) $(Strip)
769 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
770 $(TargetCommonOpts) $(CompileCommonOpts) -E
772 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
773 ScriptInstall = $(INSTALL) -m 0755
774 DataInstall = $(INSTALL) -m 0644
776 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
777 # paths. In this case, the SYSPATH function (defined in
778 # Makefile.config) transforms Unix paths into Windows paths.
779 TableGen.Flags= -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
780 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
781 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
782 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
783 LLVMTableGen = $(LLVM_TBLGEN) $(TableGen.Flags)
785 Archive = $(AR) $(AR.Flags)
794 #----------------------------------------------------------
795 # Get the list of source files and compute object file
797 #----------------------------------------------------------
800 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
801 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
803 Sources := $(SOURCES)
807 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
810 BaseNameSources := $(sort $(basename $(Sources)))
811 SourceDirs := $(sort $(dir $(Sources)))
813 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
814 ObjectDirs := $(SourceDirs:%=$(ObjDir)/%)
816 #----------------------------------------------------------
817 # For Mingw MSYS bash and Python/w32:
819 # $(ECHOPATH) prints DOSish pathstring.
820 # ex) $(ECHOPATH) /include/sys/types.h
821 # --> C:/mingw/include/sys/types.h
822 # built-in "echo" does not transform path to DOSish path.
824 # FIXME: It would not be needed when MSYS's python
826 #----------------------------------------------------------
828 ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
829 ECHOPATH := $(Verb)$(PYTHON) -u -c "import sys;print ' '.join(sys.argv[1:])"
831 ECHOPATH := $(Verb)$(ECHO)
834 ###############################################################################
835 # DIRECTORIES: Handle recursive descent of directory structure
836 ###############################################################################
838 #---------------------------------------------------------
839 # Provide rules to make install dirs. This must be early
840 # in the file so they get built before dependencies
841 #---------------------------------------------------------
843 $(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
846 # To create other directories, as needed, and timestamp their creation
848 $(Verb) $(MKDIR) $* > /dev/null
849 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
851 .PRECIOUS: $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
852 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
854 #---------------------------------------------------------
855 # Collect the object directories (as there may be more
856 # than one if the source code is spread across
858 #---------------------------------------------------------
860 OBJECT_DIRS := $(ObjDir)/.dir $(ObjectDirs:%=%/.dir)
861 .PRECIOUS: $(OBJECT_DIRS)
863 #---------------------------------------------------------
864 # Handle the DIRS options for sequential construction
865 #---------------------------------------------------------
871 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
872 $(RecursiveTargets)::
873 $(Verb) for dir in $(DIRS); do \
874 if ([ ! -f $$dir/Makefile ] || \
875 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
877 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
879 ($(MAKE) -C $$dir $@ ) || exit 1; \
882 $(RecursiveTargets)::
883 $(Verb) for dir in $(DIRS); do \
884 ($(MAKE) -C $$dir $@ ) || exit 1; \
890 #---------------------------------------------------------
891 # Handle the EXPERIMENTAL_DIRS options ensuring success
892 # after each directory is built.
893 #---------------------------------------------------------
894 ifdef EXPERIMENTAL_DIRS
895 $(RecursiveTargets)::
896 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
897 if ([ ! -f $$dir/Makefile ] || \
898 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
900 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
902 ($(MAKE) -C $$dir $@ ) || exit 0; \
906 #-----------------------------------------------------------
907 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
908 #-----------------------------------------------------------
909 ifdef OPTIONAL_PARALLEL_DIRS
910 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) -o -f $(T)/Makefile && echo "$(T)"))
913 #-----------------------------------------------------------
914 # Handle the PARALLEL_DIRS options for parallel construction
915 #-----------------------------------------------------------
918 SubDirs += $(PARALLEL_DIRS)
920 # Unfortunately, this list must be maintained if new recursive targets are added
921 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
922 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
923 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
924 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
925 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
926 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
927 unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
929 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
933 SD=$(PROJ_SRC_DIR)/$(@D); \
935 if [ ! -f $$SD/Makefile ]; then \
937 DD=$(notdir $(@D)); \
939 if ([ ! -f $$DD/Makefile ] || \
940 command test $$DD/Makefile -ot \
941 $$SD/Makefile ); then \
943 $(CP) $$SD/Makefile $$DD/Makefile; \
945 $(MAKE) -C $$DD $(subst $(@D)/.make,,$@)
948 #---------------------------------------------------------
949 # Handle the OPTIONAL_DIRS options for directores that may
951 #---------------------------------------------------------
954 SubDirs += $(OPTIONAL_DIRS)
956 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
957 $(RecursiveTargets)::
958 $(Verb) for dir in $(OPTIONAL_DIRS); do \
959 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
960 if ([ ! -f $$dir/Makefile ] || \
961 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
963 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
965 ($(MAKE) -C$$dir $@ ) || exit 1; \
969 $(RecursiveTargets)::
970 $(Verb) for dir in $(OPTIONAL_DIRS); do \
971 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
972 ($(MAKE) -C$$dir $@ ) || exit 1; \
978 #---------------------------------------------------------
979 # Handle the CONFIG_FILES options
980 #---------------------------------------------------------
985 $(Echo) Install circumvented with NO_INSTALL
987 $(Echo) UnInstall circumvented with NO_INSTALL
989 install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
990 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
991 $(Verb)for file in $(CONFIG_FILES); do \
992 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
993 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
994 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
995 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
997 $(ECHO) Error: cannot find config file $${file}. ; \
1002 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
1003 $(Verb)for file in $(CONFIG_FILES); do \
1004 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
1010 ###############################################################################
1011 # Set up variables for building libraries
1012 ###############################################################################
1014 #---------------------------------------------------------
1015 # Define various command line options pertaining to the
1016 # libraries needed when linking. There are "Proj" libs
1017 # (defined by the user's project) and "LLVM" libs (defined
1018 # by the LLVM project).
1019 #---------------------------------------------------------
1022 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
1023 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
1024 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
1025 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
1029 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
1030 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
1031 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
1032 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
1035 # Loadable module for Win32 requires all symbols resolved for linking.
1036 # Then all symbols in LLVM.dll will be available.
1037 ifeq ($(ENABLE_SHARED),1)
1038 ifdef LOADABLE_MODULE
1039 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
1040 LINK_COMPONENTS += all
1045 ifndef IS_CLEANING_TARGET
1046 ifdef LINK_COMPONENTS
1048 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
1049 # clean in tools, then do a make in tools (instead of at the top level).
1051 @echo "*** llvm-config doesn't exist - rebuilding it."
1052 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
1054 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
1056 ifeq ($(ENABLE_SHARED), 1)
1057 # We can take the "auto-import" feature to get rid of using dllimport.
1058 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1059 LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
1062 LLVM_SO_NAME = LLVM-$(LLVM_VERSION_MAJOR).$(LLVM_VERSION_MINOR)$(LLVM_VERSION_SUFFIX)
1063 LLVMLibsOptions += -l$(LLVM_SO_NAME)
1064 LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)$(LLVM_SO_NAME)$(SHLIBEXT)
1067 ifndef NO_LLVM_CONFIG
1068 LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
1069 ifeq ($(LLVMConfigLibs),Error)
1070 $(error llvm-config --libs failed)
1072 LLVMLibsOptions += $(LLVMConfigLibs)
1073 LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
1074 ifeq ($(LLVMConfigLibfiles),Error)
1075 $(error llvm-config --libfiles failed)
1077 LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
1084 # Set up the library exports file.
1085 ifdef EXPORTED_SYMBOL_FILE
1087 # First, set up the native export file, which may differ from the source
1090 ifeq ($(HOST_OS),Darwin)
1091 # Darwin convention prefixes symbols with underscores.
1092 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
1093 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1094 $(Verb) sed -e 's/^/_/' < $< > $@
1096 -$(Verb) $(RM) -f $(NativeExportsFile)
1098 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1099 # Gold and BFD ld require a version script rather than a plain list.
1100 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1101 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1102 $(Verb) echo "{" > $@
1103 $(Verb) grep -q '[[:alnum:]_]' $< && echo " global:" >> $@ || :
1104 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
1105 ifneq ($(HOST_OS),OpenBSD)
1106 $(Verb) echo " local: *;" >> $@
1108 $(Verb) echo "};" >> $@
1110 -$(Verb) $(RM) -f $(NativeExportsFile)
1112 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1113 # GNU ld Win32 accepts .DEF files that contain "DATA" entries.
1114 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
1115 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1116 $(Echo) Generating $(notdir $@)
1117 $(Verb) $(ECHO) "EXPORTS" > $@
1118 $(Verb) $(CAT) $< >> $@
1120 -$(Verb) $(RM) -f $(NativeExportsFile)
1122 # Default behavior: just use the exports file verbatim.
1123 NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1128 # Now add the linker command-line options to use the native export file.
1131 ifeq ($(HOST_OS),Darwin)
1132 LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1135 # gold, bfd ld, etc.
1136 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1137 LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
1141 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1142 # LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1143 SharedLinkOptions += $(NativeExportsFile)
1148 ###############################################################################
1149 # Library Build Rules: Four ways to build a library
1150 ###############################################################################
1152 # if we're building a library ...
1155 # Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
1156 LIBRARYNAME := $(strip $(LIBRARYNAME))
1157 LIBRARYALIASNAME := $(strip $(LIBRARYALIASNAME))
1158 ifdef LOADABLE_MODULE
1159 BaseLibName.A := $(LIBRARYNAME).a
1160 BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
1161 BaseAliasName.SO := $(LIBRARYALIASNAME)$(SHLIBEXT)
1163 BaseLibName.A := lib$(LIBRARYNAME).a
1164 BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1165 BaseAliasName.SO := $(SharedPrefix)$(LIBRARYALIASNAME)$(SHLIBEXT)
1167 LibName.A := $(LibDir)/$(BaseLibName.A)
1168 LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
1169 AliasName.SO := $(SharedLibDir)/$(BaseAliasName.SO)
1170 LibName.O := $(LibDir)/$(LIBRARYNAME).o
1172 #---------------------------------------------------------
1173 # Shared Library Targets:
1174 # If the user asked for a shared library to be built
1175 # with the SHARED_LIBRARY variable, then we provide
1176 # targets for building them.
1177 #---------------------------------------------------------
1178 ifdef SHARED_LIBRARY
1180 all-local:: $(AliasName.SO)
1182 $(AliasName.SO): $(LibName.SO)
1184 $(Verb) $(AliasTool) $(BaseLibName.SO) $(AliasName.SO)
1187 ifdef EXPORTED_SYMBOL_FILE
1188 $(LibName.SO): $(NativeExportsFile)
1191 ifdef LINK_LIBS_IN_SHARED
1192 ifdef LOADABLE_MODULE
1193 SharedLibKindMessage := "Loadable Module"
1194 SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
1196 SharedLibKindMessage := "Shared Library"
1198 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
1199 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1201 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
1202 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
1204 $(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
1205 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
1206 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
1210 ifneq ($(strip $(LibName.SO)),)
1211 -$(Verb) $(RM) -f $(LibName.SO)
1216 $(Echo) Install circumvented with NO_INSTALL
1218 $(Echo) Uninstall circumvented with NO_INSTALL
1221 # Win32.DLL prefers to be located on the "PATH" of binaries.
1222 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1223 DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
1225 DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
1227 DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
1228 DestSharedAlias := $(DestSharedLibDir)/$(BaseAliasName.SO)
1230 install-local:: $(DestSharedLib)
1232 $(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
1233 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1234 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1236 $(Echo) Creating alias from $(DestSharedLib) to $(DestSharedAlias)
1237 $(Verb) $(AliasTool) $(BaseLibName.SO) $(DestSharedAlias)
1241 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1242 -$(Verb) $(RM) -f $(DestSharedLib)
1244 -$(Verb) $(RM) -f $(DestSharedAlias)
1249 #---------------------------------------------------------
1251 # If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1252 # building an archive.
1253 #---------------------------------------------------------
1254 ifndef NO_BUILD_ARCHIVE
1255 ifndef BUILD_ARCHIVE
1256 ifndef LOADABLE_MODULE
1262 #---------------------------------------------------------
1263 # Archive Library Targets:
1264 # If the user wanted a regular archive library built,
1265 # then we provide targets for building them.
1266 #---------------------------------------------------------
1269 all-local:: $(LibName.A)
1271 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1272 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1273 -$(Verb) $(RM) -f $@
1274 $(Verb) $(Archive) $@ $(ObjectsO)
1275 $(Verb) $(Ranlib) $@
1278 ifneq ($(strip $(LibName.A)),)
1279 -$(Verb) $(RM) -f $(LibName.A)
1284 $(Echo) Install circumvented with NO_INSTALL
1286 $(Echo) Uninstall circumvented with NO_INSTALL
1288 ifdef NO_INSTALL_ARCHIVES
1290 $(Echo) Install circumvented with NO_INSTALL
1292 $(Echo) Uninstall circumvented with NO_INSTALL
1294 DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
1296 install-local:: $(DestArchiveLib)
1298 $(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
1299 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1300 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
1301 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1304 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1305 -$(Verb) $(RM) -f $(DestArchiveLib)
1313 ###############################################################################
1314 # Tool Build Rules: Build executable tool based on TOOLNAME option
1315 ###############################################################################
1319 #---------------------------------------------------------
1320 # Set up variables for building a tool.
1321 #---------------------------------------------------------
1322 TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
1324 ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
1326 ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1329 # TOOLALIAS is a name to symlink (or copy) the tool to.
1332 ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1334 ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1338 #---------------------------------------------------------
1340 #---------------------------------------------------------
1342 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1343 # not exporting all of the weak symbols from the binary. This reduces dyld
1344 # startup time by 4x on darwin in some cases.
1345 ifdef TOOL_NO_EXPORTS
1346 ifeq ($(HOST_OS),Darwin)
1348 # Tiger tools don't support this.
1349 ifneq ($(DARWIN_MAJVERS),4)
1350 LD.Flags += -Wl,-exported_symbol,_main
1354 ifeq ($(HOST_OS), $(filter $(HOST_OS), DragonFly Linux NetBSD FreeBSD GNU/kFreeBSD GNU))
1355 ifneq ($(ARCH), Mips)
1356 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1361 #---------------------------------------------------------
1362 # Tool Order File Support
1363 #---------------------------------------------------------
1365 ifeq ($(HOST_OS),Darwin)
1366 ifdef TOOL_ORDER_FILE
1368 LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1373 #---------------------------------------------------------
1374 # Tool Version Info Support
1375 #---------------------------------------------------------
1377 ifeq ($(HOST_OS),Darwin)
1378 ifdef TOOL_INFO_PLIST
1380 LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1382 $(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1384 $(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
1385 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1386 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1387 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1388 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1389 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1395 #---------------------------------------------------------
1396 # Provide targets for building the tools
1397 #---------------------------------------------------------
1398 all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
1401 ifneq ($(strip $(ToolBuildPath)),)
1402 -$(Verb) $(RM) -f $(ToolBuildPath)
1404 ifneq ($(strip $(ToolAliasBuildPath)),)
1405 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1409 $(ToolBuildPath): $(ExmplDir)/.dir
1411 $(ToolBuildPath): $(ToolDir)/.dir
1414 ifdef CODESIGN_TOOLS
1415 TOOL_CODESIGN_IDENTITY ?= -
1417 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1418 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1419 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1420 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1421 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1423 $(Echo) ======= Code-Signing $(BuildMode) Executable $(TOOLNAME)
1424 $(Verb) codesign -s $(TOOL_CODESIGN_IDENTITY) $@
1426 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1427 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1428 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1429 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1430 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1434 ifneq ($(strip $(ToolAliasBuildPath)),)
1435 $(ToolAliasBuildPath): $(ToolBuildPath)
1436 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1437 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1438 $(Verb) $(AliasTool) $(notdir $(ToolBuildPath)) $(ToolAliasBuildPath)
1439 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
1445 $(Echo) Install circumvented with NO_INSTALL
1447 $(Echo) Uninstall circumvented with NO_INSTALL
1451 ToolBinDir = $(DESTDIR)$(PROJ_internal_prefix)/bin
1453 ToolBinDir = $(DESTDIR)$(PROJ_bindir)
1455 DestTool = $(ToolBinDir)/$(program_prefix)$(TOOLEXENAME)
1457 install-local:: $(DestTool)
1459 $(DestTool): $(ToolBuildPath)
1460 $(Echo) Installing $(BuildMode) $(DestTool)
1461 $(Verb) $(MKDIR) $(ToolBinDir)
1462 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1465 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1466 -$(Verb) $(RM) -f $(DestTool)
1468 # TOOLALIAS install.
1470 DestToolAlias = $(ToolBinDir)/$(program_prefix)$(TOOLALIAS)$(EXEEXT)
1472 install-local:: $(DestToolAlias)
1474 $(DestToolAlias): $(DestTool)
1475 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1476 $(Verb) $(RM) -f $(DestToolAlias)
1477 $(Verb) $(AliasTool) $(notdir $(DestTool)) $(DestToolAlias)
1480 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1481 -$(Verb) $(RM) -f $(DestToolAlias)
1487 ###############################################################################
1488 # Object Build Rules: Build object files based on sources
1489 ###############################################################################
1491 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1492 ifeq ($(HOST_OS),HP-UX)
1493 DISABLE_AUTO_DEPENDENCIES=1
1496 COMPILE_DEPS = $(OBJECT_DIRS) $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1498 # Provide rule sets for when dependency generation is enabled
1499 ifndef DISABLE_AUTO_DEPENDENCIES
1501 #---------------------------------------------------------
1502 # Create .o files in the ObjDir directory from the .cpp and .c files...
1503 #---------------------------------------------------------
1505 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1506 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1508 # If the build succeeded, move the dependency file over, otherwise
1510 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1511 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1513 $(ObjDir)/%.o: %.cpp $(COMPILE_DEPS)
1514 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1515 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1518 $(ObjDir)/%.o: %.mm $(COMPILE_DEPS)
1519 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1520 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1523 $(ObjDir)/%.o: %.cc $(COMPILE_DEPS)
1524 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1525 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1528 $(ObjDir)/%.o: %.c $(COMPILE_DEPS)
1529 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1530 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1533 $(ObjDir)/%.o: %.m $(COMPILE_DEPS)
1534 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1535 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1538 # Provide alternate rule sets if dependencies are disabled
1541 $(ObjDir)/%.o: %.cpp $(COMPILE_DEPS)
1542 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1543 $(Compile.CXX) $< -o $@
1545 $(ObjDir)/%.o: %.mm $(COMPILE_DEPS)
1546 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1547 $(Compile.CXX) $< -o $@
1549 $(ObjDir)/%.o: %.cc $(COMPILE_DEPS)
1550 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1551 $(Compile.CXX) $< -o $@
1553 $(ObjDir)/%.o: %.c $(COMPILE_DEPS)
1554 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1555 $(Compile.C) $< -o $@
1557 $(ObjDir)/%.o: %.m $(COMPILE_DEPS)
1558 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1559 $(Compile.C) $< -o $@
1563 ## Rules for building preprocessed (.i/.ii) outputs.
1564 $(BuildMode)/%.ii: %.cpp $(COMPILE_DEPS)
1565 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1566 $(Verb) $(Preprocess.CXX) $< -o $@
1568 $(BuildMode)/%.ii: %.mm $(COMPILE_DEPS)
1569 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1570 $(Verb) $(Preprocess.CXX) $< -o $@
1572 $(BuildMode)/%.ii: %.cc $(COMPILE_DEPS)
1573 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1574 $(Verb) $(Preprocess.CXX) $< -o $@
1576 $(BuildMode)/%.i: %.c $(COMPILE_DEPS)
1577 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1578 $(Verb) $(Preprocess.C) $< -o $@
1580 $(BuildMode)/%.i: %.m $(COMPILE_DEPS)
1581 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1582 $(Verb) $(Preprocess.C) $< -o $@
1585 $(ObjDir)/%.s: %.cpp $(COMPILE_DEPS)
1586 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1587 $(Compile.CXX) $< -o $@ -S
1589 $(ObjDir)/%.s: %.mm $(COMPILE_DEPS)
1590 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1591 $(Compile.CXX) $< -o $@ -S
1593 $(ObjDir)/%.s: %.cc $(COMPILE_DEPS)
1594 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1595 $(Compile.CXX) $< -o $@ -S
1597 $(ObjDir)/%.s: %.c $(COMPILE_DEPS)
1598 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1599 $(Compile.C) $< -o $@ -S
1601 $(ObjDir)/%.s: %.m $(COMPILE_DEPS)
1602 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1603 $(Compile.C) $< -o $@ -S
1605 ###############################################################################
1606 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1607 ###############################################################################
1610 TABLEGEN_INC_FILES_COMMON = 1
1613 ifdef TABLEGEN_INC_FILES_COMMON
1615 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1616 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1617 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1619 # INCFiles rule: All of the tblgen generated files are emitted to
1620 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1621 # us to only "touch" the real file if the contents of it change. IOW, if
1622 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1623 # dependencies of the .inc files are, unless the contents of the .inc file
1625 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1626 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1628 endif # TABLEGEN_INC_FILES_COMMON
1632 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1633 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1634 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1635 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1636 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1637 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1638 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/IR/Intrinsics*.td)
1640 # All .inc.tmp files depend on the .td files.
1641 $(INCTMPFiles) : $(TDFiles)
1643 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1644 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1645 $(Echo) "Building $(<F) register info implementation with tblgen"
1646 $(Verb) $(LLVMTableGen) -gen-register-info -o $(call SYSPATH, $@) $<
1648 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1649 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1650 $(Echo) "Building $(<F) instruction information with tblgen"
1651 $(Verb) $(LLVMTableGen) -gen-instr-info -o $(call SYSPATH, $@) $<
1653 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1654 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1655 $(Echo) "Building $(<F) assembly writer with tblgen"
1656 $(Verb) $(LLVMTableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1658 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1659 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1660 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1661 $(Verb) $(LLVMTableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1663 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1664 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1665 $(Echo) "Building $(<F) assembly matcher with tblgen"
1666 $(Verb) $(LLVMTableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1668 $(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
1669 $(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1670 $(Echo) "Building $(<F) MC code emitter with tblgen"
1671 $(Verb) $(LLVMTableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1673 $(TARGET:%=$(ObjDir)/%GenMCPseudoLowering.inc.tmp): \
1674 $(ObjDir)/%GenMCPseudoLowering.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1675 $(Echo) "Building $(<F) MC Pseudo instruction expander with tblgen"
1676 $(Verb) $(LLVMTableGen) -gen-pseudo-lowering -o $(call SYSPATH, $@) $<
1678 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1679 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1680 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1681 $(Verb) $(LLVMTableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1683 $(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1684 $(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1685 $(Echo) "Building $(<F) disassembly tables with tblgen"
1686 $(Verb) $(LLVMTableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1688 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1689 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1690 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1691 $(Verb) $(LLVMTableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1693 $(TARGET:%=$(ObjDir)/%GenSubtargetInfo.inc.tmp): \
1694 $(ObjDir)/%GenSubtargetInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1695 $(Echo) "Building $(<F) subtarget information with tblgen"
1696 $(Verb) $(LLVMTableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1698 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1699 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1700 $(Echo) "Building $(<F) calling convention information with tblgen"
1701 $(Verb) $(LLVMTableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1703 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1704 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1705 $(Echo) "Building $(<F) intrinsics information with tblgen"
1706 $(Verb) $(LLVMTableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1708 $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1709 $(Echo) "Building $(<F) decoder tables with tblgen"
1710 $(Verb) $(LLVMTableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1712 $(ObjDir)/%GenDFAPacketizer.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1713 $(Echo) "Building $(<F) DFA packetizer tables with tblgen"
1714 $(Verb) $(LLVMTableGen) -gen-dfa-packetizer -o $(call SYSPATH, $@) $<
1716 # Dump all the records to <target>.td.expanded. This is useful for debugging.
1717 $(TARGET:%=%.td.expanded): \
1718 %.td.expanded : %.td $(LLVM_TBLGEN) $(TDFiles)
1719 $(Echo) "Building a fully expanded version of $(<F)"
1720 $(Verb) $(LLVMTableGen) -o $(call SYSPATH, $@) $<
1723 -$(Verb) $(RM) -f $(INCFiles) $(TARGET).td.expanded
1727 ###############################################################################
1728 # OTHER RULES: Other rules needed
1729 ###############################################################################
1731 # To create postscript files from dot files...
1732 ifneq ($(DOT),false)
1734 $(DOT) -Tps < $< > $@
1737 $(Echo) "Cannot build $@: The program dot is not installed"
1740 # This rules ensures that header files that are removed still have a rule for
1741 # which they can be "generated." This allows make to ignore them and
1742 # reproduce the dependency lists.
1746 # Define clean-local to clean the current directory. Note that this uses a
1747 # very conservative approach ensuring that empty variables do not cause
1748 # errors or disastrous removal.
1750 ifneq ($(strip $(ObjRootDir)),)
1751 -$(Verb) $(RM) -rf $(ObjRootDir)
1753 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1754 -$(Verb) $(RM) -f *$(SHLIBEXT)
1758 -$(Verb) $(RM) -rf Debug Release Profile
1761 ###############################################################################
1762 # DEPENDENCIES: Include the dependency files if we should
1763 ###############################################################################
1764 ifndef DISABLE_AUTO_DEPENDENCIES
1766 # If its not one of the cleaning targets
1767 ifndef IS_CLEANING_TARGET
1769 # Get the list of dependency files
1770 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
1771 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1773 -include $(DependFiles) ""
1779 ###############################################################################
1780 # CHECK: Running the test suite
1781 ###############################################################################
1784 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1785 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1786 $(EchoCmd) Running test suite ; \
1787 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1788 TESTSUITE=$(TESTSUITE) ; \
1790 $(EchoCmd) No Makefile in test directory ; \
1793 $(EchoCmd) No test directory ; \
1796 # An alias dating from when both lit and DejaGNU test runners were used.
1800 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1801 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1802 $(EchoCmd) Running test suite ; \
1803 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1805 $(EchoCmd) No Makefile in test directory ; \
1808 $(EchoCmd) No test directory ; \
1811 ###############################################################################
1812 # UNITTESTS: Running the unittests test suite
1813 ###############################################################################
1816 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1817 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1818 $(EchoCmd) Running unittests test suite ; \
1819 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
1821 $(EchoCmd) No Makefile in unittests directory ; \
1824 $(EchoCmd) No unittests directory ; \
1827 ###############################################################################
1828 # DISTRIBUTION: Handle construction of a distribution tarball
1829 ###############################################################################
1831 #------------------------------------------------------------------------
1832 # Define distribution related variables
1833 #------------------------------------------------------------------------
1834 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1835 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1836 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1837 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1838 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1839 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1840 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1841 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1842 Makefile.config.in configure autoconf
1843 DistOther := $(notdir $(wildcard \
1844 $(PROJ_SRC_DIR)/*.h \
1845 $(PROJ_SRC_DIR)/*.td \
1846 $(PROJ_SRC_DIR)/*.def \
1847 $(PROJ_SRC_DIR)/*.ll \
1848 $(PROJ_SRC_DIR)/*.in))
1849 DistSubDirs := $(SubDirs)
1850 DistSources = $(Sources) $(EXTRA_DIST)
1851 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1853 #------------------------------------------------------------------------
1854 # We MUST build distribution with OBJ_DIR != SRC_DIR
1855 #------------------------------------------------------------------------
1856 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1857 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1858 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1862 #------------------------------------------------------------------------
1863 # Prevent attempt to run dist targets from anywhere but the top level
1864 #------------------------------------------------------------------------
1866 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1867 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1870 #------------------------------------------------------------------------
1871 # Provide the top level targets
1872 #------------------------------------------------------------------------
1874 dist-gzip:: $(DistTarGZip)
1876 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1877 $(Echo) Packing gzipped distribution tar file.
1878 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1879 $(GZIP) -c > "$(DistTarGZip)"
1881 dist-bzip2:: $(DistTarBZ2)
1883 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1884 $(Echo) Packing bzipped distribution tar file.
1885 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1886 $(BZIP2) -c >$(DistTarBZ2)
1888 dist-zip:: $(DistZip)
1890 $(DistZip) : $(TopDistDir)/.makedistdir
1891 $(Echo) Packing zipped distribution file.
1892 $(Verb) rm -f $(DistZip)
1893 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1895 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1896 $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
1898 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1900 dist-check:: $(DistTarGZip)
1901 $(Echo) Checking distribution tar file.
1902 $(Verb) if test -d $(DistCheckDir) ; then \
1903 $(RM) -rf $(DistCheckDir) ; \
1905 $(Verb) $(MKDIR) $(DistCheckDir)
1906 $(Verb) cd $(DistCheckDir) && \
1907 $(MKDIR) $(DistCheckDir)/build && \
1908 $(MKDIR) $(DistCheckDir)/install && \
1909 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1911 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1912 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1915 $(MAKE) unittests && \
1916 $(MAKE) install && \
1917 $(MAKE) uninstall && \
1918 $(MAKE) dist-clean && \
1919 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1922 $(Echo) Cleaning distribution files
1923 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1928 #------------------------------------------------------------------------
1929 # Provide the recursive distdir target for building the distribution directory
1930 #------------------------------------------------------------------------
1931 distdir: $(DistDir)/.makedistdir
1932 $(DistDir)/.makedistdir: $(DistSources)
1933 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1934 if test -d "$(DistDir)" ; then \
1935 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1938 $(EchoCmd) Removing old $(DistDir) ; \
1939 $(RM) -rf $(DistDir); \
1940 $(EchoCmd) Making 'all' to verify build ; \
1941 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1943 $(Echo) Building Distribution Directory $(DistDir)
1944 $(Verb) $(MKDIR) $(DistDir)
1945 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1946 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1947 for file in $(DistFiles) ; do \
1949 $(PROJ_SRC_DIR)/*) \
1950 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1952 $(PROJ_SRC_ROOT)/*) \
1953 file=`echo "$$file" | \
1954 sed "s#^$$srcrootstrip/##"` \
1957 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1958 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1959 from_dir="$(PROJ_SRC_DIR)" ; \
1960 elif test -f "$$file" || test -d "$$file" ; then \
1963 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1964 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1965 to_dir="$(DistDir)/$$dir"; \
1966 $(MKDIR) "$$to_dir" ; \
1968 to_dir="$(DistDir)"; \
1970 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1971 if test -n "$$mid_dir" ; then \
1972 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1974 if test -d "$$from_dir/$$file"; then \
1975 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1976 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1977 cd $(PROJ_SRC_DIR) ; \
1978 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1979 ( cd $$to_dir ; $(TAR) xf - ) ; \
1980 cd $(PROJ_OBJ_DIR) ; \
1983 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1984 ( cd $$to_dir ; $(TAR) xf - ) ; \
1985 cd $(PROJ_OBJ_DIR) ; \
1987 elif test -f "$$from_dir/$$file" ; then \
1988 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1989 elif test -L "$$from_dir/$$file" ; then \
1990 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1991 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1992 $(EchoCmd) "===== WARNING: Distribution Source " \
1993 "$$from_dir/$$file Not Found!" ; \
1994 elif test "$(Verb)" != '@' ; then \
1995 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1998 $(Verb) for subdir in $(DistSubDirs) ; do \
1999 if test "$$subdir" \!= "." ; then \
2000 new_distdir="$(DistDir)/$$subdir" ; \
2001 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
2002 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
2003 DistDir="$$new_distdir" distdir ) || exit 1; \
2006 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2007 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
2008 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2009 -name .svn \) -print` ;\
2010 $(MAKE) dist-hook ; \
2011 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2012 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2013 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2014 -o ! -type d ! -perm -444 -exec \
2015 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2016 || chmod -R a+r $(DistDir) ; \
2019 # This is invoked by distdir target, define it as a no-op to avoid errors if not
2025 ###############################################################################
2026 # TOP LEVEL - targets only to apply at the top level directory
2027 ###############################################################################
2031 #------------------------------------------------------------------------
2032 # Install support for the project's include files:
2033 #------------------------------------------------------------------------
2036 $(Echo) Install circumvented with NO_INSTALL
2038 $(Echo) Uninstall circumvented with NO_INSTALL
2041 $(Echo) Installing include files
2042 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
2043 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2044 cd $(PROJ_SRC_ROOT)/include && \
2045 for hdr in `find . -type f \
2046 '(' -name LICENSE.TXT \
2051 ')' -print | grep -v CVS | \
2052 grep -v .svn` ; do \
2053 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2054 if test \! -d "$$instdir" ; then \
2055 $(EchoCmd) Making install directory $$instdir ; \
2056 $(MKDIR) $$instdir ;\
2058 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2061 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2062 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2063 cd $(PROJ_OBJ_ROOT)/include && \
2064 for hdr in `find . -type f \
2065 '(' -name LICENSE.TXT \
2070 ')' -print | grep -v CVS | \
2071 grep -v .svn` ; do \
2072 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2073 if test \! -d "$$instdir" ; then \
2074 $(EchoCmd) Making install directory $$instdir ; \
2075 $(MKDIR) $$instdir ;\
2077 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2083 $(Echo) Uninstalling include files
2084 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2085 cd $(PROJ_SRC_ROOT)/include && \
2086 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2087 '!' '(' -name '*~' -o -name '.#*' \
2088 -o -name '*.in' ')' -print ')' | \
2089 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2090 cd $(PROJ_SRC_ROOT)/include && \
2091 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
2092 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2098 @echo searching for overlength lines in files: $(Sources)
2101 egrep -n '.{81}' $(Sources) /dev/null
2104 @echo searching for tabs in files: $(Sources)
2107 egrep -n ' ' $(Sources) /dev/null
2110 @ls -l $(LibDir) | awk '\
2111 BEGIN { sum = 0; } \
2113 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2114 @ls -l $(ToolDir) | awk '\
2115 BEGIN { sum = 0; } \
2117 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2118 #------------------------------------------------------------------------
2119 # Print out the directories used for building
2120 #------------------------------------------------------------------------
2122 $(Echo) "BuildMode : " '$(BuildMode)'
2123 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2124 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2125 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2126 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2127 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2128 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2129 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2130 $(Echo) "PROJ_internal_prefix : " '$(PROJ_internal_prefix)'
2131 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2132 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2133 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
2134 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
2135 $(Echo) "UserTargets : " '$(UserTargets)'
2136 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2137 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2138 $(Echo) "ObjDir : " '$(ObjDir)'
2139 $(Echo) "LibDir : " '$(LibDir)'
2140 $(Echo) "ToolDir : " '$(ToolDir)'
2141 $(Echo) "ExmplDir : " '$(ExmplDir)'
2142 $(Echo) "Sources : " '$(Sources)'
2143 $(Echo) "TDFiles : " '$(TDFiles)'
2144 $(Echo) "INCFiles : " '$(INCFiles)'
2145 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
2146 $(Echo) "PreConditions: " '$(PreConditions)'
2147 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2148 $(Echo) "Compile.C : " '$(Compile.C)'
2149 $(Echo) "Archive : " '$(Archive)'
2150 $(Echo) "YaccFiles : " '$(YaccFiles)'
2151 $(Echo) "LexFiles : " '$(LexFiles)'
2152 $(Echo) "Module : " '$(Module)'
2153 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2154 $(Echo) "SubDirs : " '$(SubDirs)'
2155 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2156 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2161 # General debugging rule, use 'make dbg-print-XXX' to print the
2162 # definition, value and origin of XXX.
2164 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))