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 CXX.Flags += $(CXXFLAGS)
254 CPP.BaseFlags += $(CPPFLAGS)
255 LD.Flags += $(LDFLAGS)
257 LibTool.Flags := --tag=CXX
259 # Make Floating point IEEE compliant on Alpha.
261 CXX.Flags += -mieee -fPIC
262 CPP.BaseFlags += -mieee -fPIC
265 #--------------------------------------------------------------------
266 # Directory locations
267 #--------------------------------------------------------------------
268 ObjDir := $(PROJ_OBJ_DIR)/$(BuildMode)
269 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
270 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
271 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
272 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
273 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
274 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
275 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
277 #--------------------------------------------------------------------
278 # Full Paths To Compiled Tools and Utilities
279 #--------------------------------------------------------------------
280 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
283 LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
286 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
289 ifeq ($(LLVM_CROSS_COMPILING),1)
290 TBLGEN := $(LLVMToolDir)/tblgen$(BUILD_EXEEXT)
292 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
296 GCCAS := $(LLVMToolDir)/gccas$(EXEEXT)
299 GCCLD := $(LLVMToolDir)/gccld$(EXEEXT)
302 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
305 LLI := $(LLVMToolDir)/lli$(EXEEXT)
308 LLC := $(LLVMToolDir)/llc$(EXEEXT)
311 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
314 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
317 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
318 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
320 #--------------------------------------------------------------------
321 # Adjust to user's request
322 #--------------------------------------------------------------------
324 # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
325 # to be built. Note that if LOADABLE_MODULE is specified then the resulting
326 # shared library can be opened with dlopen
328 LD.Flags += -rpath $(LibDir)
329 ifdef LOADABLE_MODULE
333 LibTool.Flags += --tag=disable-shared
343 # Adjust settings for verbose mode
346 LibTool.Flags += --silent
347 AR.Flags += >/dev/null 2>/dev/null
348 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
350 ConfigureScriptFLAGS :=
353 # By default, strip symbol information from executable
355 Strip := $(PLATFORMSTRIPOPTS)
356 StripWarnMsg := "(without symbols)"
357 Install.StripFlag += -s
360 # Adjust linker flags for building an executable
363 LD.Flags += -rpath $(ExmplDir) -export-dynamic
365 LD.Flags += -rpath $(ToolDir) -export-dynamic
369 #----------------------------------------------------------
370 # Options To Invoke Tools
371 #----------------------------------------------------------
373 CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused -Wno-long-long \
374 -pedantic $(EXTRA_OPTIONS)
377 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
380 # If we are building a universal binary on Mac OS/X, pass extra options. This
381 # is useful to people that want to link the LLVM libraries into their universal
384 # The following can be optionally specified:
385 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
386 # For Mac OS/X 10.4 Intel machines, the traditional one is:
387 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
388 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
389 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
392 ifndef UNIVERSAL_ARCH
393 UNIVERSAL_ARCH := i386 ppc
395 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
396 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
397 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
398 ifdef UNIVERSAL_SDK_PATH
399 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
400 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
403 # Building universal cannot compute dependencies automatically.
404 DISABLE_AUTO_DEPENDENCIES=1
407 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
408 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
409 # All -I flags should go here, so that they don't confuse llvm-config.
410 CPP.Flags += -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
411 -I$(PROJ_OBJ_ROOT)/include \
412 -I$(PROJ_SRC_ROOT)/include \
413 -I$(LLVM_OBJ_ROOT)/include \
414 -I$(LLVM_SRC_ROOT)/include \
417 Compile.C = $(CC) $(CPP.Flags) $(CompileCommonOpts) -c $(C.Flags)
418 LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
419 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
421 Preprocess.C = $(CC) $(CPP.Flags) $(CompileCommonOpts) -E $(C.Flags)
423 Compile.CXX = $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -c
424 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
425 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
427 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
428 Link = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
429 $(CXX.Flags) $(CompileCommonOpts) $(LD.Flags) $(Strip)
430 Relink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
431 $(CXX.Flags) $(CompileCommonOpts) $(Relink.Flags)
432 LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
434 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
435 ScriptInstall = $(INSTALL) -m 0755
436 DataInstall = $(INSTALL) -m 0644
437 TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include \
438 -I $(PROJ_SRC_ROOT)/lib/Target
439 Archive = $(AR) $(AR.Flags)
440 LArchive = $(LLVMToolDir)/llvm-ar rcsf
447 #----------------------------------------------------------
448 # Get the list of source files and compute object file
450 #----------------------------------------------------------
453 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
454 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
455 $(PROJ_SRC_DIR)/*.l))
457 Sources := $(SOURCES)
461 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
464 BaseNameSources := $(sort $(basename $(Sources)))
466 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
467 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
468 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
470 ###############################################################################
471 # DIRECTORIES: Handle recursive descent of directory structure
472 ###############################################################################
474 #---------------------------------------------------------
475 # Provide rules to make install dirs. This must be early
476 # in the file so they get built before dependencies
477 #---------------------------------------------------------
479 $(PROJ_bindir): $(PROJ_bindir)/.dir
480 $(PROJ_libdir): $(PROJ_libdir)/.dir
481 $(PROJ_includedir): $(PROJ_includedir)/.dir
482 $(PROJ_etcdir): $(PROJ_etcdir)/.dir
484 # To create other directories, as needed, and timestamp their creation
486 $(Verb) $(MKDIR) $* > /dev/null
489 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
490 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
492 #---------------------------------------------------------
493 # Handle the DIRS options for sequential construction
494 #---------------------------------------------------------
500 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
501 $(RecursiveTargets)::
502 $(Verb) for dir in $(DIRS); do \
503 if [ ! -f $$dir/Makefile ]; then \
505 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
507 ($(MAKE) -C $$dir $@ ) || exit 1; \
510 $(RecursiveTargets)::
511 $(Verb) for dir in $(DIRS); do \
512 ($(MAKE) -C $$dir $@ ) || exit 1; \
518 #---------------------------------------------------------
519 # Handle the EXPERIMENTAL_DIRS options ensuring success
520 # after each directory is built.
521 #---------------------------------------------------------
522 ifdef EXPERIMENTAL_DIRS
523 $(RecursiveTargets)::
524 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
525 if [ ! -f $$dir/Makefile ]; then \
527 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
529 ($(MAKE) -C $$dir $@ ) || exit 0; \
533 #-----------------------------------------------------------
534 # Handle the PARALLEL_DIRS options for parallel construction
535 #-----------------------------------------------------------
538 SubDirs += $(PARALLEL_DIRS)
540 # Unfortunately, this list must be maintained if new recursive targets are added
541 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
542 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
543 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
544 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
545 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
546 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
548 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
551 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
553 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
555 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) ;
558 #---------------------------------------------------------
559 # Handle the OPTIONAL_DIRS options for directores that may
561 #---------------------------------------------------------
564 SubDirs += $(OPTIONAL_DIRS)
566 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
567 $(RecursiveTargets)::
568 $(Verb) for dir in $(OPTIONAL_DIRS); do \
569 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
570 if [ ! -f $$dir/Makefile ]; then \
572 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
574 ($(MAKE) -C$$dir $@ ) || exit 1; \
578 $(RecursiveTargets)::
579 $(Verb) for dir in $(OPTIONAL_DIRS); do \
580 ($(MAKE) -C$$dir $@ ) || exit 1; \
585 #---------------------------------------------------------
586 # Handle the CONFIG_FILES options
587 #---------------------------------------------------------
590 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
591 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
592 $(Verb)for file in $(CONFIG_FILES); do \
593 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
594 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
595 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
596 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
598 $(ECHO) Error: cannot find config file $${file}. ; \
603 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
604 $(Verb)for file in $(CONFIG_FILES); do \
605 $(RM) -f $(PROJ_etcdir)/$${file} ; \
610 ###############################################################################
611 # Set up variables for building libararies
612 ###############################################################################
614 #---------------------------------------------------------
615 # Handle the special "JIT" value for LLVM_LIBS which is a
616 # shorthand for a bunch of libraries that get the correct
617 # JIT support for a library or a tool that runs JIT.
618 #---------------------------------------------------------
619 ifeq ($(firstword $(LLVMLIBS)),config)
620 LLVM_CONFIG := $(LLVM_SRC_ROOT)/utils/llvm-config/llvm-config
621 LLVMLIBS := $(shell $(LLVM_CONFIG) --libnames $(wordlist 2,9999,$(LLVMLIBS)))
622 LLVMLIBS := $(patsubst lib%.a,%.a,$(LLVMLIBS))
623 LLVMLIBS := $(patsubst %.o,%,$(LLVMLIBS))
626 ifeq ($(LLVMLIBS),JIT)
628 # Make sure we can get our own symbols in the tool
631 # Generic JIT libraries
632 JIT_LIBS := LLVMInterpreter LLVMJIT LLVMSelectionDAG.a LLVMCodeGen.a \
635 # You can enable the X86 JIT on a non-X86 host by setting the flag
636 # ENABLE_X86_JIT on the make command line. If not, it will still be
637 # enabled automagically on an X86 host.
642 # What the X86 JIT requires
647 # You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
648 # ENABLE_PPC_JIT on the make command line. If not, it will still be
649 # enabled automagically on an PowerPC host.
650 ifeq ($(ARCH), PowerPC)
654 # What the PowerPC JIT requires
656 JIT_LIBS += LLVMPowerPC
659 # You can enable the Alpha JIT on a non-Alpha host by setting the flag
660 # ENABLE_ALPHA_JIT on the make command line. If not, it will still be
661 # enabled automagically on an Alpha host.
662 ifeq ($(ARCH), Alpha)
666 # What the Alpha JIT requires
667 ifdef ENABLE_ALPHA_JIT
668 JIT_LIBS += LLVMAlpha
671 LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts.a LLVMTransformUtils.a LLVMAnalysis.a \
672 LLVMBCReader.a LLVMTarget.a LLVMCore.a LLVMSupport.a LLVMbzip2.a \
673 LLVMSystem.a $(PLATFORMLIBDL)
676 #---------------------------------------------------------
677 # Define various command line options pertaining to the
678 # libraries needed when linking. There are "Proj" libs
679 # (defined by the user's project) and "LLVM" libs (defined
680 # by the # LLVM project).
681 #---------------------------------------------------------
683 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
684 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
685 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
686 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
687 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
688 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
689 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
690 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
692 ###############################################################################
693 # Library Build Rules: Four ways to build a library
694 ###############################################################################
696 #---------------------------------------------------------
697 # Bytecode Module Targets:
698 # If the user set MODULE_NAME then they want to build a
699 # bytecode module from the sources. We compile all the
700 # sources and link it together into a single bytecode
702 #---------------------------------------------------------
705 ifeq ($(strip $(LLVMGCC)),)
706 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
709 Module := $(LibDir)/$(MODULE_NAME).bc
710 LinkModule := $(GCCLD) -L$(CFERuntimeLibDir)
713 ifdef EXPORTED_SYMBOL_FILE
714 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
717 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
718 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
719 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
721 all-local:: $(Module)
724 ifneq ($(strip $(Module)),)
725 -$(Verb) $(RM) -f $(Module)
728 ifdef BYTECODE_DESTINATION
729 ModuleDestDir := $(BYTECODE_DESTINATION)
731 ModuleDestDir := $(PROJ_libdir)
734 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
736 install-module:: $(DestModule)
737 install-local:: $(DestModule)
739 $(DestModule): $(ModuleDestDir) $(Module)
740 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
741 $(Verb) $(DataInstall) $(Module) $(DestModule)
744 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
745 -$(Verb) $(RM) -f $(DestModule)
750 # if we're building a library ...
753 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
754 LIBRARYNAME := $(strip $(LIBRARYNAME))
755 ifdef LOADABLE_MODULE
756 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
758 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
760 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
761 LibName.O := $(LibDir)/$(LIBRARYNAME).o
762 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
764 #---------------------------------------------------------
765 # Shared Library Targets:
766 # If the user asked for a shared library to be built
767 # with the SHARED_LIBRARY variable, then we provide
768 # targets for building them.
769 #---------------------------------------------------------
772 all-local:: $(LibName.LA)
774 ifdef LINK_LIBS_IN_SHARED
775 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
776 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
777 $(Verb) $(Link) -o $@ $(ObjectsLO) \
778 $(ProjLibsOptions) $(LLVMLibsOptions)
779 $(Verb) $(LTInstall) $@ $(LibDir)
781 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
782 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
783 $(Verb) $(Link) -o $@ $(ObjectsLO)
784 $(Verb) $(LTInstall) $@ $(LibDir)
788 ifneq ($(strip $(LibName.LA)),)
789 -$(Verb) $(RM) -f $(LibName.LA)
792 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
794 install-local:: $(DestSharedLib)
796 $(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
797 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
798 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
799 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
802 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
803 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
807 #---------------------------------------------------------
808 # Bytecode Library Targets:
809 # If the user asked for a bytecode library to be built
810 # with the BYTECODE_LIBRARY variable, then we provide
811 # targets for building them.
812 #---------------------------------------------------------
813 ifdef BYTECODE_LIBRARY
814 ifeq ($(strip $(LLVMGCC)),)
815 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
818 all-local:: $(LibName.BCA)
820 ifdef EXPORTED_SYMBOL_FILE
821 BCLinkLib = $(GCCLD) -L$(CFERuntimeLibDir) \
822 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
824 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(GCCLD) \
825 $(LLVMToolDir)/llvm-ar
826 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
828 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
830 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
832 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
833 $(LLVMToolDir)/llvm-ar
834 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
836 $(Verb) $(LArchive) $@ $(ObjectsBC)
841 ifneq ($(strip $(LibName.BCA)),)
842 -$(Verb) $(RM) -f $(LibName.BCA)
845 ifdef BYTECODE_DESTINATION
846 BytecodeDestDir := $(BYTECODE_DESTINATION)
848 BytecodeDestDir := $(PROJ_libdir)
851 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
853 install-bytecode-local:: $(DestBytecodeLib)
855 install-local:: $(DestBytecodeLib)
857 $(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA)
858 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
859 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
862 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
863 -$(Verb) $(RM) -f $(DestBytecodeLib)
868 #---------------------------------------------------------
869 # ReLinked Library Targets:
870 # If the user explicitly requests a relinked library with
871 # BUILD_RELINKED, provide it. Otherwise, if they specify
872 # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
874 #---------------------------------------------------------
876 ifndef DONT_BUILD_RELINKED
883 all-local:: $(LibName.O)
885 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
886 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
887 $(Verb) $(Relink) -o $@ $(ObjectsO)
890 ifneq ($(strip $(LibName.O)),)
891 -$(Verb) $(RM) -f $(LibName.O)
894 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
896 install-local:: $(DestRelinkedLib)
898 $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
899 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
900 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
903 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
904 -$(Verb) $(RM) -f $(DestRelinkedLib)
908 #---------------------------------------------------------
909 # Archive Library Targets:
910 # If the user wanted a regular archive library built,
911 # then we provide targets for building them.
912 #---------------------------------------------------------
915 all-local:: $(LibName.A)
917 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
918 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
920 $(Verb) $(Archive) $@ $(ObjectsO)
924 ifneq ($(strip $(LibName.A)),)
925 -$(Verb) $(RM) -f $(LibName.A)
928 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
930 install-local:: $(DestArchiveLib)
932 $(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
933 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
934 $(Verb) $(MKDIR) $(PROJ_libdir)
935 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
938 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
939 -$(Verb) $(RM) -f $(DestArchiveLib)
946 ###############################################################################
947 # Tool Build Rules: Build executable tool based on TOOLNAME option
948 ###############################################################################
952 #---------------------------------------------------------
953 # Set up variables for building a tool.
954 #---------------------------------------------------------
956 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
958 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
961 #---------------------------------------------------------
962 # Tell make that we need to rebuild subdirectories before
963 # we can link the tool. This affects things like LLI which
964 # has library subdirectories.
965 #---------------------------------------------------------
966 $(ToolBuildPath): $(addsuffix /.makeall, $(PARALLEL_DIRS))
968 #---------------------------------------------------------
969 # Provide targets for building the tools
970 #---------------------------------------------------------
971 all-local:: $(ToolBuildPath)
974 ifneq ($(strip $(ToolBuildPath)),)
975 -$(Verb) $(RM) -f $(ToolBuildPath)
979 $(ToolBuildPath): $(ExmplDir)/.dir
981 $(ToolBuildPath): $(ToolDir)/.dir
984 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
985 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
986 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
987 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
988 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
991 DestTool = $(PROJ_bindir)/$(TOOLNAME)
993 install-local:: $(DestTool)
995 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
996 $(Echo) Installing $(BuildMode) $(DestTool)
997 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1000 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1001 -$(Verb) $(RM) -f $(DestTool)
1005 ###############################################################################
1006 # Object Build Rules: Build object files based on sources
1007 ###############################################################################
1009 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1011 DISABLE_AUTO_DEPENDENCIES=1
1014 ifdef SHARED_LIBRARY
1016 MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1017 MAYBE_PIC_Compile.C = $(LTCompile.C)
1019 MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1020 MAYBE_PIC_Compile.C = $(Compile.C)
1023 # Provide rule sets for when dependency generation is enabled
1024 ifndef DISABLE_AUTO_DEPENDENCIES
1026 #---------------------------------------------------------
1027 # Create .lo files in the ObjDir directory from the .cpp and .c files...
1028 #---------------------------------------------------------
1030 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1031 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1032 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1033 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1034 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1036 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1037 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1038 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1039 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1040 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1042 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1043 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1044 $(Verb) if $(MAYBE_PIC_Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
1045 then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
1046 else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
1048 #---------------------------------------------------------
1049 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1050 #---------------------------------------------------------
1052 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1053 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1054 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1055 $< -o $@ -S -emit-llvm ; \
1056 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1057 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1059 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1060 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1061 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1062 $< -o $@ -S -emit-llvm ; \
1063 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1064 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1066 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1067 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1068 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1069 $< -o $@ -S -emit-llvm ; \
1070 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1071 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1073 # Provide alternate rule sets if dependencies are disabled
1076 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1077 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1078 $(MAYBE_PIC_Compile.CXX) $< -o $@
1080 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1081 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1082 $(MAYBE_PIC_Compile.CXX) $< -o $@
1084 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1085 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1086 $(MAYBE_PIC_Compile.C) $< -o $@
1088 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1089 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1090 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1092 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1093 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1094 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1096 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1097 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1098 $(BCCompile.C) $< -o $@ -S -emit-llvm
1103 ## Rules for building preprocessed (.i/.ii) outputs.
1104 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1105 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1106 $(Verb) $(Preprocess.CXX) $< -o $@
1108 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1109 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1110 $(Verb) $(Preprocess.CXX) $< -o $@
1112 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1113 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1114 $(Verb) $(Preprocess.C) $< -o $@
1117 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1118 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1119 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1121 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1122 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1123 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1125 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1126 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1127 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1130 # make the C and C++ compilers strip debug info out of bytecode libraries.
1132 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1133 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1134 $(Verb) $(GCCAS) $< -o $@
1136 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1137 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1138 $(Verb) $(GCCAS) -strip-debug $< -o $@
1142 #---------------------------------------------------------
1143 # Provide rule to build .bc files from .ll sources,
1144 # regardless of dependencies
1145 #---------------------------------------------------------
1146 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1147 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1148 $(Verb) $(LLVMAS) $< -f -o $@
1150 ###############################################################################
1151 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1152 ###############################################################################
1156 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1157 $(LLVM_SRC_ROOT)/lib/Target/Target.td \
1158 $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td \
1159 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td)
1160 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1161 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1162 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1164 # All of these files depend on tblgen and the .td files.
1165 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1167 # INCFiles rule: All of the tblgen generated files are emitted to
1168 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1169 # us to only "touch" the real file if the contents of it change. IOW, if
1170 # tblgen is modified, all of the .inc.tmp files are regereated, but no
1171 # dependencies of the .inc files are, unless the contents of the .inc file
1173 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1174 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1176 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1177 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1178 $(Echo) "Building $(<F) register names with tblgen"
1179 $(Verb) $(TableGen) -gen-register-enums -o $@ $<
1181 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1182 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1183 $(Echo) "Building $(<F) register information header with tblgen"
1184 $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
1186 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1187 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1188 $(Echo) "Building $(<F) register info implementation with tblgen"
1189 $(Verb) $(TableGen) -gen-register-desc -o $@ $<
1191 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1192 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1193 $(Echo) "Building $(<F) instruction names with tblgen"
1194 $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
1196 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1197 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1198 $(Echo) "Building $(<F) instruction information with tblgen"
1199 $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
1201 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1202 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1203 $(Echo) "Building $(<F) assembly writer with tblgen"
1204 $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
1206 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1207 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1208 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1209 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $<
1211 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1212 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1213 $(Echo) "Building $(<F) code emitter with tblgen"
1214 $(Verb) $(TableGen) -gen-emitter -o $@ $<
1216 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1217 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1218 $(Echo) "Building $(<F) instruction selector implementation with tblgen"
1219 $(Verb) $(TableGen) -gen-dag-isel -o $@ $<
1221 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1222 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1223 $(Echo) "Building $(<F) subtarget information with tblgen"
1224 $(Verb) $(TableGen) -gen-subtarget -o $@ $<
1227 -$(Verb) $(RM) -f $(INCFiles)
1231 ###############################################################################
1232 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1233 ###############################################################################
1235 #---------------------------------------------------------
1236 # Provide rules for generating a .cpp source file from
1237 # (f)lex input sources.
1238 #---------------------------------------------------------
1240 LexFiles := $(filter %.l,$(Sources))
1242 ifneq ($(LexFiles),)
1244 # Cancel built-in rules for lex
1248 all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1250 # Note the extra sed filtering here, used to cut down on the warnings emited
1251 # by GCC. The last line is a gross hack to work around flex aparently not
1252 # being able to resize the buffer on a large token input. Currently, for
1253 # uninitialized string buffers in LLVM we can generate very long tokens, so
1254 # this is a hack around it.
1255 # FIXME. (f.e. char Buffer[10000] )
1256 $(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1257 $(Echo) Flexing $*.l
1258 $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1259 $(SED) 's/void yyunput/inline void yyunput/' | \
1260 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1261 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1262 > $(PROJ_SRC_DIR)/$*.cpp
1264 # IFF the .l file has changed since it was last checked into CVS, copy the .l
1265 # file to .l.cvs and the generated .cpp file to .cpp.cvs. We use this mechanism
1266 # so that people without flex can build LLVM by copying the .cvs files to the
1267 # source location and building them.
1268 $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1269 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1270 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
1271 ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
1273 $(LexFiles:%.l=$(ObjDir)/%.o) : \
1274 $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1277 -$(Verb) $(RM) -f $(LexOutput)
1281 #---------------------------------------------------------
1282 # Provide rules for generating a .cpp and .h source files
1283 # from yacc (bison) input sources.
1284 #---------------------------------------------------------
1286 YaccFiles := $(filter %.y,$(Sources))
1287 ifneq ($(YaccFiles),)
1289 .PRECIOUS: $(YaccOutput)
1291 all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
1293 # Cancel built-in rules for yacc
1298 # Rule for building the bison based parsers...
1299 $(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1300 $(Echo) "Bisoning $*.y"
1301 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1302 $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1303 $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1305 # IFF the .y file has changed since it was last checked into CVS, copy the .y
1306 # file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs. We use this
1307 # mechanism so that people without flex can build LLVM by copying the .cvs files
1308 # to the source location and building them.
1309 $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1310 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1311 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
1313 $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
1314 $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
1317 $(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1319 YaccOutput := $(YaccFiles:%.y=%.output)
1322 -$(Verb) $(RM) -f $(YaccOutput)
1325 ###############################################################################
1326 # OTHER RULES: Other rules needed
1327 ###############################################################################
1329 # To create postscript files from dot files...
1330 ifneq ($(DOT),false)
1332 $(DOT) -Tps < $< > $@
1335 $(Echo) "Cannot build $@: The program dot is not installed"
1338 # This rules ensures that header files that are removed still have a rule for
1339 # which they can be "generated." This allows make to ignore them and
1340 # reproduce the dependency lists.
1344 # Define clean-local to clean the current directory. Note that this uses a
1345 # very conservative approach ensuring that empty variables do not cause
1346 # errors or disastrous removal.
1348 ifneq ($(strip $(ObjDir)),)
1349 -$(Verb) $(RM) -rf $(ObjDir)
1351 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1352 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1353 -$(Verb) $(RM) -f *$(SHLIBEXT)
1357 -$(Verb) $(RM) -rf Debug Release Profile
1359 # Build tags database for Emacs/Xemacs:
1363 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1364 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1365 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1366 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1367 -name '*.cpp' -o -name '*.h' | \
1368 $(ETAGS) $(ETAGSFLAGS) -
1371 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1372 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1373 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1374 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1375 \( -name '*.cpp' -o -name '*.h' \) -print | \
1376 ctags -ImtT -o $(PROJ_OBJ_ROOT)/CTAGS -L -
1379 ###############################################################################
1380 # DEPENDENCIES: Include the dependency files if we should
1381 ###############################################################################
1382 ifndef DISABLE_AUTO_DEPENDENCIES
1384 # If its not one of the cleaning targets
1385 ifneq ($strip($(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
1387 # Get the list of dependency files
1388 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1389 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1391 -include /dev/null $(DependFiles)
1397 ###############################################################################
1398 # CHECK: Running the test suite
1399 ###############################################################################
1402 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1403 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1404 $(EchoCmd) Running test suite ; \
1405 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1406 TESTSUITE=$(TESTSUITE) ; \
1408 $(EchoCmd) No Makefile in test directory ; \
1411 $(EchoCmd) No test directory ; \
1414 ###############################################################################
1415 # DISTRIBUTION: Handle construction of a distribution tarball
1416 ###############################################################################
1418 #------------------------------------------------------------------------
1419 # Define distribution related variables
1420 #------------------------------------------------------------------------
1421 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1422 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1423 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1424 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1425 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1426 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1427 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1428 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1429 Makefile.config.in configure autoconf
1430 DistOther := $(notdir $(wildcard \
1431 $(PROJ_SRC_DIR)/*.h \
1432 $(PROJ_SRC_DIR)/*.td \
1433 $(PROJ_SRC_DIR)/*.def \
1434 $(PROJ_SRC_DIR)/*.ll \
1435 $(PROJ_SRC_DIR)/*.in))
1436 DistSubDirs := $(SubDirs)
1437 DistSources = $(Sources) $(EXTRA_DIST)
1438 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1440 #------------------------------------------------------------------------
1441 # We MUST build distribution with OBJ_DIR != SRC_DIR
1442 #------------------------------------------------------------------------
1443 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1444 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1445 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1449 #------------------------------------------------------------------------
1450 # Prevent attempt to run dist targets from anywhere but the top level
1451 #------------------------------------------------------------------------
1453 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1454 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1457 #------------------------------------------------------------------------
1458 # Provide the top level targets
1459 #------------------------------------------------------------------------
1461 dist-gzip:: $(DistTarGZip)
1463 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1464 $(Echo) Packing gzipped distribution tar file.
1465 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1466 $(GZIP) -c > "$(DistTarGZip)"
1468 dist-bzip2:: $(DistTarBZ2)
1470 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1471 $(Echo) Packing bzipped distribution tar file.
1472 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1473 $(BZIP2) -c >$(DistTarBZ2)
1475 dist-zip:: $(DistZip)
1477 $(DistZip) : $(TopDistDir)/.makedistdir
1478 $(Echo) Packing zipped distribution file.
1479 $(Verb) rm -f $(DistZip)
1480 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1482 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1483 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1485 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1487 dist-check:: $(DistTarGZip)
1488 $(Echo) Checking distribution tar file.
1489 $(Verb) if test -d $(DistCheckDir) ; then \
1490 $(RM) -rf $(DistCheckDir) ; \
1492 $(Verb) $(MKDIR) $(DistCheckDir)
1493 $(Verb) cd $(DistCheckDir) && \
1494 $(MKDIR) $(DistCheckDir)/build && \
1495 $(MKDIR) $(DistCheckDir)/install && \
1496 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1498 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1499 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1502 $(MAKE) install && \
1503 $(MAKE) uninstall && \
1504 $(MAKE) dist-clean && \
1505 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1508 $(Echo) Cleaning distribution files
1509 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1514 #------------------------------------------------------------------------
1515 # Provide the recursive distdir target for building the distribution directory
1516 #------------------------------------------------------------------------
1517 distdir: $(DistDir)/.makedistdir
1518 $(DistDir)/.makedistdir: $(DistSources)
1519 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1520 if test -d "$(DistDir)" ; then \
1521 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1524 $(EchoCmd) Removing old $(DistDir) ; \
1525 $(RM) -rf $(DistDir); \
1526 $(EchoCmd) Making 'all' to verify build ; \
1527 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1529 $(Echo) Building Distribution Directory $(DistDir)
1530 $(Verb) $(MKDIR) $(DistDir)
1531 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1532 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1533 for file in $(DistFiles) ; do \
1535 $(PROJ_SRC_DIR)/*) \
1536 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1538 $(PROJ_SRC_ROOT)/*) \
1539 file=`echo "$$file" | \
1540 sed "s#^$$srcrootstrip/##"` \
1543 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1544 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1545 from_dir="$(PROJ_SRC_DIR)" ; \
1546 elif test -f "$$file" || test -d "$$file" ; then \
1549 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1550 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1551 to_dir="$(DistDir)/$$dir"; \
1552 $(MKDIR) "$$to_dir" ; \
1554 to_dir="$(DistDir)"; \
1556 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1557 if test -n "$$mid_dir" ; then \
1558 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1560 if test -d "$$from_dir/$$file"; then \
1561 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1562 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1563 cd $(PROJ_SRC_DIR) ; \
1564 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1565 ( cd $$to_dir ; $(TAR) xf - ) ; \
1566 cd $(PROJ_OBJ_DIR) ; \
1569 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1570 ( cd $$to_dir ; $(TAR) xf - ) ; \
1571 cd $(PROJ_OBJ_DIR) ; \
1573 elif test -f "$$from_dir/$$file" ; then \
1574 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1575 elif test -L "$$from_dir/$$file" ; then \
1576 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1577 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1578 $(EchoCmd) "===== WARNING: Distribution Source " \
1579 "$$from_dir/$$file Not Found!" ; \
1580 elif test "$(Verb)" != '@' ; then \
1581 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1584 $(Verb) for subdir in $(DistSubDirs) ; do \
1585 if test "$$subdir" \!= "." ; then \
1586 new_distdir="$(DistDir)/$$subdir" ; \
1587 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1588 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1589 DistDir="$$new_distdir" distdir ) || exit 1; \
1592 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1593 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1594 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1595 -name .svn \) -print` ;\
1596 $(MAKE) dist-hook ; \
1597 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1598 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1599 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1600 -o ! -type d ! -perm -444 -exec \
1601 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1602 || chmod -R a+r $(DistDir) ; \
1605 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1611 ###############################################################################
1612 # TOP LEVEL - targets only to apply at the top level directory
1613 ###############################################################################
1617 #------------------------------------------------------------------------
1618 # Install support for the project's include files:
1619 #------------------------------------------------------------------------
1621 $(Echo) Installing include files
1622 $(Verb) $(MKDIR) $(PROJ_includedir)
1623 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1624 cd $(PROJ_SRC_ROOT)/include && \
1625 for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1626 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
1627 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1628 if test \! -d "$$instdir" ; then \
1629 $(EchoCmd) Making install directory $$instdir ; \
1630 $(MKDIR) $$instdir ;\
1632 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1635 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1636 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1637 cd $(PROJ_OBJ_ROOT)/include && \
1638 for hdr in `find . -type f -print | grep -v CVS` ; do \
1639 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1645 $(Echo) Uninstalling include files
1646 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1647 cd $(PROJ_SRC_ROOT)/include && \
1648 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1649 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1650 -o -name '*.in' ')' -print ')' | \
1651 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1652 cd $(PROJ_SRC_ROOT)/include && \
1653 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1654 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1659 #------------------------------------------------------------------------
1660 # Print out the directories used for building
1661 #------------------------------------------------------------------------
1663 $(Echo) "BuildMode : " '$(BuildMode)'
1664 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1665 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1666 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1667 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1668 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1669 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1670 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1671 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1672 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1673 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1674 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1675 $(Echo) "UserTargets : " '$(UserTargets)'
1676 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1677 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1678 $(Echo) "ObjDir : " '$(ObjDir)'
1679 $(Echo) "LibDir : " '$(LibDir)'
1680 $(Echo) "ToolDir : " '$(ToolDir)'
1681 $(Echo) "ExmplDir : " '$(ExmplDir)'
1682 $(Echo) "Sources : " '$(Sources)'
1683 $(Echo) "TDFiles : " '$(TDFiles)'
1684 $(Echo) "INCFiles : " '$(INCFiles)'
1685 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1686 $(Echo) "PreConditions: " '$(PreConditions)'
1687 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1688 $(Echo) "Compile.C : " '$(Compile.C)'
1689 $(Echo) "Archive : " '$(Archive)'
1690 $(Echo) "YaccFiles : " '$(YaccFiles)'
1691 $(Echo) "LexFiles : " '$(LexFiles)'
1692 $(Echo) "Module : " '$(Module)'
1693 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1694 $(Echo) "SubDirs : " '$(SubDirs)'