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 # These only go to .NoRelink because otherwise we will end up
291 # linking -lgcov into the .o libraries that get built.
292 CXX.Flags.NoRelink += -ftest-coverage -fprofile-arcs
293 C.Flags.NoRelink += -ftest-coverage -fprofile-arcs
296 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
297 # then disable assertions by defining the appropriate preprocessor symbols.
298 ifdef DISABLE_ASSERTIONS
299 # Indicate that assertions are turned off using a minus sign
300 BuildMode := $(BuildMode)-Asserts
301 CPP.Defines += -DNDEBUG
303 CPP.Defines += -D_DEBUG
306 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
307 # configured), then enable expensive checks by defining the
308 # appropriate preprocessor symbols.
309 ifdef ENABLE_EXPENSIVE_CHECKS
310 BuildMode := $(BuildMode)+Checks
311 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
314 # LOADABLE_MODULE implies several other things so we force them to be
316 ifdef LOADABLE_MODULE
318 DONT_BUILD_RELINKED := 1
319 LINK_LIBS_IN_SHARED := 1
327 ifeq ($(ENABLE_PIC),1)
328 ifeq ($(OS), $(filter $(OS), Cygwin MingW))
329 # Nothing. Win32 defaults to PIC and warns when given -fPIC
332 # Common symbols not allowed in dylib files
333 CXX.Flags += -fno-common
334 C.Flags += -fno-common
336 # Linux and others; pass -fPIC
343 CXX.Flags += -mdynamic-no-pic
344 C.Flags += -mdynamic-no-pic
348 CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
350 CPP.Defines += $(CPPFLAGS)
351 CPP.BaseFlags += $(CPP.Defines)
352 LD.Flags += $(LDFLAGS)
355 # Make Floating point IEEE compliant on Alpha.
358 CPP.BaseFlags += -mieee
359 ifeq ($(ENABLE_PIC),0)
361 CPP.BaseFlags += -fPIC
366 LD.Flags += -Wl,--no-relax
370 ifeq ($(LLVM_CROSS_COMPILING),1)
371 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
373 LD.Flags += -Wl,--allow-multiple-definition
378 #--------------------------------------------------------------------
379 # Directory locations
380 #--------------------------------------------------------------------
382 ifeq ($(LLVM_CROSS_COMPILING),1)
383 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
386 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
387 ObjDir := $(ObjRootDir)
388 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
389 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
390 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
391 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
392 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
393 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
394 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
396 #--------------------------------------------------------------------
397 # Full Paths To Compiled Tools and Utilities
398 #--------------------------------------------------------------------
399 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
402 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
405 ifeq ($(LLVM_CROSS_COMPILING),1)
406 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
408 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
411 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
413 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
416 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
419 LLI := $(LLVMToolDir)/lli$(EXEEXT)
422 LLC := $(LLVMToolDir)/llc$(EXEEXT)
425 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
428 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
431 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
433 ifeq ($(LLVMGCC_MAJVERS),3)
434 UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
435 UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
436 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
437 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
441 LLVMGCCWITHPATH := $(LLVMGCC)
442 LLVMGXXWITHPATH := $(LLVMGXX)
445 #--------------------------------------------------------------------
446 # Adjust to user's request
447 #--------------------------------------------------------------------
450 DARWIN_VERSION := `sw_vers -productVersion`
451 # Strip a number like 10.4.7 to 10.4
452 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
453 # Get "4" out of 10.4 for later pieces in the makefile.
454 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
456 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
457 -dynamiclib -mmacosx-version-min=$(DARWIN_VERSION)
458 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
461 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
462 -Wl,--enable-auto-import -Wl,--enable-auto-image-base \
463 -Wl,--enable-runtime-pseudo-relocs
465 SharedLinkOptions=-shared
469 # Adjust LD.Flags depending on the kind of library that is to be built. Note
470 # that if LOADABLE_MODULE is specified then the resulting shared library can
471 # be opened with dlopen.
472 ifdef LOADABLE_MODULE
477 ifneq ($(DARWIN_MAJVERS),4)
478 LD.Flags += $(RPATH) -Wl,$(LibDir)
489 # Adjust settings for verbose mode
492 AR.Flags += >/dev/null 2>/dev/null
493 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
495 ConfigureScriptFLAGS :=
498 # By default, strip symbol information from executable
500 Strip := $(PLATFORMSTRIPOPTS)
501 StripWarnMsg := "(without symbols)"
502 Install.StripFlag += -s
505 # Adjust linker flags for building an executable
507 ifneq ($(DARWIN_MAJVERS),4)
510 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
512 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
518 #----------------------------------------------------------
519 # Options To Invoke Tools
520 #----------------------------------------------------------
522 CompileCommonOpts += -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
523 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
526 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
529 # If we are building a universal binary on Mac OS/X, pass extra options. This
530 # is useful to people that want to link the LLVM libraries into their universal
533 # The following can be optionally specified:
534 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
535 # For Mac OS/X 10.4 Intel machines, the traditional one is:
536 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
537 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
538 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
541 ifndef UNIVERSAL_ARCH
542 UNIVERSAL_ARCH := i386 ppc
544 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
545 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
546 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS)
547 ifdef UNIVERSAL_SDK_PATH
548 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
549 Relink.Flags += -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) $(C.Flags.NoRelink) \
581 $(TargetCommonOpts) $(CompileCommonOpts) -c
582 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
583 $(TargetCommonOpts) $(CompileCommonOpts) -c
584 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(TargetCommonOpts) \
585 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
586 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
587 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
588 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
589 $(CompileCommonOpts) $(Relink.Flags)
591 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(C.Flags.NoRelink) \
592 $(TargetCommonOpts) $(CompileCommonOpts) -c
593 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
594 $(TargetCommonOpts) $(CompileCommonOpts) -c
595 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) \
596 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
597 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
598 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
599 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
600 $(CompileCommonOpts) $(Relink.Flags)
603 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) \
604 $(TargetCommonOpts) $(CompileCommonOpts)
605 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) \
606 $(TargetCommonOpts) $(CompileCommonOpts) -E
608 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
609 $(TargetCommonOpts) $(CompileCommonOpts)
611 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
612 ScriptInstall = $(INSTALL) -m 0755
613 DataInstall = $(INSTALL) -m 0644
615 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
616 # paths. In this case, the SYSPATH function (defined in
617 # Makefile.config) transforms Unix paths into Windows paths.
618 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
619 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
620 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
621 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
623 Archive = $(AR) $(AR.Flags)
624 LArchive = $(LLVMToolDir)/llvm-ar rcsf
631 #----------------------------------------------------------
632 # Get the list of source files and compute object file
634 #----------------------------------------------------------
637 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
638 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
640 Sources := $(SOURCES)
644 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
647 BaseNameSources := $(sort $(basename $(Sources)))
649 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
650 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
652 ###############################################################################
653 # DIRECTORIES: Handle recursive descent of directory structure
654 ###############################################################################
656 #---------------------------------------------------------
657 # Provide rules to make install dirs. This must be early
658 # in the file so they get built before dependencies
659 #---------------------------------------------------------
661 $(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
664 # To create other directories, as needed, and timestamp their creation
666 $(Verb) $(MKDIR) $* > /dev/null
669 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
670 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
672 #---------------------------------------------------------
673 # Handle the DIRS options for sequential construction
674 #---------------------------------------------------------
680 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
681 $(RecursiveTargets)::
682 $(Verb) for dir in $(DIRS); do \
683 if [ ! -f $$dir/Makefile ]; then \
685 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
687 ($(MAKE) -C $$dir $@ ) || exit 1; \
690 $(RecursiveTargets)::
691 $(Verb) for dir in $(DIRS); do \
692 ($(MAKE) -C $$dir $@ ) || exit 1; \
698 #---------------------------------------------------------
699 # Handle the EXPERIMENTAL_DIRS options ensuring success
700 # after each directory is built.
701 #---------------------------------------------------------
702 ifdef EXPERIMENTAL_DIRS
703 $(RecursiveTargets)::
704 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
705 if [ ! -f $$dir/Makefile ]; then \
707 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
709 ($(MAKE) -C $$dir $@ ) || exit 0; \
713 #-----------------------------------------------------------
714 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
715 #-----------------------------------------------------------
716 ifdef OPTIONAL_PARALLEL_DIRS
717 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
720 #-----------------------------------------------------------
721 # Handle the PARALLEL_DIRS options for parallel construction
722 #-----------------------------------------------------------
725 SubDirs += $(PARALLEL_DIRS)
727 # Unfortunately, this list must be maintained if new recursive targets are added
728 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
729 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
730 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
731 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
732 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
733 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
735 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
738 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
740 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
742 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
745 #---------------------------------------------------------
746 # Handle the OPTIONAL_DIRS options for directores that may
748 #---------------------------------------------------------
751 SubDirs += $(OPTIONAL_DIRS)
753 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
754 $(RecursiveTargets)::
755 $(Verb) for dir in $(OPTIONAL_DIRS); do \
756 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
757 if [ ! -f $$dir/Makefile ]; then \
759 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
761 ($(MAKE) -C$$dir $@ ) || exit 1; \
765 $(RecursiveTargets)::
766 $(Verb) for dir in $(OPTIONAL_DIRS); do \
767 ($(MAKE) -C$$dir $@ ) || exit 1; \
772 #---------------------------------------------------------
773 # Handle the CONFIG_FILES options
774 #---------------------------------------------------------
779 $(Echo) Install circumvented with NO_INSTALL
781 $(Echo) UnInstall circumvented with NO_INSTALL
783 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
784 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
785 $(Verb)for file in $(CONFIG_FILES); do \
786 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
787 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
788 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
789 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
791 $(ECHO) Error: cannot find config file $${file}. ; \
796 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
797 $(Verb)for file in $(CONFIG_FILES); do \
798 $(RM) -f $(PROJ_etcdir)/$${file} ; \
804 ###############################################################################
805 # Set up variables for building libararies
806 ###############################################################################
808 #---------------------------------------------------------
809 # Define various command line options pertaining to the
810 # libraries needed when linking. There are "Proj" libs
811 # (defined by the user's project) and "LLVM" libs (defined
812 # by the LLVM project).
813 #---------------------------------------------------------
816 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
817 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
818 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
819 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
823 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
824 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
825 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
826 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
829 ifndef IS_CLEANING_TARGET
830 ifdef LINK_COMPONENTS
832 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
833 # clean in tools, then do a make in tools (instead of at the top level).
835 @echo "*** llvm-config doesn't exist - rebuilding it."
836 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
838 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
840 LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
841 LLVMLibsPaths += $(LLVM_CONFIG) \
842 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
846 ###############################################################################
847 # Library Build Rules: Four ways to build a library
848 ###############################################################################
850 #---------------------------------------------------------
851 # Bytecode Module Targets:
852 # If the user set MODULE_NAME then they want to build a
853 # bytecode module from the sources. We compile all the
854 # sources and link it together into a single bytecode
856 #---------------------------------------------------------
859 ifeq ($(strip $(LLVMGCC)),)
860 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
863 Module := $(LibDir)/$(MODULE_NAME).bc
864 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
867 ifdef EXPORTED_SYMBOL_FILE
868 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
871 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
872 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
873 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
875 all-local:: $(Module)
878 ifneq ($(strip $(Module)),)
879 -$(Verb) $(RM) -f $(Module)
882 ifdef BYTECODE_DESTINATION
883 ModuleDestDir := $(BYTECODE_DESTINATION)
885 ModuleDestDir := $(PROJ_libdir)
890 $(Echo) Install circumvented with NO_INSTALL
892 $(Echo) Uninstall circumvented with NO_INSTALL
894 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
896 install-module:: $(DestModule)
897 install-local:: $(DestModule)
899 $(DestModule): $(ModuleDestDir) $(Module)
900 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
901 $(Verb) $(DataInstall) $(Module) $(DestModule)
904 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
905 -$(Verb) $(RM) -f $(DestModule)
911 # if we're building a library ...
914 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
915 LIBRARYNAME := $(strip $(LIBRARYNAME))
916 ifdef LOADABLE_MODULE
917 LibName.A := $(LibDir)/$(LIBRARYNAME).a
918 LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
920 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
921 LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
923 LibName.O := $(LibDir)/$(LIBRARYNAME).o
924 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
926 #---------------------------------------------------------
927 # Shared Library Targets:
928 # If the user asked for a shared library to be built
929 # with the SHARED_LIBRARY variable, then we provide
930 # targets for building them.
931 #---------------------------------------------------------
934 all-local:: $(LibName.SO)
936 ifdef LINK_LIBS_IN_SHARED
937 ifdef LOADABLE_MODULE
938 SharedLibKindMessage := "Loadable Module"
940 SharedLibKindMessage := "Shared Library"
942 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
943 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
944 $(LIBRARYNAME)$(SHLIBEXT)
945 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
946 $(ProjLibsOptions) $(LLVMLibsOptions)
948 $(LibName.SO): $(ObjectsO) $(LibDir)/.dir
949 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
950 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
954 ifneq ($(strip $(LibName.SO)),)
955 -$(Verb) $(RM) -f $(LibName.SO)
960 $(Echo) Install circumvented with NO_INSTALL
962 $(Echo) Uninstall circumvented with NO_INSTALL
964 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
966 install-local:: $(DestSharedLib)
968 $(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
969 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
970 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
973 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
974 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
978 #---------------------------------------------------------
979 # Bytecode Library Targets:
980 # If the user asked for a bytecode library to be built
981 # with the BYTECODE_LIBRARY variable, then we provide
982 # targets for building them.
983 #---------------------------------------------------------
984 ifdef BYTECODE_LIBRARY
985 ifeq ($(strip $(LLVMGCC)),)
986 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
989 all-local:: $(LibName.BCA)
991 ifdef EXPORTED_SYMBOL_FILE
992 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
993 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
995 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
996 $(LLVMToolDir)/llvm-ar
997 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
999 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
1001 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
1003 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1004 $(LLVMToolDir)/llvm-ar
1005 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1007 $(Verb) $(LArchive) $@ $(ObjectsBC)
1012 ifneq ($(strip $(LibName.BCA)),)
1013 -$(Verb) $(RM) -f $(LibName.BCA)
1016 ifdef BYTECODE_DESTINATION
1017 BytecodeDestDir := $(BYTECODE_DESTINATION)
1019 BytecodeDestDir := $(PROJ_libdir)
1022 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
1024 install-bytecode-local:: $(DestBytecodeLib)
1028 $(Echo) Install circumvented with NO_INSTALL
1030 $(Echo) Uninstall circumvented with NO_INSTALL
1032 install-local:: $(DestBytecodeLib)
1034 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1035 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1036 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1039 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1040 -$(Verb) $(RM) -f $(DestBytecodeLib)
1045 #---------------------------------------------------------
1046 # ReLinked Library Targets:
1047 # If the user explicitly requests a relinked library with
1048 # BUILD_RELINKED, provide it. Otherwise, if they specify
1049 # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
1051 #---------------------------------------------------------
1052 ifndef BUILD_ARCHIVE
1053 ifndef DONT_BUILD_RELINKED
1058 ifdef BUILD_RELINKED
1060 all-local:: $(LibName.O)
1062 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
1063 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
1064 $(Verb) $(Relink) -Wl,-r -nodefaultlibs -nostdlib -nostartfiles -o $@ $(ObjectsO)
1067 ifneq ($(strip $(LibName.O)),)
1068 -$(Verb) $(RM) -f $(LibName.O)
1073 $(Echo) Install circumvented with NO_INSTALL
1075 $(Echo) Uninstall circumvented with NO_INSTALL
1077 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
1079 install-local:: $(DestRelinkedLib)
1081 $(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
1082 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
1083 $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
1086 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1087 -$(Verb) $(RM) -f $(DestRelinkedLib)
1091 #---------------------------------------------------------
1092 # Archive Library Targets:
1093 # If the user wanted a regular archive library built,
1094 # then we provide targets for building them.
1095 #---------------------------------------------------------
1098 all-local:: $(LibName.A)
1100 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1101 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1102 -$(Verb) $(RM) -f $@
1103 $(Verb) $(Archive) $@ $(ObjectsO)
1104 $(Verb) $(Ranlib) $@
1107 ifneq ($(strip $(LibName.A)),)
1108 -$(Verb) $(RM) -f $(LibName.A)
1113 $(Echo) Install circumvented with NO_INSTALL
1115 $(Echo) Uninstall circumvented with NO_INSTALL
1117 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1119 install-local:: $(DestArchiveLib)
1121 $(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
1122 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1123 $(Verb) $(MKDIR) $(PROJ_libdir)
1124 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1127 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1128 -$(Verb) $(RM) -f $(DestArchiveLib)
1135 ###############################################################################
1136 # Tool Build Rules: Build executable tool based on TOOLNAME option
1137 ###############################################################################
1141 #---------------------------------------------------------
1142 # Set up variables for building a tool.
1143 #---------------------------------------------------------
1145 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1147 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1150 #---------------------------------------------------------
1152 #---------------------------------------------------------
1154 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1155 # not exporting all of the weak symbols from the binary. This reduces dyld
1156 # startup time by 4x on darwin in some cases.
1157 ifdef TOOL_NO_EXPORTS
1160 # Tiger tools don't support this.
1161 ifneq ($(DARWIN_MAJVERS),4)
1162 LD.Flags += -Wl,-exported_symbol -Wl,_main
1166 ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
1167 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1172 #---------------------------------------------------------
1173 # Provide targets for building the tools
1174 #---------------------------------------------------------
1175 all-local:: $(ToolBuildPath)
1178 ifneq ($(strip $(ToolBuildPath)),)
1179 -$(Verb) $(RM) -f $(ToolBuildPath)
1183 $(ToolBuildPath): $(ExmplDir)/.dir
1185 $(ToolBuildPath): $(ToolDir)/.dir
1188 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1189 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1190 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1191 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1192 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1197 $(Echo) Install circumvented with NO_INSTALL
1199 $(Echo) Uninstall circumvented with NO_INSTALL
1201 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1203 install-local:: $(DestTool)
1205 $(DestTool): $(ToolBuildPath) $(PROJ_bindir)
1206 $(Echo) Installing $(BuildMode) $(DestTool)
1207 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1210 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1211 -$(Verb) $(RM) -f $(DestTool)
1215 ###############################################################################
1216 # Object Build Rules: Build object files based on sources
1217 ###############################################################################
1219 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1221 DISABLE_AUTO_DEPENDENCIES=1
1224 # Provide rule sets for when dependency generation is enabled
1225 ifndef DISABLE_AUTO_DEPENDENCIES
1227 #---------------------------------------------------------
1228 # Create .o files in the ObjDir directory from the .cpp and .c files...
1229 #---------------------------------------------------------
1231 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1232 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1234 # If the build succeeded, move the dependency file over. If it failed, put an
1236 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1237 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1239 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1240 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1241 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1244 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1245 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1246 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1249 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1250 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1251 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1254 #---------------------------------------------------------
1255 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1256 #---------------------------------------------------------
1258 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1259 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1260 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1261 $< -o $@ -S -emit-llvm ; \
1262 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1263 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1264 $(call UPGRADE_MSG,$@)
1265 $(call UPGRADE_LL,$@)
1267 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1268 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1269 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1270 $< -o $@ -S -emit-llvm ; \
1271 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1272 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1273 $(call UPGRADE_MSG,$@)
1274 $(call UPGRADE_LL,$@)
1276 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1277 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1278 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1279 $< -o $@ -S -emit-llvm ; \
1280 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1281 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1282 $(call UPGRADE_MSG,$@)
1283 $(call UPGRADE_LL,$@)
1285 # Provide alternate rule sets if dependencies are disabled
1288 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1289 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1290 $(Compile.CXX) $< -o $@
1292 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1293 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1294 $(Compile.CXX) $< -o $@
1296 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1297 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1298 $(Compile.C) $< -o $@
1300 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1301 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1302 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1303 $(call UPGRADE_MSG,$@)
1304 $(call UPGRADE_LL,$@)
1306 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1307 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1308 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1309 $(call UPGRADE_MSG,$@)
1310 $(call UPGRADE_LL,$@)
1312 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1313 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1314 $(BCCompile.C) $< -o $@ -S -emit-llvm
1315 $(call UPGRADE_MSG,@)
1316 $(call UPGRADE_LL,@)
1321 ## Rules for building preprocessed (.i/.ii) outputs.
1322 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1323 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1324 $(Verb) $(Preprocess.CXX) $< -o $@
1326 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1327 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1328 $(Verb) $(Preprocess.CXX) $< -o $@
1330 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1331 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1332 $(Verb) $(Preprocess.C) $< -o $@
1335 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1336 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1337 $(Compile.CXX) $< -o $@ -S
1339 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1340 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1341 $(Compile.CXX) $< -o $@ -S
1343 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1344 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1345 $(Compile.C) $< -o $@ -S
1348 # make the C and C++ compilers strip debug info out of bytecode libraries.
1350 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1351 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1352 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1354 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1355 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1356 $(Verb) $(LLVMAS) $< -o - | \
1357 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1361 #---------------------------------------------------------
1362 # Provide rule to build .bc files from .ll sources,
1363 # regardless of dependencies
1364 #---------------------------------------------------------
1365 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1366 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1367 $(Verb) $(LLVMAS) $< -f -o $@
1369 ###############################################################################
1370 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1371 ###############################################################################
1374 TABLEGEN_INC_FILES_COMMON = 1
1377 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1378 TABLEGEN_INC_FILES_COMMON = 1
1381 ifdef TABLEGEN_INC_FILES_COMMON
1383 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1384 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1385 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1387 # INCFiles rule: All of the tblgen generated files are emitted to
1388 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1389 # us to only "touch" the real file if the contents of it change. IOW, if
1390 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1391 # dependencies of the .inc files are, unless the contents of the .inc file
1393 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1394 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1396 endif # TABLEGEN_INC_FILES_COMMON
1400 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1401 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1402 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1403 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1404 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1405 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1406 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1408 # All of these files depend on tblgen and the .td files.
1409 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1411 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1412 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1413 $(Echo) "Building $(<F) register names with tblgen"
1414 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1416 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1417 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1418 $(Echo) "Building $(<F) register information header with tblgen"
1419 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1421 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1422 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1423 $(Echo) "Building $(<F) register info implementation with tblgen"
1424 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1426 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1427 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1428 $(Echo) "Building $(<F) instruction names with tblgen"
1429 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1431 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1432 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1433 $(Echo) "Building $(<F) instruction information with tblgen"
1434 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1436 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1437 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1438 $(Echo) "Building $(<F) assembly writer with tblgen"
1439 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1441 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1442 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1443 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1444 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1446 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1447 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1448 $(Echo) "Building $(<F) code emitter with tblgen"
1449 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1451 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1452 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1453 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1454 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1456 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1457 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1458 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1459 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1461 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1462 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1463 $(Echo) "Building $(<F) subtarget information with tblgen"
1464 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1466 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1467 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1468 $(Echo) "Building $(<F) calling convention information with tblgen"
1469 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1471 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1472 $(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1473 $(Echo) "Building $(<F) calling convention information with tblgen"
1474 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1477 -$(Verb) $(RM) -f $(INCFiles)
1481 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1483 LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1484 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1486 TDFiles := $(LLVMCPluginSrc) \
1487 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1489 $(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1490 $(TBLGEN) $(TD_COMMON)
1491 $(Echo) "Building LLVMC configuration library with tblgen"
1492 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1494 endif # LLVMC_BUILD_AUTOGENERATED_INC
1496 ###############################################################################
1497 # OTHER RULES: Other rules needed
1498 ###############################################################################
1500 # To create postscript files from dot files...
1501 ifneq ($(DOT),false)
1503 $(DOT) -Tps < $< > $@
1506 $(Echo) "Cannot build $@: The program dot is not installed"
1509 # This rules ensures that header files that are removed still have a rule for
1510 # which they can be "generated." This allows make to ignore them and
1511 # reproduce the dependency lists.
1515 # Define clean-local to clean the current directory. Note that this uses a
1516 # very conservative approach ensuring that empty variables do not cause
1517 # errors or disastrous removal.
1519 ifneq ($(strip $(ObjRootDir)),)
1520 -$(Verb) $(RM) -rf $(ObjRootDir)
1522 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1523 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1524 -$(Verb) $(RM) -f *$(SHLIBEXT)
1528 -$(Verb) $(RM) -rf Debug Release Profile
1531 ###############################################################################
1532 # DEPENDENCIES: Include the dependency files if we should
1533 ###############################################################################
1534 ifndef DISABLE_AUTO_DEPENDENCIES
1536 # If its not one of the cleaning targets
1537 ifndef IS_CLEANING_TARGET
1539 # Get the list of dependency files
1540 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1541 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1543 -include $(DependFiles) ""
1549 ###############################################################################
1550 # CHECK: Running the test suite
1551 ###############################################################################
1554 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1555 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1556 $(EchoCmd) Running test suite ; \
1557 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1558 TESTSUITE=$(TESTSUITE) ; \
1560 $(EchoCmd) No Makefile in test directory ; \
1563 $(EchoCmd) No test directory ; \
1566 ###############################################################################
1567 # UNITTESTS: Running the unittests test suite
1568 ###############################################################################
1571 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1572 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1573 $(EchoCmd) Running unittests test suite ; \
1574 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1576 $(EchoCmd) No Makefile in unittests directory ; \
1579 $(EchoCmd) No unittests directory ; \
1582 ###############################################################################
1583 # DISTRIBUTION: Handle construction of a distribution tarball
1584 ###############################################################################
1586 #------------------------------------------------------------------------
1587 # Define distribution related variables
1588 #------------------------------------------------------------------------
1589 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1590 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1591 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1592 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1593 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1594 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1595 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1596 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1597 Makefile.config.in configure autoconf
1598 DistOther := $(notdir $(wildcard \
1599 $(PROJ_SRC_DIR)/*.h \
1600 $(PROJ_SRC_DIR)/*.td \
1601 $(PROJ_SRC_DIR)/*.def \
1602 $(PROJ_SRC_DIR)/*.ll \
1603 $(PROJ_SRC_DIR)/*.in))
1604 DistSubDirs := $(SubDirs)
1605 DistSources = $(Sources) $(EXTRA_DIST)
1606 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1608 #------------------------------------------------------------------------
1609 # We MUST build distribution with OBJ_DIR != SRC_DIR
1610 #------------------------------------------------------------------------
1611 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1612 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1613 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1617 #------------------------------------------------------------------------
1618 # Prevent attempt to run dist targets from anywhere but the top level
1619 #------------------------------------------------------------------------
1621 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1622 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1625 #------------------------------------------------------------------------
1626 # Provide the top level targets
1627 #------------------------------------------------------------------------
1629 dist-gzip:: $(DistTarGZip)
1631 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1632 $(Echo) Packing gzipped distribution tar file.
1633 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1634 $(GZIP) -c > "$(DistTarGZip)"
1636 dist-bzip2:: $(DistTarBZ2)
1638 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1639 $(Echo) Packing bzipped distribution tar file.
1640 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1641 $(BZIP2) -c >$(DistTarBZ2)
1643 dist-zip:: $(DistZip)
1645 $(DistZip) : $(TopDistDir)/.makedistdir
1646 $(Echo) Packing zipped distribution file.
1647 $(Verb) rm -f $(DistZip)
1648 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1650 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1651 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1653 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1655 dist-check:: $(DistTarGZip)
1656 $(Echo) Checking distribution tar file.
1657 $(Verb) if test -d $(DistCheckDir) ; then \
1658 $(RM) -rf $(DistCheckDir) ; \
1660 $(Verb) $(MKDIR) $(DistCheckDir)
1661 $(Verb) cd $(DistCheckDir) && \
1662 $(MKDIR) $(DistCheckDir)/build && \
1663 $(MKDIR) $(DistCheckDir)/install && \
1664 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1666 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1667 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1670 $(MAKE) unittests && \
1671 $(MAKE) install && \
1672 $(MAKE) uninstall && \
1673 $(MAKE) dist-clean && \
1674 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1677 $(Echo) Cleaning distribution files
1678 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1683 #------------------------------------------------------------------------
1684 # Provide the recursive distdir target for building the distribution directory
1685 #------------------------------------------------------------------------
1686 distdir: $(DistDir)/.makedistdir
1687 $(DistDir)/.makedistdir: $(DistSources)
1688 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1689 if test -d "$(DistDir)" ; then \
1690 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1693 $(EchoCmd) Removing old $(DistDir) ; \
1694 $(RM) -rf $(DistDir); \
1695 $(EchoCmd) Making 'all' to verify build ; \
1696 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1698 $(Echo) Building Distribution Directory $(DistDir)
1699 $(Verb) $(MKDIR) $(DistDir)
1700 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1701 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1702 for file in $(DistFiles) ; do \
1704 $(PROJ_SRC_DIR)/*) \
1705 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1707 $(PROJ_SRC_ROOT)/*) \
1708 file=`echo "$$file" | \
1709 sed "s#^$$srcrootstrip/##"` \
1712 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1713 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1714 from_dir="$(PROJ_SRC_DIR)" ; \
1715 elif test -f "$$file" || test -d "$$file" ; then \
1718 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1719 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1720 to_dir="$(DistDir)/$$dir"; \
1721 $(MKDIR) "$$to_dir" ; \
1723 to_dir="$(DistDir)"; \
1725 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1726 if test -n "$$mid_dir" ; then \
1727 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1729 if test -d "$$from_dir/$$file"; then \
1730 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1731 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1732 cd $(PROJ_SRC_DIR) ; \
1733 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1734 ( cd $$to_dir ; $(TAR) xf - ) ; \
1735 cd $(PROJ_OBJ_DIR) ; \
1738 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1739 ( cd $$to_dir ; $(TAR) xf - ) ; \
1740 cd $(PROJ_OBJ_DIR) ; \
1742 elif test -f "$$from_dir/$$file" ; then \
1743 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1744 elif test -L "$$from_dir/$$file" ; then \
1745 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1746 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1747 $(EchoCmd) "===== WARNING: Distribution Source " \
1748 "$$from_dir/$$file Not Found!" ; \
1749 elif test "$(Verb)" != '@' ; then \
1750 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1753 $(Verb) for subdir in $(DistSubDirs) ; do \
1754 if test "$$subdir" \!= "." ; then \
1755 new_distdir="$(DistDir)/$$subdir" ; \
1756 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1757 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1758 DistDir="$$new_distdir" distdir ) || exit 1; \
1761 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1762 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1763 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1764 -name .svn \) -print` ;\
1765 $(MAKE) dist-hook ; \
1766 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1767 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1768 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1769 -o ! -type d ! -perm -444 -exec \
1770 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1771 || chmod -R a+r $(DistDir) ; \
1774 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1780 ###############################################################################
1781 # TOP LEVEL - targets only to apply at the top level directory
1782 ###############################################################################
1786 #------------------------------------------------------------------------
1787 # Install support for the project's include files:
1788 #------------------------------------------------------------------------
1791 $(Echo) Install circumvented with NO_INSTALL
1793 $(Echo) Uninstall circumvented with NO_INSTALL
1796 $(Echo) Installing include files
1797 $(Verb) $(MKDIR) $(PROJ_includedir)
1798 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1799 cd $(PROJ_SRC_ROOT)/include && \
1800 for hdr in `find . -type f '!' '(' -name '*~' \
1801 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1802 grep -v .svn` ; do \
1803 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1804 if test \! -d "$$instdir" ; then \
1805 $(EchoCmd) Making install directory $$instdir ; \
1806 $(MKDIR) $$instdir ;\
1808 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1811 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1812 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1813 cd $(PROJ_OBJ_ROOT)/include && \
1814 for hdr in `find . -type f -print | grep -v CVS` ; do \
1815 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1821 $(Echo) Uninstalling include files
1822 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1823 cd $(PROJ_SRC_ROOT)/include && \
1824 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1825 '!' '(' -name '*~' -o -name '.#*' \
1826 -o -name '*.in' ')' -print ')' | \
1827 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1828 cd $(PROJ_SRC_ROOT)/include && \
1829 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1830 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1836 @echo searching for overlength lines in files: $(Sources)
1839 egrep -n '.{81}' $(Sources) /dev/null
1842 @echo searching for tabs in files: $(Sources)
1845 egrep -n ' ' $(Sources) /dev/null
1848 @ls -l $(LibDir) | awk '\
1849 BEGIN { sum = 0; } \
1851 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1852 @ls -l $(ToolDir) | awk '\
1853 BEGIN { sum = 0; } \
1855 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1856 #------------------------------------------------------------------------
1857 # Print out the directories used for building
1858 #------------------------------------------------------------------------
1860 $(Echo) "BuildMode : " '$(BuildMode)'
1861 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1862 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1863 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1864 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1865 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1866 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1867 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1868 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1869 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1870 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1871 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1872 $(Echo) "UserTargets : " '$(UserTargets)'
1873 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1874 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1875 $(Echo) "ObjDir : " '$(ObjDir)'
1876 $(Echo) "LibDir : " '$(LibDir)'
1877 $(Echo) "ToolDir : " '$(ToolDir)'
1878 $(Echo) "ExmplDir : " '$(ExmplDir)'
1879 $(Echo) "Sources : " '$(Sources)'
1880 $(Echo) "TDFiles : " '$(TDFiles)'
1881 $(Echo) "INCFiles : " '$(INCFiles)'
1882 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1883 $(Echo) "PreConditions: " '$(PreConditions)'
1884 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1885 $(Echo) "Compile.C : " '$(Compile.C)'
1886 $(Echo) "Archive : " '$(Archive)'
1887 $(Echo) "YaccFiles : " '$(YaccFiles)'
1888 $(Echo) "LexFiles : " '$(LexFiles)'
1889 $(Echo) "Module : " '$(Module)'
1890 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1891 $(Echo) "SubDirs : " '$(SubDirs)'
1892 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1893 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
1898 # General debugging rule, use 'make dbg-print-XXX' to print the
1899 # definition, value and origin of XXX.
1901 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))