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 # PRECONDITIONS: that which must be built/checked first
62 ################################################################################
64 SrcMakefiles := $(filter %Makefile %Makefile.tests,\
65 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
66 ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
67 ConfigureScript := $(PROJ_SRC_ROOT)/configure
68 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
69 MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
70 MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
71 MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
72 MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
73 PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
74 ifneq ($(MakefileCommonIn),)
75 PreConditions += $(MakefileCommon)
78 ifneq ($(MakefileConfigIn),)
79 PreConditions += $(MakefileConfig)
82 preconditions: $(PreConditions)
84 #------------------------------------------------------------------------
85 # Make sure the BUILT_SOURCES are built first
86 #------------------------------------------------------------------------
87 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
90 ifneq ($(strip $(BUILT_SOURCES)),)
91 -$(Verb) $(RM) -f $(BUILT_SOURCES)
94 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
96 $(Verb) if test -x config.status ; then \
97 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
98 $(MKDIR) .spotless.save ; \
99 $(MV) config.status .spotless.save ; \
100 $(MV) mklib .spotless.save ; \
101 $(MV) projects .spotless.save ; \
103 $(MV) .spotless.save/config.status . ; \
104 $(MV) .spotless.save/mklib . ; \
105 $(MV) .spotless.save/projects . ; \
106 $(RM) -rf .spotless.save ; \
107 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
108 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109 $(ConfigStatusScript) ; \
111 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
115 $(EchoCmd) "spotless target not supported for objdir == srcdir"
118 $(BUILT_SOURCES) : $(ObjMakefiles)
120 #------------------------------------------------------------------------
121 # Make sure we're not using a stale configuration
122 #------------------------------------------------------------------------
124 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
125 $(Verb) cd $(PROJ_OBJ_ROOT) && \
126 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
127 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
129 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130 $(ConfigStatusScript)
132 .PRECIOUS: $(ConfigStatusScript)
133 $(ConfigStatusScript): $(ConfigureScript)
134 $(Echo) Reconfiguring with $<
135 $(Verb) cd $(PROJ_OBJ_ROOT) && \
136 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
137 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
139 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
140 $(ConfigStatusScript)
142 #------------------------------------------------------------------------
143 # Make sure the configuration makefile is up to date
144 #------------------------------------------------------------------------
145 ifneq ($(MakefileConfigIn),)
146 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
147 $(Echo) Regenerating $@
148 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
151 ifneq ($(MakefileCommonIn),)
152 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
153 $(Echo) Regenerating $@
154 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
157 #------------------------------------------------------------------------
158 # If the Makefile in the source tree has been updated, copy it over into the
159 # build tree. But, only do this if the source and object makefiles differ
160 #------------------------------------------------------------------------
162 PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
165 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
167 Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
168 $(Echo) "Updating Makefile"
169 $(Verb) $(MKDIR) $(@D)
170 $(Verb) $(CP) -f $< $@
172 # Copy the Makefile.* files unless we're in the root directory which avoids
173 # the copying of Makefile.config.in or other things that should be explicitly
175 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
177 *Makefile.rules) ;; \
179 *) $(EchoCmd) "Updating $(@F)" ; \
186 #------------------------------------------------------------------------
187 # Set up the basic dependencies
188 #------------------------------------------------------------------------
189 $(UserTargets):: $(PreConditions)
193 clean-all:: clean-local clean-all-local
194 install:: install-local
195 uninstall:: uninstall-local
196 install-local:: all-local
197 install-bytecode:: install-bytecode-local
199 ###############################################################################
200 # LLVMC: Provide rules for compiling llvmc-based driver
201 ###############################################################################
203 ifdef LLVMC_BASED_DRIVER
205 TOOLNAME = $(LLVMC_BASED_DRIVER)
207 LLVMLIBS = CompilerDriver.a
208 LINK_COMPONENTS = support
210 endif # LLVMC_BASED_DRIVER
212 ###############################################################################
213 # VARIABLES: Set up various variables based on configuration data
214 ###############################################################################
216 # Variable for if this make is for a "cleaning" target
217 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
221 #--------------------------------------------------------------------
222 # Variables derived from configuration we are building
223 #--------------------------------------------------------------------
226 ifeq ($(ENABLE_OPTIMIZED),1)
228 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
229 ifneq ($(HOST_OS),FreeBSD)
230 ifneq ($(HOST_OS),Darwin)
231 OmitFramePointer := -fomit-frame-pointer
235 # Darwin requires -fstrict-aliasing to be explicitly enabled.
236 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
237 # with -fstrict-aliasing and ipa-type-escape radr://6756684
238 #ifeq ($(HOST_OS),Darwin)
239 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
241 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
242 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
243 LD.Flags += $(OPTIMIZE_OPTION)
245 BuildMode := $(BuildMode)+Debug
252 ifdef NO_DEBUG_SYMBOLS
253 BuildMode := Unoptimized
267 ifeq ($(ENABLE_PROFILING),1)
268 BuildMode := $(BuildMode)+Profile
269 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
270 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
271 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
275 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
276 # CXX.Flags += -fvisibility-inlines-hidden
279 ifdef ENABLE_EXPENSIVE_CHECKS
280 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
281 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
285 # IF REQUIRES_EH=1 is specified then don't disable exceptions
287 CXX.Flags += -fno-exceptions
289 # If the library requires EH, it also requires RTTI.
293 ifdef REQUIRES_FRAME_POINTER
294 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
295 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
296 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
299 # If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
300 ifneq ($(REQUIRES_RTTI), 1)
301 CXX.Flags += -fno-rtti
304 ifeq ($(ENABLE_COVERAGE),1)
305 BuildMode := $(BuildMode)+Coverage
306 CXX.Flags += -ftest-coverage -fprofile-arcs
307 C.Flags += -ftest-coverage -fprofile-arcs
310 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
311 # then disable assertions by defining the appropriate preprocessor symbols.
312 ifeq ($(DISABLE_ASSERTIONS),1)
313 CPP.Defines += -DNDEBUG
315 BuildMode := $(BuildMode)+Asserts
316 CPP.Defines += -D_DEBUG
319 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
320 # configured), then enable expensive checks by defining the
321 # appropriate preprocessor symbols.
322 ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
323 BuildMode := $(BuildMode)+Checks
324 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
327 # LOADABLE_MODULE implies several other things so we force them to be
329 ifdef LOADABLE_MODULE
331 LINK_LIBS_IN_SHARED := 1
339 ifeq ($(ENABLE_PIC),1)
340 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
341 # Nothing. Win32 defaults to PIC and warns when given -fPIC
343 ifeq ($(HOST_OS),Darwin)
344 # Common symbols not allowed in dylib files
345 CXX.Flags += -fno-common
346 C.Flags += -fno-common
348 # Linux and others; pass -fPIC
354 ifeq ($(HOST_OS),Darwin)
355 CXX.Flags += -mdynamic-no-pic
356 C.Flags += -mdynamic-no-pic
360 # Support makefile variable to disable any kind of timestamp/non-deterministic
361 # info from being used in the build.
362 ifeq ($(ENABLE_TIMESTAMPS),1)
363 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
365 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
368 ifeq ($(HOST_OS),MingW)
370 CPP.Defines += -D__NO_CTYPE_INLINE
371 ifeq ($(LLVM_CROSS_COMPILING),1)
372 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
374 LD.Flags += -Wl,--allow-multiple-definition
379 CXX.Flags += -Woverloaded-virtual
380 CPP.BaseFlags += $(CPP.Defines)
383 # Make Floating point IEEE compliant on Alpha.
386 CPP.BaseFlags += -mieee
387 ifeq ($(ENABLE_PIC),0)
389 CPP.BaseFlags += -fPIC
392 LD.Flags += -Wl,--no-relax
395 # GNU ld/PECOFF accepts but ignores them below;
399 # FIXME: autoconf should be aware of them.
400 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
401 HAVE_LINK_VERSION_SCRIPT := 0
403 RDYNAMIC := -Wl,--export-all-symbols
406 #--------------------------------------------------------------------
407 # Directory locations
408 #--------------------------------------------------------------------
410 ifeq ($(LLVM_CROSS_COMPILING),1)
411 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
414 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
415 ObjDir := $(ObjRootDir)
416 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
417 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
418 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
419 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
420 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
421 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
423 #--------------------------------------------------------------------
424 # Locations of shared libraries
425 #--------------------------------------------------------------------
428 SharedLibDir := $(LibDir)
429 LLVMSharedLibDir := $(LLVMLibDir)
431 # Win32.DLL prefers to be located on the "PATH" of binaries.
432 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
433 SharedLibDir := $(ToolDir)
434 LLVMSharedLibDir := $(LLVMToolDir)
436 ifeq ($(HOST_OS),Cygwin)
443 #--------------------------------------------------------------------
444 # LLVM Capable Compiler
445 #--------------------------------------------------------------------
447 ifeq ($(LLVMCC_OPTION),llvm-gcc)
449 LLVMCXX := $(LLVMGXX)
451 ifeq ($(LLVMCC_OPTION),clang)
452 ifneq ($(CLANGPATH),)
453 LLVMCC := $(CLANGPATH)
454 LLVMCXX := $(CLANGXXPATH)
456 ifeq ($(ENABLE_BUILT_CLANG),1)
457 LLVMCC := $(LLVMToolDir)/clang
458 LLVMCXX := $(LLVMToolDir)/clang++
464 #--------------------------------------------------------------------
465 # Full Paths To Compiled Tools and Utilities
466 #--------------------------------------------------------------------
467 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
470 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
473 ifeq ($(LLVM_CROSS_COMPILING),1)
474 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
476 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
479 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
481 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
484 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
487 LLI := $(LLVMToolDir)/lli$(EXEEXT)
490 LLC := $(LLVMToolDir)/llc$(EXEEXT)
493 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
496 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
499 #--------------------------------------------------------------------
500 # Adjust to user's request
501 #--------------------------------------------------------------------
503 ifeq ($(HOST_OS),Darwin)
504 DARWIN_VERSION := `sw_vers -productVersion`
505 # Strip a number like 10.4.7 to 10.4
506 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
507 # Get "4" out of 10.4 for later pieces in the makefile.
508 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
510 LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
511 SharedLinkOptions := -dynamiclib
513 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
516 SharedLinkOptions=-shared
519 ifeq ($(TARGET_OS),Darwin)
521 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
526 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
527 ifneq ($(HOST_OS),Darwin)
528 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
540 # Adjust settings for verbose mode
543 AR.Flags += >/dev/null 2>/dev/null
544 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
546 ConfigureScriptFLAGS :=
549 # By default, strip symbol information from executable
551 Strip := $(PLATFORMSTRIPOPTS)
552 StripWarnMsg := "(without symbols)"
553 Install.StripFlag += -s
556 ifdef TOOL_NO_EXPORTS
559 DynamicFlag := $(RDYNAMIC)
562 # Adjust linker flags for building an executable
563 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
564 ifneq ($(HOST_OS), Darwin)
566 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
568 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(DynamicFlag)
570 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(DynamicFlag)
574 ifneq ($(DARWIN_MAJVERS),4)
575 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
581 #----------------------------------------------------------
582 # Options To Invoke Tools
583 #----------------------------------------------------------
586 CompileCommonOpts += -pedantic -Wno-long-long
588 CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
590 # Enable cast-qual for C++; the workaround is to use const_cast.
591 CXX.Flags += -Wcast-qual
593 ifeq ($(HOST_OS),HP-UX)
594 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
597 # If we are building a universal binary on Mac OS/X, pass extra options. This
598 # is useful to people that want to link the LLVM libraries into their universal
601 # The following can be optionally specified:
602 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
603 # For Mac OS/X 10.4 Intel machines, the traditional one is:
604 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
605 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
606 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
609 ifndef UNIVERSAL_ARCH
610 UNIVERSAL_ARCH := i386 ppc
612 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
613 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
614 ifdef UNIVERSAL_SDK_PATH
615 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
618 # Building universal cannot compute dependencies automatically.
619 DISABLE_AUTO_DEPENDENCIES=1
621 ifeq ($(TARGET_OS),Darwin)
622 ifeq ($(ARCH),x86_64)
623 TargetCommonOpts = -m64
626 TargetCommonOpts = -m32
632 ifeq ($(HOST_OS),SunOS)
633 CPP.BaseFlags += -include llvm/Support/Solaris.h
636 ifeq ($(HOST_OS),AuroraUX)
637 CPP.BaseFlags += -include llvm/Support/Solaris.h
638 endif # !HOST_OS - AuroraUX.
640 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
641 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
642 # All -I flags should go here, so that they don't confuse llvm-config.
643 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
644 $(patsubst %,-I%/include,\
645 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
646 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
649 ifeq ($(BUILD_COMPONENT), 1)
650 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
651 $(TargetCommonOpts) $(CompileCommonOpts) -c
652 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
654 $(TargetCommonOpts) $(CompileCommonOpts) -c
655 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
656 $(CompileCommonOpts) $(CXX.Flags) -E
657 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
658 $(LD.Flags) $(LDFLAGS) \
659 $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
661 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
662 $(TargetCommonOpts) $(CompileCommonOpts) -c
663 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
664 $(TargetCommonOpts) $(CompileCommonOpts) -c
665 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
666 $(CompileCommonOpts) $(CXX.Flags) -E
667 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
668 $(LDFLAGS) $(TargetCommonOpts) $(CompileCommonOpts) $(Strip)
671 BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
672 $(TargetCommonOpts) $(CompileCommonOpts)
673 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
674 $(TargetCommonOpts) $(CompileCommonOpts) -E
676 BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
677 $(TargetCommonOpts) $(CompileCommonOpts)
679 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
680 ScriptInstall = $(INSTALL) -m 0755
681 DataInstall = $(INSTALL) -m 0644
683 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
684 # paths. In this case, the SYSPATH function (defined in
685 # Makefile.config) transforms Unix paths into Windows paths.
686 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
687 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
688 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
689 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
691 Archive = $(AR) $(AR.Flags)
692 LArchive = $(LLVMToolDir)/llvm-ar rcsf
701 #----------------------------------------------------------
702 # Get the list of source files and compute object file
704 #----------------------------------------------------------
707 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
708 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
710 Sources := $(SOURCES)
714 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
717 BaseNameSources := $(sort $(basename $(Sources)))
719 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
720 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
722 #----------------------------------------------------------
723 # For Mingw MSYS bash and Python/w32:
725 # $(ECHOPATH) prints DOSish pathstring.
726 # ex) $(ECHOPATH) /include/sys/types.h
727 # --> C:/mingw/include/sys/types.h
728 # built-in "echo" does not transform path to DOSish path.
730 # FIXME: It would not be needed when MSYS's python
732 #----------------------------------------------------------
734 ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
735 ECHOPATH := $(Verb)python -u -c "import sys;print ' '.join(sys.argv[1:])"
737 ECHOPATH := $(Verb)$(ECHO)
740 ###############################################################################
741 # DIRECTORIES: Handle recursive descent of directory structure
742 ###############################################################################
744 #---------------------------------------------------------
745 # Provide rules to make install dirs. This must be early
746 # in the file so they get built before dependencies
747 #---------------------------------------------------------
749 $(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
752 # To create other directories, as needed, and timestamp their creation
754 $(Verb) $(MKDIR) $* > /dev/null
755 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
757 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
758 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
760 #---------------------------------------------------------
761 # Handle the DIRS options for sequential construction
762 #---------------------------------------------------------
768 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
769 $(RecursiveTargets)::
770 $(Verb) for dir in $(DIRS); do \
771 if ([ ! -f $$dir/Makefile ] || \
772 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
774 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
776 ($(MAKE) -C $$dir $@ ) || exit 1; \
779 $(RecursiveTargets)::
780 $(Verb) for dir in $(DIRS); do \
781 ($(MAKE) -C $$dir $@ ) || exit 1; \
787 #---------------------------------------------------------
788 # Handle the EXPERIMENTAL_DIRS options ensuring success
789 # after each directory is built.
790 #---------------------------------------------------------
791 ifdef EXPERIMENTAL_DIRS
792 $(RecursiveTargets)::
793 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
794 if ([ ! -f $$dir/Makefile ] || \
795 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
797 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
799 ($(MAKE) -C $$dir $@ ) || exit 0; \
803 #-----------------------------------------------------------
804 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
805 #-----------------------------------------------------------
806 ifdef OPTIONAL_PARALLEL_DIRS
807 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
810 #-----------------------------------------------------------
811 # Handle the PARALLEL_DIRS options for parallel construction
812 #-----------------------------------------------------------
815 SubDirs += $(PARALLEL_DIRS)
817 # Unfortunately, this list must be maintained if new recursive targets are added
818 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
819 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
820 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
821 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
822 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
823 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
824 unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
826 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
829 $(Verb) if ([ ! -f $(@D)/Makefile ] || \
830 command test $(@D)/Makefile -ot \
831 $(PROJ_SRC_DIR)/$(@D)/Makefile ); then \
833 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
835 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
838 #---------------------------------------------------------
839 # Handle the OPTIONAL_DIRS options for directores that may
841 #---------------------------------------------------------
844 SubDirs += $(OPTIONAL_DIRS)
846 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
847 $(RecursiveTargets)::
848 $(Verb) for dir in $(OPTIONAL_DIRS); do \
849 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
850 if ([ ! -f $$dir/Makefile ] || \
851 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
853 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
855 ($(MAKE) -C$$dir $@ ) || exit 1; \
859 $(RecursiveTargets)::
860 $(Verb) for dir in $(OPTIONAL_DIRS); do \
861 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
862 ($(MAKE) -C$$dir $@ ) || exit 1; \
868 #---------------------------------------------------------
869 # Handle the CONFIG_FILES options
870 #---------------------------------------------------------
875 $(Echo) Install circumvented with NO_INSTALL
877 $(Echo) UnInstall circumvented with NO_INSTALL
879 install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
880 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
881 $(Verb)for file in $(CONFIG_FILES); do \
882 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
883 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
884 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
885 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
887 $(ECHO) Error: cannot find config file $${file}. ; \
892 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
893 $(Verb)for file in $(CONFIG_FILES); do \
894 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
900 ###############################################################################
901 # Set up variables for building libraries
902 ###############################################################################
904 #---------------------------------------------------------
905 # Define various command line options pertaining to the
906 # libraries needed when linking. There are "Proj" libs
907 # (defined by the user's project) and "LLVM" libs (defined
908 # by the LLVM project).
909 #---------------------------------------------------------
912 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
913 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
914 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
915 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
919 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
920 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
921 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
922 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
925 # Loadable module for Win32 requires all symbols resolved for linking.
926 # Then all symbols in LLVM.dll will be available.
927 ifeq ($(ENABLE_SHARED),1)
928 ifdef LOADABLE_MODULE
929 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
930 LINK_COMPONENTS += all
935 ifndef IS_CLEANING_TARGET
936 ifdef LINK_COMPONENTS
938 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
939 # clean in tools, then do a make in tools (instead of at the top level).
941 @echo "*** llvm-config doesn't exist - rebuilding it."
942 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
944 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
946 ifeq ($(ENABLE_SHARED), 1)
947 # We can take the "auto-import" feature to get rid of using dllimport.
948 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
949 LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
952 LLVMLibsOptions += -lLLVM-$(LLVMVersion)
953 LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
956 ifndef NO_LLVM_CONFIG
957 LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
958 ifeq ($(LLVMConfigLibs),Error)
959 $(error llvm-config --libs failed)
961 LLVMLibsOptions += $(LLVMConfigLibs)
962 LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
963 ifeq ($(LLVMConfigLibfiles),Error)
964 $(error llvm-config --libfiles failed)
966 LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
973 # Set up the library exports file.
974 ifdef EXPORTED_SYMBOL_FILE
976 # First, set up the native export file, which may differ from the source
979 ifeq ($(HOST_OS),Darwin)
980 # Darwin convention prefixes symbols with underscores.
981 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
982 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
983 $(Verb) sed -e 's/^/_/' < $< > $@
985 -$(Verb) $(RM) -f $(NativeExportsFile)
987 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
988 # Gold and BFD ld require a version script rather than a plain list.
989 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
990 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
991 $(Verb) echo "{" > $@
992 $(Verb) grep -q "\<" $< && echo " global:" >> $@ || :
993 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
994 ifneq ($(HOST_OS),OpenBSD)
995 $(Verb) echo " local: *;" >> $@
997 $(Verb) echo "};" >> $@
999 -$(Verb) $(RM) -f $(NativeExportsFile)
1001 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1002 # GNU ld Win32 accepts .DEF files that contain "DATA" entries.
1003 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
1004 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1005 $(Echo) Generating $(notdir $@)
1006 $(Verb) $(ECHO) "EXPORTS" > $@
1007 $(Verb) $(CAT) $< >> $@
1009 -$(Verb) $(RM) -f $(NativeExportsFile)
1011 # Default behavior: just use the exports file verbatim.
1012 NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1017 # Now add the linker command-line options to use the native export file.
1020 ifeq ($(HOST_OS),Darwin)
1021 LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1024 # gold, bfd ld, etc.
1025 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1026 LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
1030 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1031 # LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1032 SharedLinkOptions += $(NativeExportsFile)
1037 ###############################################################################
1038 # Library Build Rules: Four ways to build a library
1039 ###############################################################################
1041 #---------------------------------------------------------
1042 # Bytecode Module Targets:
1043 # If the user set MODULE_NAME then they want to build a
1044 # bytecode module from the sources. We compile all the
1045 # sources and link it together into a single bytecode
1047 #---------------------------------------------------------
1050 ifeq ($(strip $(LLVMCC)),)
1051 $(warning Modules require LLVM capable compiler but none is available ****)
1054 Module := $(LibDir)/$(MODULE_NAME).bc
1055 LinkModule := $(LLVMLD) -r
1058 ifdef EXPORTED_SYMBOL_FILE
1059 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1062 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
1063 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
1064 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1066 all-local:: $(Module)
1069 ifneq ($(strip $(Module)),)
1070 -$(Verb) $(RM) -f $(Module)
1073 ifdef BYTECODE_DESTINATION
1074 ModuleDestDir := $(BYTECODE_DESTINATION)
1076 ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
1081 $(Echo) Install circumvented with NO_INSTALL
1083 $(Echo) Uninstall circumvented with NO_INSTALL
1085 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1087 install-module:: $(DestModule)
1088 install-local:: $(DestModule)
1090 $(DestModule): $(ModuleDestDir) $(Module)
1091 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
1092 $(Verb) $(DataInstall) $(Module) $(DestModule)
1095 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1096 -$(Verb) $(RM) -f $(DestModule)
1102 # if we're building a library ...
1105 # Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
1106 LIBRARYNAME := $(strip $(LIBRARYNAME))
1107 ifdef LOADABLE_MODULE
1108 BaseLibName.A := $(LIBRARYNAME).a
1109 BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
1111 BaseLibName.A := lib$(LIBRARYNAME).a
1112 BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1114 LibName.A := $(LibDir)/$(BaseLibName.A)
1115 LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
1116 LibName.O := $(LibDir)/$(LIBRARYNAME).o
1117 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
1119 #---------------------------------------------------------
1120 # Shared Library Targets:
1121 # If the user asked for a shared library to be built
1122 # with the SHARED_LIBRARY variable, then we provide
1123 # targets for building them.
1124 #---------------------------------------------------------
1125 ifdef SHARED_LIBRARY
1127 all-local:: $(LibName.SO)
1129 ifdef EXPORTED_SYMBOL_FILE
1130 $(LibName.SO): $(NativeExportsFile)
1133 ifdef LINK_LIBS_IN_SHARED
1134 ifdef LOADABLE_MODULE
1135 SharedLibKindMessage := "Loadable Module"
1136 SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
1138 SharedLibKindMessage := "Shared Library"
1140 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
1141 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1143 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
1144 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
1146 $(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
1147 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
1148 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
1152 ifneq ($(strip $(LibName.SO)),)
1153 -$(Verb) $(RM) -f $(LibName.SO)
1158 $(Echo) Install circumvented with NO_INSTALL
1160 $(Echo) Uninstall circumvented with NO_INSTALL
1163 # Win32.DLL prefers to be located on the "PATH" of binaries.
1164 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1165 DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
1167 DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
1169 DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
1171 install-local:: $(DestSharedLib)
1173 $(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
1174 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1175 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1178 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1179 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
1183 #---------------------------------------------------------
1184 # Bytecode Library Targets:
1185 # If the user asked for a bytecode library to be built
1186 # with the BYTECODE_LIBRARY variable, then we provide
1187 # targets for building them.
1188 #---------------------------------------------------------
1189 ifdef BYTECODE_LIBRARY
1190 ifeq ($(strip $(LLVMCC)),)
1191 $(warning Bytecode libraries require LLVM capable compiler but none is available ****)
1194 all-local:: $(LibName.BCA)
1196 ifdef EXPORTED_SYMBOL_FILE
1197 BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1199 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1200 $(LLVMToolDir)/llvm-ar
1201 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1203 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
1205 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
1207 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1208 $(LLVMToolDir)/llvm-ar
1209 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1211 $(Verb) $(LArchive) $@ $(ObjectsBC)
1216 ifneq ($(strip $(LibName.BCA)),)
1217 -$(Verb) $(RM) -f $(LibName.BCA)
1220 ifdef BYTECODE_DESTINATION
1221 BytecodeDestDir := $(BYTECODE_DESTINATION)
1223 BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
1226 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1228 install-bytecode-local:: $(DestBytecodeLib)
1232 $(Echo) Install circumvented with NO_INSTALL
1234 $(Echo) Uninstall circumvented with NO_INSTALL
1236 install-local:: $(DestBytecodeLib)
1238 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1239 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1240 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1243 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1244 -$(Verb) $(RM) -f $(DestBytecodeLib)
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), Linux NetBSD FreeBSD))
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_FINE
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 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1415 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1416 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1417 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1418 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1421 ifneq ($(strip $(ToolAliasBuildPath)),)
1422 $(ToolAliasBuildPath): $(ToolBuildPath)
1423 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1424 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1425 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1426 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
1432 $(Echo) Install circumvented with NO_INSTALL
1434 $(Echo) Uninstall circumvented with NO_INSTALL
1436 DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
1438 install-local:: $(DestTool)
1440 $(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
1441 $(Echo) Installing $(BuildMode) $(DestTool)
1442 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1445 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1446 -$(Verb) $(RM) -f $(DestTool)
1448 # TOOLALIAS install.
1450 DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
1452 install-local:: $(DestToolAlias)
1454 $(DestToolAlias): $(DestTool)
1455 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1456 $(Verb) $(RM) -f $(DestToolAlias)
1457 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1460 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1461 -$(Verb) $(RM) -f $(DestToolAlias)
1467 ###############################################################################
1468 # Object Build Rules: Build object files based on sources
1469 ###############################################################################
1471 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1472 ifeq ($(HOST_OS),HP-UX)
1473 DISABLE_AUTO_DEPENDENCIES=1
1476 # Provide rule sets for when dependency generation is enabled
1477 ifndef DISABLE_AUTO_DEPENDENCIES
1479 #---------------------------------------------------------
1480 # Create .o files in the ObjDir directory from the .cpp and .c files...
1481 #---------------------------------------------------------
1483 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1484 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1486 # If the build succeeded, move the dependency file over, otherwise
1488 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1489 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1491 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1492 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1493 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1496 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1497 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1498 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1501 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1502 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1503 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1506 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1507 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1508 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1511 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1512 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1513 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1516 #---------------------------------------------------------
1517 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1518 #---------------------------------------------------------
1520 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1521 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1523 # If the build succeeded, move the dependency file over, otherwise
1525 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1526 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1528 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1529 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1530 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1531 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
1532 $(BC_DEPEND_MOVEFILE)
1534 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1535 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1536 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1537 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
1538 $(BC_DEPEND_MOVEFILE)
1540 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1541 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1542 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1543 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
1544 $(BC_DEPEND_MOVEFILE)
1546 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1547 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1548 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1549 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
1550 $(BC_DEPEND_MOVEFILE)
1552 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1553 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1554 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1555 $< -o $(ObjDir)/$*.ll -S -$(LLVMCC_EMITIR_FLAG) ; \
1556 $(BC_DEPEND_MOVEFILE)
1558 # Provide alternate rule sets if dependencies are disabled
1561 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1562 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1563 $(Compile.CXX) $< -o $@
1565 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1566 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1567 $(Compile.CXX) $< -o $@
1569 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1570 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1571 $(Compile.CXX) $< -o $@
1573 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1574 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1575 $(Compile.C) $< -o $@
1577 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1578 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1579 $(Compile.C) $< -o $@
1581 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1582 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1583 $(BCCompile.CXX) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
1585 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1586 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1587 $(BCCompile.CXX) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
1589 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1590 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1591 $(BCCompile.CXX) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
1593 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1594 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1595 $(BCCompile.C) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
1597 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1598 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1599 $(BCCompile.C) $< -o $@ -S -$(LLVMCC_EMITIR_FLAG)
1604 ## Rules for building preprocessed (.i/.ii) outputs.
1605 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1606 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1607 $(Verb) $(Preprocess.CXX) $< -o $@
1609 $(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1610 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1611 $(Verb) $(Preprocess.CXX) $< -o $@
1613 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1614 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1615 $(Verb) $(Preprocess.CXX) $< -o $@
1617 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1618 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1619 $(Verb) $(Preprocess.C) $< -o $@
1621 $(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1622 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1623 $(Verb) $(Preprocess.C) $< -o $@
1626 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1627 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1628 $(Compile.CXX) $< -o $@ -S
1630 $(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1631 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1632 $(Compile.CXX) $< -o $@ -S
1634 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1635 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1636 $(Compile.CXX) $< -o $@ -S
1638 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1639 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1640 $(Compile.C) $< -o $@ -S
1642 $(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1643 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1644 $(Compile.C) $< -o $@ -S
1647 # make the C and C++ compilers strip debug info out of bytecode libraries.
1649 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1650 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1651 $(Verb) $(LOPT) $< -std-compile-opts -o $@
1653 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1654 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1655 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1659 #---------------------------------------------------------
1660 # Provide rule to build .bc files from .ll sources,
1661 # regardless of dependencies
1662 #---------------------------------------------------------
1663 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1664 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1665 $(Verb) $(LLVMAS) $< -f -o $@
1667 ###############################################################################
1668 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1669 ###############################################################################
1672 TABLEGEN_INC_FILES_COMMON = 1
1675 ifdef LLVMC_BASED_DRIVER
1676 TABLEGEN_INC_FILES_COMMON = 1
1679 ifdef TABLEGEN_INC_FILES_COMMON
1681 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1682 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1683 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1685 # INCFiles rule: All of the tblgen generated files are emitted to
1686 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1687 # us to only "touch" the real file if the contents of it change. IOW, if
1688 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1689 # dependencies of the .inc files are, unless the contents of the .inc file
1691 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1692 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1694 endif # TABLEGEN_INC_FILES_COMMON
1698 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1699 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1700 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1701 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1702 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1703 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1704 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1706 # All of these files depend on tblgen and the .td files.
1707 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1709 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1710 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1711 $(Echo) "Building $(<F) register names with tblgen"
1712 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1714 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1715 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1716 $(Echo) "Building $(<F) register information header with tblgen"
1717 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1719 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1720 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1721 $(Echo) "Building $(<F) register info implementation with tblgen"
1722 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1724 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1725 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1726 $(Echo) "Building $(<F) instruction names with tblgen"
1727 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1729 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1730 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1731 $(Echo) "Building $(<F) instruction information with tblgen"
1732 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1734 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1735 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1736 $(Echo) "Building $(<F) assembly writer with tblgen"
1737 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1739 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1740 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1741 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1742 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1744 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1745 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1746 $(Echo) "Building $(<F) assembly matcher with tblgen"
1747 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1749 $(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
1750 $(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1751 $(Echo) "Building $(<F) MC code emitter with tblgen"
1752 $(Verb) $(TableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
1754 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1755 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1756 $(Echo) "Building $(<F) code emitter with tblgen"
1757 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1759 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1760 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1761 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1762 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1764 $(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1765 $(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1766 $(Echo) "Building $(<F) disassembly tables with tblgen"
1767 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1769 $(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1770 $(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1771 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1772 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1774 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1775 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1776 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1777 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1779 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1780 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1781 $(Echo) "Building $(<F) subtarget information with tblgen"
1782 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1784 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1785 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1786 $(Echo) "Building $(<F) calling convention information with tblgen"
1787 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1789 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1790 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1791 $(Echo) "Building $(<F) intrinsics information with tblgen"
1792 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1794 $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1795 $(Echo) "Building $(<F) decoder tables with tblgen"
1796 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1800 -$(Verb) $(RM) -f $(INCFiles)
1804 ifdef LLVMC_BASED_DRIVER
1806 TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1807 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1809 TDCommon := $(strip $(wildcard \
1810 $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1812 TDFiles := $(TDSrc) $(TDCommon)
1814 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1816 $(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
1817 $(Echo) "Building LLVMC compilation graph description with tblgen"
1818 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1821 -$(Verb) $(RM) -f $(INCFiles)
1823 endif # LLVMC_BASED_DRIVER
1825 ###############################################################################
1826 # OTHER RULES: Other rules needed
1827 ###############################################################################
1829 # To create postscript files from dot files...
1830 ifneq ($(DOT),false)
1832 $(DOT) -Tps < $< > $@
1835 $(Echo) "Cannot build $@: The program dot is not installed"
1838 # This rules ensures that header files that are removed still have a rule for
1839 # which they can be "generated." This allows make to ignore them and
1840 # reproduce the dependency lists.
1844 # Define clean-local to clean the current directory. Note that this uses a
1845 # very conservative approach ensuring that empty variables do not cause
1846 # errors or disastrous removal.
1848 ifneq ($(strip $(ObjRootDir)),)
1849 -$(Verb) $(RM) -rf $(ObjRootDir)
1851 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1852 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1853 -$(Verb) $(RM) -f *$(SHLIBEXT)
1857 -$(Verb) $(RM) -rf Debug Release Profile
1860 ###############################################################################
1861 # DEPENDENCIES: Include the dependency files if we should
1862 ###############################################################################
1863 ifndef DISABLE_AUTO_DEPENDENCIES
1865 # If its not one of the cleaning targets
1866 ifndef IS_CLEANING_TARGET
1868 # Get the list of dependency files
1869 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
1870 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1872 # Include bitcode dependency files if using bitcode libraries
1873 ifdef BYTECODE_LIBRARY
1874 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1877 -include $(DependFiles) ""
1883 ###############################################################################
1884 # CHECK: Running the test suite
1885 ###############################################################################
1888 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1889 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1890 $(EchoCmd) Running test suite ; \
1891 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1892 TESTSUITE=$(TESTSUITE) ; \
1894 $(EchoCmd) No Makefile in test directory ; \
1897 $(EchoCmd) No test directory ; \
1903 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1904 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1905 $(EchoCmd) Running test suite ; \
1906 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
1908 $(EchoCmd) No Makefile in test directory ; \
1911 $(EchoCmd) No test directory ; \
1915 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1916 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1917 $(EchoCmd) Running test suite ; \
1918 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1920 $(EchoCmd) No Makefile in test directory ; \
1923 $(EchoCmd) No test directory ; \
1926 ###############################################################################
1927 # UNITTESTS: Running the unittests test suite
1928 ###############################################################################
1931 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1932 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1933 $(EchoCmd) Running unittests test suite ; \
1934 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
1936 $(EchoCmd) No Makefile in unittests directory ; \
1939 $(EchoCmd) No unittests directory ; \
1942 ###############################################################################
1943 # DISTRIBUTION: Handle construction of a distribution tarball
1944 ###############################################################################
1946 #------------------------------------------------------------------------
1947 # Define distribution related variables
1948 #------------------------------------------------------------------------
1949 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1950 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1951 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1952 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1953 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1954 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1955 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1956 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1957 Makefile.config.in configure autoconf
1958 DistOther := $(notdir $(wildcard \
1959 $(PROJ_SRC_DIR)/*.h \
1960 $(PROJ_SRC_DIR)/*.td \
1961 $(PROJ_SRC_DIR)/*.def \
1962 $(PROJ_SRC_DIR)/*.ll \
1963 $(PROJ_SRC_DIR)/*.in))
1964 DistSubDirs := $(SubDirs)
1965 DistSources = $(Sources) $(EXTRA_DIST)
1966 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1968 #------------------------------------------------------------------------
1969 # We MUST build distribution with OBJ_DIR != SRC_DIR
1970 #------------------------------------------------------------------------
1971 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1972 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1973 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1977 #------------------------------------------------------------------------
1978 # Prevent attempt to run dist targets from anywhere but the top level
1979 #------------------------------------------------------------------------
1981 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1982 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1985 #------------------------------------------------------------------------
1986 # Provide the top level targets
1987 #------------------------------------------------------------------------
1989 dist-gzip:: $(DistTarGZip)
1991 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1992 $(Echo) Packing gzipped distribution tar file.
1993 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1994 $(GZIP) -c > "$(DistTarGZip)"
1996 dist-bzip2:: $(DistTarBZ2)
1998 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1999 $(Echo) Packing bzipped distribution tar file.
2000 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
2001 $(BZIP2) -c >$(DistTarBZ2)
2003 dist-zip:: $(DistZip)
2005 $(DistZip) : $(TopDistDir)/.makedistdir
2006 $(Echo) Packing zipped distribution file.
2007 $(Verb) rm -f $(DistZip)
2008 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
2010 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
2011 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
2013 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
2015 dist-check:: $(DistTarGZip)
2016 $(Echo) Checking distribution tar file.
2017 $(Verb) if test -d $(DistCheckDir) ; then \
2018 $(RM) -rf $(DistCheckDir) ; \
2020 $(Verb) $(MKDIR) $(DistCheckDir)
2021 $(Verb) cd $(DistCheckDir) && \
2022 $(MKDIR) $(DistCheckDir)/build && \
2023 $(MKDIR) $(DistCheckDir)/install && \
2024 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2026 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
2027 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
2030 $(MAKE) unittests && \
2031 $(MAKE) install && \
2032 $(MAKE) uninstall && \
2033 $(MAKE) dist-clean && \
2034 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
2037 $(Echo) Cleaning distribution files
2038 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2043 #------------------------------------------------------------------------
2044 # Provide the recursive distdir target for building the distribution directory
2045 #------------------------------------------------------------------------
2046 distdir: $(DistDir)/.makedistdir
2047 $(DistDir)/.makedistdir: $(DistSources)
2048 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2049 if test -d "$(DistDir)" ; then \
2050 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
2053 $(EchoCmd) Removing old $(DistDir) ; \
2054 $(RM) -rf $(DistDir); \
2055 $(EchoCmd) Making 'all' to verify build ; \
2056 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
2058 $(Echo) Building Distribution Directory $(DistDir)
2059 $(Verb) $(MKDIR) $(DistDir)
2060 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2061 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
2062 for file in $(DistFiles) ; do \
2064 $(PROJ_SRC_DIR)/*) \
2065 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2067 $(PROJ_SRC_ROOT)/*) \
2068 file=`echo "$$file" | \
2069 sed "s#^$$srcrootstrip/##"` \
2072 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2073 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2074 from_dir="$(PROJ_SRC_DIR)" ; \
2075 elif test -f "$$file" || test -d "$$file" ; then \
2078 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
2079 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2080 to_dir="$(DistDir)/$$dir"; \
2081 $(MKDIR) "$$to_dir" ; \
2083 to_dir="$(DistDir)"; \
2085 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2086 if test -n "$$mid_dir" ; then \
2087 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
2089 if test -d "$$from_dir/$$file"; then \
2090 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2091 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
2092 cd $(PROJ_SRC_DIR) ; \
2093 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2094 ( cd $$to_dir ; $(TAR) xf - ) ; \
2095 cd $(PROJ_OBJ_DIR) ; \
2098 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2099 ( cd $$to_dir ; $(TAR) xf - ) ; \
2100 cd $(PROJ_OBJ_DIR) ; \
2102 elif test -f "$$from_dir/$$file" ; then \
2103 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
2104 elif test -L "$$from_dir/$$file" ; then \
2105 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
2106 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
2107 $(EchoCmd) "===== WARNING: Distribution Source " \
2108 "$$from_dir/$$file Not Found!" ; \
2109 elif test "$(Verb)" != '@' ; then \
2110 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
2113 $(Verb) for subdir in $(DistSubDirs) ; do \
2114 if test "$$subdir" \!= "." ; then \
2115 new_distdir="$(DistDir)/$$subdir" ; \
2116 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
2117 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
2118 DistDir="$$new_distdir" distdir ) || exit 1; \
2121 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2122 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
2123 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2124 -name .svn \) -print` ;\
2125 $(MAKE) dist-hook ; \
2126 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2127 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2128 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2129 -o ! -type d ! -perm -444 -exec \
2130 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2131 || chmod -R a+r $(DistDir) ; \
2134 # This is invoked by distdir target, define it as a no-op to avoid errors if not
2140 ###############################################################################
2141 # TOP LEVEL - targets only to apply at the top level directory
2142 ###############################################################################
2146 #------------------------------------------------------------------------
2147 # Install support for the project's include files:
2148 #------------------------------------------------------------------------
2151 $(Echo) Install circumvented with NO_INSTALL
2153 $(Echo) Uninstall circumvented with NO_INSTALL
2156 $(Echo) Installing include files
2157 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
2158 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2159 cd $(PROJ_SRC_ROOT)/include && \
2160 for hdr in `find . -type f \
2161 '(' -name LICENSE.TXT \
2166 ')' -print | grep -v CVS | \
2167 grep -v .svn` ; do \
2168 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2169 if test \! -d "$$instdir" ; then \
2170 $(EchoCmd) Making install directory $$instdir ; \
2171 $(MKDIR) $$instdir ;\
2173 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2176 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2177 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2178 cd $(PROJ_OBJ_ROOT)/include && \
2179 for hdr in `find . -type f \
2180 '(' -name LICENSE.TXT \
2185 ')' -print | grep -v CVS | \
2186 grep -v .svn` ; do \
2187 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2188 if test \! -d "$$instdir" ; then \
2189 $(EchoCmd) Making install directory $$instdir ; \
2190 $(MKDIR) $$instdir ;\
2192 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2198 $(Echo) Uninstalling include files
2199 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2200 cd $(PROJ_SRC_ROOT)/include && \
2201 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2202 '!' '(' -name '*~' -o -name '.#*' \
2203 -o -name '*.in' ')' -print ')' | \
2204 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2205 cd $(PROJ_SRC_ROOT)/include && \
2206 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
2207 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2213 @echo searching for overlength lines in files: $(Sources)
2216 egrep -n '.{81}' $(Sources) /dev/null
2219 @echo searching for tabs in files: $(Sources)
2222 egrep -n ' ' $(Sources) /dev/null
2225 @ls -l $(LibDir) | awk '\
2226 BEGIN { sum = 0; } \
2228 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2229 @ls -l $(ToolDir) | awk '\
2230 BEGIN { sum = 0; } \
2232 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2233 #------------------------------------------------------------------------
2234 # Print out the directories used for building
2235 #------------------------------------------------------------------------
2237 $(Echo) "BuildMode : " '$(BuildMode)'
2238 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2239 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2240 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2241 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2242 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2243 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2244 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2245 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2246 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2247 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
2248 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
2249 $(Echo) "UserTargets : " '$(UserTargets)'
2250 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2251 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2252 $(Echo) "ObjDir : " '$(ObjDir)'
2253 $(Echo) "LibDir : " '$(LibDir)'
2254 $(Echo) "ToolDir : " '$(ToolDir)'
2255 $(Echo) "ExmplDir : " '$(ExmplDir)'
2256 $(Echo) "Sources : " '$(Sources)'
2257 $(Echo) "TDFiles : " '$(TDFiles)'
2258 $(Echo) "INCFiles : " '$(INCFiles)'
2259 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
2260 $(Echo) "PreConditions: " '$(PreConditions)'
2261 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2262 $(Echo) "Compile.C : " '$(Compile.C)'
2263 $(Echo) "Archive : " '$(Archive)'
2264 $(Echo) "YaccFiles : " '$(YaccFiles)'
2265 $(Echo) "LexFiles : " '$(LexFiles)'
2266 $(Echo) "Module : " '$(Module)'
2267 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2268 $(Echo) "SubDirs : " '$(SubDirs)'
2269 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2270 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2275 # General debugging rule, use 'make dbg-print-XXX' to print the
2276 # definition, value and origin of XXX.
2278 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))