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 .bc .td .ps .dot .ll .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 LLVMConfigLibraryDependenciesInc := \
82 $(PROJ_OBJ_ROOT)/tools/llvm-config/LibraryDependencies.inc
84 # This is for temporary backwards compatibility.
85 ifndef TARGET_NATIVE_ARCH
86 TARGET_NATIVE_ARCH := $(ARCH)
89 # The rule to create the LLVMBuild Makefile fragment as well as the llvm-config
92 # Note that this target gets its real dependencies generated for us by
95 # We include a dependency on this Makefile to ensure that changes to the
96 # generation command get picked up.
97 $(LLVMBuildMakeFrag): $(PROJ_SRC_ROOT)/Makefile.rules \
98 $(PROJ_OBJ_ROOT)/Makefile.config
99 $(Echo) Constructing LLVMBuild project information.
100 $(Verb)$(PYTHON) $(LLVMBuildTool) \
101 --native-target "$(TARGET_NATIVE_ARCH)" \
102 --enable-targets "$(TARGETS_TO_BUILD)" \
103 --enable-optional-components "$(OPTIONAL_COMPONENTS)" \
104 --write-library-table $(LLVMConfigLibraryDependenciesInc) \
105 --write-make-fragment $(LLVMBuildMakeFrag)
107 # For completeness, let Make know how the extra files are generated.
108 $(LLVMConfigLibraryDependenciesInc): $(LLVMBuildMakeFrag)
110 # Include the generated Makefile fragment.
112 # We currently only include the dependencies for the fragment itself if we are
113 # at the top-level. Otherwise, recursive invocations would ends up doing
114 # substantially more redundant stat'ing.
116 # This means that we won't properly regenerate things for developers used to
117 # building from a subdirectory, but that is always somewhat unreliable.
119 LLVMBUILD_INCLUDE_DEPENDENCIES := 1
121 # Clean the generated makefile fragment at the top-level.
123 -$(Verb) $(RM) -f $(LLVMBuildMakeFrag)
125 -include $(LLVMBuildMakeFrag)
127 ################################################################################
128 # PRECONDITIONS: that which must be built/checked first
129 ################################################################################
131 SrcMakefiles := $(filter %Makefile %Makefile.tests,\
132 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
133 ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
134 ConfigureScript := $(PROJ_SRC_ROOT)/configure
135 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
136 MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
137 MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
138 MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
139 MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
140 PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
141 ifneq ($(MakefileCommonIn),)
142 PreConditions += $(MakefileCommon)
145 ifneq ($(MakefileConfigIn),)
146 PreConditions += $(MakefileConfig)
149 preconditions: $(PreConditions)
151 #------------------------------------------------------------------------
152 # Make sure the BUILT_SOURCES are built first
153 #------------------------------------------------------------------------
154 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
157 ifneq ($(strip $(BUILT_SOURCES)),)
158 -$(Verb) $(RM) -f $(BUILT_SOURCES)
161 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
163 $(Verb) if test -x config.status ; then \
164 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
165 $(MKDIR) .spotless.save ; \
166 $(MV) config.status .spotless.save ; \
167 $(MV) mklib .spotless.save ; \
168 $(MV) projects .spotless.save ; \
170 $(MV) .spotless.save/config.status . ; \
171 $(MV) .spotless.save/mklib . ; \
172 $(MV) .spotless.save/projects . ; \
173 $(RM) -rf .spotless.save ; \
174 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
175 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
176 $(ConfigStatusScript) ; \
178 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
182 $(EchoCmd) "spotless target not supported for objdir == srcdir"
185 $(BUILT_SOURCES) : $(ObjMakefiles)
187 #------------------------------------------------------------------------
188 # Make sure we're not using a stale configuration
189 #------------------------------------------------------------------------
191 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
192 $(Verb) cd $(PROJ_OBJ_ROOT) && \
193 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
194 $(ConfigStatusScript)
196 .PRECIOUS: $(ConfigStatusScript)
197 $(ConfigStatusScript): $(ConfigureScript)
198 $(Echo) Reconfiguring with $<
199 $(Verb) cd $(PROJ_OBJ_ROOT) && \
200 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
201 $(ConfigStatusScript)
203 #------------------------------------------------------------------------
204 # Make sure the configuration makefile is up to date
205 #------------------------------------------------------------------------
206 ifneq ($(MakefileConfigIn),)
207 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
208 $(Echo) Regenerating $@
209 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
212 ifneq ($(MakefileCommonIn),)
213 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
214 $(Echo) Regenerating $@
215 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
218 #------------------------------------------------------------------------
219 # If the Makefile in the source tree has been updated, copy it over into the
220 # build tree. But, only do this if the source and object makefiles differ
221 #------------------------------------------------------------------------
223 PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
226 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
228 Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
229 $(Echo) "Updating Makefile"
230 $(Verb) $(MKDIR) $(@D)
231 $(Verb) $(CP) -f $< $@
233 # Copy the Makefile.* files unless we're in the root directory which avoids
234 # the copying of Makefile.config.in or other things that should be explicitly
236 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
238 *Makefile.rules) ;; \
240 *) $(EchoCmd) "Updating $(@F)" ; \
247 #------------------------------------------------------------------------
248 # Set up the basic dependencies
249 #------------------------------------------------------------------------
250 $(UserTargets):: $(PreConditions)
254 clean-all:: clean-local clean-all-local
255 install:: install-local
256 uninstall:: uninstall-local
257 install-local:: all-local
258 install-bytecode:: install-bytecode-local
260 ###############################################################################
261 # VARIABLES: Set up various variables based on configuration data
262 ###############################################################################
264 # Variable for if this make is for a "cleaning" target
265 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
269 #--------------------------------------------------------------------
270 # Variables derived from configuration we are building
271 #--------------------------------------------------------------------
274 ifeq ($(ENABLE_OPTIMIZED),1)
276 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
277 ifneq ($(HOST_OS),FreeBSD)
278 ifneq ($(HOST_OS),Darwin)
279 OmitFramePointer := -fomit-frame-pointer
283 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
284 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
285 LD.Flags += $(OPTIMIZE_OPTION)
287 BuildMode := $(BuildMode)+Debug
294 ifdef NO_DEBUG_SYMBOLS
295 BuildMode := Unoptimized
309 ifeq ($(ENABLE_LIBCPP),1)
310 CXX.Flags += -stdlib=libc++
311 LD.Flags += -stdlib=libc++
314 ifeq ($(ENABLE_CXX11),1)
315 CXX.Flags += -std=c++11
318 ifeq ($(ENABLE_WERROR),1)
323 ifeq ($(ENABLE_PROFILING),1)
324 BuildMode := $(BuildMode)+Profile
325 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
326 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
327 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
331 ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
332 CXX.Flags += -fvisibility-inlines-hidden
335 ifdef ENABLE_EXPENSIVE_CHECKS
336 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
337 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
341 # IF REQUIRES_EH=1 is specified then don't disable exceptions
343 CXX.Flags += -fno-exceptions
345 # If the library requires EH, it also requires RTTI.
349 ifdef REQUIRES_FRAME_POINTER
350 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
351 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
352 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
355 # If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
356 ifneq ($(REQUIRES_RTTI), 1)
357 CXX.Flags += -fno-rtti
360 ifeq ($(ENABLE_COVERAGE),1)
361 BuildMode := $(BuildMode)+Coverage
362 CXX.Flags += -ftest-coverage -fprofile-arcs
363 C.Flags += -ftest-coverage -fprofile-arcs
366 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
367 # then disable assertions by defining the appropriate preprocessor symbols.
368 ifeq ($(DISABLE_ASSERTIONS),1)
369 CPP.Defines += -DNDEBUG
371 BuildMode := $(BuildMode)+Asserts
372 CPP.Defines += -D_DEBUG
375 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
376 # configured), then enable expensive checks by defining the
377 # appropriate preprocessor symbols.
378 ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
379 BuildMode := $(BuildMode)+Checks
380 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
383 # LOADABLE_MODULE implies several other things so we force them to be
385 ifdef LOADABLE_MODULE
387 LINK_LIBS_IN_SHARED := 1
395 ifeq ($(ENABLE_PIC),1)
396 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
397 # Nothing. Win32 defaults to PIC and warns when given -fPIC
399 ifeq ($(HOST_OS),Darwin)
400 # Common symbols not allowed in dylib files
401 CXX.Flags += -fno-common
402 C.Flags += -fno-common
404 # Linux and others; pass -fPIC
410 ifeq ($(HOST_OS),Darwin)
411 CXX.Flags += -mdynamic-no-pic
412 C.Flags += -mdynamic-no-pic
416 # Support makefile variable to disable any kind of timestamp/non-deterministic
417 # info from being used in the build.
418 ifeq ($(ENABLE_TIMESTAMPS),1)
419 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
421 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
424 ifeq ($(HOST_OS),MingW)
426 CPP.Defines += -D__NO_CTYPE_INLINE
427 ifeq ($(LLVM_CROSS_COMPILING),1)
428 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
430 LD.Flags += -Wl,--allow-multiple-definition
435 CXX.Flags += -Woverloaded-virtual
436 CPP.BaseFlags += $(CPP.Defines)
439 # Make Floating point IEEE compliant on Alpha.
442 CPP.BaseFlags += -mieee
443 ifeq ($(ENABLE_PIC),0)
445 CPP.BaseFlags += -fPIC
448 LD.Flags += -Wl,--no-relax
451 # GNU ld/PECOFF accepts but ignores them below;
455 # FIXME: autoconf should be aware of them.
456 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
457 HAVE_LINK_VERSION_SCRIPT := 0
459 RDYNAMIC := -Wl,--export-all-symbols
462 #--------------------------------------------------------------------
463 # Directory locations
464 #--------------------------------------------------------------------
466 ifeq ($(LLVM_CROSS_COMPILING),1)
467 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
470 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
471 ObjDir := $(ObjRootDir)
472 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
473 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
474 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
475 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
476 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
477 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
479 #--------------------------------------------------------------------
480 # Locations of shared libraries
481 #--------------------------------------------------------------------
484 SharedLibDir := $(LibDir)
485 LLVMSharedLibDir := $(LLVMLibDir)
487 # Win32.DLL prefers to be located on the "PATH" of binaries.
488 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
489 SharedLibDir := $(ToolDir)
490 LLVMSharedLibDir := $(LLVMToolDir)
492 ifeq ($(HOST_OS),Cygwin)
499 #--------------------------------------------------------------------
500 # LLVM Capable Compiler
501 #--------------------------------------------------------------------
503 ifneq ($(findstring llvm-gcc,$(LLVMCC_OPTION)),)
505 LLVMCXX := $(LLVMGXX)
507 ifneq ($(findstring clang,$(LLVMCC_OPTION)),)
508 ifneq ($(CLANGPATH),)
509 LLVMCC := $(CLANGPATH)
510 LLVMCXX := $(CLANGXXPATH)
512 ifeq ($(ENABLE_BUILT_CLANG),1)
513 LLVMCC := $(LLVMToolDir)/clang
514 LLVMCXX := $(LLVMToolDir)/clang++
520 #--------------------------------------------------------------------
521 # Full Paths To Compiled Tools and Utilities
522 #--------------------------------------------------------------------
523 EchoCmd := $(ECHO) llvm[$(MAKELEVEL)]:
524 ifdef BUILD_DIRS_ONLY
525 EchoCmd := $(EchoCmd) "(build tools)":
530 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
533 ifeq ($(LLVM_CROSS_COMPILING),1)
534 LLVM_TBLGEN := $(BuildLLVMToolDir)/llvm-tblgen$(BUILD_EXEEXT)
536 LLVM_TBLGEN := $(LLVMToolDir)/llvm-tblgen$(EXEEXT)
539 ifeq ($(LLVM_CROSS_COMPILING),1)
540 LLVM_CONFIG := $(BuildLLVMToolDir)/llvm-config$(BUILD_EXEEXT)
542 LLVM_CONFIG := $(LLVMToolDir)/llvm-config$(EXEEXT)
545 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
548 LLI := $(LLVMToolDir)/lli$(EXEEXT)
551 LLC := $(LLVMToolDir)/llc$(EXEEXT)
554 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
557 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
560 LLVMLINK := $(LLVMToolDir)/llvm-link$(EXEEXT)
563 #--------------------------------------------------------------------
564 # Adjust to user's request
565 #--------------------------------------------------------------------
567 ifeq ($(HOST_OS),Darwin)
568 ifdef MACOSX_DEPLOYMENT_TARGET
569 DARWIN_VERSION := $(MACOSX_DEPLOYMENT_TARGET)
571 DARWIN_VERSION := `sw_vers -productVersion`
573 # Strip a number like 10.4.7 to 10.4
574 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
575 # Get "4" out of 10.4 for later pieces in the makefile.
576 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
578 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
579 SharedLinkOptions := -dynamiclib
580 ifdef DEPLOYMENT_TARGET
581 SharedLinkOptions += $(DEPLOYMENT_TARGET)
584 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
588 SharedLinkOptions=-shared
591 ifeq ($(TARGET_OS),Darwin)
592 ifdef DEPLOYMENT_TARGET
593 TargetCommonOpts += $(DEPLOYMENT_TARGET)
596 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
602 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
603 ifneq ($(HOST_OS),Darwin)
604 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
616 # Adjust settings for verbose mode
619 AR.Flags += >/dev/null 2>/dev/null
620 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
622 ConfigureScriptFLAGS :=
625 # By default, strip symbol information from executable
627 Strip := $(PLATFORMSTRIPOPTS)
628 StripWarnMsg := "(without symbols)"
629 Install.StripFlag += -s
632 ifdef TOOL_NO_EXPORTS
635 DynamicFlag := $(RDYNAMIC)
638 # Adjust linker flags for building an executable
639 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
640 ifneq ($(HOST_OS), Darwin)
642 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib' $(DynamicFlag)
645 ifneq ($(DARWIN_MAJVERS),4)
646 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
649 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
650 LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile)
656 #----------------------------------------------------------
657 # Options To Invoke Tools
658 #----------------------------------------------------------
660 ifdef EXTRA_LD_OPTIONS
661 LD.Flags += $(EXTRA_LD_OPTIONS)
665 CompileCommonOpts += -pedantic -Wno-long-long
667 CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
668 $(EXTRA_OPTIONS) $(COVERED_SWITCH_DEFAULT) \
669 $(NO_UNINITIALIZED) $(NO_MAYBE_UNINITIALIZED) \
670 $(NO_MISSING_FIELD_INITIALIZERS)
671 # Enable cast-qual for C++; the workaround is to use const_cast.
672 CXX.Flags += -Wcast-qual
674 ifeq ($(HOST_OS),HP-UX)
675 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
678 # If we are building a universal binary on Mac OS/X, pass extra options. This
679 # is useful to people that want to link the LLVM libraries into their universal
682 # The following can be optionally specified:
683 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
684 # For Mac OS/X 10.4 Intel machines, the traditional one is:
685 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
686 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
687 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
690 ifndef UNIVERSAL_ARCH
691 UNIVERSAL_ARCH := i386 ppc
693 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
694 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
695 ifdef UNIVERSAL_SDK_PATH
696 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
699 # Building universal cannot compute dependencies automatically.
700 DISABLE_AUTO_DEPENDENCIES=1
702 ifeq ($(TARGET_OS),Darwin)
703 ifeq ($(ARCH),x86_64)
704 TargetCommonOpts = -m64
707 TargetCommonOpts = -m32
713 ifeq ($(HOST_OS),SunOS)
714 CPP.BaseFlags += -include llvm/Support/Solaris.h
717 ifeq ($(HOST_OS),AuroraUX)
718 CPP.BaseFlags += -include llvm/Support/Solaris.h
719 endif # !HOST_OS - AuroraUX.
721 # On Windows, SharedLibDir != LibDir. The order is important.
722 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
723 LD.Flags += -L$(SharedLibDir) -L$(LibDir) -L$(LLVMToolDir) -L$(LLVMLibDir)
725 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
728 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
729 # All -I flags should go here, so that they don't confuse llvm-config.
730 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
731 $(patsubst %,-I%/include,\
732 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
733 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
736 ifeq ($(INCLUDE_BUILD_DIR),1)
737 CPP.Flags += -I$(ObjDir)
740 # SHOW_DIAGNOSTICS support.
741 ifeq ($(SHOW_DIAGNOSTICS),1)
742 Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
743 CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
748 Compile.C = $(Compile.Wrapper) \
749 $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
750 $(TargetCommonOpts) $(CompileCommonOpts) -c
751 Compile.CXX = $(Compile.Wrapper) \
752 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
753 $(TargetCommonOpts) $(CompileCommonOpts) -c
754 Preprocess.CXX= $(Compile.Wrapper) \
755 $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
756 $(CompileCommonOpts) $(CXX.Flags) -E
757 Link = $(Compile.Wrapper) \
758 $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
759 $(LDFLAGS) $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
761 BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
762 $(TargetCommonOpts) $(CompileCommonOpts)
763 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
764 $(TargetCommonOpts) $(CompileCommonOpts) -E
766 BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
767 $(TargetCommonOpts) $(CompileCommonOpts)
769 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
770 ScriptInstall = $(INSTALL) -m 0755
771 DataInstall = $(INSTALL) -m 0644
773 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
774 # paths. In this case, the SYSPATH function (defined in
775 # Makefile.config) transforms Unix paths into Windows paths.
776 TableGen.Flags= -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
777 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
778 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
779 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
780 LLVMTableGen = $(LLVM_TBLGEN) $(TableGen.Flags)
782 Archive = $(AR) $(AR.Flags)
783 LArchive = $(LLVMToolDir)/llvm-ar rcsf
792 #----------------------------------------------------------
793 # Get the list of source files and compute object file
795 #----------------------------------------------------------
798 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
799 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
801 Sources := $(SOURCES)
805 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
808 BaseNameSources := $(sort $(basename $(Sources)))
810 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
811 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
813 #----------------------------------------------------------
814 # For Mingw MSYS bash and Python/w32:
816 # $(ECHOPATH) prints DOSish pathstring.
817 # ex) $(ECHOPATH) /include/sys/types.h
818 # --> C:/mingw/include/sys/types.h
819 # built-in "echo" does not transform path to DOSish path.
821 # FIXME: It would not be needed when MSYS's python
823 #----------------------------------------------------------
825 ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
826 ECHOPATH := $(Verb)$(PYTHON) -u -c "import sys;print ' '.join(sys.argv[1:])"
828 ECHOPATH := $(Verb)$(ECHO)
831 ###############################################################################
832 # DIRECTORIES: Handle recursive descent of directory structure
833 ###############################################################################
835 #---------------------------------------------------------
836 # Provide rules to make install dirs. This must be early
837 # in the file so they get built before dependencies
838 #---------------------------------------------------------
840 $(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
843 # To create other directories, as needed, and timestamp their creation
845 $(Verb) $(MKDIR) $* > /dev/null
846 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
848 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
849 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
851 #---------------------------------------------------------
852 # Handle the DIRS options for sequential construction
853 #---------------------------------------------------------
859 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
860 $(RecursiveTargets)::
861 $(Verb) for dir in $(DIRS); do \
862 if ([ ! -f $$dir/Makefile ] || \
863 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
865 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
867 ($(MAKE) -C $$dir $@ ) || exit 1; \
870 $(RecursiveTargets)::
871 $(Verb) for dir in $(DIRS); do \
872 ($(MAKE) -C $$dir $@ ) || exit 1; \
878 #---------------------------------------------------------
879 # Handle the EXPERIMENTAL_DIRS options ensuring success
880 # after each directory is built.
881 #---------------------------------------------------------
882 ifdef EXPERIMENTAL_DIRS
883 $(RecursiveTargets)::
884 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
885 if ([ ! -f $$dir/Makefile ] || \
886 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
888 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
890 ($(MAKE) -C $$dir $@ ) || exit 0; \
894 #-----------------------------------------------------------
895 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
896 #-----------------------------------------------------------
897 ifdef OPTIONAL_PARALLEL_DIRS
898 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) -o -f $(T)/Makefile && echo "$(T)"))
901 #-----------------------------------------------------------
902 # Handle the PARALLEL_DIRS options for parallel construction
903 #-----------------------------------------------------------
906 SubDirs += $(PARALLEL_DIRS)
908 # Unfortunately, this list must be maintained if new recursive targets are added
909 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
910 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
911 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
912 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
913 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
914 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
915 unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
917 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
921 SD=$(PROJ_SRC_DIR)/$(@D); \
923 if [ ! -f $$SD/Makefile ]; then \
925 DD=$(notdir $(@D)); \
927 if ([ ! -f $$DD/Makefile ] || \
928 command test $$DD/Makefile -ot \
929 $$SD/Makefile ); then \
931 $(CP) $$SD/Makefile $$DD/Makefile; \
933 $(MAKE) -C $$DD $(subst $(@D)/.make,,$@)
936 #---------------------------------------------------------
937 # Handle the OPTIONAL_DIRS options for directores that may
939 #---------------------------------------------------------
942 SubDirs += $(OPTIONAL_DIRS)
944 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
945 $(RecursiveTargets)::
946 $(Verb) for dir in $(OPTIONAL_DIRS); do \
947 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
948 if ([ ! -f $$dir/Makefile ] || \
949 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
951 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
953 ($(MAKE) -C$$dir $@ ) || exit 1; \
957 $(RecursiveTargets)::
958 $(Verb) for dir in $(OPTIONAL_DIRS); do \
959 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
960 ($(MAKE) -C$$dir $@ ) || exit 1; \
966 #---------------------------------------------------------
967 # Handle the CONFIG_FILES options
968 #---------------------------------------------------------
973 $(Echo) Install circumvented with NO_INSTALL
975 $(Echo) UnInstall circumvented with NO_INSTALL
977 install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
978 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
979 $(Verb)for file in $(CONFIG_FILES); do \
980 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
981 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
982 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
983 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
985 $(ECHO) Error: cannot find config file $${file}. ; \
990 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
991 $(Verb)for file in $(CONFIG_FILES); do \
992 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
998 ###############################################################################
999 # Set up variables for building libraries
1000 ###############################################################################
1002 #---------------------------------------------------------
1003 # Define various command line options pertaining to the
1004 # libraries needed when linking. There are "Proj" libs
1005 # (defined by the user's project) and "LLVM" libs (defined
1006 # by the LLVM project).
1007 #---------------------------------------------------------
1010 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
1011 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
1012 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
1013 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
1017 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
1018 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
1019 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
1020 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
1023 # Loadable module for Win32 requires all symbols resolved for linking.
1024 # Then all symbols in LLVM.dll will be available.
1025 ifeq ($(ENABLE_SHARED),1)
1026 ifdef LOADABLE_MODULE
1027 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
1028 LINK_COMPONENTS += all
1033 ifndef IS_CLEANING_TARGET
1034 ifdef LINK_COMPONENTS
1036 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
1037 # clean in tools, then do a make in tools (instead of at the top level).
1039 @echo "*** llvm-config doesn't exist - rebuilding it."
1040 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
1042 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
1044 ifeq ($(ENABLE_SHARED), 1)
1045 # We can take the "auto-import" feature to get rid of using dllimport.
1046 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1047 LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
1050 LLVMLibsOptions += -lLLVM-$(LLVMVersion)
1051 LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
1054 ifndef NO_LLVM_CONFIG
1055 LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
1056 ifeq ($(LLVMConfigLibs),Error)
1057 $(error llvm-config --libs failed)
1059 LLVMLibsOptions += $(LLVMConfigLibs)
1060 LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
1061 ifeq ($(LLVMConfigLibfiles),Error)
1062 $(error llvm-config --libfiles failed)
1064 LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
1071 # Set up the library exports file.
1072 ifdef EXPORTED_SYMBOL_FILE
1074 # First, set up the native export file, which may differ from the source
1077 ifeq ($(HOST_OS),Darwin)
1078 # Darwin convention prefixes symbols with underscores.
1079 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
1080 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1081 $(Verb) sed -e 's/^/_/' < $< > $@
1083 -$(Verb) $(RM) -f $(NativeExportsFile)
1085 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1086 # Gold and BFD ld require a version script rather than a plain list.
1087 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1088 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1089 $(Verb) echo "{" > $@
1090 $(Verb) grep -q '[[:alnum:]_]' $< && echo " global:" >> $@ || :
1091 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
1092 ifneq ($(HOST_OS),OpenBSD)
1093 $(Verb) echo " local: *;" >> $@
1095 $(Verb) echo "};" >> $@
1097 -$(Verb) $(RM) -f $(NativeExportsFile)
1099 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1100 # GNU ld Win32 accepts .DEF files that contain "DATA" entries.
1101 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
1102 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1103 $(Echo) Generating $(notdir $@)
1104 $(Verb) $(ECHO) "EXPORTS" > $@
1105 $(Verb) $(CAT) $< >> $@
1107 -$(Verb) $(RM) -f $(NativeExportsFile)
1109 # Default behavior: just use the exports file verbatim.
1110 NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1115 # Now add the linker command-line options to use the native export file.
1118 ifeq ($(HOST_OS),Darwin)
1119 LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1122 # gold, bfd ld, etc.
1123 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1124 LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
1128 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1129 # LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1130 SharedLinkOptions += $(NativeExportsFile)
1135 ###############################################################################
1136 # Library Build Rules: Four ways to build a library
1137 ###############################################################################
1139 #---------------------------------------------------------
1140 # Bytecode Module Targets:
1141 # If the user set MODULE_NAME then they want to build a
1142 # bytecode module from the sources. We compile all the
1143 # sources and link it together into a single bytecode
1145 #---------------------------------------------------------
1148 ifeq ($(strip $(LLVMCC)),)
1149 $(warning Modules require LLVM capable compiler but none is available ****)
1152 Module := $(LibDir)/$(MODULE_NAME).bc
1153 LinkModule := $(LLVMLINK)
1156 ifdef EXPORTED_SYMBOL_FILE
1157 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1160 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK)
1161 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
1162 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1164 all-local:: $(Module)
1167 ifneq ($(strip $(Module)),)
1168 -$(Verb) $(RM) -f $(Module)
1171 ifdef BYTECODE_DESTINATION
1172 ModuleDestDir := $(BYTECODE_DESTINATION)
1174 ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
1179 $(Echo) Install circumvented with NO_INSTALL
1181 $(Echo) Uninstall circumvented with NO_INSTALL
1183 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1185 install-module:: $(DestModule)
1186 install-local:: $(DestModule)
1188 $(DestModule): $(ModuleDestDir) $(Module)
1189 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
1190 $(Verb) $(DataInstall) $(Module) $(DestModule)
1193 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1194 -$(Verb) $(RM) -f $(DestModule)
1200 # if we're building a library ...
1203 # Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
1204 LIBRARYNAME := $(strip $(LIBRARYNAME))
1205 ifdef LOADABLE_MODULE
1206 BaseLibName.A := $(LIBRARYNAME).a
1207 BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
1209 BaseLibName.A := lib$(LIBRARYNAME).a
1210 BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1212 LibName.A := $(LibDir)/$(BaseLibName.A)
1213 LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
1214 LibName.O := $(LibDir)/$(LIBRARYNAME).o
1215 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
1217 #---------------------------------------------------------
1218 # Shared Library Targets:
1219 # If the user asked for a shared library to be built
1220 # with the SHARED_LIBRARY variable, then we provide
1221 # targets for building them.
1222 #---------------------------------------------------------
1223 ifdef SHARED_LIBRARY
1225 all-local:: $(LibName.SO)
1227 ifdef EXPORTED_SYMBOL_FILE
1228 $(LibName.SO): $(NativeExportsFile)
1231 ifdef LINK_LIBS_IN_SHARED
1232 ifdef LOADABLE_MODULE
1233 SharedLibKindMessage := "Loadable Module"
1234 SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
1236 SharedLibKindMessage := "Shared Library"
1238 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
1239 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1241 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
1242 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
1244 $(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
1245 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
1246 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
1250 ifneq ($(strip $(LibName.SO)),)
1251 -$(Verb) $(RM) -f $(LibName.SO)
1256 $(Echo) Install circumvented with NO_INSTALL
1258 $(Echo) Uninstall circumvented with NO_INSTALL
1261 # Win32.DLL prefers to be located on the "PATH" of binaries.
1262 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1263 DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
1265 DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
1267 DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
1269 install-local:: $(DestSharedLib)
1271 $(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
1272 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1273 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1276 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1277 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
1281 #---------------------------------------------------------
1282 # Bytecode Library Targets:
1283 # If the user asked for a bytecode library to be built
1284 # with the BYTECODE_LIBRARY variable, then we provide
1285 # targets for building them.
1286 #---------------------------------------------------------
1287 ifdef BYTECODE_LIBRARY
1288 ifeq ($(strip $(LLVMCC)),)
1289 $(warning Bytecode libraries require LLVM capable compiler but none is available ****)
1292 all-local:: $(LibName.BCA)
1294 ifdef EXPORTED_SYMBOL_FILE
1295 BCLinkLib = $(LLVMLINK) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1297 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK) \
1298 $(LLVMToolDir)/llvm-ar
1299 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1301 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
1303 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
1305 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1306 $(LLVMToolDir)/llvm-ar
1307 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1309 $(Verb) $(LArchive) $@ $(ObjectsBC)
1314 ifneq ($(strip $(LibName.BCA)),)
1315 -$(Verb) $(RM) -f $(LibName.BCA)
1318 ifdef BYTECODE_DESTINATION
1319 BytecodeDestDir := $(BYTECODE_DESTINATION)
1321 BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
1324 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1326 install-bytecode-local:: $(DestBytecodeLib)
1330 $(Echo) Install circumvented with NO_INSTALL
1332 $(Echo) Uninstall circumvented with NO_INSTALL
1334 install-local:: $(DestBytecodeLib)
1336 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1337 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1338 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1341 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1342 -$(Verb) $(RM) -f $(DestBytecodeLib)
1347 #---------------------------------------------------------
1349 # If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1350 # building an archive.
1351 #---------------------------------------------------------
1352 ifndef NO_BUILD_ARCHIVE
1353 ifndef BUILD_ARCHIVE
1354 ifndef LOADABLE_MODULE
1360 #---------------------------------------------------------
1361 # Archive Library Targets:
1362 # If the user wanted a regular archive library built,
1363 # then we provide targets for building them.
1364 #---------------------------------------------------------
1367 all-local:: $(LibName.A)
1369 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1370 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1371 -$(Verb) $(RM) -f $@
1372 $(Verb) $(Archive) $@ $(ObjectsO)
1373 $(Verb) $(Ranlib) $@
1376 ifneq ($(strip $(LibName.A)),)
1377 -$(Verb) $(RM) -f $(LibName.A)
1382 $(Echo) Install circumvented with NO_INSTALL
1384 $(Echo) Uninstall circumvented with NO_INSTALL
1386 ifdef NO_INSTALL_ARCHIVES
1388 $(Echo) Install circumvented with NO_INSTALL
1390 $(Echo) Uninstall circumvented with NO_INSTALL
1392 DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
1394 install-local:: $(DestArchiveLib)
1396 $(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
1397 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1398 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
1399 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1402 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1403 -$(Verb) $(RM) -f $(DestArchiveLib)
1411 ###############################################################################
1412 # Tool Build Rules: Build executable tool based on TOOLNAME option
1413 ###############################################################################
1417 #---------------------------------------------------------
1418 # Set up variables for building a tool.
1419 #---------------------------------------------------------
1420 TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
1422 ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
1424 ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1427 # TOOLALIAS is a name to symlink (or copy) the tool to.
1430 ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1432 ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1436 #---------------------------------------------------------
1438 #---------------------------------------------------------
1440 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1441 # not exporting all of the weak symbols from the binary. This reduces dyld
1442 # startup time by 4x on darwin in some cases.
1443 ifdef TOOL_NO_EXPORTS
1444 ifeq ($(HOST_OS),Darwin)
1446 # Tiger tools don't support this.
1447 ifneq ($(DARWIN_MAJVERS),4)
1448 LD.Flags += -Wl,-exported_symbol,_main
1452 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD GNU))
1453 ifneq ($(ARCH), Mips)
1454 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1459 #---------------------------------------------------------
1460 # Tool Order File Support
1461 #---------------------------------------------------------
1463 ifeq ($(HOST_OS),Darwin)
1464 ifdef TOOL_ORDER_FILE
1466 LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1471 #---------------------------------------------------------
1472 # Tool Version Info Support
1473 #---------------------------------------------------------
1475 ifeq ($(HOST_OS),Darwin)
1476 ifdef TOOL_INFO_PLIST
1478 LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1480 $(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1482 $(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
1483 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1484 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1485 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1486 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1487 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1493 #---------------------------------------------------------
1494 # Provide targets for building the tools
1495 #---------------------------------------------------------
1496 all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
1499 ifneq ($(strip $(ToolBuildPath)),)
1500 -$(Verb) $(RM) -f $(ToolBuildPath)
1502 ifneq ($(strip $(ToolAliasBuildPath)),)
1503 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1507 $(ToolBuildPath): $(ExmplDir)/.dir
1509 $(ToolBuildPath): $(ToolDir)/.dir
1512 ifdef CODESIGN_TOOLS
1513 TOOL_CODESIGN_IDENTITY ?= -
1515 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1516 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1517 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1518 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1519 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1521 $(Echo) ======= Code-Signing $(BuildMode) Executable $(TOOLNAME)
1522 $(Verb) codesign -s $(TOOL_CODESIGN_IDENTITY) $@
1524 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1525 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1526 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1527 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1528 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1532 ifneq ($(strip $(ToolAliasBuildPath)),)
1533 $(ToolAliasBuildPath): $(ToolBuildPath)
1534 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1535 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1536 $(Verb) $(AliasTool) $(notdir $(ToolBuildPath)) $(ToolAliasBuildPath)
1537 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
1543 $(Echo) Install circumvented with NO_INSTALL
1545 $(Echo) Uninstall circumvented with NO_INSTALL
1549 ToolBinDir = $(DESTDIR)$(PROJ_internal_prefix)/bin
1551 ToolBinDir = $(DESTDIR)$(PROJ_bindir)
1553 DestTool = $(ToolBinDir)/$(program_prefix)$(TOOLEXENAME)
1555 install-local:: $(DestTool)
1557 $(DestTool): $(ToolBuildPath)
1558 $(Echo) Installing $(BuildMode) $(DestTool)
1559 $(Verb) $(MKDIR) $(ToolBinDir)
1560 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1563 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1564 -$(Verb) $(RM) -f $(DestTool)
1566 # TOOLALIAS install.
1568 DestToolAlias = $(ToolBinDir)/$(program_prefix)$(TOOLALIAS)$(EXEEXT)
1570 install-local:: $(DestToolAlias)
1572 $(DestToolAlias): $(DestTool)
1573 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1574 $(Verb) $(RM) -f $(DestToolAlias)
1575 $(Verb) $(AliasTool) $(notdir $(DestTool)) $(DestToolAlias)
1578 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1579 -$(Verb) $(RM) -f $(DestToolAlias)
1585 ###############################################################################
1586 # Object Build Rules: Build object files based on sources
1587 ###############################################################################
1589 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1590 ifeq ($(HOST_OS),HP-UX)
1591 DISABLE_AUTO_DEPENDENCIES=1
1594 # Provide rule sets for when dependency generation is enabled
1595 ifndef DISABLE_AUTO_DEPENDENCIES
1597 #---------------------------------------------------------
1598 # Create .o files in the ObjDir directory from the .cpp and .c files...
1599 #---------------------------------------------------------
1601 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1602 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1604 # If the build succeeded, move the dependency file over, otherwise
1606 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1607 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1609 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1610 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1611 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1614 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1615 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1616 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1619 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1620 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1621 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1624 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1625 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1626 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1629 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1630 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1631 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1634 #---------------------------------------------------------
1635 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1636 #---------------------------------------------------------
1638 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1639 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1641 # If the build succeeded, move the dependency file over, otherwise
1643 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1644 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1646 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1647 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1648 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1649 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1650 $(BC_DEPEND_MOVEFILE)
1652 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1653 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1654 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1655 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1656 $(BC_DEPEND_MOVEFILE)
1658 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1659 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1660 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1661 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1662 $(BC_DEPEND_MOVEFILE)
1664 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1665 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1666 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1667 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1668 $(BC_DEPEND_MOVEFILE)
1670 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1671 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1672 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1673 $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1674 $(BC_DEPEND_MOVEFILE)
1676 # Provide alternate rule sets if dependencies are disabled
1679 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1680 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1681 $(Compile.CXX) $< -o $@
1683 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1684 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1685 $(Compile.CXX) $< -o $@
1687 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1688 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1689 $(Compile.CXX) $< -o $@
1691 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1692 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1693 $(Compile.C) $< -o $@
1695 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1696 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1697 $(Compile.C) $< -o $@
1699 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1700 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1701 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1703 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1704 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1705 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1707 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1708 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1709 $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1711 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1712 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1713 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1715 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1716 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1717 $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1722 ## Rules for building preprocessed (.i/.ii) outputs.
1723 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1724 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1725 $(Verb) $(Preprocess.CXX) $< -o $@
1727 $(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1728 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1729 $(Verb) $(Preprocess.CXX) $< -o $@
1731 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1732 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1733 $(Verb) $(Preprocess.CXX) $< -o $@
1735 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1736 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1737 $(Verb) $(Preprocess.C) $< -o $@
1739 $(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1740 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1741 $(Verb) $(Preprocess.C) $< -o $@
1744 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1745 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1746 $(Compile.CXX) $< -o $@ -S
1748 $(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1749 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1750 $(Compile.CXX) $< -o $@ -S
1752 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1753 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1754 $(Compile.CXX) $< -o $@ -S
1756 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1757 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1758 $(Compile.C) $< -o $@ -S
1760 $(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1761 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1762 $(Compile.C) $< -o $@ -S
1765 # make the C and C++ compilers strip debug info out of bytecode libraries.
1767 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1768 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1769 $(Verb) $(LOPT) $< -std-compile-opts -o $@
1771 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1772 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1773 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1777 #---------------------------------------------------------
1778 # Provide rule to build .bc files from .ll sources,
1779 # regardless of dependencies
1780 #---------------------------------------------------------
1781 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1782 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1783 $(Verb) $(LLVMAS) $< -f -o $@
1785 ###############################################################################
1786 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1787 ###############################################################################
1790 TABLEGEN_INC_FILES_COMMON = 1
1793 ifdef TABLEGEN_INC_FILES_COMMON
1795 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1796 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1797 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1799 # INCFiles rule: All of the tblgen generated files are emitted to
1800 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1801 # us to only "touch" the real file if the contents of it change. IOW, if
1802 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1803 # dependencies of the .inc files are, unless the contents of the .inc file
1805 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1806 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1808 endif # TABLEGEN_INC_FILES_COMMON
1812 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1813 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1814 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1815 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1816 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1817 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1818 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/IR/Intrinsics*.td)
1820 # All .inc.tmp files depend on the .td files.
1821 $(INCTMPFiles) : $(TDFiles)
1823 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1824 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1825 $(Echo) "Building $(<F) register info implementation with tblgen"
1826 $(Verb) $(LLVMTableGen) -gen-register-info -o $(call SYSPATH, $@) $<
1828 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1829 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1830 $(Echo) "Building $(<F) instruction information with tblgen"
1831 $(Verb) $(LLVMTableGen) -gen-instr-info -o $(call SYSPATH, $@) $<
1833 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1834 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1835 $(Echo) "Building $(<F) assembly writer with tblgen"
1836 $(Verb) $(LLVMTableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1838 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1839 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1840 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1841 $(Verb) $(LLVMTableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1843 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1844 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1845 $(Echo) "Building $(<F) assembly matcher with tblgen"
1846 $(Verb) $(LLVMTableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1848 $(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
1849 $(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1850 $(Echo) "Building $(<F) MC code emitter with tblgen"
1851 $(Verb) $(LLVMTableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
1853 $(TARGET:%=$(ObjDir)/%GenMCPseudoLowering.inc.tmp): \
1854 $(ObjDir)/%GenMCPseudoLowering.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1855 $(Echo) "Building $(<F) MC Pseudo instruction expander with tblgen"
1856 $(Verb) $(LLVMTableGen) -gen-pseudo-lowering -o $(call SYSPATH, $@) $<
1858 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1859 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1860 $(Echo) "Building $(<F) code emitter with tblgen"
1861 $(Verb) $(LLVMTableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1863 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1864 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1865 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1866 $(Verb) $(LLVMTableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1868 $(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1869 $(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1870 $(Echo) "Building $(<F) disassembly tables with tblgen"
1871 $(Verb) $(LLVMTableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1873 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1874 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1875 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1876 $(Verb) $(LLVMTableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1878 $(TARGET:%=$(ObjDir)/%GenSubtargetInfo.inc.tmp): \
1879 $(ObjDir)/%GenSubtargetInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1880 $(Echo) "Building $(<F) subtarget information with tblgen"
1881 $(Verb) $(LLVMTableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1883 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1884 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1885 $(Echo) "Building $(<F) calling convention information with tblgen"
1886 $(Verb) $(LLVMTableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1888 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1889 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1890 $(Echo) "Building $(<F) intrinsics information with tblgen"
1891 $(Verb) $(LLVMTableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1893 $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1894 $(Echo) "Building $(<F) decoder tables with tblgen"
1895 $(Verb) $(LLVMTableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1897 $(ObjDir)/%GenDFAPacketizer.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1898 $(Echo) "Building $(<F) DFA packetizer tables with tblgen"
1899 $(Verb) $(LLVMTableGen) -gen-dfa-packetizer -o $(call SYSPATH, $@) $<
1902 -$(Verb) $(RM) -f $(INCFiles)
1906 ###############################################################################
1907 # OTHER RULES: Other rules needed
1908 ###############################################################################
1910 # To create postscript files from dot files...
1911 ifneq ($(DOT),false)
1913 $(DOT) -Tps < $< > $@
1916 $(Echo) "Cannot build $@: The program dot is not installed"
1919 # This rules ensures that header files that are removed still have a rule for
1920 # which they can be "generated." This allows make to ignore them and
1921 # reproduce the dependency lists.
1925 # Define clean-local to clean the current directory. Note that this uses a
1926 # very conservative approach ensuring that empty variables do not cause
1927 # errors or disastrous removal.
1929 ifneq ($(strip $(ObjRootDir)),)
1930 -$(Verb) $(RM) -rf $(ObjRootDir)
1932 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1933 -$(Verb) $(RM) -f *$(SHLIBEXT)
1937 -$(Verb) $(RM) -rf Debug Release Profile
1940 ###############################################################################
1941 # DEPENDENCIES: Include the dependency files if we should
1942 ###############################################################################
1943 ifndef DISABLE_AUTO_DEPENDENCIES
1945 # If its not one of the cleaning targets
1946 ifndef IS_CLEANING_TARGET
1948 # Get the list of dependency files
1949 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
1950 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1952 # Include bitcode dependency files if using bitcode libraries
1953 ifdef BYTECODE_LIBRARY
1954 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1957 -include $(DependFiles) ""
1963 ###############################################################################
1964 # CHECK: Running the test suite
1965 ###############################################################################
1968 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1969 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1970 $(EchoCmd) Running test suite ; \
1971 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1972 TESTSUITE=$(TESTSUITE) ; \
1974 $(EchoCmd) No Makefile in test directory ; \
1977 $(EchoCmd) No test directory ; \
1980 # An alias dating from when both lit and DejaGNU test runners were used.
1984 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1985 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1986 $(EchoCmd) Running test suite ; \
1987 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1989 $(EchoCmd) No Makefile in test directory ; \
1992 $(EchoCmd) No test directory ; \
1995 ###############################################################################
1996 # UNITTESTS: Running the unittests test suite
1997 ###############################################################################
2000 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
2001 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
2002 $(EchoCmd) Running unittests test suite ; \
2003 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
2005 $(EchoCmd) No Makefile in unittests directory ; \
2008 $(EchoCmd) No unittests directory ; \
2011 ###############################################################################
2012 # DISTRIBUTION: Handle construction of a distribution tarball
2013 ###############################################################################
2015 #------------------------------------------------------------------------
2016 # Define distribution related variables
2017 #------------------------------------------------------------------------
2018 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
2019 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2020 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
2021 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
2022 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
2023 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
2024 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
2025 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
2026 Makefile.config.in configure autoconf
2027 DistOther := $(notdir $(wildcard \
2028 $(PROJ_SRC_DIR)/*.h \
2029 $(PROJ_SRC_DIR)/*.td \
2030 $(PROJ_SRC_DIR)/*.def \
2031 $(PROJ_SRC_DIR)/*.ll \
2032 $(PROJ_SRC_DIR)/*.in))
2033 DistSubDirs := $(SubDirs)
2034 DistSources = $(Sources) $(EXTRA_DIST)
2035 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
2037 #------------------------------------------------------------------------
2038 # We MUST build distribution with OBJ_DIR != SRC_DIR
2039 #------------------------------------------------------------------------
2040 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
2041 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
2042 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
2046 #------------------------------------------------------------------------
2047 # Prevent attempt to run dist targets from anywhere but the top level
2048 #------------------------------------------------------------------------
2050 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
2051 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
2054 #------------------------------------------------------------------------
2055 # Provide the top level targets
2056 #------------------------------------------------------------------------
2058 dist-gzip:: $(DistTarGZip)
2060 $(DistTarGZip) : $(TopDistDir)/.makedistdir
2061 $(Echo) Packing gzipped distribution tar file.
2062 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
2063 $(GZIP) -c > "$(DistTarGZip)"
2065 dist-bzip2:: $(DistTarBZ2)
2067 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
2068 $(Echo) Packing bzipped distribution tar file.
2069 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
2070 $(BZIP2) -c >$(DistTarBZ2)
2072 dist-zip:: $(DistZip)
2074 $(DistZip) : $(TopDistDir)/.makedistdir
2075 $(Echo) Packing zipped distribution file.
2076 $(Verb) rm -f $(DistZip)
2077 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
2079 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
2080 $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
2082 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
2084 dist-check:: $(DistTarGZip)
2085 $(Echo) Checking distribution tar file.
2086 $(Verb) if test -d $(DistCheckDir) ; then \
2087 $(RM) -rf $(DistCheckDir) ; \
2089 $(Verb) $(MKDIR) $(DistCheckDir)
2090 $(Verb) cd $(DistCheckDir) && \
2091 $(MKDIR) $(DistCheckDir)/build && \
2092 $(MKDIR) $(DistCheckDir)/install && \
2093 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2095 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
2096 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
2099 $(MAKE) unittests && \
2100 $(MAKE) install && \
2101 $(MAKE) uninstall && \
2102 $(MAKE) dist-clean && \
2103 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
2106 $(Echo) Cleaning distribution files
2107 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2112 #------------------------------------------------------------------------
2113 # Provide the recursive distdir target for building the distribution directory
2114 #------------------------------------------------------------------------
2115 distdir: $(DistDir)/.makedistdir
2116 $(DistDir)/.makedistdir: $(DistSources)
2117 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2118 if test -d "$(DistDir)" ; then \
2119 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2122 $(EchoCmd) Removing old $(DistDir) ; \
2123 $(RM) -rf $(DistDir); \
2124 $(EchoCmd) Making 'all' to verify build ; \
2125 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
2127 $(Echo) Building Distribution Directory $(DistDir)
2128 $(Verb) $(MKDIR) $(DistDir)
2129 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2130 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
2131 for file in $(DistFiles) ; do \
2133 $(PROJ_SRC_DIR)/*) \
2134 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2136 $(PROJ_SRC_ROOT)/*) \
2137 file=`echo "$$file" | \
2138 sed "s#^$$srcrootstrip/##"` \
2141 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2142 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2143 from_dir="$(PROJ_SRC_DIR)" ; \
2144 elif test -f "$$file" || test -d "$$file" ; then \
2147 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
2148 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2149 to_dir="$(DistDir)/$$dir"; \
2150 $(MKDIR) "$$to_dir" ; \
2152 to_dir="$(DistDir)"; \
2154 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2155 if test -n "$$mid_dir" ; then \
2156 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
2158 if test -d "$$from_dir/$$file"; then \
2159 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2160 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
2161 cd $(PROJ_SRC_DIR) ; \
2162 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2163 ( cd $$to_dir ; $(TAR) xf - ) ; \
2164 cd $(PROJ_OBJ_DIR) ; \
2167 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2168 ( cd $$to_dir ; $(TAR) xf - ) ; \
2169 cd $(PROJ_OBJ_DIR) ; \
2171 elif test -f "$$from_dir/$$file" ; then \
2172 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
2173 elif test -L "$$from_dir/$$file" ; then \
2174 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
2175 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
2176 $(EchoCmd) "===== WARNING: Distribution Source " \
2177 "$$from_dir/$$file Not Found!" ; \
2178 elif test "$(Verb)" != '@' ; then \
2179 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
2182 $(Verb) for subdir in $(DistSubDirs) ; do \
2183 if test "$$subdir" \!= "." ; then \
2184 new_distdir="$(DistDir)/$$subdir" ; \
2185 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
2186 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
2187 DistDir="$$new_distdir" distdir ) || exit 1; \
2190 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2191 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
2192 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2193 -name .svn \) -print` ;\
2194 $(MAKE) dist-hook ; \
2195 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2196 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2197 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2198 -o ! -type d ! -perm -444 -exec \
2199 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2200 || chmod -R a+r $(DistDir) ; \
2203 # This is invoked by distdir target, define it as a no-op to avoid errors if not
2209 ###############################################################################
2210 # TOP LEVEL - targets only to apply at the top level directory
2211 ###############################################################################
2215 #------------------------------------------------------------------------
2216 # Install support for the project's include files:
2217 #------------------------------------------------------------------------
2220 $(Echo) Install circumvented with NO_INSTALL
2222 $(Echo) Uninstall circumvented with NO_INSTALL
2225 $(Echo) Installing include files
2226 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
2227 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2228 cd $(PROJ_SRC_ROOT)/include && \
2229 for hdr in `find . -type f \
2230 '(' -name LICENSE.TXT \
2235 ')' -print | grep -v CVS | \
2236 grep -v .svn` ; do \
2237 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2238 if test \! -d "$$instdir" ; then \
2239 $(EchoCmd) Making install directory $$instdir ; \
2240 $(MKDIR) $$instdir ;\
2242 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2245 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2246 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2247 cd $(PROJ_OBJ_ROOT)/include && \
2248 for hdr in `find . -type f \
2249 '(' -name LICENSE.TXT \
2254 ')' -print | grep -v CVS | \
2255 grep -v .svn` ; do \
2256 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2257 if test \! -d "$$instdir" ; then \
2258 $(EchoCmd) Making install directory $$instdir ; \
2259 $(MKDIR) $$instdir ;\
2261 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2267 $(Echo) Uninstalling include files
2268 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2269 cd $(PROJ_SRC_ROOT)/include && \
2270 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2271 '!' '(' -name '*~' -o -name '.#*' \
2272 -o -name '*.in' ')' -print ')' | \
2273 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2274 cd $(PROJ_SRC_ROOT)/include && \
2275 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
2276 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2282 @echo searching for overlength lines in files: $(Sources)
2285 egrep -n '.{81}' $(Sources) /dev/null
2288 @echo searching for tabs in files: $(Sources)
2291 egrep -n ' ' $(Sources) /dev/null
2294 @ls -l $(LibDir) | awk '\
2295 BEGIN { sum = 0; } \
2297 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2298 @ls -l $(ToolDir) | awk '\
2299 BEGIN { sum = 0; } \
2301 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2302 #------------------------------------------------------------------------
2303 # Print out the directories used for building
2304 #------------------------------------------------------------------------
2306 $(Echo) "BuildMode : " '$(BuildMode)'
2307 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2308 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2309 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2310 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2311 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2312 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2313 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2314 $(Echo) "PROJ_internal_prefix : " '$(PROJ_internal_prefix)'
2315 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2316 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2317 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
2318 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
2319 $(Echo) "UserTargets : " '$(UserTargets)'
2320 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2321 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2322 $(Echo) "ObjDir : " '$(ObjDir)'
2323 $(Echo) "LibDir : " '$(LibDir)'
2324 $(Echo) "ToolDir : " '$(ToolDir)'
2325 $(Echo) "ExmplDir : " '$(ExmplDir)'
2326 $(Echo) "Sources : " '$(Sources)'
2327 $(Echo) "TDFiles : " '$(TDFiles)'
2328 $(Echo) "INCFiles : " '$(INCFiles)'
2329 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
2330 $(Echo) "PreConditions: " '$(PreConditions)'
2331 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2332 $(Echo) "Compile.C : " '$(Compile.C)'
2333 $(Echo) "Archive : " '$(Archive)'
2334 $(Echo) "YaccFiles : " '$(YaccFiles)'
2335 $(Echo) "LexFiles : " '$(LexFiles)'
2336 $(Echo) "Module : " '$(Module)'
2337 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2338 $(Echo) "SubDirs : " '$(SubDirs)'
2339 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2340 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2345 # General debugging rule, use 'make dbg-print-XXX' to print the
2346 # definition, value and origin of XXX.
2348 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))