1 #===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 #===------------------------------------------------------------------------===#
10 # This file is included by all of the LLVM makefiles. For details on how to use
11 # it properly, please see the document MakefileGuide.html in the docs directory.
13 #===-----------------------------------------------------------------------====#
15 ################################################################################
16 # TARGETS: Define standard targets that can be invoked
17 ################################################################################
19 #--------------------------------------------------------------------
20 # Define the various target sets
21 #--------------------------------------------------------------------
22 RecursiveTargets := all clean clean-all install uninstall install-bytecode
23 LocalTargets := all-local clean-local clean-all-local check-local \
24 install-local printvars uninstall-local \
25 install-bytecode-local unittests
26 TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
28 UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
29 InternalTargets := preconditions distdir dist-hook
31 ################################################################################
32 # INITIALIZATION: Basic things the makefile needs
33 ################################################################################
35 #--------------------------------------------------------------------
36 # Set the VPATH so that we can find source files.
37 #--------------------------------------------------------------------
40 #--------------------------------------------------------------------
41 # Reset the list of suffixes we know how to build.
42 #--------------------------------------------------------------------
44 .SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
45 .SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
47 #--------------------------------------------------------------------
48 # Mark all of these targets as phony to avoid implicit rule search
49 #--------------------------------------------------------------------
50 .PHONY: $(UserTargets) $(InternalTargets)
52 #--------------------------------------------------------------------
53 # Make sure all the user-target rules are double colon rules and
54 # they are defined first.
55 #--------------------------------------------------------------------
59 ################################################################################
60 # PRECONDITIONS: that which must be built/checked first
61 ################################################################################
63 SrcMakefiles := $(filter %Makefile %Makefile.tests,\
64 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
65 ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
66 ConfigureScript := $(PROJ_SRC_ROOT)/configure
67 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
68 MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
69 MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
70 MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
71 MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
72 PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
73 ifneq ($(MakefileCommonIn),)
74 PreConditions += $(MakefileCommon)
77 ifneq ($(MakefileConfigIn),)
78 PreConditions += $(MakefileConfig)
81 preconditions: $(PreConditions)
83 #------------------------------------------------------------------------
84 # Make sure the BUILT_SOURCES are built first
85 #------------------------------------------------------------------------
86 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
89 ifneq ($(strip $(BUILT_SOURCES)),)
90 -$(Verb) $(RM) -f $(BUILT_SOURCES)
93 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
95 $(Verb) if test -x config.status ; then \
96 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
97 $(MKDIR) .spotless.save ; \
98 $(MV) config.status .spotless.save ; \
99 $(MV) mklib .spotless.save ; \
100 $(MV) projects .spotless.save ; \
102 $(MV) .spotless.save/config.status . ; \
103 $(MV) .spotless.save/mklib . ; \
104 $(MV) .spotless.save/projects . ; \
105 $(RM) -rf .spotless.save ; \
106 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
107 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108 $(ConfigStatusScript) ; \
110 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
114 $(EchoCmd) "spotless target not supported for objdir == srcdir"
117 $(BUILT_SOURCES) : $(ObjMakefiles)
119 #------------------------------------------------------------------------
120 # Make sure we're not using a stale configuration
121 #------------------------------------------------------------------------
123 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
124 $(Verb) cd $(PROJ_OBJ_ROOT) && \
125 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
126 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
128 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129 $(ConfigStatusScript)
131 .PRECIOUS: $(ConfigStatusScript)
132 $(ConfigStatusScript): $(ConfigureScript)
133 $(Echo) Reconfiguring with $<
134 $(Verb) cd $(PROJ_OBJ_ROOT) && \
135 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
138 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139 $(ConfigStatusScript)
141 #------------------------------------------------------------------------
142 # Make sure the configuration makefile is up to date
143 #------------------------------------------------------------------------
144 ifneq ($(MakefileConfigIn),)
145 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
146 $(Echo) Regenerating $@
147 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
150 ifneq ($(MakefileCommonIn),)
151 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
152 $(Echo) Regenerating $@
153 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
156 #------------------------------------------------------------------------
157 # If the Makefile in the source tree has been updated, copy it over into the
158 # build tree. But, only do this if the source and object makefiles differ
159 #------------------------------------------------------------------------
160 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
162 Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
163 $(Echo) "Updating Makefile"
164 $(Verb) $(MKDIR) $(@D)
165 $(Verb) $(CP) -f $< $@
167 # Copy the Makefile.* files unless we're in the root directory which avoids
168 # the copying of Makefile.config.in or other things that should be explicitly
170 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
172 *Makefile.rules) ;; \
174 *) $(EchoCmd) "Updating $(@F)" ; \
181 #------------------------------------------------------------------------
182 # Set up the basic dependencies
183 #------------------------------------------------------------------------
184 $(UserTargets):: $(PreConditions)
188 clean-all:: clean-local clean-all-local
189 install:: install-local
190 uninstall:: uninstall-local
191 install-local:: all-local
192 install-bytecode:: install-bytecode-local
194 ###############################################################################
195 # LLVMC: Provide rules for compiling llvmc plugins
196 ###############################################################################
200 LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
203 # Build a dynamic library if the user runs `make` directly from the plugin
205 ifndef LLVMC_BUILTIN_PLUGIN
210 ifneq ($(BUILT_SOURCES),)
211 LLVMC_BUILD_AUTOGENERATED_INC=1
216 ###############################################################################
217 # VARIABLES: Set up various variables based on configuration data
218 ###############################################################################
220 # Variable for if this make is for a "cleaning" target
221 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
225 #--------------------------------------------------------------------
226 # Variables derived from configuration we are building
227 #--------------------------------------------------------------------
230 # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
231 # this can be overridden on the make command line.
232 ifndef OPTIMIZE_OPTION
234 OPTIMIZE_OPTION := -O3
236 OPTIMIZE_OPTION := -O2
240 ifeq ($(ENABLE_OPTIMIZED),1)
242 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
243 ifneq ($(OS),FreeBSD)
245 OmitFramePointer := -fomit-frame-pointer
249 # Darwin requires -fstrict-aliasing to be explicitly enabled.
250 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
251 # with -fstrict-aliasing and ipa-type-escape radr://6756684
253 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
255 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
256 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
257 LD.Flags += $(OPTIMIZE_OPTION)
266 ifeq ($(ENABLE_PROFILING),1)
267 BuildMode := $(BuildMode)+Profile
268 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
269 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
270 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
274 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
275 # CXX.Flags += -fvisibility-inlines-hidden
278 # IF REQUIRES_EH=1 is specified then don't disable exceptions
280 CXX.Flags += -fno-exceptions
283 # IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
285 # CXX.Flags += -fno-rtti
288 ifdef ENABLE_COVERAGE
289 BuildMode := $(BuildMode)+Coverage
290 CXX.Flags += -ftest-coverage -fprofile-arcs
291 C.Flags += -ftest-coverage -fprofile-arcs
294 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
295 # then disable assertions by defining the appropriate preprocessor symbols.
296 ifdef DISABLE_ASSERTIONS
297 # Indicate that assertions are turned off using a minus sign
298 BuildMode := $(BuildMode)-Asserts
299 CPP.Defines += -DNDEBUG
301 CPP.Defines += -D_DEBUG
304 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
305 # configured), then enable expensive checks by defining the
306 # appropriate preprocessor symbols.
307 ifdef ENABLE_EXPENSIVE_CHECKS
308 BuildMode := $(BuildMode)+Checks
309 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
312 # LOADABLE_MODULE implies several other things so we force them to be
314 ifdef LOADABLE_MODULE
316 LINK_LIBS_IN_SHARED := 1
324 ifeq ($(ENABLE_PIC),1)
325 ifeq ($(OS), $(filter $(OS), Cygwin MingW))
326 # Nothing. Win32 defaults to PIC and warns when given -fPIC
329 # Common symbols not allowed in dylib files
330 CXX.Flags += -fno-common
331 C.Flags += -fno-common
333 # Linux and others; pass -fPIC
340 CXX.Flags += -mdynamic-no-pic
341 C.Flags += -mdynamic-no-pic
345 CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
347 CPP.Defines += $(CPPFLAGS)
348 CPP.BaseFlags += $(CPP.Defines)
349 LD.Flags += $(LDFLAGS)
352 # Make Floating point IEEE compliant on Alpha.
355 CPP.BaseFlags += -mieee
356 ifeq ($(ENABLE_PIC),0)
358 CPP.BaseFlags += -fPIC
363 LD.Flags += -Wl,--no-relax
367 ifeq ($(LLVM_CROSS_COMPILING),1)
368 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
370 LD.Flags += -Wl,--allow-multiple-definition
375 ifdef ENABLE_EXPENSIVE_CHECKS
376 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
377 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
378 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
381 #--------------------------------------------------------------------
382 # Directory locations
383 #--------------------------------------------------------------------
385 ifeq ($(LLVM_CROSS_COMPILING),1)
386 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
389 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
390 ObjDir := $(ObjRootDir)
391 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
392 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
393 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
394 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
395 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
396 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
397 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
399 #--------------------------------------------------------------------
400 # Full Paths To Compiled Tools and Utilities
401 #--------------------------------------------------------------------
402 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
405 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
408 ifeq ($(LLVM_CROSS_COMPILING),1)
409 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
411 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
414 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
416 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
419 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
422 LLI := $(LLVMToolDir)/lli$(EXEEXT)
425 LLC := $(LLVMToolDir)/llc$(EXEEXT)
428 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
431 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
434 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
436 ifeq ($(LLVMGCC_MAJVERS),3)
437 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
438 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
440 LLVMGCCWITHPATH := $(LLVMGCC)
441 LLVMGXXWITHPATH := $(LLVMGXX)
444 #--------------------------------------------------------------------
445 # Adjust to user's request
446 #--------------------------------------------------------------------
449 DARWIN_VERSION := `sw_vers -productVersion`
450 # Strip a number like 10.4.7 to 10.4
451 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
452 # Get "4" out of 10.4 for later pieces in the makefile.
453 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
455 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
456 -dynamiclib -mmacosx-version-min=$(DARWIN_VERSION)
457 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
460 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
461 -Wl,--enable-auto-import -Wl,--enable-auto-image-base \
462 -Wl,--enable-runtime-pseudo-relocs
464 SharedLinkOptions=-shared
468 # Adjust LD.Flags depending on the kind of library that is to be built. Note
469 # that if LOADABLE_MODULE is specified then the resulting shared library can
470 # be opened with dlopen.
471 ifdef LOADABLE_MODULE
476 ifneq ($(DARWIN_MAJVERS),4)
477 LD.Flags += $(RPATH) -Wl,$(LibDir)
488 # Adjust settings for verbose mode
491 AR.Flags += >/dev/null 2>/dev/null
492 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
494 ConfigureScriptFLAGS :=
497 # By default, strip symbol information from executable
499 Strip := $(PLATFORMSTRIPOPTS)
500 StripWarnMsg := "(without symbols)"
501 Install.StripFlag += -s
504 # Adjust linker flags for building an executable
506 ifneq ($(DARWIN_MAJVERS),4)
509 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
511 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
517 #----------------------------------------------------------
518 # Options To Invoke Tools
519 #----------------------------------------------------------
522 CompileCommonOpts += -pedantic
524 CompileCommonOpts += -Wall -W -Wwrite-strings -Wno-long-long \
525 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
528 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
531 # If we are building a universal binary on Mac OS/X, pass extra options. This
532 # is useful to people that want to link the LLVM libraries into their universal
535 # The following can be optionally specified:
536 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
537 # For Mac OS/X 10.4 Intel machines, the traditional one is:
538 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
539 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
540 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
543 ifndef UNIVERSAL_ARCH
544 UNIVERSAL_ARCH := i386 ppc
546 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
547 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
548 ifdef UNIVERSAL_SDK_PATH
549 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
552 # Building universal cannot compute dependencies automatically.
553 DISABLE_AUTO_DEPENDENCIES=1
556 ifeq ($(ARCH),x86_64)
557 TargetCommonOpts = -m64
560 TargetCommonOpts = -m32
567 CPP.BaseFlags += -include llvm/System/Solaris.h
570 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
571 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
572 # All -I flags should go here, so that they don't confuse llvm-config.
573 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
574 $(patsubst %,-I%/include,\
575 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
576 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
579 ifeq ($(BUILD_COMPONENT), 1)
580 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) \
581 $(TargetCommonOpts) $(CompileCommonOpts) -c
582 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) \
583 $(TargetCommonOpts) $(CompileCommonOpts) -c
584 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(TargetCommonOpts) \
585 $(CompileCommonOpts) $(CXX.Flags) -E
586 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) \
587 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
589 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) \
590 $(TargetCommonOpts) $(CompileCommonOpts) -c
591 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) \
592 $(TargetCommonOpts) $(CompileCommonOpts) -c
593 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) \
594 $(CompileCommonOpts) $(CXX.Flags) -E
595 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) \
596 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
599 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) \
600 $(TargetCommonOpts) $(CompileCommonOpts)
601 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) \
602 $(TargetCommonOpts) $(CompileCommonOpts) -E
604 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
605 $(TargetCommonOpts) $(CompileCommonOpts)
607 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
608 ScriptInstall = $(INSTALL) -m 0755
609 DataInstall = $(INSTALL) -m 0644
611 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
612 # paths. In this case, the SYSPATH function (defined in
613 # Makefile.config) transforms Unix paths into Windows paths.
614 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
615 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
616 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
617 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
619 Archive = $(AR) $(AR.Flags)
620 LArchive = $(LLVMToolDir)/llvm-ar rcsf
627 #----------------------------------------------------------
628 # Get the list of source files and compute object file
630 #----------------------------------------------------------
633 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
634 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
636 Sources := $(SOURCES)
640 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
643 BaseNameSources := $(sort $(basename $(Sources)))
645 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
646 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
648 ###############################################################################
649 # DIRECTORIES: Handle recursive descent of directory structure
650 ###############################################################################
652 #---------------------------------------------------------
653 # Provide rules to make install dirs. This must be early
654 # in the file so they get built before dependencies
655 #---------------------------------------------------------
657 $(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
660 # To create other directories, as needed, and timestamp their creation
662 $(Verb) $(MKDIR) $* > /dev/null
665 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
666 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
668 #---------------------------------------------------------
669 # Handle the DIRS options for sequential construction
670 #---------------------------------------------------------
676 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
677 $(RecursiveTargets)::
678 $(Verb) for dir in $(DIRS); do \
679 if [ ! -f $$dir/Makefile ]; then \
681 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
683 ($(MAKE) -C $$dir $@ ) || exit 1; \
686 $(RecursiveTargets)::
687 $(Verb) for dir in $(DIRS); do \
688 ($(MAKE) -C $$dir $@ ) || exit 1; \
694 #---------------------------------------------------------
695 # Handle the EXPERIMENTAL_DIRS options ensuring success
696 # after each directory is built.
697 #---------------------------------------------------------
698 ifdef EXPERIMENTAL_DIRS
699 $(RecursiveTargets)::
700 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
701 if [ ! -f $$dir/Makefile ]; then \
703 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
705 ($(MAKE) -C $$dir $@ ) || exit 0; \
709 #-----------------------------------------------------------
710 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
711 #-----------------------------------------------------------
712 ifdef OPTIONAL_PARALLEL_DIRS
713 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
716 #-----------------------------------------------------------
717 # Handle the PARALLEL_DIRS options for parallel construction
718 #-----------------------------------------------------------
721 SubDirs += $(PARALLEL_DIRS)
723 # Unfortunately, this list must be maintained if new recursive targets are added
724 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
725 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
726 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
727 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
728 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
729 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
731 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
734 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
736 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
738 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
741 #---------------------------------------------------------
742 # Handle the OPTIONAL_DIRS options for directores that may
744 #---------------------------------------------------------
747 SubDirs += $(OPTIONAL_DIRS)
749 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
750 $(RecursiveTargets)::
751 $(Verb) for dir in $(OPTIONAL_DIRS); do \
752 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
753 if [ ! -f $$dir/Makefile ]; then \
755 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
757 ($(MAKE) -C$$dir $@ ) || exit 1; \
761 $(RecursiveTargets)::
762 $(Verb) for dir in $(OPTIONAL_DIRS); do \
763 ($(MAKE) -C$$dir $@ ) || exit 1; \
768 #---------------------------------------------------------
769 # Handle the CONFIG_FILES options
770 #---------------------------------------------------------
775 $(Echo) Install circumvented with NO_INSTALL
777 $(Echo) UnInstall circumvented with NO_INSTALL
779 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
780 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
781 $(Verb)for file in $(CONFIG_FILES); do \
782 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
783 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
784 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
785 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
787 $(ECHO) Error: cannot find config file $${file}. ; \
792 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
793 $(Verb)for file in $(CONFIG_FILES); do \
794 $(RM) -f $(PROJ_etcdir)/$${file} ; \
800 ###############################################################################
801 # Set up variables for building libararies
802 ###############################################################################
804 #---------------------------------------------------------
805 # Define various command line options pertaining to the
806 # libraries needed when linking. There are "Proj" libs
807 # (defined by the user's project) and "LLVM" libs (defined
808 # by the LLVM project).
809 #---------------------------------------------------------
812 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
813 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
814 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
815 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
819 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
820 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
821 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
822 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
825 ifndef IS_CLEANING_TARGET
826 ifdef LINK_COMPONENTS
828 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
829 # clean in tools, then do a make in tools (instead of at the top level).
831 @echo "*** llvm-config doesn't exist - rebuilding it."
832 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
834 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
836 LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
837 LLVMLibsPaths += $(LLVM_CONFIG) \
838 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
842 ###############################################################################
843 # Library Build Rules: Four ways to build a library
844 ###############################################################################
846 #---------------------------------------------------------
847 # Bytecode Module Targets:
848 # If the user set MODULE_NAME then they want to build a
849 # bytecode module from the sources. We compile all the
850 # sources and link it together into a single bytecode
852 #---------------------------------------------------------
855 ifeq ($(strip $(LLVMGCC)),)
856 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
859 Module := $(LibDir)/$(MODULE_NAME).bc
860 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
863 ifdef EXPORTED_SYMBOL_FILE
864 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
867 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
868 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
869 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
871 all-local:: $(Module)
874 ifneq ($(strip $(Module)),)
875 -$(Verb) $(RM) -f $(Module)
878 ifdef BYTECODE_DESTINATION
879 ModuleDestDir := $(BYTECODE_DESTINATION)
881 ModuleDestDir := $(PROJ_libdir)
886 $(Echo) Install circumvented with NO_INSTALL
888 $(Echo) Uninstall circumvented with NO_INSTALL
890 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
892 install-module:: $(DestModule)
893 install-local:: $(DestModule)
895 $(DestModule): $(ModuleDestDir) $(Module)
896 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
897 $(Verb) $(DataInstall) $(Module) $(DestModule)
900 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
901 -$(Verb) $(RM) -f $(DestModule)
907 # if we're building a library ...
910 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
911 LIBRARYNAME := $(strip $(LIBRARYNAME))
912 ifdef LOADABLE_MODULE
913 LibName.A := $(LibDir)/$(LIBRARYNAME).a
914 LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
916 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
917 LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
919 LibName.O := $(LibDir)/$(LIBRARYNAME).o
920 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
922 #---------------------------------------------------------
923 # Shared Library Targets:
924 # If the user asked for a shared library to be built
925 # with the SHARED_LIBRARY variable, then we provide
926 # targets for building them.
927 #---------------------------------------------------------
930 all-local:: $(LibName.SO)
932 ifdef LINK_LIBS_IN_SHARED
933 ifdef LOADABLE_MODULE
934 SharedLibKindMessage := "Loadable Module"
936 SharedLibKindMessage := "Shared Library"
938 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
939 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
940 $(LIBRARYNAME)$(SHLIBEXT)
941 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
942 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
944 $(LibName.SO): $(ObjectsO) $(LibDir)/.dir
945 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
946 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
950 ifneq ($(strip $(LibName.SO)),)
951 -$(Verb) $(RM) -f $(LibName.SO)
956 $(Echo) Install circumvented with NO_INSTALL
958 $(Echo) Uninstall circumvented with NO_INSTALL
960 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
962 install-local:: $(DestSharedLib)
964 $(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
965 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
966 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
969 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
970 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
974 #---------------------------------------------------------
975 # Bytecode Library Targets:
976 # If the user asked for a bytecode library to be built
977 # with the BYTECODE_LIBRARY variable, then we provide
978 # targets for building them.
979 #---------------------------------------------------------
980 ifdef BYTECODE_LIBRARY
981 ifeq ($(strip $(LLVMGCC)),)
982 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
985 all-local:: $(LibName.BCA)
987 ifdef EXPORTED_SYMBOL_FILE
988 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
989 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
991 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
992 $(LLVMToolDir)/llvm-ar
993 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
995 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
997 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
999 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1000 $(LLVMToolDir)/llvm-ar
1001 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1003 $(Verb) $(LArchive) $@ $(ObjectsBC)
1008 ifneq ($(strip $(LibName.BCA)),)
1009 -$(Verb) $(RM) -f $(LibName.BCA)
1012 ifdef BYTECODE_DESTINATION
1013 BytecodeDestDir := $(BYTECODE_DESTINATION)
1015 BytecodeDestDir := $(PROJ_libdir)
1018 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1020 install-bytecode-local:: $(DestBytecodeLib)
1024 $(Echo) Install circumvented with NO_INSTALL
1026 $(Echo) Uninstall circumvented with NO_INSTALL
1028 install-local:: $(DestBytecodeLib)
1030 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1031 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1032 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1035 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1036 -$(Verb) $(RM) -f $(DestBytecodeLib)
1041 #---------------------------------------------------------
1043 # If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1044 # building an archive.
1045 #---------------------------------------------------------
1046 ifndef BUILD_ARCHIVE
1047 ifndef LOADABLE_MODULE
1052 #---------------------------------------------------------
1053 # Archive Library Targets:
1054 # If the user wanted a regular archive library built,
1055 # then we provide targets for building them.
1056 #---------------------------------------------------------
1059 all-local:: $(LibName.A)
1061 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1062 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1063 -$(Verb) $(RM) -f $@
1064 $(Verb) $(Archive) $@ $(ObjectsO)
1065 $(Verb) $(Ranlib) $@
1068 ifneq ($(strip $(LibName.A)),)
1069 -$(Verb) $(RM) -f $(LibName.A)
1074 $(Echo) Install circumvented with NO_INSTALL
1076 $(Echo) Uninstall circumvented with NO_INSTALL
1078 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1080 install-local:: $(DestArchiveLib)
1082 $(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
1083 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1084 $(Verb) $(MKDIR) $(PROJ_libdir)
1085 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1088 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1089 -$(Verb) $(RM) -f $(DestArchiveLib)
1096 ###############################################################################
1097 # Tool Build Rules: Build executable tool based on TOOLNAME option
1098 ###############################################################################
1102 #---------------------------------------------------------
1103 # Set up variables for building a tool.
1104 #---------------------------------------------------------
1106 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1108 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1111 #---------------------------------------------------------
1113 #---------------------------------------------------------
1115 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1116 # not exporting all of the weak symbols from the binary. This reduces dyld
1117 # startup time by 4x on darwin in some cases.
1118 ifdef TOOL_NO_EXPORTS
1121 # Tiger tools don't support this.
1122 ifneq ($(DARWIN_MAJVERS),4)
1123 LD.Flags += -Wl,-exported_symbol -Wl,_main
1127 ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
1128 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1133 #---------------------------------------------------------
1134 # Provide targets for building the tools
1135 #---------------------------------------------------------
1136 all-local:: $(ToolBuildPath)
1139 ifneq ($(strip $(ToolBuildPath)),)
1140 -$(Verb) $(RM) -f $(ToolBuildPath)
1144 $(ToolBuildPath): $(ExmplDir)/.dir
1146 $(ToolBuildPath): $(ToolDir)/.dir
1149 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1150 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1151 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1152 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1153 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1158 $(Echo) Install circumvented with NO_INSTALL
1160 $(Echo) Uninstall circumvented with NO_INSTALL
1162 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1164 install-local:: $(DestTool)
1166 $(DestTool): $(ToolBuildPath) $(PROJ_bindir)
1167 $(Echo) Installing $(BuildMode) $(DestTool)
1168 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1171 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1172 -$(Verb) $(RM) -f $(DestTool)
1176 ###############################################################################
1177 # Object Build Rules: Build object files based on sources
1178 ###############################################################################
1180 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1182 DISABLE_AUTO_DEPENDENCIES=1
1185 # Provide rule sets for when dependency generation is enabled
1186 ifndef DISABLE_AUTO_DEPENDENCIES
1188 #---------------------------------------------------------
1189 # Create .o files in the ObjDir directory from the .cpp and .c files...
1190 #---------------------------------------------------------
1192 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1193 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1195 # If the build succeeded, move the dependency file over, otherwise
1197 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1198 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1200 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1201 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1202 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1205 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1206 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1207 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1210 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1211 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1212 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1215 #---------------------------------------------------------
1216 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1217 #---------------------------------------------------------
1219 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1220 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1222 # If the build succeeded, move the dependency file over, otherwise
1224 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1225 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1227 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1228 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1229 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1230 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1231 $(BC_DEPEND_MOVEFILE)
1233 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1234 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1235 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1236 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1237 $(BC_DEPEND_MOVEFILE)
1239 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1240 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1241 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1242 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1243 $(BC_DEPEND_MOVEFILE)
1245 # Provide alternate rule sets if dependencies are disabled
1248 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1249 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1250 $(Compile.CXX) $< -o $@
1252 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1253 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1254 $(Compile.CXX) $< -o $@
1256 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1257 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1258 $(Compile.C) $< -o $@
1260 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1261 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1262 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1264 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1265 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1266 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1268 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1269 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1270 $(BCCompile.C) $< -o $@ -S -emit-llvm
1275 ## Rules for building preprocessed (.i/.ii) outputs.
1276 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1277 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1278 $(Verb) $(Preprocess.CXX) $< -o $@
1280 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1281 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1282 $(Verb) $(Preprocess.CXX) $< -o $@
1284 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1285 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1286 $(Verb) $(Preprocess.C) $< -o $@
1289 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1290 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1291 $(Compile.CXX) $< -o $@ -S
1293 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1294 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1295 $(Compile.CXX) $< -o $@ -S
1297 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1298 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1299 $(Compile.C) $< -o $@ -S
1302 # make the C and C++ compilers strip debug info out of bytecode libraries.
1304 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1305 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1306 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1308 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1309 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1310 $(Verb) $(LLVMAS) $< -o - | \
1311 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1315 #---------------------------------------------------------
1316 # Provide rule to build .bc files from .ll sources,
1317 # regardless of dependencies
1318 #---------------------------------------------------------
1319 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1320 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1321 $(Verb) $(LLVMAS) $< -f -o $@
1323 ###############################################################################
1324 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1325 ###############################################################################
1328 TABLEGEN_INC_FILES_COMMON = 1
1331 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1332 TABLEGEN_INC_FILES_COMMON = 1
1335 ifdef TABLEGEN_INC_FILES_COMMON
1337 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1338 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1339 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1341 # INCFiles rule: All of the tblgen generated files are emitted to
1342 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1343 # us to only "touch" the real file if the contents of it change. IOW, if
1344 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1345 # dependencies of the .inc files are, unless the contents of the .inc file
1347 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1348 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1350 endif # TABLEGEN_INC_FILES_COMMON
1354 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1355 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1356 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1357 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1358 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1359 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1360 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1362 # All of these files depend on tblgen and the .td files.
1363 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1365 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1366 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1367 $(Echo) "Building $(<F) register names with tblgen"
1368 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1370 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1371 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1372 $(Echo) "Building $(<F) register information header with tblgen"
1373 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1375 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1376 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1377 $(Echo) "Building $(<F) register info implementation with tblgen"
1378 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1380 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1381 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1382 $(Echo) "Building $(<F) instruction names with tblgen"
1383 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1385 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1386 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1387 $(Echo) "Building $(<F) instruction information with tblgen"
1388 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1390 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1391 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1392 $(Echo) "Building $(<F) assembly writer with tblgen"
1393 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1395 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1396 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1397 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1398 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1400 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1401 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1402 $(Echo) "Building $(<F) code emitter with tblgen"
1403 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1405 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1406 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1407 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1408 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1410 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1411 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1412 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1413 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1415 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1416 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1417 $(Echo) "Building $(<F) subtarget information with tblgen"
1418 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1420 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1421 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1422 $(Echo) "Building $(<F) calling convention information with tblgen"
1423 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1425 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1426 $(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1427 $(Echo) "Building $(<F) calling convention information with tblgen"
1428 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1431 -$(Verb) $(RM) -f $(INCFiles)
1435 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1437 LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1438 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1440 TDFiles := $(LLVMCPluginSrc) \
1441 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1443 $(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1444 $(TBLGEN) $(TD_COMMON)
1445 $(Echo) "Building LLVMC configuration library with tblgen"
1446 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1448 endif # LLVMC_BUILD_AUTOGENERATED_INC
1450 ###############################################################################
1451 # OTHER RULES: Other rules needed
1452 ###############################################################################
1454 # To create postscript files from dot files...
1455 ifneq ($(DOT),false)
1457 $(DOT) -Tps < $< > $@
1460 $(Echo) "Cannot build $@: The program dot is not installed"
1463 # This rules ensures that header files that are removed still have a rule for
1464 # which they can be "generated." This allows make to ignore them and
1465 # reproduce the dependency lists.
1469 # Define clean-local to clean the current directory. Note that this uses a
1470 # very conservative approach ensuring that empty variables do not cause
1471 # errors or disastrous removal.
1473 ifneq ($(strip $(ObjRootDir)),)
1474 -$(Verb) $(RM) -rf $(ObjRootDir)
1476 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1477 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1478 -$(Verb) $(RM) -f *$(SHLIBEXT)
1482 -$(Verb) $(RM) -rf Debug Release Profile
1485 ###############################################################################
1486 # DEPENDENCIES: Include the dependency files if we should
1487 ###############################################################################
1488 ifndef DISABLE_AUTO_DEPENDENCIES
1490 # If its not one of the cleaning targets
1491 ifndef IS_CLEANING_TARGET
1493 # Get the list of dependency files
1494 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1495 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1497 # Include bitcode dependency files if using bitcode libraries
1498 ifdef BYTECODE_LIBRARY
1499 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1502 -include $(DependFiles) ""
1508 ###############################################################################
1509 # CHECK: Running the test suite
1510 ###############################################################################
1513 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1514 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1515 $(EchoCmd) Running test suite ; \
1516 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1517 TESTSUITE=$(TESTSUITE) ; \
1519 $(EchoCmd) No Makefile in test directory ; \
1522 $(EchoCmd) No test directory ; \
1525 ###############################################################################
1526 # UNITTESTS: Running the unittests test suite
1527 ###############################################################################
1530 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1531 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1532 $(EchoCmd) Running unittests test suite ; \
1533 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1535 $(EchoCmd) No Makefile in unittests directory ; \
1538 $(EchoCmd) No unittests directory ; \
1541 ###############################################################################
1542 # DISTRIBUTION: Handle construction of a distribution tarball
1543 ###############################################################################
1545 #------------------------------------------------------------------------
1546 # Define distribution related variables
1547 #------------------------------------------------------------------------
1548 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1549 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1550 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1551 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1552 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1553 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1554 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1555 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1556 Makefile.config.in configure autoconf
1557 DistOther := $(notdir $(wildcard \
1558 $(PROJ_SRC_DIR)/*.h \
1559 $(PROJ_SRC_DIR)/*.td \
1560 $(PROJ_SRC_DIR)/*.def \
1561 $(PROJ_SRC_DIR)/*.ll \
1562 $(PROJ_SRC_DIR)/*.in))
1563 DistSubDirs := $(SubDirs)
1564 DistSources = $(Sources) $(EXTRA_DIST)
1565 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1567 #------------------------------------------------------------------------
1568 # We MUST build distribution with OBJ_DIR != SRC_DIR
1569 #------------------------------------------------------------------------
1570 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1571 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1572 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1576 #------------------------------------------------------------------------
1577 # Prevent attempt to run dist targets from anywhere but the top level
1578 #------------------------------------------------------------------------
1580 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1581 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1584 #------------------------------------------------------------------------
1585 # Provide the top level targets
1586 #------------------------------------------------------------------------
1588 dist-gzip:: $(DistTarGZip)
1590 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1591 $(Echo) Packing gzipped distribution tar file.
1592 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1593 $(GZIP) -c > "$(DistTarGZip)"
1595 dist-bzip2:: $(DistTarBZ2)
1597 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1598 $(Echo) Packing bzipped distribution tar file.
1599 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1600 $(BZIP2) -c >$(DistTarBZ2)
1602 dist-zip:: $(DistZip)
1604 $(DistZip) : $(TopDistDir)/.makedistdir
1605 $(Echo) Packing zipped distribution file.
1606 $(Verb) rm -f $(DistZip)
1607 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1609 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1610 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1612 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1614 dist-check:: $(DistTarGZip)
1615 $(Echo) Checking distribution tar file.
1616 $(Verb) if test -d $(DistCheckDir) ; then \
1617 $(RM) -rf $(DistCheckDir) ; \
1619 $(Verb) $(MKDIR) $(DistCheckDir)
1620 $(Verb) cd $(DistCheckDir) && \
1621 $(MKDIR) $(DistCheckDir)/build && \
1622 $(MKDIR) $(DistCheckDir)/install && \
1623 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1625 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1626 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1629 $(MAKE) unittests && \
1630 $(MAKE) install && \
1631 $(MAKE) uninstall && \
1632 $(MAKE) dist-clean && \
1633 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1636 $(Echo) Cleaning distribution files
1637 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1642 #------------------------------------------------------------------------
1643 # Provide the recursive distdir target for building the distribution directory
1644 #------------------------------------------------------------------------
1645 distdir: $(DistDir)/.makedistdir
1646 $(DistDir)/.makedistdir: $(DistSources)
1647 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1648 if test -d "$(DistDir)" ; then \
1649 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1652 $(EchoCmd) Removing old $(DistDir) ; \
1653 $(RM) -rf $(DistDir); \
1654 $(EchoCmd) Making 'all' to verify build ; \
1655 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1657 $(Echo) Building Distribution Directory $(DistDir)
1658 $(Verb) $(MKDIR) $(DistDir)
1659 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1660 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1661 for file in $(DistFiles) ; do \
1663 $(PROJ_SRC_DIR)/*) \
1664 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1666 $(PROJ_SRC_ROOT)/*) \
1667 file=`echo "$$file" | \
1668 sed "s#^$$srcrootstrip/##"` \
1671 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1672 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1673 from_dir="$(PROJ_SRC_DIR)" ; \
1674 elif test -f "$$file" || test -d "$$file" ; then \
1677 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1678 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1679 to_dir="$(DistDir)/$$dir"; \
1680 $(MKDIR) "$$to_dir" ; \
1682 to_dir="$(DistDir)"; \
1684 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1685 if test -n "$$mid_dir" ; then \
1686 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1688 if test -d "$$from_dir/$$file"; then \
1689 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1690 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1691 cd $(PROJ_SRC_DIR) ; \
1692 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1693 ( cd $$to_dir ; $(TAR) xf - ) ; \
1694 cd $(PROJ_OBJ_DIR) ; \
1697 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1698 ( cd $$to_dir ; $(TAR) xf - ) ; \
1699 cd $(PROJ_OBJ_DIR) ; \
1701 elif test -f "$$from_dir/$$file" ; then \
1702 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1703 elif test -L "$$from_dir/$$file" ; then \
1704 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1705 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1706 $(EchoCmd) "===== WARNING: Distribution Source " \
1707 "$$from_dir/$$file Not Found!" ; \
1708 elif test "$(Verb)" != '@' ; then \
1709 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1712 $(Verb) for subdir in $(DistSubDirs) ; do \
1713 if test "$$subdir" \!= "." ; then \
1714 new_distdir="$(DistDir)/$$subdir" ; \
1715 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1716 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1717 DistDir="$$new_distdir" distdir ) || exit 1; \
1720 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1721 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1722 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1723 -name .svn \) -print` ;\
1724 $(MAKE) dist-hook ; \
1725 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1726 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1727 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1728 -o ! -type d ! -perm -444 -exec \
1729 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1730 || chmod -R a+r $(DistDir) ; \
1733 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1739 ###############################################################################
1740 # TOP LEVEL - targets only to apply at the top level directory
1741 ###############################################################################
1745 #------------------------------------------------------------------------
1746 # Install support for the project's include files:
1747 #------------------------------------------------------------------------
1750 $(Echo) Install circumvented with NO_INSTALL
1752 $(Echo) Uninstall circumvented with NO_INSTALL
1755 $(Echo) Installing include files
1756 $(Verb) $(MKDIR) $(PROJ_includedir)
1757 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1758 cd $(PROJ_SRC_ROOT)/include && \
1759 for hdr in `find . -type f '!' '(' -name '*~' \
1760 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1761 grep -v .svn` ; do \
1762 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1763 if test \! -d "$$instdir" ; then \
1764 $(EchoCmd) Making install directory $$instdir ; \
1765 $(MKDIR) $$instdir ;\
1767 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1770 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1771 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1772 cd $(PROJ_OBJ_ROOT)/include && \
1773 for hdr in `find . -type f -print | grep -v CVS` ; do \
1774 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1780 $(Echo) Uninstalling include files
1781 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1782 cd $(PROJ_SRC_ROOT)/include && \
1783 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1784 '!' '(' -name '*~' -o -name '.#*' \
1785 -o -name '*.in' ')' -print ')' | \
1786 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1787 cd $(PROJ_SRC_ROOT)/include && \
1788 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1789 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1795 @echo searching for overlength lines in files: $(Sources)
1798 egrep -n '.{81}' $(Sources) /dev/null
1801 @echo searching for tabs in files: $(Sources)
1804 egrep -n ' ' $(Sources) /dev/null
1807 @ls -l $(LibDir) | awk '\
1808 BEGIN { sum = 0; } \
1810 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1811 @ls -l $(ToolDir) | awk '\
1812 BEGIN { sum = 0; } \
1814 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1815 #------------------------------------------------------------------------
1816 # Print out the directories used for building
1817 #------------------------------------------------------------------------
1819 $(Echo) "BuildMode : " '$(BuildMode)'
1820 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1821 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1822 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1823 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1824 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1825 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1826 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1827 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1828 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1829 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1830 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1831 $(Echo) "UserTargets : " '$(UserTargets)'
1832 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1833 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1834 $(Echo) "ObjDir : " '$(ObjDir)'
1835 $(Echo) "LibDir : " '$(LibDir)'
1836 $(Echo) "ToolDir : " '$(ToolDir)'
1837 $(Echo) "ExmplDir : " '$(ExmplDir)'
1838 $(Echo) "Sources : " '$(Sources)'
1839 $(Echo) "TDFiles : " '$(TDFiles)'
1840 $(Echo) "INCFiles : " '$(INCFiles)'
1841 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1842 $(Echo) "PreConditions: " '$(PreConditions)'
1843 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1844 $(Echo) "Compile.C : " '$(Compile.C)'
1845 $(Echo) "Archive : " '$(Archive)'
1846 $(Echo) "YaccFiles : " '$(YaccFiles)'
1847 $(Echo) "LexFiles : " '$(LexFiles)'
1848 $(Echo) "Module : " '$(Module)'
1849 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1850 $(Echo) "SubDirs : " '$(SubDirs)'
1851 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1852 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
1857 # General debugging rule, use 'make dbg-print-XXX' to print the
1858 # definition, value and origin of XXX.
1860 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))