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)
77 ifneq ($(MakefileConfigIn),)
78 PreConditions += $(MakefileConfig)
81 preconditions: $(PreConditions)
83 #------------------------------------------------------------------------
84 # Make sure the BUILT_SOURCES are built first
85 #------------------------------------------------------------------------
86 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
89 ifneq ($(strip $(BUILT_SOURCES)),)
90 -$(Verb) $(RM) -f $(BUILT_SOURCES)
93 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
95 $(Verb) if test -x config.status ; then \
96 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
97 $(MKDIR) .spotless.save ; \
98 $(MV) config.status .spotless.save ; \
99 $(MV) mklib .spotless.save ; \
100 $(MV) projects .spotless.save ; \
102 $(MV) .spotless.save/config.status . ; \
103 $(MV) .spotless.save/mklib . ; \
104 $(MV) .spotless.save/projects . ; \
105 $(RM) -rf .spotless.save ; \
106 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
107 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108 $(ConfigStatusScript) ; \
110 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
114 $(EchoCmd) "spotless target not supported for objdir == srcdir"
117 $(BUILT_SOURCES) : $(ObjMakefiles)
119 #------------------------------------------------------------------------
120 # Make sure we're not using a stale configuration
121 #------------------------------------------------------------------------
123 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
124 $(Verb) cd $(PROJ_OBJ_ROOT) && \
125 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
126 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
128 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129 $(ConfigStatusScript)
131 .PRECIOUS: $(ConfigStatusScript)
132 $(ConfigStatusScript): $(ConfigureScript)
133 $(Echo) Reconfiguring with $<
134 $(Verb) cd $(PROJ_OBJ_ROOT) && \
135 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
138 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139 $(ConfigStatusScript)
141 #------------------------------------------------------------------------
142 # Make sure the configuration makefile is up to date
143 #------------------------------------------------------------------------
144 ifneq ($(MakefileConfigIn),)
145 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
146 $(Echo) Regenerating $@
147 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
150 ifneq ($(MakefileCommonIn),)
151 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
152 $(Echo) Regenerating $@
153 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
156 #------------------------------------------------------------------------
157 # If the Makefile in the source tree has been updated, copy it over into the
158 # build tree. But, only do this if the source and object makefiles differ
159 #------------------------------------------------------------------------
160 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
162 Makefile: $(PROJ_SRC_DIR)/Makefile
163 $(Echo) "Updating Makefile"
164 $(Verb) $(MKDIR) $(@D)
165 $(Verb) $(CP) -f $< $@
167 # Copy the Makefile.* files unless we're in the root directory which avoids
168 # the copying of Makefile.config.in or other things that should be explicitly
170 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
172 *Makefile.rules) ;; \
174 *) $(Echo) "Updating $(@F)" ; \
181 #------------------------------------------------------------------------
182 # Set up the basic dependencies
183 #------------------------------------------------------------------------
184 $(UserTargets):: $(PreConditions)
188 clean-all:: clean-local clean-all-local
189 install:: install-local
190 uninstall:: uninstall-local
191 install-local:: all-local
192 install-bytecode:: install-bytecode-local
194 ###############################################################################
195 # VARIABLES: Set up various variables based on configuration data
196 ###############################################################################
198 #--------------------------------------------------------------------
199 # Variables derived from configuration we are building
200 #--------------------------------------------------------------------
202 # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
203 # this can be overridden on the make command line.
205 OPTIMIZE_OPTION := -O3
207 OPTIMIZE_OPTION := -O2
210 ifdef ENABLE_PROFILING
212 CXX.Flags := $(OPTIMIZE_OPTION) -pg -g
213 C.Flags := $(OPTIMIZE_OPTION) -pg -g
214 LD.Flags := $(OPTIMIZE_OPTION) -pg -g
216 ifeq ($(ENABLE_OPTIMIZED),1)
218 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
219 ifneq ($(OS),FreeBSD)
221 OmitFramePointer := -fomit-frame-pointer
225 # Darwin requires -fstrict-aliasing to be explicitly enabled.
227 EXTRA_OPTIONS += -fstrict-aliasing
230 CXX.Flags := $(OPTIMIZE_OPTION) $(OmitFramePointer)
231 C.Flags := $(OPTIMIZE_OPTION) $(OmitFramePointer)
232 LD.Flags := $(OPTIMIZE_OPTION)
242 # IF REQUIRES_EH=1 is specified then don't disable exceptions
244 CXX.Flags += -fno-exceptions
247 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
248 # then disable assertions by defining the appropriate preprocessor symbols.
249 ifdef DISABLE_ASSERTIONS
250 BuildMode := $(BuildMode)-Asserts
251 CXX.Flags += -DNDEBUG
254 CXX.Flags += -D_DEBUG
258 ifeq ($(ENABLE_PIC),1)
263 CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
265 CPP.BaseFlags += $(CPPFLAGS)
266 LD.Flags += $(LDFLAGS)
268 LibTool.Flags := --tag=CXX
270 # Make Floating point IEEE compliant on Alpha.
273 CPP.BaseFlags += -mieee
274 ifeq ($(ENABLE_PIC),0)
276 CPP.BaseFlags += -fPIC
280 #--------------------------------------------------------------------
281 # Directory locations
282 #--------------------------------------------------------------------
283 ObjDir := $(PROJ_OBJ_DIR)/$(BuildMode)
284 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
285 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
286 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
287 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
288 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
289 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
290 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
292 #--------------------------------------------------------------------
293 # Full Paths To Compiled Tools and Utilities
294 #--------------------------------------------------------------------
295 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
298 LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
301 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
304 ifeq ($(LLVM_CROSS_COMPILING),1)
305 TBLGEN := $(LLVMToolDir)/tblgen$(BUILD_EXEEXT)
307 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
310 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
312 GCCAS := $(LLVMToolDir)/gccas$(EXEEXT)
315 GCCLD := $(LLVMToolDir)/gccld$(EXEEXT)
318 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
321 LLI := $(LLVMToolDir)/lli$(EXEEXT)
324 LLC := $(LLVMToolDir)/llc$(EXEEXT)
327 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
330 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
333 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
335 ifeq ($(LLVMGCC_MAJVERS),3)
336 UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
337 UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
338 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
339 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
343 LLVMGCCWITHPATH := $(LLVMGCC)
344 LLVMGXXWITHPATH := $(LLVMGXX)
347 #--------------------------------------------------------------------
348 # Adjust to user's request
349 #--------------------------------------------------------------------
351 # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
352 # to be built. Note that if LOADABLE_MODULE is specified then the resulting
353 # shared library can be opened with dlopen. Also, LOADABLE_MODULE implies
354 # several other things so we force them to be defined/on.
355 ifdef LOADABLE_MODULE
357 DONT_BUILD_RELINKED := 1
358 LINK_LIBS_IN_SHARED := 1
363 LD.Flags += -rpath $(LibDir)
365 LibTool.Flags += --tag=disable-shared
375 # Adjust settings for verbose mode
378 LibTool.Flags += --silent
379 AR.Flags += >/dev/null 2>/dev/null
380 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
382 ConfigureScriptFLAGS :=
385 # By default, strip symbol information from executable
387 Strip := $(PLATFORMSTRIPOPTS)
388 StripWarnMsg := "(without symbols)"
389 Install.StripFlag += -s
392 # Adjust linker flags for building an executable
395 LD.Flags += -rpath $(ExmplDir) -export-dynamic
397 LD.Flags += -rpath $(ToolDir) -export-dynamic
401 #----------------------------------------------------------
402 # Options To Invoke Tools
403 #----------------------------------------------------------
405 CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
406 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
409 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
412 # If we are building a universal binary on Mac OS/X, pass extra options. This
413 # is useful to people that want to link the LLVM libraries into their universal
416 # The following can be optionally specified:
417 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
418 # For Mac OS/X 10.4 Intel machines, the traditional one is:
419 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
420 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
421 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
424 ifndef UNIVERSAL_ARCH
425 UNIVERSAL_ARCH := i386 ppc
427 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
428 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
429 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
430 ifdef UNIVERSAL_SDK_PATH
431 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
432 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
435 # Building universal cannot compute dependencies automatically.
436 DISABLE_AUTO_DEPENDENCIES=1
439 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
440 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
441 # All -I flags should go here, so that they don't confuse llvm-config.
442 CPP.Flags += -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
443 -I$(PROJ_OBJ_ROOT)/include \
444 -I$(PROJ_SRC_ROOT)/include \
445 -I$(LLVM_OBJ_ROOT)/include \
446 -I$(LLVM_SRC_ROOT)/include \
449 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
450 LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
451 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
452 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
454 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
455 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
456 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
459 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
460 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
462 LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
463 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
465 LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
466 LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
468 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
469 ScriptInstall = $(INSTALL) -m 0755
470 DataInstall = $(INSTALL) -m 0644
471 TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include \
472 -I $(PROJ_SRC_ROOT)/lib/Target
473 Archive = $(AR) $(AR.Flags)
474 LArchive = $(LLVMToolDir)/llvm-ar rcsf
481 #----------------------------------------------------------
482 # Get the list of source files and compute object file
484 #----------------------------------------------------------
487 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
488 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
489 $(PROJ_SRC_DIR)/*.l))
491 Sources := $(SOURCES)
495 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
498 BaseNameSources := $(sort $(basename $(Sources)))
500 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
501 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
502 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
504 ###############################################################################
505 # DIRECTORIES: Handle recursive descent of directory structure
506 ###############################################################################
508 #---------------------------------------------------------
509 # Provide rules to make install dirs. This must be early
510 # in the file so they get built before dependencies
511 #---------------------------------------------------------
513 $(PROJ_bindir): $(PROJ_bindir)/.dir
514 $(PROJ_libdir): $(PROJ_libdir)/.dir
515 $(PROJ_includedir): $(PROJ_includedir)/.dir
516 $(PROJ_etcdir): $(PROJ_etcdir)/.dir
518 # To create other directories, as needed, and timestamp their creation
520 $(Verb) $(MKDIR) $* > /dev/null
523 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
524 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
526 #---------------------------------------------------------
527 # Handle the DIRS options for sequential construction
528 #---------------------------------------------------------
534 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
535 $(RecursiveTargets)::
536 $(Verb) for dir in $(DIRS); do \
537 if [ ! -f $$dir/Makefile ]; then \
539 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
541 ($(MAKE) -C $$dir $@ ) || exit 1; \
544 $(RecursiveTargets)::
545 $(Verb) for dir in $(DIRS); do \
546 ($(MAKE) -C $$dir $@ ) || exit 1; \
552 #---------------------------------------------------------
553 # Handle the EXPERIMENTAL_DIRS options ensuring success
554 # after each directory is built.
555 #---------------------------------------------------------
556 ifdef EXPERIMENTAL_DIRS
557 $(RecursiveTargets)::
558 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
559 if [ ! -f $$dir/Makefile ]; then \
561 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
563 ($(MAKE) -C $$dir $@ ) || exit 0; \
567 #-----------------------------------------------------------
568 # Handle the PARALLEL_DIRS options for parallel construction
569 #-----------------------------------------------------------
572 SubDirs += $(PARALLEL_DIRS)
574 # Unfortunately, this list must be maintained if new recursive targets are added
575 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
576 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
577 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
578 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
579 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
580 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
582 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
585 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
587 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
589 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) ;
592 #---------------------------------------------------------
593 # Handle the OPTIONAL_DIRS options for directores that may
595 #---------------------------------------------------------
598 SubDirs += $(OPTIONAL_DIRS)
600 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
601 $(RecursiveTargets)::
602 $(Verb) for dir in $(OPTIONAL_DIRS); do \
603 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
604 if [ ! -f $$dir/Makefile ]; then \
606 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
608 ($(MAKE) -C$$dir $@ ) || exit 1; \
612 $(RecursiveTargets)::
613 $(Verb) for dir in $(OPTIONAL_DIRS); do \
614 ($(MAKE) -C$$dir $@ ) || exit 1; \
619 #---------------------------------------------------------
620 # Handle the CONFIG_FILES options
621 #---------------------------------------------------------
624 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
625 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
626 $(Verb)for file in $(CONFIG_FILES); do \
627 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
628 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
629 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
630 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
632 $(ECHO) Error: cannot find config file $${file}. ; \
637 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
638 $(Verb)for file in $(CONFIG_FILES); do \
639 $(RM) -f $(PROJ_etcdir)/$${file} ; \
644 ###############################################################################
645 # Set up variables for building libararies
646 ###############################################################################
648 #---------------------------------------------------------
649 # Define various command line options pertaining to the
650 # libraries needed when linking. There are "Proj" libs
651 # (defined by the user's project) and "LLVM" libs (defined
652 # by the LLVM project).
653 #---------------------------------------------------------
656 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
657 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
658 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
659 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
663 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
664 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
665 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
666 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
669 ifeq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
670 ifdef LINK_COMPONENTS
672 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
673 # clean in tools, then do a make in tools (instead of at the top level).
675 @echo "*** llvm-config doesn't exist - rebuilding it."
676 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
678 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
680 ProjLibsOptions = $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
681 ProjLibsPaths = $(LLVM_CONFIG) \
682 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
686 ###############################################################################
687 # Library Build Rules: Four ways to build a library
688 ###############################################################################
690 #---------------------------------------------------------
691 # Bytecode Module Targets:
692 # If the user set MODULE_NAME then they want to build a
693 # bytecode module from the sources. We compile all the
694 # sources and link it together into a single bytecode
696 #---------------------------------------------------------
699 ifeq ($(strip $(LLVMGCC)),)
700 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
703 Module := $(LibDir)/$(MODULE_NAME).bc
704 LinkModule := $(GCCLD) -L$(CFERuntimeLibDir)
707 ifdef EXPORTED_SYMBOL_FILE
708 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
711 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
712 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
713 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
715 all-local:: $(Module)
718 ifneq ($(strip $(Module)),)
719 -$(Verb) $(RM) -f $(Module)
722 ifdef BYTECODE_DESTINATION
723 ModuleDestDir := $(BYTECODE_DESTINATION)
725 ModuleDestDir := $(PROJ_libdir)
728 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
730 install-module:: $(DestModule)
731 install-local:: $(DestModule)
733 $(DestModule): $(ModuleDestDir) $(Module)
734 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
735 $(Verb) $(DataInstall) $(Module) $(DestModule)
738 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
739 -$(Verb) $(RM) -f $(DestModule)
744 # if we're building a library ...
747 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
748 LIBRARYNAME := $(strip $(LIBRARYNAME))
749 ifdef LOADABLE_MODULE
750 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
752 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
754 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
755 LibName.O := $(LibDir)/$(LIBRARYNAME).o
756 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
758 #---------------------------------------------------------
759 # Shared Library Targets:
760 # If the user asked for a shared library to be built
761 # with the SHARED_LIBRARY variable, then we provide
762 # targets for building them.
763 #---------------------------------------------------------
766 all-local:: $(LibName.LA)
768 ifdef LINK_LIBS_IN_SHARED
769 ifdef LOADABLE_MODULE
770 SharedLibKindMessage := "Loadable Module"
772 SharedLibKindMessage := "Shared Library"
774 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
775 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
776 $(LIBRARYNAME)$(SHLIBEXT)
777 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
779 $(Verb) $(LTInstall) $@ $(LibDir)
781 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
782 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
783 $(Verb) $(LTLink) -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) $(LTRelink) -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 # Provide targets for building the tools
963 #---------------------------------------------------------
964 all-local:: $(ToolBuildPath)
967 ifneq ($(strip $(ToolBuildPath)),)
968 -$(Verb) $(RM) -f $(ToolBuildPath)
972 $(ToolBuildPath): $(ExmplDir)/.dir
974 $(ToolBuildPath): $(ToolDir)/.dir
977 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
978 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
979 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
980 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
981 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
984 DestTool = $(PROJ_bindir)/$(TOOLNAME)
986 install-local:: $(DestTool)
988 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
989 $(Echo) Installing $(BuildMode) $(DestTool)
990 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
993 $(Echo) Uninstalling $(BuildMode) $(DestTool)
994 -$(Verb) $(RM) -f $(DestTool)
998 ###############################################################################
999 # Object Build Rules: Build object files based on sources
1000 ###############################################################################
1002 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1004 DISABLE_AUTO_DEPENDENCIES=1
1007 ifdef SHARED_LIBRARY
1009 MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1010 MAYBE_PIC_Compile.C = $(LTCompile.C)
1012 MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1013 MAYBE_PIC_Compile.C = $(Compile.C)
1016 # Provide rule sets for when dependency generation is enabled
1017 ifndef DISABLE_AUTO_DEPENDENCIES
1019 #---------------------------------------------------------
1020 # Create .lo files in the ObjDir directory from the .cpp and .c files...
1021 #---------------------------------------------------------
1023 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1024 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1025 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1026 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1027 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1029 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1030 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1031 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1032 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1033 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1035 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1036 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1037 $(Verb) if $(MAYBE_PIC_Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
1038 then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
1039 else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
1041 #---------------------------------------------------------
1042 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1043 #---------------------------------------------------------
1045 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1046 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1047 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1048 $< -o $@ -S -emit-llvm ; \
1049 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1050 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1051 $(call UPGRADE_MSG,$@)
1052 $(call UPGRADE_LL,$@)
1054 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1055 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1056 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1057 $< -o $@ -S -emit-llvm ; \
1058 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1059 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1060 $(call UPGRADE_MSG,$@)
1061 $(call UPGRADE_LL,$@)
1063 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1064 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1065 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1066 $< -o $@ -S -emit-llvm ; \
1067 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1068 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1069 $(call UPGRADE_MSG,$@)
1070 $(call UPGRADE_LL,$@)
1072 # Provide alternate rule sets if dependencies are disabled
1075 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1076 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1077 $(MAYBE_PIC_Compile.CXX) $< -o $@
1079 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1080 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1081 $(MAYBE_PIC_Compile.CXX) $< -o $@
1083 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1084 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1085 $(MAYBE_PIC_Compile.C) $< -o $@
1087 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1088 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1089 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1090 $(call UPGRADE_MSG,$@)
1091 $(call UPGRADE_LL,$@)
1093 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1094 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1095 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1096 $(call UPGRADE_MSG,$@)
1097 $(call UPGRADE_LL,$@)
1099 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1100 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1101 $(BCCompile.C) $< -o $@ -S -emit-llvm
1102 $(call UPGRADE_MSG,@)
1103 $(call UPGRADE_LL,@)
1108 ## Rules for building preprocessed (.i/.ii) outputs.
1109 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1110 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1111 $(Verb) $(Preprocess.CXX) $< -o $@
1113 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1114 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1115 $(Verb) $(Preprocess.CXX) $< -o $@
1117 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1118 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1119 $(Verb) $(Preprocess.C) $< -o $@
1122 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1123 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1124 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1126 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1127 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1128 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1130 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1131 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1132 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1135 # make the C and C++ compilers strip debug info out of bytecode libraries.
1137 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1138 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1139 $(Verb) $(GCCAS) $< -o $@
1141 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1142 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1143 $(Verb) $(GCCAS) -strip-debug $< -o $@
1147 #---------------------------------------------------------
1148 # Provide rule to build .bc files from .ll sources,
1149 # regardless of dependencies
1150 #---------------------------------------------------------
1151 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1152 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1153 $(Verb) $(LLVMAS) $< -f -o $@
1155 ###############################################################################
1156 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1157 ###############################################################################
1161 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1162 $(LLVM_SRC_ROOT)/lib/Target/Target.td \
1163 $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td \
1164 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1165 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1166 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1167 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1168 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1170 # All of these files depend on tblgen and the .td files.
1171 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1173 # INCFiles rule: All of the tblgen generated files are emitted to
1174 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1175 # us to only "touch" the real file if the contents of it change. IOW, if
1176 # tblgen is modified, all of the .inc.tmp files are regereated, but no
1177 # dependencies of the .inc files are, unless the contents of the .inc file
1179 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1180 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1182 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1183 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1184 $(Echo) "Building $(<F) register names with tblgen"
1185 $(Verb) $(TableGen) -gen-register-enums -o $@ $<
1187 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1188 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1189 $(Echo) "Building $(<F) register information header with tblgen"
1190 $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
1192 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1193 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1194 $(Echo) "Building $(<F) register info implementation with tblgen"
1195 $(Verb) $(TableGen) -gen-register-desc -o $@ $<
1197 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1198 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1199 $(Echo) "Building $(<F) instruction names with tblgen"
1200 $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
1202 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1203 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1204 $(Echo) "Building $(<F) instruction information with tblgen"
1205 $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
1207 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1208 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1209 $(Echo) "Building $(<F) assembly writer with tblgen"
1210 $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
1212 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1213 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1214 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1215 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $<
1217 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1218 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1219 $(Echo) "Building $(<F) code emitter with tblgen"
1220 $(Verb) $(TableGen) -gen-emitter -o $@ $<
1222 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1223 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1224 $(Echo) "Building $(<F) instruction selector implementation with tblgen"
1225 $(Verb) $(TableGen) -gen-dag-isel -o $@ $<
1227 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1228 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1229 $(Echo) "Building $(<F) subtarget information with tblgen"
1230 $(Verb) $(TableGen) -gen-subtarget -o $@ $<
1233 -$(Verb) $(RM) -f $(INCFiles)
1237 ###############################################################################
1238 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1239 ###############################################################################
1241 #---------------------------------------------------------
1242 # Provide rules for generating a .cpp source file from
1243 # (f)lex input sources.
1244 #---------------------------------------------------------
1246 LexFiles := $(filter %.l,$(Sources))
1248 ifneq ($(LexFiles),)
1250 # Cancel built-in rules for lex
1254 all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1256 # Note the extra sed filtering here, used to cut down on the warnings emited
1257 # by GCC. The last line is a gross hack to work around flex aparently not
1258 # being able to resize the buffer on a large token input. Currently, for
1259 # uninitialized string buffers in LLVM we can generate very long tokens, so
1260 # this is a hack around it.
1261 # FIXME. (f.e. char Buffer[10000] )
1262 $(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1263 $(Echo) Flexing $*.l
1264 $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1265 $(SED) 's/void yyunput/inline void yyunput/' | \
1266 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1267 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1268 > $(PROJ_SRC_DIR)/$*.cpp
1270 # IFF the .l file has changed since it was last checked into CVS, copy the .l
1271 # file to .l.cvs and the generated .cpp file to .cpp.cvs. We use this mechanism
1272 # so that people without flex can build LLVM by copying the .cvs files to the
1273 # source location and building them.
1274 $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1275 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1276 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
1277 ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
1279 $(LexFiles:%.l=$(ObjDir)/%.o) : \
1280 $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1283 -$(Verb) $(RM) -f $(LexOutput)
1287 #---------------------------------------------------------
1288 # Provide rules for generating a .cpp and .h source files
1289 # from yacc (bison) input sources.
1290 #---------------------------------------------------------
1292 YaccFiles := $(filter %.y,$(Sources))
1293 ifneq ($(YaccFiles),)
1295 .PRECIOUS: $(YaccOutput)
1297 all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
1299 # Cancel built-in rules for yacc
1304 # Rule for building the bison based parsers...
1305 $(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1307 $(Echo) "Bisoning $*.y"
1308 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1309 $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1310 $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1312 $(Echo) "Bison of $*.y SKIPPED -- bison not found"
1315 # IFF the .y file has changed since it was last checked into CVS, copy the .y
1316 # file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs. We use this
1317 # mechanism so that people without flex can build LLVM by copying the .cvs files
1318 # to the source location and building them.
1319 $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1320 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1321 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
1323 $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
1324 $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
1327 $(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1329 YaccOutput := $(YaccFiles:%.y=%.output)
1332 -$(Verb) $(RM) -f $(YaccOutput)
1335 ###############################################################################
1336 # OTHER RULES: Other rules needed
1337 ###############################################################################
1339 # To create postscript files from dot files...
1340 ifneq ($(DOT),false)
1342 $(DOT) -Tps < $< > $@
1345 $(Echo) "Cannot build $@: The program dot is not installed"
1348 # This rules ensures that header files that are removed still have a rule for
1349 # which they can be "generated." This allows make to ignore them and
1350 # reproduce the dependency lists.
1354 # Define clean-local to clean the current directory. Note that this uses a
1355 # very conservative approach ensuring that empty variables do not cause
1356 # errors or disastrous removal.
1358 ifneq ($(strip $(ObjDir)),)
1359 -$(Verb) $(RM) -rf $(ObjDir)
1361 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1362 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1363 -$(Verb) $(RM) -f *$(SHLIBEXT)
1367 -$(Verb) $(RM) -rf Debug Release Profile
1369 # Build tags database for Emacs/Xemacs:
1373 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1374 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1375 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1376 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1377 -name '*.cpp' -o -name '*.h' | \
1378 $(ETAGS) $(ETAGSFLAGS) -
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' \) -print | \
1386 ctags -ImtT -o $(PROJ_OBJ_ROOT)/CTAGS -L -
1389 ###############################################################################
1390 # DEPENDENCIES: Include the dependency files if we should
1391 ###############################################################################
1392 ifndef DISABLE_AUTO_DEPENDENCIES
1394 # If its not one of the cleaning targets
1395 ifneq ($(strip $(filter-out clean clean-local dist-clean,$(MAKECMDGOALS)))),)
1397 # Get the list of dependency files
1398 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1399 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1401 -include /dev/null $(DependFiles)
1407 ###############################################################################
1408 # CHECK: Running the test suite
1409 ###############################################################################
1412 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1413 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1414 $(EchoCmd) Running test suite ; \
1415 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1416 TESTSUITE=$(TESTSUITE) ; \
1418 $(EchoCmd) No Makefile in test directory ; \
1421 $(EchoCmd) No test directory ; \
1424 ###############################################################################
1425 # DISTRIBUTION: Handle construction of a distribution tarball
1426 ###############################################################################
1428 #------------------------------------------------------------------------
1429 # Define distribution related variables
1430 #------------------------------------------------------------------------
1431 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1432 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1433 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1434 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1435 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1436 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1437 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1438 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1439 Makefile.config.in configure autoconf
1440 DistOther := $(notdir $(wildcard \
1441 $(PROJ_SRC_DIR)/*.h \
1442 $(PROJ_SRC_DIR)/*.td \
1443 $(PROJ_SRC_DIR)/*.def \
1444 $(PROJ_SRC_DIR)/*.ll \
1445 $(PROJ_SRC_DIR)/*.in))
1446 DistSubDirs := $(SubDirs)
1447 DistSources = $(Sources) $(EXTRA_DIST)
1448 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1450 #------------------------------------------------------------------------
1451 # We MUST build distribution with OBJ_DIR != SRC_DIR
1452 #------------------------------------------------------------------------
1453 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1454 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1455 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1459 #------------------------------------------------------------------------
1460 # Prevent attempt to run dist targets from anywhere but the top level
1461 #------------------------------------------------------------------------
1463 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1464 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1467 #------------------------------------------------------------------------
1468 # Provide the top level targets
1469 #------------------------------------------------------------------------
1471 dist-gzip:: $(DistTarGZip)
1473 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1474 $(Echo) Packing gzipped distribution tar file.
1475 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1476 $(GZIP) -c > "$(DistTarGZip)"
1478 dist-bzip2:: $(DistTarBZ2)
1480 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1481 $(Echo) Packing bzipped distribution tar file.
1482 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1483 $(BZIP2) -c >$(DistTarBZ2)
1485 dist-zip:: $(DistZip)
1487 $(DistZip) : $(TopDistDir)/.makedistdir
1488 $(Echo) Packing zipped distribution file.
1489 $(Verb) rm -f $(DistZip)
1490 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1492 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1493 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1495 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1497 dist-check:: $(DistTarGZip)
1498 $(Echo) Checking distribution tar file.
1499 $(Verb) if test -d $(DistCheckDir) ; then \
1500 $(RM) -rf $(DistCheckDir) ; \
1502 $(Verb) $(MKDIR) $(DistCheckDir)
1503 $(Verb) cd $(DistCheckDir) && \
1504 $(MKDIR) $(DistCheckDir)/build && \
1505 $(MKDIR) $(DistCheckDir)/install && \
1506 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1508 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1509 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1512 $(MAKE) install && \
1513 $(MAKE) uninstall && \
1514 $(MAKE) dist-clean && \
1515 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1518 $(Echo) Cleaning distribution files
1519 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1524 #------------------------------------------------------------------------
1525 # Provide the recursive distdir target for building the distribution directory
1526 #------------------------------------------------------------------------
1527 distdir: $(DistDir)/.makedistdir
1528 $(DistDir)/.makedistdir: $(DistSources)
1529 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1530 if test -d "$(DistDir)" ; then \
1531 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1534 $(EchoCmd) Removing old $(DistDir) ; \
1535 $(RM) -rf $(DistDir); \
1536 $(EchoCmd) Making 'all' to verify build ; \
1537 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1539 $(Echo) Building Distribution Directory $(DistDir)
1540 $(Verb) $(MKDIR) $(DistDir)
1541 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1542 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1543 for file in $(DistFiles) ; do \
1545 $(PROJ_SRC_DIR)/*) \
1546 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1548 $(PROJ_SRC_ROOT)/*) \
1549 file=`echo "$$file" | \
1550 sed "s#^$$srcrootstrip/##"` \
1553 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1554 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1555 from_dir="$(PROJ_SRC_DIR)" ; \
1556 elif test -f "$$file" || test -d "$$file" ; then \
1559 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1560 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1561 to_dir="$(DistDir)/$$dir"; \
1562 $(MKDIR) "$$to_dir" ; \
1564 to_dir="$(DistDir)"; \
1566 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1567 if test -n "$$mid_dir" ; then \
1568 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1570 if test -d "$$from_dir/$$file"; then \
1571 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1572 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1573 cd $(PROJ_SRC_DIR) ; \
1574 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1575 ( cd $$to_dir ; $(TAR) xf - ) ; \
1576 cd $(PROJ_OBJ_DIR) ; \
1579 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1580 ( cd $$to_dir ; $(TAR) xf - ) ; \
1581 cd $(PROJ_OBJ_DIR) ; \
1583 elif test -f "$$from_dir/$$file" ; then \
1584 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1585 elif test -L "$$from_dir/$$file" ; then \
1586 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1587 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1588 $(EchoCmd) "===== WARNING: Distribution Source " \
1589 "$$from_dir/$$file Not Found!" ; \
1590 elif test "$(Verb)" != '@' ; then \
1591 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1594 $(Verb) for subdir in $(DistSubDirs) ; do \
1595 if test "$$subdir" \!= "." ; then \
1596 new_distdir="$(DistDir)/$$subdir" ; \
1597 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1598 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1599 DistDir="$$new_distdir" distdir ) || exit 1; \
1602 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1603 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1604 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1605 -name .svn \) -print` ;\
1606 $(MAKE) dist-hook ; \
1607 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1608 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1609 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1610 -o ! -type d ! -perm -444 -exec \
1611 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1612 || chmod -R a+r $(DistDir) ; \
1615 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1621 ###############################################################################
1622 # TOP LEVEL - targets only to apply at the top level directory
1623 ###############################################################################
1627 #------------------------------------------------------------------------
1628 # Install support for the project's include files:
1629 #------------------------------------------------------------------------
1631 $(Echo) Installing include files
1632 $(Verb) $(MKDIR) $(PROJ_includedir)
1633 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1634 cd $(PROJ_SRC_ROOT)/include && \
1635 for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1636 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
1637 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1638 if test \! -d "$$instdir" ; then \
1639 $(EchoCmd) Making install directory $$instdir ; \
1640 $(MKDIR) $$instdir ;\
1642 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1645 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1646 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1647 cd $(PROJ_OBJ_ROOT)/include && \
1648 for hdr in `find . -type f -print | grep -v CVS` ; do \
1649 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1655 $(Echo) Uninstalling include files
1656 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1657 cd $(PROJ_SRC_ROOT)/include && \
1658 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1659 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1660 -o -name '*.in' ')' -print ')' | \
1661 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1662 cd $(PROJ_SRC_ROOT)/include && \
1663 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1664 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1669 #------------------------------------------------------------------------
1670 # Print out the directories used for building
1671 #------------------------------------------------------------------------
1673 $(Echo) "BuildMode : " '$(BuildMode)'
1674 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1675 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1676 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1677 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1678 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1679 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1680 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1681 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1682 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1683 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1684 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1685 $(Echo) "UserTargets : " '$(UserTargets)'
1686 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1687 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1688 $(Echo) "ObjDir : " '$(ObjDir)'
1689 $(Echo) "LibDir : " '$(LibDir)'
1690 $(Echo) "ToolDir : " '$(ToolDir)'
1691 $(Echo) "ExmplDir : " '$(ExmplDir)'
1692 $(Echo) "Sources : " '$(Sources)'
1693 $(Echo) "TDFiles : " '$(TDFiles)'
1694 $(Echo) "INCFiles : " '$(INCFiles)'
1695 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1696 $(Echo) "PreConditions: " '$(PreConditions)'
1697 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1698 $(Echo) "Compile.C : " '$(Compile.C)'
1699 $(Echo) "Archive : " '$(Archive)'
1700 $(Echo) "YaccFiles : " '$(YaccFiles)'
1701 $(Echo) "LexFiles : " '$(LexFiles)'
1702 $(Echo) "Module : " '$(Module)'
1703 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1704 $(Echo) "SubDirs : " '$(SubDirs)'