1 #===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source 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
26 TopLevelTargets := check dist dist-check dist-clean tags 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 .y .l .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)
76 ifneq ($(MakefileConfigIn),)
77 PreConditions += $(MakefileConfig)
80 preconditions: $(PreConditions)
82 #------------------------------------------------------------------------
83 # Make sure the BUILT_SOURCES are built first
84 #------------------------------------------------------------------------
85 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
88 ifneq ($(strip $(BUILT_SOURCES)),)
89 -$(Verb) $(RM) -f $(BUILT_SOURCES)
92 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
94 $(Verb) if test -x config.status ; then \
95 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
96 $(MKDIR) .spotless.save ; \
97 $(MV) config.status .spotless.save ; \
98 $(MV) mklib .spotless.save ; \
99 $(MV) projects .spotless.save ; \
101 $(MV) .spotless.save/config.status . ; \
102 $(MV) .spotless.save/mklib . ; \
103 $(MV) .spotless.save/projects . ; \
104 $(RM) -rf .spotless.save ; \
105 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
106 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
107 $(ConfigStatusScript) ; \
109 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
113 $(EchoCmd) "spotless target not supported for objdir == srcdir"
116 $(BUILT_SOURCES) : $(ObjMakefiles)
118 #------------------------------------------------------------------------
119 # Make sure we're not using a stale configuration
120 #------------------------------------------------------------------------
122 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
123 $(Verb) cd $(PROJ_OBJ_ROOT) && \
124 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
125 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
127 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
128 $(ConfigStatusScript)
130 .PRECIOUS: $(ConfigStatusScript)
131 $(ConfigStatusScript): $(ConfigureScript)
132 $(Echo) Reconfiguring with $<
133 $(Verb) cd $(PROJ_OBJ_ROOT) && \
134 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
135 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
137 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
138 $(ConfigStatusScript)
140 #------------------------------------------------------------------------
141 # Make sure the configuration makefile is up to date
142 #------------------------------------------------------------------------
143 ifneq ($(MakefileConfigIn),)
144 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
145 $(Echo) Regenerating $@
146 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
149 ifneq ($(MakefileCommonIn),)
150 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
151 $(Echo) Regenerating $@
152 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
155 #------------------------------------------------------------------------
156 # If the Makefile in the source tree has been updated, copy it over into the
157 # build tree. But, only do this if the source and object makefiles differ
158 #------------------------------------------------------------------------
159 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
161 Makefile: $(PROJ_SRC_DIR)/Makefile
162 $(Echo) "Updating Makefile"
163 $(Verb) $(MKDIR) $(@D)
164 $(Verb) $(CP) -f $< $@
166 # Copy the Makefile.* files unless we're in the root directory which avoids
167 # the copying of Makefile.config.in or other things that should be explicitly
169 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
171 *Makefile.rules) ;; \
173 *) $(Echo) "Updating $(@F)" ; \
180 #------------------------------------------------------------------------
181 # Set up the basic dependencies
182 #------------------------------------------------------------------------
183 $(UserTargets):: $(PreConditions)
187 clean-all:: clean-local clean-all-local
188 install:: install-local
189 uninstall:: uninstall-local
190 install-local:: all-local
191 install-bytecode:: install-bytecode-local
193 ###############################################################################
194 # VARIABLES: Set up various variables based on configuration data
195 ###############################################################################
197 #--------------------------------------------------------------------
198 # Variables derived from configuration we are building
199 #--------------------------------------------------------------------
201 # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
202 # this can be overridden on the make command line.
204 OPTIMIZE_OPTION := -O3
206 OPTIMIZE_OPTION := -O2
209 ifdef ENABLE_PROFILING
211 CXX.Flags := $(OPTIMIZE_OPTION) -pg -g
212 C.Flags := $(OPTIMIZE_OPTION) -pg -g
213 LD.Flags := $(OPTIMIZE_OPTION) -pg -g
215 ifdef ENABLE_OPTIMIZED
217 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
218 ifneq ($(OS),FreeBSD)
220 OmitFramePointer := -fomit-frame-pointer
224 # Darwin requires -fstrict-aliasing to be explicitly enabled.
226 EXTRA_OPTIONS += -fstrict-aliasing
229 CXX.Flags := $(OPTIMIZE_OPTION) $(OmitFramePointer)
230 C.Flags := $(OPTIMIZE_OPTION) $(OmitFramePointer)
231 LD.Flags := $(OPTIMIZE_OPTION)
241 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
242 # then disable assertions by defining the appropriate preprocessor symbols.
243 ifdef DISABLE_ASSERTIONS
244 BuildMode := $(BuildMode)-Asserts
245 CXX.Flags += -DNDEBUG
248 CXX.Flags += -D_DEBUG
252 # IF REQUIRES_EH=1 is specified then don't disable exceptions
254 CXX.Flags += -fno-exceptions
257 CXX.Flags += $(CXXFLAGS)
259 CPP.BaseFlags += $(CPPFLAGS)
260 LD.Flags += $(LDFLAGS)
262 LibTool.Flags := --tag=CXX
264 # Make Floating point IEEE compliant on Alpha.
266 CXX.Flags += -mieee -fPIC
267 CPP.BaseFlags += -mieee -fPIC
270 #--------------------------------------------------------------------
271 # Directory locations
272 #--------------------------------------------------------------------
273 ObjDir := $(PROJ_OBJ_DIR)/$(BuildMode)
274 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
275 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
276 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
277 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
278 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
279 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
280 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
282 #--------------------------------------------------------------------
283 # Full Paths To Compiled Tools and Utilities
284 #--------------------------------------------------------------------
285 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
288 LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
291 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
294 ifeq ($(LLVM_CROSS_COMPILING),1)
295 TBLGEN := $(LLVMToolDir)/tblgen$(BUILD_EXEEXT)
297 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
301 GCCAS := $(LLVMToolDir)/gccas$(EXEEXT)
304 GCCLD := $(LLVMToolDir)/gccld$(EXEEXT)
307 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
310 LLI := $(LLVMToolDir)/lli$(EXEEXT)
313 LLC := $(LLVMToolDir)/llc$(EXEEXT)
316 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
319 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
322 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
323 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
325 #--------------------------------------------------------------------
326 # Adjust to user's request
327 #--------------------------------------------------------------------
329 # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
330 # to be built. Note that if LOADABLE_MODULE is specified then the resulting
331 # shared library can be opened with dlopen. Also, LOADABLE_MODULE implies
332 # several other things so we force them to be defined/on.
333 ifdef LOADABLE_MODULE
335 DONT_BUILD_RELINKED := 1
336 LINK_LIBS_IN_SHARED := 1
341 LD.Flags += -rpath $(LibDir)
343 LibTool.Flags += --tag=disable-shared
353 # Adjust settings for verbose mode
356 LibTool.Flags += --silent
357 AR.Flags += >/dev/null 2>/dev/null
358 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
360 ConfigureScriptFLAGS :=
363 # By default, strip symbol information from executable
365 Strip := $(PLATFORMSTRIPOPTS)
366 StripWarnMsg := "(without symbols)"
367 Install.StripFlag += -s
370 # Adjust linker flags for building an executable
373 LD.Flags += -rpath $(ExmplDir) -export-dynamic
375 LD.Flags += -rpath $(ToolDir) -export-dynamic
379 #----------------------------------------------------------
380 # Options To Invoke Tools
381 #----------------------------------------------------------
383 CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused -Wno-long-long \
384 -pedantic $(EXTRA_OPTIONS)
387 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
390 # If we are building a universal binary on Mac OS/X, pass extra options. This
391 # is useful to people that want to link the LLVM libraries into their universal
394 # The following can be optionally specified:
395 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
396 # For Mac OS/X 10.4 Intel machines, the traditional one is:
397 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
398 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
399 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
402 ifndef UNIVERSAL_ARCH
403 UNIVERSAL_ARCH := i386 ppc
405 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
406 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
407 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
408 ifdef UNIVERSAL_SDK_PATH
409 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
410 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
413 # Building universal cannot compute dependencies automatically.
414 DISABLE_AUTO_DEPENDENCIES=1
417 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
418 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
419 # All -I flags should go here, so that they don't confuse llvm-config.
420 CPP.Flags += -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
421 -I$(PROJ_OBJ_ROOT)/include \
422 -I$(PROJ_SRC_ROOT)/include \
423 -I$(LLVM_OBJ_ROOT)/include \
424 -I$(LLVM_SRC_ROOT)/include \
427 Compile.C = $(CC) $(CPP.Flags) $(CompileCommonOpts) -c $(C.Flags)
428 LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
429 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
431 Preprocess.C = $(CC) $(CPP.Flags) $(CompileCommonOpts) -E $(C.Flags)
433 Compile.CXX = $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -c
434 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
435 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
437 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
438 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
440 LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
441 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
443 LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
444 LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
446 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
447 ScriptInstall = $(INSTALL) -m 0755
448 DataInstall = $(INSTALL) -m 0644
449 TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include \
450 -I $(PROJ_SRC_ROOT)/lib/Target
451 Archive = $(AR) $(AR.Flags)
452 LArchive = $(LLVMToolDir)/llvm-ar rcsf
459 #----------------------------------------------------------
460 # Get the list of source files and compute object file
462 #----------------------------------------------------------
465 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
466 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
467 $(PROJ_SRC_DIR)/*.l))
469 Sources := $(SOURCES)
473 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
476 BaseNameSources := $(sort $(basename $(Sources)))
478 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
479 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
480 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
482 ###############################################################################
483 # DIRECTORIES: Handle recursive descent of directory structure
484 ###############################################################################
486 #---------------------------------------------------------
487 # Provide rules to make install dirs. This must be early
488 # in the file so they get built before dependencies
489 #---------------------------------------------------------
491 $(PROJ_bindir): $(PROJ_bindir)/.dir
492 $(PROJ_libdir): $(PROJ_libdir)/.dir
493 $(PROJ_includedir): $(PROJ_includedir)/.dir
494 $(PROJ_etcdir): $(PROJ_etcdir)/.dir
496 # To create other directories, as needed, and timestamp their creation
498 $(Verb) $(MKDIR) $* > /dev/null
501 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
502 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
504 #---------------------------------------------------------
505 # Handle the DIRS options for sequential construction
506 #---------------------------------------------------------
512 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
513 $(RecursiveTargets)::
514 $(Verb) for dir in $(DIRS); do \
515 if [ ! -f $$dir/Makefile ]; then \
517 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
519 ($(MAKE) -C $$dir $@ ) || exit 1; \
522 $(RecursiveTargets)::
523 $(Verb) for dir in $(DIRS); do \
524 ($(MAKE) -C $$dir $@ ) || exit 1; \
530 #---------------------------------------------------------
531 # Handle the EXPERIMENTAL_DIRS options ensuring success
532 # after each directory is built.
533 #---------------------------------------------------------
534 ifdef EXPERIMENTAL_DIRS
535 $(RecursiveTargets)::
536 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
537 if [ ! -f $$dir/Makefile ]; then \
539 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
541 ($(MAKE) -C $$dir $@ ) || exit 0; \
545 #-----------------------------------------------------------
546 # Handle the PARALLEL_DIRS options for parallel construction
547 #-----------------------------------------------------------
550 SubDirs += $(PARALLEL_DIRS)
552 # Unfortunately, this list must be maintained if new recursive targets are added
553 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
554 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
555 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
556 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
557 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
558 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
560 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
563 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
565 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
567 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) ;
570 #---------------------------------------------------------
571 # Handle the OPTIONAL_DIRS options for directores that may
573 #---------------------------------------------------------
576 SubDirs += $(OPTIONAL_DIRS)
578 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
579 $(RecursiveTargets)::
580 $(Verb) for dir in $(OPTIONAL_DIRS); do \
581 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
582 if [ ! -f $$dir/Makefile ]; then \
584 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
586 ($(MAKE) -C$$dir $@ ) || exit 1; \
590 $(RecursiveTargets)::
591 $(Verb) for dir in $(OPTIONAL_DIRS); do \
592 ($(MAKE) -C$$dir $@ ) || exit 1; \
597 #---------------------------------------------------------
598 # Handle the CONFIG_FILES options
599 #---------------------------------------------------------
602 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
603 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
604 $(Verb)for file in $(CONFIG_FILES); do \
605 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
606 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
607 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
608 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
610 $(ECHO) Error: cannot find config file $${file}. ; \
615 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
616 $(Verb)for file in $(CONFIG_FILES); do \
617 $(RM) -f $(PROJ_etcdir)/$${file} ; \
622 ###############################################################################
623 # Set up variables for building libararies
624 ###############################################################################
626 #---------------------------------------------------------
627 # Handle the special "JIT" value for LLVM_LIBS which is a
628 # shorthand for a bunch of libraries that get the correct
629 # JIT support for a library or a tool that runs JIT.
630 #---------------------------------------------------------
631 ifeq ($(firstword $(LLVMLIBS)),config)
632 LLVM_CONFIG := $(LLVM_SRC_ROOT)/utils/llvm-config/llvm-config
633 LLVMLIBS := $(shell $(LLVM_CONFIG) --libnames $(wordlist 2,9999,$(LLVMLIBS)))
634 LLVMLIBS := $(patsubst lib%.a,%.a,$(LLVMLIBS))
635 LLVMLIBS := $(patsubst %.o,%,$(LLVMLIBS))
638 ifeq ($(LLVMLIBS),JIT)
640 # Make sure we can get our own symbols in the tool
643 # Generic JIT libraries
644 JIT_LIBS := LLVMInterpreter LLVMJIT LLVMSelectionDAG.a LLVMCodeGen.a \
647 # You can enable the X86 JIT on a non-X86 host by setting the flag
648 # ENABLE_X86_JIT on the make command line. If not, it will still be
649 # enabled automagically on an X86 host.
654 # What the X86 JIT requires
659 # You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
660 # ENABLE_PPC_JIT on the make command line. If not, it will still be
661 # enabled automagically on an PowerPC host.
662 ifeq ($(ARCH), PowerPC)
666 # What the PowerPC JIT requires
668 JIT_LIBS += LLVMPowerPC
671 # You can enable the Alpha JIT on a non-Alpha host by setting the flag
672 # ENABLE_ALPHA_JIT on the make command line. If not, it will still be
673 # enabled automagically on an Alpha host.
674 ifeq ($(ARCH), Alpha)
678 # What the Alpha JIT requires
679 ifdef ENABLE_ALPHA_JIT
680 JIT_LIBS += LLVMAlpha
683 LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts.a LLVMTransformUtils.a LLVMAnalysis.a \
684 LLVMBCReader.a LLVMTarget.a LLVMCore.a LLVMSupport.a LLVMbzip2.a \
685 LLVMSystem.a $(PLATFORMLIBDL)
688 #---------------------------------------------------------
689 # Define various command line options pertaining to the
690 # libraries needed when linking. There are "Proj" libs
691 # (defined by the user's project) and "LLVM" libs (defined
692 # by the # LLVM project).
693 #---------------------------------------------------------
695 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
696 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
697 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
698 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
699 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
700 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
701 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
702 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
704 ###############################################################################
705 # Library Build Rules: Four ways to build a library
706 ###############################################################################
708 #---------------------------------------------------------
709 # Bytecode Module Targets:
710 # If the user set MODULE_NAME then they want to build a
711 # bytecode module from the sources. We compile all the
712 # sources and link it together into a single bytecode
714 #---------------------------------------------------------
717 ifeq ($(strip $(LLVMGCC)),)
718 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
721 Module := $(LibDir)/$(MODULE_NAME).bc
722 LinkModule := $(GCCLD) -L$(CFERuntimeLibDir)
725 ifdef EXPORTED_SYMBOL_FILE
726 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
729 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
730 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
731 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
733 all-local:: $(Module)
736 ifneq ($(strip $(Module)),)
737 -$(Verb) $(RM) -f $(Module)
740 ifdef BYTECODE_DESTINATION
741 ModuleDestDir := $(BYTECODE_DESTINATION)
743 ModuleDestDir := $(PROJ_libdir)
746 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
748 install-module:: $(DestModule)
749 install-local:: $(DestModule)
751 $(DestModule): $(ModuleDestDir) $(Module)
752 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
753 $(Verb) $(DataInstall) $(Module) $(DestModule)
756 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
757 -$(Verb) $(RM) -f $(DestModule)
762 # if we're building a library ...
765 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
766 LIBRARYNAME := $(strip $(LIBRARYNAME))
767 ifdef LOADABLE_MODULE
768 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
770 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
772 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
773 LibName.O := $(LibDir)/$(LIBRARYNAME).o
774 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
776 #---------------------------------------------------------
777 # Shared Library Targets:
778 # If the user asked for a shared library to be built
779 # with the SHARED_LIBRARY variable, then we provide
780 # targets for building them.
781 #---------------------------------------------------------
784 all-local:: $(LibName.LA)
786 ifdef LINK_LIBS_IN_SHARED
787 ifdef LOADABLE_MODULE
788 SharedLibKindMessage := "Lodable Module"
790 SharedLibKindMessage := "Shared Library"
792 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
793 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
794 $(LIBRARYNAME)$(SHLIBEXT)
795 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
797 $(Verb) $(LTInstall) $@ $(LibDir)
799 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
800 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
801 $(Verb) $(LTLink) -o $@ $(ObjectsLO)
802 $(Verb) $(LTInstall) $@ $(LibDir)
806 ifneq ($(strip $(LibName.LA)),)
807 -$(Verb) $(RM) -f $(LibName.LA)
810 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
812 install-local:: $(DestSharedLib)
814 $(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
815 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
816 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
817 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
820 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
821 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
825 #---------------------------------------------------------
826 # Bytecode Library Targets:
827 # If the user asked for a bytecode library to be built
828 # with the BYTECODE_LIBRARY variable, then we provide
829 # targets for building them.
830 #---------------------------------------------------------
831 ifdef BYTECODE_LIBRARY
832 ifeq ($(strip $(LLVMGCC)),)
833 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
836 all-local:: $(LibName.BCA)
838 ifdef EXPORTED_SYMBOL_FILE
839 BCLinkLib = $(GCCLD) -L$(CFERuntimeLibDir) \
840 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
842 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(GCCLD) \
843 $(LLVMToolDir)/llvm-ar
844 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
846 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
848 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
850 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
851 $(LLVMToolDir)/llvm-ar
852 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
854 $(Verb) $(LArchive) $@ $(ObjectsBC)
859 ifneq ($(strip $(LibName.BCA)),)
860 -$(Verb) $(RM) -f $(LibName.BCA)
863 ifdef BYTECODE_DESTINATION
864 BytecodeDestDir := $(BYTECODE_DESTINATION)
866 BytecodeDestDir := $(PROJ_libdir)
869 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
871 install-bytecode-local:: $(DestBytecodeLib)
873 install-local:: $(DestBytecodeLib)
875 $(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA)
876 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
877 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
880 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
881 -$(Verb) $(RM) -f $(DestBytecodeLib)
886 #---------------------------------------------------------
887 # ReLinked Library Targets:
888 # If the user explicitly requests a relinked library with
889 # BUILD_RELINKED, provide it. Otherwise, if they specify
890 # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
892 #---------------------------------------------------------
894 ifndef DONT_BUILD_RELINKED
901 all-local:: $(LibName.O)
903 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
904 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
905 $(Verb) $(LTRelink) -o $@ $(ObjectsO)
908 ifneq ($(strip $(LibName.O)),)
909 -$(Verb) $(RM) -f $(LibName.O)
912 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
914 install-local:: $(DestRelinkedLib)
916 $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
917 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
918 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
921 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
922 -$(Verb) $(RM) -f $(DestRelinkedLib)
926 #---------------------------------------------------------
927 # Archive Library Targets:
928 # If the user wanted a regular archive library built,
929 # then we provide targets for building them.
930 #---------------------------------------------------------
933 all-local:: $(LibName.A)
935 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
936 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
938 $(Verb) $(Archive) $@ $(ObjectsO)
942 ifneq ($(strip $(LibName.A)),)
943 -$(Verb) $(RM) -f $(LibName.A)
946 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
948 install-local:: $(DestArchiveLib)
950 $(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
951 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
952 $(Verb) $(MKDIR) $(PROJ_libdir)
953 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
956 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
957 -$(Verb) $(RM) -f $(DestArchiveLib)
964 ###############################################################################
965 # Tool Build Rules: Build executable tool based on TOOLNAME option
966 ###############################################################################
970 #---------------------------------------------------------
971 # Set up variables for building a tool.
972 #---------------------------------------------------------
974 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
976 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
979 #---------------------------------------------------------
980 # Tell make that we need to rebuild subdirectories before
981 # we can link the tool. This affects things like LLI which
982 # has library subdirectories.
983 #---------------------------------------------------------
984 $(ToolBuildPath): $(addsuffix /.makeall, $(PARALLEL_DIRS))
986 #---------------------------------------------------------
987 # Provide targets for building the tools
988 #---------------------------------------------------------
989 all-local:: $(ToolBuildPath)
992 ifneq ($(strip $(ToolBuildPath)),)
993 -$(Verb) $(RM) -f $(ToolBuildPath)
997 $(ToolBuildPath): $(ExmplDir)/.dir
999 $(ToolBuildPath): $(ToolDir)/.dir
1002 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1003 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1004 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1005 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1006 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1009 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1011 install-local:: $(DestTool)
1013 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
1014 $(Echo) Installing $(BuildMode) $(DestTool)
1015 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1018 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1019 -$(Verb) $(RM) -f $(DestTool)
1023 ###############################################################################
1024 # Object Build Rules: Build object files based on sources
1025 ###############################################################################
1027 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1029 DISABLE_AUTO_DEPENDENCIES=1
1032 ifdef SHARED_LIBRARY
1034 MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1035 MAYBE_PIC_Compile.C = $(LTCompile.C)
1037 MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1038 MAYBE_PIC_Compile.C = $(Compile.C)
1041 # Provide rule sets for when dependency generation is enabled
1042 ifndef DISABLE_AUTO_DEPENDENCIES
1044 #---------------------------------------------------------
1045 # Create .lo files in the ObjDir directory from the .cpp and .c files...
1046 #---------------------------------------------------------
1048 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1049 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1050 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1051 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1052 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1054 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1055 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1056 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1057 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1058 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1060 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1061 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1062 $(Verb) if $(MAYBE_PIC_Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
1063 then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
1064 else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
1066 #---------------------------------------------------------
1067 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1068 #---------------------------------------------------------
1070 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1071 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1072 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1073 $< -o $@ -S -emit-llvm ; \
1074 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1075 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1077 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1078 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1079 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1080 $< -o $@ -S -emit-llvm ; \
1081 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1082 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1084 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1085 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1086 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1087 $< -o $@ -S -emit-llvm ; \
1088 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1089 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1091 # Provide alternate rule sets if dependencies are disabled
1094 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1095 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1096 $(MAYBE_PIC_Compile.CXX) $< -o $@
1098 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1099 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1100 $(MAYBE_PIC_Compile.CXX) $< -o $@
1102 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1103 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1104 $(MAYBE_PIC_Compile.C) $< -o $@
1106 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1107 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1108 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1110 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1111 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1112 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1114 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1115 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1116 $(BCCompile.C) $< -o $@ -S -emit-llvm
1121 ## Rules for building preprocessed (.i/.ii) outputs.
1122 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1123 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1124 $(Verb) $(Preprocess.CXX) $< -o $@
1126 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1127 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1128 $(Verb) $(Preprocess.CXX) $< -o $@
1130 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1131 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1132 $(Verb) $(Preprocess.C) $< -o $@
1135 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1136 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1137 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1139 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1140 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1141 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1143 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1144 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1145 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1148 # make the C and C++ compilers strip debug info out of bytecode libraries.
1150 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1151 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1152 $(Verb) $(GCCAS) $< -o $@
1154 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1155 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1156 $(Verb) $(GCCAS) -strip-debug $< -o $@
1160 #---------------------------------------------------------
1161 # Provide rule to build .bc files from .ll sources,
1162 # regardless of dependencies
1163 #---------------------------------------------------------
1164 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1165 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1166 $(Verb) $(LLVMAS) $< -f -o $@
1168 ###############################################################################
1169 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1170 ###############################################################################
1174 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1175 $(LLVM_SRC_ROOT)/lib/Target/Target.td \
1176 $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td \
1177 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td)
1178 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1179 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1180 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1182 # All of these files depend on tblgen and the .td files.
1183 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1185 # INCFiles rule: All of the tblgen generated files are emitted to
1186 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1187 # us to only "touch" the real file if the contents of it change. IOW, if
1188 # tblgen is modified, all of the .inc.tmp files are regereated, but no
1189 # dependencies of the .inc files are, unless the contents of the .inc file
1191 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1192 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1194 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1195 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1196 $(Echo) "Building $(<F) register names with tblgen"
1197 $(Verb) $(TableGen) -gen-register-enums -o $@ $<
1199 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1200 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1201 $(Echo) "Building $(<F) register information header with tblgen"
1202 $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
1204 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1205 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1206 $(Echo) "Building $(<F) register info implementation with tblgen"
1207 $(Verb) $(TableGen) -gen-register-desc -o $@ $<
1209 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1210 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1211 $(Echo) "Building $(<F) instruction names with tblgen"
1212 $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
1214 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1215 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1216 $(Echo) "Building $(<F) instruction information with tblgen"
1217 $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
1219 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1220 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1221 $(Echo) "Building $(<F) assembly writer with tblgen"
1222 $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
1224 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1225 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1226 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1227 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $<
1229 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1230 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1231 $(Echo) "Building $(<F) code emitter with tblgen"
1232 $(Verb) $(TableGen) -gen-emitter -o $@ $<
1234 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1235 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1236 $(Echo) "Building $(<F) instruction selector implementation with tblgen"
1237 $(Verb) $(TableGen) -gen-dag-isel -o $@ $<
1239 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1240 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1241 $(Echo) "Building $(<F) subtarget information with tblgen"
1242 $(Verb) $(TableGen) -gen-subtarget -o $@ $<
1245 -$(Verb) $(RM) -f $(INCFiles)
1249 ###############################################################################
1250 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1251 ###############################################################################
1253 #---------------------------------------------------------
1254 # Provide rules for generating a .cpp source file from
1255 # (f)lex input sources.
1256 #---------------------------------------------------------
1258 LexFiles := $(filter %.l,$(Sources))
1260 ifneq ($(LexFiles),)
1262 # Cancel built-in rules for lex
1266 all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1268 # Note the extra sed filtering here, used to cut down on the warnings emited
1269 # by GCC. The last line is a gross hack to work around flex aparently not
1270 # being able to resize the buffer on a large token input. Currently, for
1271 # uninitialized string buffers in LLVM we can generate very long tokens, so
1272 # this is a hack around it.
1273 # FIXME. (f.e. char Buffer[10000] )
1274 $(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1275 $(Echo) Flexing $*.l
1276 $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1277 $(SED) 's/void yyunput/inline void yyunput/' | \
1278 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1279 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1280 > $(PROJ_SRC_DIR)/$*.cpp
1282 # IFF the .l file has changed since it was last checked into CVS, copy the .l
1283 # file to .l.cvs and the generated .cpp file to .cpp.cvs. We use this mechanism
1284 # so that people without flex can build LLVM by copying the .cvs files to the
1285 # source location and building them.
1286 $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1287 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1288 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
1289 ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
1291 $(LexFiles:%.l=$(ObjDir)/%.o) : \
1292 $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1295 -$(Verb) $(RM) -f $(LexOutput)
1299 #---------------------------------------------------------
1300 # Provide rules for generating a .cpp and .h source files
1301 # from yacc (bison) input sources.
1302 #---------------------------------------------------------
1304 YaccFiles := $(filter %.y,$(Sources))
1305 ifneq ($(YaccFiles),)
1307 .PRECIOUS: $(YaccOutput)
1309 all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
1311 # Cancel built-in rules for yacc
1316 # Rule for building the bison based parsers...
1317 $(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1318 $(Echo) "Bisoning $*.y"
1319 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1320 $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1321 $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1323 # IFF the .y file has changed since it was last checked into CVS, copy the .y
1324 # file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs. We use this
1325 # mechanism so that people without flex can build LLVM by copying the .cvs files
1326 # to the source location and building them.
1327 $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1328 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1329 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
1331 $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
1332 $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
1335 $(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1337 YaccOutput := $(YaccFiles:%.y=%.output)
1340 -$(Verb) $(RM) -f $(YaccOutput)
1343 ###############################################################################
1344 # OTHER RULES: Other rules needed
1345 ###############################################################################
1347 # To create postscript files from dot files...
1348 ifneq ($(DOT),false)
1350 $(DOT) -Tps < $< > $@
1353 $(Echo) "Cannot build $@: The program dot is not installed"
1356 # This rules ensures that header files that are removed still have a rule for
1357 # which they can be "generated." This allows make to ignore them and
1358 # reproduce the dependency lists.
1362 # Define clean-local to clean the current directory. Note that this uses a
1363 # very conservative approach ensuring that empty variables do not cause
1364 # errors or disastrous removal.
1366 ifneq ($(strip $(ObjDir)),)
1367 -$(Verb) $(RM) -rf $(ObjDir)
1369 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1370 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1371 -$(Verb) $(RM) -f *$(SHLIBEXT)
1375 -$(Verb) $(RM) -rf Debug Release Profile
1377 # Build tags database for Emacs/Xemacs:
1381 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1382 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1383 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1384 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1385 -name '*.cpp' -o -name '*.h' | \
1386 $(ETAGS) $(ETAGSFLAGS) -
1389 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1390 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1391 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1392 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1393 \( -name '*.cpp' -o -name '*.h' \) -print | \
1394 ctags -ImtT -o $(PROJ_OBJ_ROOT)/CTAGS -L -
1397 ###############################################################################
1398 # DEPENDENCIES: Include the dependency files if we should
1399 ###############################################################################
1400 ifndef DISABLE_AUTO_DEPENDENCIES
1402 # If its not one of the cleaning targets
1403 ifneq ($strip($(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
1405 # Get the list of dependency files
1406 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1407 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1409 -include /dev/null $(DependFiles)
1415 ###############################################################################
1416 # CHECK: Running the test suite
1417 ###############################################################################
1420 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1421 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1422 $(EchoCmd) Running test suite ; \
1423 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1424 TESTSUITE=$(TESTSUITE) ; \
1426 $(EchoCmd) No Makefile in test directory ; \
1429 $(EchoCmd) No test directory ; \
1432 ###############################################################################
1433 # DISTRIBUTION: Handle construction of a distribution tarball
1434 ###############################################################################
1436 #------------------------------------------------------------------------
1437 # Define distribution related variables
1438 #------------------------------------------------------------------------
1439 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1440 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1441 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1442 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1443 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1444 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1445 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1446 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1447 Makefile.config.in configure autoconf
1448 DistOther := $(notdir $(wildcard \
1449 $(PROJ_SRC_DIR)/*.h \
1450 $(PROJ_SRC_DIR)/*.td \
1451 $(PROJ_SRC_DIR)/*.def \
1452 $(PROJ_SRC_DIR)/*.ll \
1453 $(PROJ_SRC_DIR)/*.in))
1454 DistSubDirs := $(SubDirs)
1455 DistSources = $(Sources) $(EXTRA_DIST)
1456 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1458 #------------------------------------------------------------------------
1459 # We MUST build distribution with OBJ_DIR != SRC_DIR
1460 #------------------------------------------------------------------------
1461 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1462 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1463 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1467 #------------------------------------------------------------------------
1468 # Prevent attempt to run dist targets from anywhere but the top level
1469 #------------------------------------------------------------------------
1471 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1472 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1475 #------------------------------------------------------------------------
1476 # Provide the top level targets
1477 #------------------------------------------------------------------------
1479 dist-gzip:: $(DistTarGZip)
1481 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1482 $(Echo) Packing gzipped distribution tar file.
1483 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1484 $(GZIP) -c > "$(DistTarGZip)"
1486 dist-bzip2:: $(DistTarBZ2)
1488 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1489 $(Echo) Packing bzipped distribution tar file.
1490 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1491 $(BZIP2) -c >$(DistTarBZ2)
1493 dist-zip:: $(DistZip)
1495 $(DistZip) : $(TopDistDir)/.makedistdir
1496 $(Echo) Packing zipped distribution file.
1497 $(Verb) rm -f $(DistZip)
1498 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1500 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1501 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1503 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1505 dist-check:: $(DistTarGZip)
1506 $(Echo) Checking distribution tar file.
1507 $(Verb) if test -d $(DistCheckDir) ; then \
1508 $(RM) -rf $(DistCheckDir) ; \
1510 $(Verb) $(MKDIR) $(DistCheckDir)
1511 $(Verb) cd $(DistCheckDir) && \
1512 $(MKDIR) $(DistCheckDir)/build && \
1513 $(MKDIR) $(DistCheckDir)/install && \
1514 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1516 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1517 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1520 $(MAKE) install && \
1521 $(MAKE) uninstall && \
1522 $(MAKE) dist-clean && \
1523 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1526 $(Echo) Cleaning distribution files
1527 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1532 #------------------------------------------------------------------------
1533 # Provide the recursive distdir target for building the distribution directory
1534 #------------------------------------------------------------------------
1535 distdir: $(DistDir)/.makedistdir
1536 $(DistDir)/.makedistdir: $(DistSources)
1537 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1538 if test -d "$(DistDir)" ; then \
1539 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1542 $(EchoCmd) Removing old $(DistDir) ; \
1543 $(RM) -rf $(DistDir); \
1544 $(EchoCmd) Making 'all' to verify build ; \
1545 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1547 $(Echo) Building Distribution Directory $(DistDir)
1548 $(Verb) $(MKDIR) $(DistDir)
1549 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1550 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1551 for file in $(DistFiles) ; do \
1553 $(PROJ_SRC_DIR)/*) \
1554 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1556 $(PROJ_SRC_ROOT)/*) \
1557 file=`echo "$$file" | \
1558 sed "s#^$$srcrootstrip/##"` \
1561 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1562 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1563 from_dir="$(PROJ_SRC_DIR)" ; \
1564 elif test -f "$$file" || test -d "$$file" ; then \
1567 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1568 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1569 to_dir="$(DistDir)/$$dir"; \
1570 $(MKDIR) "$$to_dir" ; \
1572 to_dir="$(DistDir)"; \
1574 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1575 if test -n "$$mid_dir" ; then \
1576 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1578 if test -d "$$from_dir/$$file"; then \
1579 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1580 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1581 cd $(PROJ_SRC_DIR) ; \
1582 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1583 ( cd $$to_dir ; $(TAR) xf - ) ; \
1584 cd $(PROJ_OBJ_DIR) ; \
1587 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1588 ( cd $$to_dir ; $(TAR) xf - ) ; \
1589 cd $(PROJ_OBJ_DIR) ; \
1591 elif test -f "$$from_dir/$$file" ; then \
1592 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1593 elif test -L "$$from_dir/$$file" ; then \
1594 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1595 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1596 $(EchoCmd) "===== WARNING: Distribution Source " \
1597 "$$from_dir/$$file Not Found!" ; \
1598 elif test "$(Verb)" != '@' ; then \
1599 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1602 $(Verb) for subdir in $(DistSubDirs) ; do \
1603 if test "$$subdir" \!= "." ; then \
1604 new_distdir="$(DistDir)/$$subdir" ; \
1605 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1606 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1607 DistDir="$$new_distdir" distdir ) || exit 1; \
1610 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1611 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1612 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1613 -name .svn \) -print` ;\
1614 $(MAKE) dist-hook ; \
1615 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1616 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1617 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1618 -o ! -type d ! -perm -444 -exec \
1619 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1620 || chmod -R a+r $(DistDir) ; \
1623 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1629 ###############################################################################
1630 # TOP LEVEL - targets only to apply at the top level directory
1631 ###############################################################################
1635 #------------------------------------------------------------------------
1636 # Install support for the project's include files:
1637 #------------------------------------------------------------------------
1639 $(Echo) Installing include files
1640 $(Verb) $(MKDIR) $(PROJ_includedir)
1641 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1642 cd $(PROJ_SRC_ROOT)/include && \
1643 for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1644 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
1645 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1646 if test \! -d "$$instdir" ; then \
1647 $(EchoCmd) Making install directory $$instdir ; \
1648 $(MKDIR) $$instdir ;\
1650 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1653 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1654 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1655 cd $(PROJ_OBJ_ROOT)/include && \
1656 for hdr in `find . -type f -print | grep -v CVS` ; do \
1657 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1663 $(Echo) Uninstalling include files
1664 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1665 cd $(PROJ_SRC_ROOT)/include && \
1666 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1667 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1668 -o -name '*.in' ')' -print ')' | \
1669 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1670 cd $(PROJ_SRC_ROOT)/include && \
1671 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1672 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1677 #------------------------------------------------------------------------
1678 # Print out the directories used for building
1679 #------------------------------------------------------------------------
1681 $(Echo) "BuildMode : " '$(BuildMode)'
1682 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1683 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1684 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1685 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1686 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1687 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1688 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1689 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1690 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1691 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1692 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1693 $(Echo) "UserTargets : " '$(UserTargets)'
1694 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1695 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1696 $(Echo) "ObjDir : " '$(ObjDir)'
1697 $(Echo) "LibDir : " '$(LibDir)'
1698 $(Echo) "ToolDir : " '$(ToolDir)'
1699 $(Echo) "ExmplDir : " '$(ExmplDir)'
1700 $(Echo) "Sources : " '$(Sources)'
1701 $(Echo) "TDFiles : " '$(TDFiles)'
1702 $(Echo) "INCFiles : " '$(INCFiles)'
1703 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1704 $(Echo) "PreConditions: " '$(PreConditions)'
1705 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1706 $(Echo) "Compile.C : " '$(Compile.C)'
1707 $(Echo) "Archive : " '$(Archive)'
1708 $(Echo) "YaccFiles : " '$(YaccFiles)'
1709 $(Echo) "LexFiles : " '$(LexFiles)'
1710 $(Echo) "Module : " '$(Module)'
1711 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1712 $(Echo) "SubDirs : " '$(SubDirs)'