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
23 LocalTargets := all-local clean-local clean-all-local check-local \
24 install-local printvars uninstall-local \
25 install-bytecode-local unittests
26 TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
28 UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
29 InternalTargets := preconditions distdir dist-hook
31 ################################################################################
32 # INITIALIZATION: Basic things the makefile needs
33 ################################################################################
35 #--------------------------------------------------------------------
36 # Set the VPATH so that we can find source files.
37 #--------------------------------------------------------------------
40 #--------------------------------------------------------------------
41 # Reset the list of suffixes we know how to build.
42 #--------------------------------------------------------------------
44 .SUFFIXES: .c .cpp .cc .h .hpp .lo .o .a .bc .td .ps .dot .ll
45 .SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
47 #--------------------------------------------------------------------
48 # Mark all of these targets as phony to avoid implicit rule search
49 #--------------------------------------------------------------------
50 .PHONY: $(UserTargets) $(InternalTargets)
52 #--------------------------------------------------------------------
53 # Make sure all the user-target rules are double colon rules and
54 # they are defined first.
55 #--------------------------------------------------------------------
59 ################################################################################
60 # PRECONDITIONS: that which must be built/checked first
61 ################################################################################
63 SrcMakefiles := $(filter %Makefile %Makefile.tests,\
64 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
65 ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
66 ConfigureScript := $(PROJ_SRC_ROOT)/configure
67 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
68 MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
69 MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
70 MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
71 MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
72 PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
73 ifneq ($(MakefileCommonIn),)
74 PreConditions += $(MakefileCommon)
77 ifneq ($(MakefileConfigIn),)
78 PreConditions += $(MakefileConfig)
81 preconditions: $(PreConditions)
83 #------------------------------------------------------------------------
84 # Make sure the BUILT_SOURCES are built first
85 #------------------------------------------------------------------------
86 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
89 ifneq ($(strip $(BUILT_SOURCES)),)
90 -$(Verb) $(RM) -f $(BUILT_SOURCES)
93 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
95 $(Verb) if test -x config.status ; then \
96 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
97 $(MKDIR) .spotless.save ; \
98 $(MV) config.status .spotless.save ; \
99 $(MV) mklib .spotless.save ; \
100 $(MV) projects .spotless.save ; \
102 $(MV) .spotless.save/config.status . ; \
103 $(MV) .spotless.save/mklib . ; \
104 $(MV) .spotless.save/projects . ; \
105 $(RM) -rf .spotless.save ; \
106 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
107 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108 $(ConfigStatusScript) ; \
110 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
114 $(EchoCmd) "spotless target not supported for objdir == srcdir"
117 $(BUILT_SOURCES) : $(ObjMakefiles)
119 #------------------------------------------------------------------------
120 # Make sure we're not using a stale configuration
121 #------------------------------------------------------------------------
123 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
124 $(Verb) cd $(PROJ_OBJ_ROOT) && \
125 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
126 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
128 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129 $(ConfigStatusScript)
131 .PRECIOUS: $(ConfigStatusScript)
132 $(ConfigStatusScript): $(ConfigureScript)
133 $(Echo) Reconfiguring with $<
134 $(Verb) cd $(PROJ_OBJ_ROOT) && \
135 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
138 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139 $(ConfigStatusScript)
141 #------------------------------------------------------------------------
142 # Make sure the configuration makefile is up to date
143 #------------------------------------------------------------------------
144 ifneq ($(MakefileConfigIn),)
145 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
146 $(Echo) Regenerating $@
147 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
150 ifneq ($(MakefileCommonIn),)
151 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
152 $(Echo) Regenerating $@
153 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
156 #------------------------------------------------------------------------
157 # If the Makefile in the source tree has been updated, copy it over into the
158 # build tree. But, only do this if the source and object makefiles differ
159 #------------------------------------------------------------------------
160 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
162 Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
163 $(Echo) "Updating Makefile"
164 $(Verb) $(MKDIR) $(@D)
165 $(Verb) $(CP) -f $< $@
167 # Copy the Makefile.* files unless we're in the root directory which avoids
168 # the copying of Makefile.config.in or other things that should be explicitly
170 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
172 *Makefile.rules) ;; \
174 *) $(EchoCmd) "Updating $(@F)" ; \
181 #------------------------------------------------------------------------
182 # Set up the basic dependencies
183 #------------------------------------------------------------------------
184 $(UserTargets):: $(PreConditions)
188 clean-all:: clean-local clean-all-local
189 install:: install-local
190 uninstall:: uninstall-local
191 install-local:: all-local
192 install-bytecode:: install-bytecode-local
194 ###############################################################################
195 # VARIABLES: Set up various variables based on configuration data
196 ###############################################################################
198 # Variable for if this make is for a "cleaning" target
199 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
203 #--------------------------------------------------------------------
204 # Variables derived from configuration we are building
205 #--------------------------------------------------------------------
208 # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
209 # this can be overridden on the make command line.
211 OPTIMIZE_OPTION := -O3
213 OPTIMIZE_OPTION := -O2
216 ifdef ENABLE_PROFILING
218 CXX.Flags += $(OPTIMIZE_OPTION) -pg -g
219 C.Flags += $(OPTIMIZE_OPTION) -pg -g
220 LD.Flags += $(OPTIMIZE_OPTION) -pg -g
223 ifeq ($(ENABLE_OPTIMIZED),1)
225 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
226 ifneq ($(OS),FreeBSD)
228 OmitFramePointer := -fomit-frame-pointer
232 # Darwin requires -fstrict-aliasing to be explicitly enabled.
234 EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
237 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
238 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
239 LD.Flags += $(OPTIMIZE_OPTION)
249 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
250 # CXX.Flags += -fvisibility-inlines-hidden
253 # IF REQUIRES_EH=1 is specified then don't disable exceptions
255 CXX.Flags += -fno-exceptions
258 # IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
260 # CXX.Flags += -fno-rtti
263 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
264 # then disable assertions by defining the appropriate preprocessor symbols.
265 ifdef DISABLE_ASSERTIONS
266 BuildMode := $(BuildMode)-Asserts
267 CPP.Defines += -DNDEBUG
269 CPP.Defines += -D_DEBUG
272 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
273 # configured), then enable expensive checks by defining the
274 # appropriate preprocessor symbols.
275 ifdef ENABLE_EXPENSIVE_CHECKS
276 BuildMode := $(BuildMode)+Checks
277 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
280 ifeq ($(ENABLE_PIC),1)
285 CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
287 CPP.Defines += $(CPPFLAGS)
288 CPP.BaseFlags += $(CPP.Defines)
289 LD.Flags += $(LDFLAGS)
291 LibTool.Flags := --tag=CXX
293 # Make Floating point IEEE compliant on Alpha.
296 CPP.BaseFlags += -mieee
297 ifeq ($(ENABLE_PIC),0)
299 CPP.BaseFlags += -fPIC
304 LD.Flags += -Wl,--no-relax
307 #--------------------------------------------------------------------
308 # Directory locations
309 #--------------------------------------------------------------------
311 ifeq ($(LLVM_CROSS_COMPILING),1)
312 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
315 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
316 ObjDir := $(ObjRootDir)
317 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
318 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
319 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
320 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
321 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
322 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
323 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
325 #--------------------------------------------------------------------
326 # Full Paths To Compiled Tools and Utilities
327 #--------------------------------------------------------------------
328 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
331 LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
334 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
337 ifeq ($(LLVM_CROSS_COMPILING),1)
338 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
340 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
343 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
345 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
348 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
351 LLI := $(LLVMToolDir)/lli$(EXEEXT)
354 LLC := $(LLVMToolDir)/llc$(EXEEXT)
357 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
360 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
363 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
365 ifeq ($(LLVMGCC_MAJVERS),3)
366 UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
367 UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
368 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
369 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
373 LLVMGCCWITHPATH := $(LLVMGCC)
374 LLVMGXXWITHPATH := $(LLVMGXX)
377 #--------------------------------------------------------------------
378 # Adjust to user's request
379 #--------------------------------------------------------------------
381 # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
382 # to be built. Note that if LOADABLE_MODULE is specified then the resulting
383 # shared library can be opened with dlopen. Also, LOADABLE_MODULE implies
384 # several other things so we force them to be defined/on.
385 ifdef LOADABLE_MODULE
387 DONT_BUILD_RELINKED := 1
388 LINK_LIBS_IN_SHARED := 1
393 LD.Flags += -rpath $(LibDir)
395 LibTool.Flags += --tag=disable-shared
405 # Adjust settings for verbose mode
408 LibTool.Flags += --silent
409 AR.Flags += >/dev/null 2>/dev/null
410 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
412 ConfigureScriptFLAGS :=
415 # By default, strip symbol information from executable
417 Strip := $(PLATFORMSTRIPOPTS)
418 StripWarnMsg := "(without symbols)"
419 Install.StripFlag += -s
422 # Adjust linker flags for building an executable
425 LD.Flags += -rpath $(ExmplDir) -export-dynamic
427 LD.Flags += -rpath $(ToolDir) -export-dynamic
431 #----------------------------------------------------------
432 # Options To Invoke Tools
433 #----------------------------------------------------------
435 CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
436 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
439 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
442 # If we are building a universal binary on Mac OS/X, pass extra options. This
443 # is useful to people that want to link the LLVM libraries into their universal
446 # The following can be optionally specified:
447 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
448 # For Mac OS/X 10.4 Intel machines, the traditional one is:
449 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
450 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
451 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
454 ifndef UNIVERSAL_ARCH
455 UNIVERSAL_ARCH := i386 ppc
457 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
458 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
459 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
460 ifdef UNIVERSAL_SDK_PATH
461 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
462 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
465 # Building universal cannot compute dependencies automatically.
466 DISABLE_AUTO_DEPENDENCIES=1
470 CPP.BaseFlags += -include llvm/System/Solaris.h
473 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
474 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
475 # All -I flags should go here, so that they don't confuse llvm-config.
476 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
477 $(patsubst %,-I%/include,\
478 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
479 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
482 ifeq ($(BUILD_COMPONENT), 1)
483 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
484 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
485 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
486 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
488 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
491 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
492 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
493 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
494 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
496 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
500 LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
501 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
502 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
504 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
505 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
508 LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
509 LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
510 LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
512 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
513 ScriptInstall = $(INSTALL) -m 0755
514 DataInstall = $(INSTALL) -m 0644
516 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
517 # paths. In this case, the SYSPATH function (defined in
518 # Makefile.config) transforms Unix paths into Windows paths.
519 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
520 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
521 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
522 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
524 Archive = $(AR) $(AR.Flags)
525 LArchive = $(LLVMToolDir)/llvm-ar rcsf
532 #----------------------------------------------------------
533 # Get the list of source files and compute object file
535 #----------------------------------------------------------
538 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
539 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
541 Sources := $(SOURCES)
545 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
548 BaseNameSources := $(sort $(basename $(Sources)))
550 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
551 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
552 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
554 ###############################################################################
555 # DIRECTORIES: Handle recursive descent of directory structure
556 ###############################################################################
558 #---------------------------------------------------------
559 # Provide rules to make install dirs. This must be early
560 # in the file so they get built before dependencies
561 #---------------------------------------------------------
563 $(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir):
566 # To create other directories, as needed, and timestamp their creation
568 $(Verb) $(MKDIR) $* > /dev/null
571 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
572 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
574 #---------------------------------------------------------
575 # Handle the DIRS options for sequential construction
576 #---------------------------------------------------------
582 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
583 $(RecursiveTargets)::
584 $(Verb) for dir in $(DIRS); do \
585 if [ ! -f $$dir/Makefile ]; then \
587 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
589 ($(MAKE) -C $$dir $@ ) || exit 1; \
592 $(RecursiveTargets)::
593 $(Verb) for dir in $(DIRS); do \
594 ($(MAKE) -C $$dir $@ ) || exit 1; \
600 #---------------------------------------------------------
601 # Handle the EXPERIMENTAL_DIRS options ensuring success
602 # after each directory is built.
603 #---------------------------------------------------------
604 ifdef EXPERIMENTAL_DIRS
605 $(RecursiveTargets)::
606 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
607 if [ ! -f $$dir/Makefile ]; then \
609 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
611 ($(MAKE) -C $$dir $@ ) || exit 0; \
615 #-----------------------------------------------------------
616 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
617 #-----------------------------------------------------------
618 ifdef OPTIONAL_PARALLEL_DIRS
619 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
622 #-----------------------------------------------------------
623 # Handle the PARALLEL_DIRS options for parallel construction
624 #-----------------------------------------------------------
627 SubDirs += $(PARALLEL_DIRS)
629 # Unfortunately, this list must be maintained if new recursive targets are added
630 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
631 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
632 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
633 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
634 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
635 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
637 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
640 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
642 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
644 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
647 #---------------------------------------------------------
648 # Handle the OPTIONAL_DIRS options for directores that may
650 #---------------------------------------------------------
653 SubDirs += $(OPTIONAL_DIRS)
655 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
656 $(RecursiveTargets)::
657 $(Verb) for dir in $(OPTIONAL_DIRS); do \
658 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
659 if [ ! -f $$dir/Makefile ]; then \
661 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
663 ($(MAKE) -C$$dir $@ ) || exit 1; \
667 $(RecursiveTargets)::
668 $(Verb) for dir in $(OPTIONAL_DIRS); do \
669 ($(MAKE) -C$$dir $@ ) || exit 1; \
674 #---------------------------------------------------------
675 # Handle the CONFIG_FILES options
676 #---------------------------------------------------------
681 $(Echo) Install circumvented with NO_INSTALL
683 $(Echo) UnInstall circumvented with NO_INSTALL
685 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
686 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
687 $(Verb)for file in $(CONFIG_FILES); do \
688 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
689 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
690 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
691 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
693 $(ECHO) Error: cannot find config file $${file}. ; \
698 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
699 $(Verb)for file in $(CONFIG_FILES); do \
700 $(RM) -f $(PROJ_etcdir)/$${file} ; \
706 ###############################################################################
707 # Set up variables for building libararies
708 ###############################################################################
710 #---------------------------------------------------------
711 # Define various command line options pertaining to the
712 # libraries needed when linking. There are "Proj" libs
713 # (defined by the user's project) and "LLVM" libs (defined
714 # by the LLVM project).
715 #---------------------------------------------------------
718 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
719 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
720 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
721 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
725 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
726 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
727 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
728 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
731 ifndef IS_CLEANING_TARGET
732 ifdef LINK_COMPONENTS
734 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
735 # clean in tools, then do a make in tools (instead of at the top level).
737 @echo "*** llvm-config doesn't exist - rebuilding it."
738 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
740 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
742 ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
743 ProjLibsPaths += $(LLVM_CONFIG) \
744 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
748 ###############################################################################
749 # Library Build Rules: Four ways to build a library
750 ###############################################################################
752 #---------------------------------------------------------
753 # Bytecode Module Targets:
754 # If the user set MODULE_NAME then they want to build a
755 # bytecode module from the sources. We compile all the
756 # sources and link it together into a single bytecode
758 #---------------------------------------------------------
761 ifeq ($(strip $(LLVMGCC)),)
762 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
765 Module := $(LibDir)/$(MODULE_NAME).bc
766 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
769 ifdef EXPORTED_SYMBOL_FILE
770 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
773 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
774 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
775 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
777 all-local:: $(Module)
780 ifneq ($(strip $(Module)),)
781 -$(Verb) $(RM) -f $(Module)
784 ifdef BYTECODE_DESTINATION
785 ModuleDestDir := $(BYTECODE_DESTINATION)
787 ModuleDestDir := $(PROJ_libdir)
792 $(Echo) Install circumvented with NO_INSTALL
794 $(Echo) Uninstall circumvented with NO_INSTALL
796 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
798 install-module:: $(DestModule)
799 install-local:: $(DestModule)
801 $(DestModule): $(ModuleDestDir) $(Module)
802 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
803 $(Verb) $(DataInstall) $(Module) $(DestModule)
806 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
807 -$(Verb) $(RM) -f $(DestModule)
813 # if we're building a library ...
816 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
817 LIBRARYNAME := $(strip $(LIBRARYNAME))
818 ifdef LOADABLE_MODULE
819 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
821 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
823 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
824 LibName.O := $(LibDir)/$(LIBRARYNAME).o
825 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
827 #---------------------------------------------------------
828 # Shared Library Targets:
829 # If the user asked for a shared library to be built
830 # with the SHARED_LIBRARY variable, then we provide
831 # targets for building them.
832 #---------------------------------------------------------
835 all-local:: $(LibName.LA)
837 ifdef LINK_LIBS_IN_SHARED
838 ifdef LOADABLE_MODULE
839 SharedLibKindMessage := "Loadable Module"
841 SharedLibKindMessage := "Shared Library"
843 $(LibName.LA): $(ObjectsLO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
844 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
845 $(LIBRARYNAME)$(SHLIBEXT)
846 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
848 $(Verb) $(LTInstall) $@ $(LibDir)
850 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
851 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
852 $(Verb) $(LTLink) -o $@ $(ObjectsLO)
853 $(Verb) $(LTInstall) $@ $(LibDir)
857 ifneq ($(strip $(LibName.LA)),)
858 -$(Verb) $(RM) -f $(LibName.LA)
863 $(Echo) Install circumvented with NO_INSTALL
865 $(Echo) Uninstall circumvented with NO_INSTALL
867 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
869 install-local:: $(DestSharedLib)
871 $(DestSharedLib): $(LibName.LA) | $(PROJ_libdir)
872 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
873 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
874 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
877 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
878 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
882 #---------------------------------------------------------
883 # Bytecode Library Targets:
884 # If the user asked for a bytecode library to be built
885 # with the BYTECODE_LIBRARY variable, then we provide
886 # targets for building them.
887 #---------------------------------------------------------
888 ifdef BYTECODE_LIBRARY
889 ifeq ($(strip $(LLVMGCC)),)
890 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
893 all-local:: $(LibName.BCA)
895 ifdef EXPORTED_SYMBOL_FILE
896 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
897 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
899 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
900 $(LLVMToolDir)/llvm-ar
901 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
903 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
905 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
907 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
908 $(LLVMToolDir)/llvm-ar
909 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
911 $(Verb) $(LArchive) $@ $(ObjectsBC)
916 ifneq ($(strip $(LibName.BCA)),)
917 -$(Verb) $(RM) -f $(LibName.BCA)
920 ifdef BYTECODE_DESTINATION
921 BytecodeDestDir := $(BYTECODE_DESTINATION)
923 BytecodeDestDir := $(PROJ_libdir)
926 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
928 install-bytecode-local:: $(DestBytecodeLib)
932 $(Echo) Install circumvented with NO_INSTALL
934 $(Echo) Uninstall circumvented with NO_INSTALL
936 install-local:: $(DestBytecodeLib)
938 $(DestBytecodeLib): $(LibName.BCA) | $(BytecodeDestDir)
939 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
940 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
943 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
944 -$(Verb) $(RM) -f $(DestBytecodeLib)
949 #---------------------------------------------------------
950 # ReLinked Library Targets:
951 # If the user explicitly requests a relinked library with
952 # BUILD_RELINKED, provide it. Otherwise, if they specify
953 # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
955 #---------------------------------------------------------
957 ifndef DONT_BUILD_RELINKED
964 all-local:: $(LibName.O)
966 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
967 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
968 $(Verb) $(LTRelink) -o $@ $(ObjectsO)
971 ifneq ($(strip $(LibName.O)),)
972 -$(Verb) $(RM) -f $(LibName.O)
977 $(Echo) Install circumvented with NO_INSTALL
979 $(Echo) Uninstall circumvented with NO_INSTALL
981 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
983 install-local:: $(DestRelinkedLib)
985 $(DestRelinkedLib): $(LibName.O) | $(PROJ_libdir)
986 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
987 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
990 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
991 -$(Verb) $(RM) -f $(DestRelinkedLib)
995 #---------------------------------------------------------
996 # Archive Library Targets:
997 # If the user wanted a regular archive library built,
998 # then we provide targets for building them.
999 #---------------------------------------------------------
1002 all-local:: $(LibName.A)
1004 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1005 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1006 -$(Verb) $(RM) -f $@
1007 $(Verb) $(Archive) $@ $(ObjectsO)
1008 $(Verb) $(Ranlib) $@
1011 ifneq ($(strip $(LibName.A)),)
1012 -$(Verb) $(RM) -f $(LibName.A)
1017 $(Echo) Install circumvented with NO_INSTALL
1019 $(Echo) Uninstall circumvented with NO_INSTALL
1021 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1023 install-local:: $(DestArchiveLib)
1025 $(DestArchiveLib): $(LibName.A) | $(PROJ_libdir)
1026 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1027 $(Verb) $(MKDIR) $(PROJ_libdir)
1028 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
1031 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1032 -$(Verb) $(RM) -f $(DestArchiveLib)
1039 ###############################################################################
1040 # Tool Build Rules: Build executable tool based on TOOLNAME option
1041 ###############################################################################
1045 #---------------------------------------------------------
1046 # Set up variables for building a tool.
1047 #---------------------------------------------------------
1049 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1051 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1054 #---------------------------------------------------------
1055 # Provide targets for building the tools
1056 #---------------------------------------------------------
1057 all-local:: $(ToolBuildPath)
1060 ifneq ($(strip $(ToolBuildPath)),)
1061 -$(Verb) $(RM) -f $(ToolBuildPath)
1065 $(ToolBuildPath): $(ExmplDir)/.dir
1067 $(ToolBuildPath): $(ToolDir)/.dir
1070 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1071 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1072 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1073 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1074 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1079 $(Echo) Install circumvented with NO_INSTALL
1081 $(Echo) Uninstall circumvented with NO_INSTALL
1083 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1085 install-local:: $(DestTool)
1087 $(DestTool): $(ToolBuildPath) | $(PROJ_bindir)
1088 $(Echo) Installing $(BuildMode) $(DestTool)
1089 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1092 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1093 -$(Verb) $(RM) -f $(DestTool)
1097 ###############################################################################
1098 # Object Build Rules: Build object files based on sources
1099 ###############################################################################
1101 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1103 DISABLE_AUTO_DEPENDENCIES=1
1106 ifdef SHARED_LIBRARY
1108 MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1109 MAYBE_PIC_Compile.C = $(LTCompile.C)
1111 MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1112 MAYBE_PIC_Compile.C = $(Compile.C)
1115 # Provide rule sets for when dependency generation is enabled
1116 ifndef DISABLE_AUTO_DEPENDENCIES
1118 #---------------------------------------------------------
1119 # Create .lo files in the ObjDir directory from the .cpp and .c files...
1120 #---------------------------------------------------------
1122 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1123 -MT "$(ObjDir)/$*.lo" -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1125 # If the build succeeded, move the dependency file over. If it failed, put an
1127 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1128 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1130 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1131 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1132 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1135 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1136 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1137 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1140 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1141 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1142 $(Verb) if $(MAYBE_PIC_Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1145 #---------------------------------------------------------
1146 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1147 #---------------------------------------------------------
1149 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1150 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1151 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1152 $< -o $@ -S -emit-llvm ; \
1153 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1154 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1155 $(call UPGRADE_MSG,$@)
1156 $(call UPGRADE_LL,$@)
1158 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1159 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1160 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1161 $< -o $@ -S -emit-llvm ; \
1162 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1163 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1164 $(call UPGRADE_MSG,$@)
1165 $(call UPGRADE_LL,$@)
1167 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1168 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1169 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1170 $< -o $@ -S -emit-llvm ; \
1171 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1172 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1173 $(call UPGRADE_MSG,$@)
1174 $(call UPGRADE_LL,$@)
1176 # Provide alternate rule sets if dependencies are disabled
1179 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1180 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1181 $(MAYBE_PIC_Compile.CXX) $< -o $@
1183 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1184 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1185 $(MAYBE_PIC_Compile.CXX) $< -o $@
1187 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1188 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1189 $(MAYBE_PIC_Compile.C) $< -o $@
1191 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1192 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1193 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1194 $(call UPGRADE_MSG,$@)
1195 $(call UPGRADE_LL,$@)
1197 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1198 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1199 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1200 $(call UPGRADE_MSG,$@)
1201 $(call UPGRADE_LL,$@)
1203 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1204 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1205 $(BCCompile.C) $< -o $@ -S -emit-llvm
1206 $(call UPGRADE_MSG,@)
1207 $(call UPGRADE_LL,@)
1212 ## Rules for building preprocessed (.i/.ii) outputs.
1213 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1214 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1215 $(Verb) $(Preprocess.CXX) $< -o $@
1217 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1218 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1219 $(Verb) $(Preprocess.CXX) $< -o $@
1221 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1222 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1223 $(Verb) $(Preprocess.C) $< -o $@
1226 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1227 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1228 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1230 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1231 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1232 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1234 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1235 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1236 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1239 # make the C and C++ compilers strip debug info out of bytecode libraries.
1241 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1242 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1243 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1245 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1246 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1247 $(Verb) $(LLVMAS) $< -o - | \
1248 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1252 #---------------------------------------------------------
1253 # Provide rule to build .bc files from .ll sources,
1254 # regardless of dependencies
1255 #---------------------------------------------------------
1256 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1257 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1258 $(Verb) $(LLVMAS) $< -f -o $@
1260 ###############################################################################
1261 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1262 ###############################################################################
1266 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1267 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1268 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1269 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1270 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1271 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1272 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1273 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1274 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1275 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1277 # All of these files depend on tblgen and the .td files.
1278 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1280 # INCFiles rule: All of the tblgen generated files are emitted to
1281 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1282 # us to only "touch" the real file if the contents of it change. IOW, if
1283 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1284 # dependencies of the .inc files are, unless the contents of the .inc file
1286 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1287 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1289 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1290 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1291 $(Echo) "Building $(<F) register names with tblgen"
1292 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1294 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1295 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1296 $(Echo) "Building $(<F) register information header with tblgen"
1297 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1299 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1300 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1301 $(Echo) "Building $(<F) register info implementation with tblgen"
1302 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1304 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1305 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1306 $(Echo) "Building $(<F) instruction names with tblgen"
1307 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1309 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1310 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1311 $(Echo) "Building $(<F) instruction information with tblgen"
1312 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1314 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1315 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1316 $(Echo) "Building $(<F) assembly writer with tblgen"
1317 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1319 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1320 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1321 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1322 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1324 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1325 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1326 $(Echo) "Building $(<F) code emitter with tblgen"
1327 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1329 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1330 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1331 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1332 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1334 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1335 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1336 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1337 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1339 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1340 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1341 $(Echo) "Building $(<F) subtarget information with tblgen"
1342 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1344 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1345 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1346 $(Echo) "Building $(<F) calling convention information with tblgen"
1347 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1350 -$(Verb) $(RM) -f $(INCFiles)
1354 ###############################################################################
1355 # OTHER RULES: Other rules needed
1356 ###############################################################################
1358 # To create postscript files from dot files...
1359 ifneq ($(DOT),false)
1361 $(DOT) -Tps < $< > $@
1364 $(Echo) "Cannot build $@: The program dot is not installed"
1367 # This rules ensures that header files that are removed still have a rule for
1368 # which they can be "generated." This allows make to ignore them and
1369 # reproduce the dependency lists.
1373 # Define clean-local to clean the current directory. Note that this uses a
1374 # very conservative approach ensuring that empty variables do not cause
1375 # errors or disastrous removal.
1377 ifneq ($(strip $(ObjRootDir)),)
1378 -$(Verb) $(RM) -rf $(ObjRootDir)
1380 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1381 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1382 -$(Verb) $(RM) -f *$(SHLIBEXT)
1386 -$(Verb) $(RM) -rf Debug Release Profile
1389 ###############################################################################
1390 # DEPENDENCIES: Include the dependency files if we should
1391 ###############################################################################
1392 ifndef DISABLE_AUTO_DEPENDENCIES
1394 # If its not one of the cleaning targets
1395 ifndef IS_CLEANING_TARGET
1397 # Get the list of dependency files
1398 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1399 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1401 -include $(DependFiles) ""
1407 ###############################################################################
1408 # CHECK: Running the test suite
1409 ###############################################################################
1412 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1413 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1414 $(EchoCmd) Running test suite ; \
1415 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1416 TESTSUITE=$(TESTSUITE) ; \
1418 $(EchoCmd) No Makefile in test directory ; \
1421 $(EchoCmd) No test directory ; \
1424 ###############################################################################
1425 # UNITTESTS: Running the unittests test suite
1426 ###############################################################################
1429 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1430 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1431 $(EchoCmd) Running unittests test suite ; \
1432 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1434 $(EchoCmd) No Makefile in unittests directory ; \
1437 $(EchoCmd) No unittests directory ; \
1440 ###############################################################################
1441 # DISTRIBUTION: Handle construction of a distribution tarball
1442 ###############################################################################
1444 #------------------------------------------------------------------------
1445 # Define distribution related variables
1446 #------------------------------------------------------------------------
1447 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1448 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1449 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1450 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1451 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1452 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1453 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1454 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1455 Makefile.config.in configure autoconf
1456 DistOther := $(notdir $(wildcard \
1457 $(PROJ_SRC_DIR)/*.h \
1458 $(PROJ_SRC_DIR)/*.td \
1459 $(PROJ_SRC_DIR)/*.def \
1460 $(PROJ_SRC_DIR)/*.ll \
1461 $(PROJ_SRC_DIR)/*.in))
1462 DistSubDirs := $(SubDirs)
1463 DistSources = $(Sources) $(EXTRA_DIST)
1464 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1466 #------------------------------------------------------------------------
1467 # We MUST build distribution with OBJ_DIR != SRC_DIR
1468 #------------------------------------------------------------------------
1469 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1470 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1471 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1475 #------------------------------------------------------------------------
1476 # Prevent attempt to run dist targets from anywhere but the top level
1477 #------------------------------------------------------------------------
1479 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1480 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1483 #------------------------------------------------------------------------
1484 # Provide the top level targets
1485 #------------------------------------------------------------------------
1487 dist-gzip:: $(DistTarGZip)
1489 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1490 $(Echo) Packing gzipped distribution tar file.
1491 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1492 $(GZIP) -c > "$(DistTarGZip)"
1494 dist-bzip2:: $(DistTarBZ2)
1496 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1497 $(Echo) Packing bzipped distribution tar file.
1498 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1499 $(BZIP2) -c >$(DistTarBZ2)
1501 dist-zip:: $(DistZip)
1503 $(DistZip) : $(TopDistDir)/.makedistdir
1504 $(Echo) Packing zipped distribution file.
1505 $(Verb) rm -f $(DistZip)
1506 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1508 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1509 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1511 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1513 dist-check:: $(DistTarGZip)
1514 $(Echo) Checking distribution tar file.
1515 $(Verb) if test -d $(DistCheckDir) ; then \
1516 $(RM) -rf $(DistCheckDir) ; \
1518 $(Verb) $(MKDIR) $(DistCheckDir)
1519 $(Verb) cd $(DistCheckDir) && \
1520 $(MKDIR) $(DistCheckDir)/build && \
1521 $(MKDIR) $(DistCheckDir)/install && \
1522 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1524 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1525 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1528 $(MAKE) unittests && \
1529 $(MAKE) install && \
1530 $(MAKE) uninstall && \
1531 $(MAKE) dist-clean && \
1532 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1535 $(Echo) Cleaning distribution files
1536 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1541 #------------------------------------------------------------------------
1542 # Provide the recursive distdir target for building the distribution directory
1543 #------------------------------------------------------------------------
1544 distdir: $(DistDir)/.makedistdir
1545 $(DistDir)/.makedistdir: $(DistSources)
1546 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1547 if test -d "$(DistDir)" ; then \
1548 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1551 $(EchoCmd) Removing old $(DistDir) ; \
1552 $(RM) -rf $(DistDir); \
1553 $(EchoCmd) Making 'all' to verify build ; \
1554 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1556 $(Echo) Building Distribution Directory $(DistDir)
1557 $(Verb) $(MKDIR) $(DistDir)
1558 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1559 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1560 for file in $(DistFiles) ; do \
1562 $(PROJ_SRC_DIR)/*) \
1563 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1565 $(PROJ_SRC_ROOT)/*) \
1566 file=`echo "$$file" | \
1567 sed "s#^$$srcrootstrip/##"` \
1570 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1571 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1572 from_dir="$(PROJ_SRC_DIR)" ; \
1573 elif test -f "$$file" || test -d "$$file" ; then \
1576 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1577 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1578 to_dir="$(DistDir)/$$dir"; \
1579 $(MKDIR) "$$to_dir" ; \
1581 to_dir="$(DistDir)"; \
1583 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1584 if test -n "$$mid_dir" ; then \
1585 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1587 if test -d "$$from_dir/$$file"; then \
1588 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1589 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1590 cd $(PROJ_SRC_DIR) ; \
1591 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1592 ( cd $$to_dir ; $(TAR) xf - ) ; \
1593 cd $(PROJ_OBJ_DIR) ; \
1596 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1597 ( cd $$to_dir ; $(TAR) xf - ) ; \
1598 cd $(PROJ_OBJ_DIR) ; \
1600 elif test -f "$$from_dir/$$file" ; then \
1601 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1602 elif test -L "$$from_dir/$$file" ; then \
1603 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1604 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1605 $(EchoCmd) "===== WARNING: Distribution Source " \
1606 "$$from_dir/$$file Not Found!" ; \
1607 elif test "$(Verb)" != '@' ; then \
1608 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1611 $(Verb) for subdir in $(DistSubDirs) ; do \
1612 if test "$$subdir" \!= "." ; then \
1613 new_distdir="$(DistDir)/$$subdir" ; \
1614 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1615 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1616 DistDir="$$new_distdir" distdir ) || exit 1; \
1619 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1620 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1621 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1622 -name .svn \) -print` ;\
1623 $(MAKE) dist-hook ; \
1624 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1625 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1626 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1627 -o ! -type d ! -perm -444 -exec \
1628 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1629 || chmod -R a+r $(DistDir) ; \
1632 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1638 ###############################################################################
1639 # TOP LEVEL - targets only to apply at the top level directory
1640 ###############################################################################
1644 #------------------------------------------------------------------------
1645 # Install support for the project's include files:
1646 #------------------------------------------------------------------------
1649 $(Echo) Install circumvented with NO_INSTALL
1651 $(Echo) Uninstall circumvented with NO_INSTALL
1654 $(Echo) Installing include files
1655 $(Verb) $(MKDIR) $(PROJ_includedir)
1656 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1657 cd $(PROJ_SRC_ROOT)/include && \
1658 for hdr in `find . -type f '!' '(' -name '*~' \
1659 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1660 grep -v .svn` ; do \
1661 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1662 if test \! -d "$$instdir" ; then \
1663 $(EchoCmd) Making install directory $$instdir ; \
1664 $(MKDIR) $$instdir ;\
1666 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1669 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1670 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1671 cd $(PROJ_OBJ_ROOT)/include && \
1672 for hdr in `find . -type f -print | grep -v CVS` ; do \
1673 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1679 $(Echo) Uninstalling include files
1680 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1681 cd $(PROJ_SRC_ROOT)/include && \
1682 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1683 '!' '(' -name '*~' -o -name '.#*' \
1684 -o -name '*.in' ')' -print ')' | \
1685 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1686 cd $(PROJ_SRC_ROOT)/include && \
1687 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1688 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1694 @echo searching for overlength lines in files: $(Sources)
1697 egrep -n '.{81}' $(Sources) /dev/null
1700 @echo searching for tabs in files: $(Sources)
1703 egrep -n ' ' $(Sources) /dev/null
1706 @ls -l $(LibDir) | awk '\
1707 BEGIN { sum = 0; } \
1709 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1710 @ls -l $(ToolDir) | awk '\
1711 BEGIN { sum = 0; } \
1713 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1714 #------------------------------------------------------------------------
1715 # Print out the directories used for building
1716 #------------------------------------------------------------------------
1718 $(Echo) "BuildMode : " '$(BuildMode)'
1719 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1720 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1721 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1722 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1723 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1724 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1725 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1726 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1727 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1728 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1729 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1730 $(Echo) "UserTargets : " '$(UserTargets)'
1731 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1732 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1733 $(Echo) "ObjDir : " '$(ObjDir)'
1734 $(Echo) "LibDir : " '$(LibDir)'
1735 $(Echo) "ToolDir : " '$(ToolDir)'
1736 $(Echo) "ExmplDir : " '$(ExmplDir)'
1737 $(Echo) "Sources : " '$(Sources)'
1738 $(Echo) "TDFiles : " '$(TDFiles)'
1739 $(Echo) "INCFiles : " '$(INCFiles)'
1740 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1741 $(Echo) "PreConditions: " '$(PreConditions)'
1742 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1743 $(Echo) "Compile.C : " '$(Compile.C)'
1744 $(Echo) "Archive : " '$(Archive)'
1745 $(Echo) "YaccFiles : " '$(YaccFiles)'
1746 $(Echo) "LexFiles : " '$(LexFiles)'
1747 $(Echo) "Module : " '$(Module)'
1748 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1749 $(Echo) "SubDirs : " '$(SubDirs)'
1750 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1751 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'