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.
233 OPTIMIZE_OPTION := -O3
235 OPTIMIZE_OPTION := -O2
238 ifdef ENABLE_PROFILING
240 CXX.Flags += $(OPTIMIZE_OPTION) -pg -g
241 C.Flags += $(OPTIMIZE_OPTION) -pg -g
242 LD.Flags += $(OPTIMIZE_OPTION) -pg -g
245 ifeq ($(ENABLE_OPTIMIZED),1)
247 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
248 ifneq ($(OS),FreeBSD)
250 OmitFramePointer := -fomit-frame-pointer
254 # Darwin requires -fstrict-aliasing to be explicitly enabled.
256 EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
259 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
260 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
261 LD.Flags += $(OPTIMIZE_OPTION)
271 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
272 # CXX.Flags += -fvisibility-inlines-hidden
275 # IF REQUIRES_EH=1 is specified then don't disable exceptions
277 CXX.Flags += -fno-exceptions
280 # IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
282 # CXX.Flags += -fno-rtti
285 ifdef ENABLE_COVERAGE
286 BuildMode := $(BuildMode)+Coverage
287 # These only go to .NoRelink because otherwise we will end up
288 # linking -lgcov into the .o libraries that get built.
289 CXX.Flags.NoRelink += -ftest-coverage -fprofile-arcs
290 C.Flags.NoRelink += -ftest-coverage -fprofile-arcs
293 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
294 # then disable assertions by defining the appropriate preprocessor symbols.
295 ifdef DISABLE_ASSERTIONS
296 # Indicate that assertions are turned off using a minus sign
297 BuildMode := $(BuildMode)-Asserts
298 CPP.Defines += -DNDEBUG
300 CPP.Defines += -D_DEBUG
303 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
304 # configured), then enable expensive checks by defining the
305 # appropriate preprocessor symbols.
306 ifdef ENABLE_EXPENSIVE_CHECKS
307 BuildMode := $(BuildMode)+Checks
308 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
311 # LOADABLE_MODULE implies several other things so we force them to be
313 ifdef LOADABLE_MODULE
315 DONT_BUILD_RELINKED := 1
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 += $(CXXFLAGS) -Woverloaded-virtual
342 CPP.Defines += $(CPPFLAGS)
343 CPP.BaseFlags += $(CPP.Defines)
344 LD.Flags += $(LDFLAGS)
347 # Make Floating point IEEE compliant on Alpha.
350 CPP.BaseFlags += -mieee
351 ifeq ($(ENABLE_PIC),0)
353 CPP.BaseFlags += -fPIC
358 LD.Flags += -Wl,--no-relax
361 #--------------------------------------------------------------------
362 # Directory locations
363 #--------------------------------------------------------------------
365 ifeq ($(LLVM_CROSS_COMPILING),1)
366 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
369 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
370 ObjDir := $(ObjRootDir)
371 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
372 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
373 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
374 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
375 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
376 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
377 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
379 #--------------------------------------------------------------------
380 # Full Paths To Compiled Tools and Utilities
381 #--------------------------------------------------------------------
382 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
385 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
388 ifeq ($(LLVM_CROSS_COMPILING),1)
389 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
391 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
394 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
396 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
399 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
402 LLI := $(LLVMToolDir)/lli$(EXEEXT)
405 LLC := $(LLVMToolDir)/llc$(EXEEXT)
408 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
411 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
414 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
416 ifeq ($(LLVMGCC_MAJVERS),3)
417 UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
418 UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
419 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
420 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
424 LLVMGCCWITHPATH := $(LLVMGCC)
425 LLVMGXXWITHPATH := $(LLVMGXX)
428 #--------------------------------------------------------------------
429 # Adjust to user's request
430 #--------------------------------------------------------------------
433 DARWIN_VERSION := `sw_vers -productVersion`
434 # Strip a number like 10.4.7 to 10.4
435 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
436 # Get "4" out of 10.4 for later pieces in the makefile.
437 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
439 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
440 -dynamiclib -mmacosx-version-min=$(DARWIN_VERSION)
441 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
444 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
445 -Wl,--enable-auto-import -Wl,--enable-auto-image-base \
446 -Wl,--enable-runtime-pseudo-relocs
448 SharedLinkOptions=-shared
452 # Adjust LD.Flags depending on the kind of library that is to be built. Note
453 # that if LOADABLE_MODULE is specified then the resulting shared library can
454 # be opened with dlopen.
455 ifdef LOADABLE_MODULE
460 ifneq ($(DARWIN_MAJVERS),4)
461 LD.Flags += $(RPATH) -Wl,$(LibDir)
472 # Adjust settings for verbose mode
475 AR.Flags += >/dev/null 2>/dev/null
476 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
478 ConfigureScriptFLAGS :=
481 # By default, strip symbol information from executable
483 Strip := $(PLATFORMSTRIPOPTS)
484 StripWarnMsg := "(without symbols)"
485 Install.StripFlag += -s
488 # Adjust linker flags for building an executable
490 ifneq ($(DARWIN_MAJVERS),4)
493 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
495 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
501 #----------------------------------------------------------
502 # Options To Invoke Tools
503 #----------------------------------------------------------
505 CompileCommonOpts += -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
506 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
509 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
512 # If we are building a universal binary on Mac OS/X, pass extra options. This
513 # is useful to people that want to link the LLVM libraries into their universal
516 # The following can be optionally specified:
517 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
518 # For Mac OS/X 10.4 Intel machines, the traditional one is:
519 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
520 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
521 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
524 ifndef UNIVERSAL_ARCH
525 UNIVERSAL_ARCH := i386 ppc
527 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
528 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
529 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS)
530 ifdef UNIVERSAL_SDK_PATH
531 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
532 Relink.Flags += -isysroot $(UNIVERSAL_SDK_PATH)
535 # Building universal cannot compute dependencies automatically.
536 DISABLE_AUTO_DEPENDENCIES=1
539 ifeq ($(ARCH),x86_64)
540 TargetCommonOpts = -m64
543 TargetCommonOpts = -m32
550 CPP.BaseFlags += -include llvm/System/Solaris.h
553 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
554 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
555 # All -I flags should go here, so that they don't confuse llvm-config.
556 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
557 $(patsubst %,-I%/include,\
558 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
559 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
562 ifeq ($(BUILD_COMPONENT), 1)
563 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(C.Flags.NoRelink) \
564 $(TargetCommonOpts) $(CompileCommonOpts) -c
565 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
566 $(TargetCommonOpts) $(CompileCommonOpts) -c
567 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(TargetCommonOpts) \
568 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
569 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
570 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
571 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
572 $(CompileCommonOpts) $(Relink.Flags)
574 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(C.Flags.NoRelink) \
575 $(TargetCommonOpts) $(CompileCommonOpts) -c
576 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
577 $(TargetCommonOpts) $(CompileCommonOpts) -c
578 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) \
579 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
580 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
581 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
582 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
583 $(CompileCommonOpts) $(Relink.Flags)
586 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) \
587 $(TargetCommonOpts) $(CompileCommonOpts)
588 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) \
589 $(TargetCommonOpts) $(CompileCommonOpts) -E
591 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
592 $(TargetCommonOpts) $(CompileCommonOpts)
594 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
595 ScriptInstall = $(INSTALL) -m 0755
596 DataInstall = $(INSTALL) -m 0644
598 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
599 # paths. In this case, the SYSPATH function (defined in
600 # Makefile.config) transforms Unix paths into Windows paths.
601 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
602 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
603 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
604 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
606 Archive = $(AR) $(AR.Flags)
607 LArchive = $(LLVMToolDir)/llvm-ar rcsf
614 #----------------------------------------------------------
615 # Get the list of source files and compute object file
617 #----------------------------------------------------------
620 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
621 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
623 Sources := $(SOURCES)
627 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
630 BaseNameSources := $(sort $(basename $(Sources)))
632 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
633 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
635 ###############################################################################
636 # DIRECTORIES: Handle recursive descent of directory structure
637 ###############################################################################
639 #---------------------------------------------------------
640 # Provide rules to make install dirs. This must be early
641 # in the file so they get built before dependencies
642 #---------------------------------------------------------
644 $(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
647 # To create other directories, as needed, and timestamp their creation
649 $(Verb) $(MKDIR) $* > /dev/null
652 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
653 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
655 #---------------------------------------------------------
656 # Handle the DIRS options for sequential construction
657 #---------------------------------------------------------
663 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
664 $(RecursiveTargets)::
665 $(Verb) for dir in $(DIRS); do \
666 if [ ! -f $$dir/Makefile ]; then \
668 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
670 ($(MAKE) -C $$dir $@ ) || exit 1; \
673 $(RecursiveTargets)::
674 $(Verb) for dir in $(DIRS); do \
675 ($(MAKE) -C $$dir $@ ) || exit 1; \
681 #---------------------------------------------------------
682 # Handle the EXPERIMENTAL_DIRS options ensuring success
683 # after each directory is built.
684 #---------------------------------------------------------
685 ifdef EXPERIMENTAL_DIRS
686 $(RecursiveTargets)::
687 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
688 if [ ! -f $$dir/Makefile ]; then \
690 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
692 ($(MAKE) -C $$dir $@ ) || exit 0; \
696 #-----------------------------------------------------------
697 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
698 #-----------------------------------------------------------
699 ifdef OPTIONAL_PARALLEL_DIRS
700 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
703 #-----------------------------------------------------------
704 # Handle the PARALLEL_DIRS options for parallel construction
705 #-----------------------------------------------------------
708 SubDirs += $(PARALLEL_DIRS)
710 # Unfortunately, this list must be maintained if new recursive targets are added
711 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
712 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
713 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
714 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
715 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
716 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
718 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
721 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
723 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
725 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
728 #---------------------------------------------------------
729 # Handle the OPTIONAL_DIRS options for directores that may
731 #---------------------------------------------------------
734 SubDirs += $(OPTIONAL_DIRS)
736 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
737 $(RecursiveTargets)::
738 $(Verb) for dir in $(OPTIONAL_DIRS); do \
739 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
740 if [ ! -f $$dir/Makefile ]; then \
742 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
744 ($(MAKE) -C$$dir $@ ) || exit 1; \
748 $(RecursiveTargets)::
749 $(Verb) for dir in $(OPTIONAL_DIRS); do \
750 ($(MAKE) -C$$dir $@ ) || exit 1; \
755 #---------------------------------------------------------
756 # Handle the CONFIG_FILES options
757 #---------------------------------------------------------
762 $(Echo) Install circumvented with NO_INSTALL
764 $(Echo) UnInstall circumvented with NO_INSTALL
766 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
767 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
768 $(Verb)for file in $(CONFIG_FILES); do \
769 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
770 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
771 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
772 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
774 $(ECHO) Error: cannot find config file $${file}. ; \
779 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
780 $(Verb)for file in $(CONFIG_FILES); do \
781 $(RM) -f $(PROJ_etcdir)/$${file} ; \
787 ###############################################################################
788 # Set up variables for building libararies
789 ###############################################################################
791 #---------------------------------------------------------
792 # Define various command line options pertaining to the
793 # libraries needed when linking. There are "Proj" libs
794 # (defined by the user's project) and "LLVM" libs (defined
795 # by the LLVM project).
796 #---------------------------------------------------------
799 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
800 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
801 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
802 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
806 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
807 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
808 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
809 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
812 ifndef IS_CLEANING_TARGET
813 ifdef LINK_COMPONENTS
815 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
816 # clean in tools, then do a make in tools (instead of at the top level).
818 @echo "*** llvm-config doesn't exist - rebuilding it."
819 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
821 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
823 LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
824 LLVMLibsPaths += $(LLVM_CONFIG) \
825 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
829 ###############################################################################
830 # Library Build Rules: Four ways to build a library
831 ###############################################################################
833 #---------------------------------------------------------
834 # Bytecode Module Targets:
835 # If the user set MODULE_NAME then they want to build a
836 # bytecode module from the sources. We compile all the
837 # sources and link it together into a single bytecode
839 #---------------------------------------------------------
842 ifeq ($(strip $(LLVMGCC)),)
843 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
846 Module := $(LibDir)/$(MODULE_NAME).bc
847 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
850 ifdef EXPORTED_SYMBOL_FILE
851 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
854 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
855 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
856 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
858 all-local:: $(Module)
861 ifneq ($(strip $(Module)),)
862 -$(Verb) $(RM) -f $(Module)
865 ifdef BYTECODE_DESTINATION
866 ModuleDestDir := $(BYTECODE_DESTINATION)
868 ModuleDestDir := $(PROJ_libdir)
873 $(Echo) Install circumvented with NO_INSTALL
875 $(Echo) Uninstall circumvented with NO_INSTALL
877 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
879 install-module:: $(DestModule)
880 install-local:: $(DestModule)
882 $(DestModule): $(ModuleDestDir) $(Module)
883 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
884 $(Verb) $(DataInstall) $(Module) $(DestModule)
887 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
888 -$(Verb) $(RM) -f $(DestModule)
894 # if we're building a library ...
897 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
898 LIBRARYNAME := $(strip $(LIBRARYNAME))
899 ifdef LOADABLE_MODULE
900 LibName.A := $(LibDir)/$(LIBRARYNAME).a
901 LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
903 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
904 LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
906 LibName.O := $(LibDir)/$(LIBRARYNAME).o
907 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
909 #---------------------------------------------------------
910 # Shared Library Targets:
911 # If the user asked for a shared library to be built
912 # with the SHARED_LIBRARY variable, then we provide
913 # targets for building them.
914 #---------------------------------------------------------
917 all-local:: $(LibName.SO)
919 ifdef LINK_LIBS_IN_SHARED
920 ifdef LOADABLE_MODULE
921 SharedLibKindMessage := "Loadable Module"
923 SharedLibKindMessage := "Shared Library"
925 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
926 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
927 $(LIBRARYNAME)$(SHLIBEXT)
928 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
929 $(ProjLibsOptions) $(LLVMLibsOptions)
931 $(LibName.SO): $(ObjectsO) $(LibDir)/.dir
932 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
933 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
937 ifneq ($(strip $(LibName.SO)),)
938 -$(Verb) $(RM) -f $(LibName.SO)
943 $(Echo) Install circumvented with NO_INSTALL
945 $(Echo) Uninstall circumvented with NO_INSTALL
947 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
949 install-local:: $(DestSharedLib)
951 $(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
952 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
953 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
956 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
957 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
961 #---------------------------------------------------------
962 # Bytecode Library Targets:
963 # If the user asked for a bytecode library to be built
964 # with the BYTECODE_LIBRARY variable, then we provide
965 # targets for building them.
966 #---------------------------------------------------------
967 ifdef BYTECODE_LIBRARY
968 ifeq ($(strip $(LLVMGCC)),)
969 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
972 all-local:: $(LibName.BCA)
974 ifdef EXPORTED_SYMBOL_FILE
975 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
976 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
978 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
979 $(LLVMToolDir)/llvm-ar
980 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
982 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
984 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
986 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
987 $(LLVMToolDir)/llvm-ar
988 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
990 $(Verb) $(LArchive) $@ $(ObjectsBC)
995 ifneq ($(strip $(LibName.BCA)),)
996 -$(Verb) $(RM) -f $(LibName.BCA)
999 ifdef BYTECODE_DESTINATION
1000 BytecodeDestDir := $(BYTECODE_DESTINATION)
1002 BytecodeDestDir := $(PROJ_libdir)
1005 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
1007 install-bytecode-local:: $(DestBytecodeLib)
1011 $(Echo) Install circumvented with NO_INSTALL
1013 $(Echo) Uninstall circumvented with NO_INSTALL
1015 install-local:: $(DestBytecodeLib)
1017 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1018 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1019 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1022 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1023 -$(Verb) $(RM) -f $(DestBytecodeLib)
1028 #---------------------------------------------------------
1029 # ReLinked Library Targets:
1030 # If the user explicitly requests a relinked library with
1031 # BUILD_RELINKED, provide it. Otherwise, if they specify
1032 # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
1034 #---------------------------------------------------------
1035 ifndef BUILD_ARCHIVE
1036 ifndef DONT_BUILD_RELINKED
1041 ifdef BUILD_RELINKED
1043 all-local:: $(LibName.O)
1045 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
1046 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
1047 $(Verb) $(Relink) -Wl,-r -nodefaultlibs -nostdlib -nostartfiles -o $@ $(ObjectsO)
1050 ifneq ($(strip $(LibName.O)),)
1051 -$(Verb) $(RM) -f $(LibName.O)
1056 $(Echo) Install circumvented with NO_INSTALL
1058 $(Echo) Uninstall circumvented with NO_INSTALL
1060 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
1062 install-local:: $(DestRelinkedLib)
1064 $(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
1065 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
1066 $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
1069 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1070 -$(Verb) $(RM) -f $(DestRelinkedLib)
1074 #---------------------------------------------------------
1075 # Archive Library Targets:
1076 # If the user wanted a regular archive library built,
1077 # then we provide targets for building them.
1078 #---------------------------------------------------------
1081 all-local:: $(LibName.A)
1083 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1084 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1085 -$(Verb) $(RM) -f $@
1086 $(Verb) $(Archive) $@ $(ObjectsO)
1087 $(Verb) $(Ranlib) $@
1090 ifneq ($(strip $(LibName.A)),)
1091 -$(Verb) $(RM) -f $(LibName.A)
1096 $(Echo) Install circumvented with NO_INSTALL
1098 $(Echo) Uninstall circumvented with NO_INSTALL
1100 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1102 install-local:: $(DestArchiveLib)
1104 $(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
1105 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1106 $(Verb) $(MKDIR) $(PROJ_libdir)
1107 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1110 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1111 -$(Verb) $(RM) -f $(DestArchiveLib)
1118 ###############################################################################
1119 # Tool Build Rules: Build executable tool based on TOOLNAME option
1120 ###############################################################################
1124 #---------------------------------------------------------
1125 # Set up variables for building a tool.
1126 #---------------------------------------------------------
1128 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1130 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1133 #---------------------------------------------------------
1135 #---------------------------------------------------------
1137 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1138 # not exporting all of the weak symbols from the binary. This reduces dyld
1139 # startup time by 4x on darwin in some cases.
1140 ifdef TOOL_NO_EXPORTS
1143 # Tiger tools don't support this.
1144 ifneq ($(DARWIN_MAJVERS),4)
1145 LD.Flags += -Wl,-exported_symbol -Wl,_main
1149 ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
1150 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1155 #---------------------------------------------------------
1156 # Provide targets for building the tools
1157 #---------------------------------------------------------
1158 all-local:: $(ToolBuildPath)
1161 ifneq ($(strip $(ToolBuildPath)),)
1162 -$(Verb) $(RM) -f $(ToolBuildPath)
1166 $(ToolBuildPath): $(ExmplDir)/.dir
1168 $(ToolBuildPath): $(ToolDir)/.dir
1171 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1172 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1173 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1174 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1175 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1180 $(Echo) Install circumvented with NO_INSTALL
1182 $(Echo) Uninstall circumvented with NO_INSTALL
1184 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1186 install-local:: $(DestTool)
1188 $(DestTool): $(ToolBuildPath) $(PROJ_bindir)
1189 $(Echo) Installing $(BuildMode) $(DestTool)
1190 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1193 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1194 -$(Verb) $(RM) -f $(DestTool)
1198 ###############################################################################
1199 # Object Build Rules: Build object files based on sources
1200 ###############################################################################
1202 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1204 DISABLE_AUTO_DEPENDENCIES=1
1207 # Provide rule sets for when dependency generation is enabled
1208 ifndef DISABLE_AUTO_DEPENDENCIES
1210 #---------------------------------------------------------
1211 # Create .o files in the ObjDir directory from the .cpp and .c files...
1212 #---------------------------------------------------------
1214 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1215 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1217 # If the build succeeded, move the dependency file over. If it failed, put an
1219 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1220 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1222 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1223 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1224 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1227 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1228 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1229 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1232 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1233 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1234 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1237 #---------------------------------------------------------
1238 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1239 #---------------------------------------------------------
1241 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1242 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1243 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1244 $< -o $@ -S -emit-llvm ; \
1245 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1246 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1247 $(call UPGRADE_MSG,$@)
1248 $(call UPGRADE_LL,$@)
1250 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1251 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1252 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1253 $< -o $@ -S -emit-llvm ; \
1254 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1255 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1256 $(call UPGRADE_MSG,$@)
1257 $(call UPGRADE_LL,$@)
1259 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1260 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1261 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1262 $< -o $@ -S -emit-llvm ; \
1263 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1264 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1265 $(call UPGRADE_MSG,$@)
1266 $(call UPGRADE_LL,$@)
1268 # Provide alternate rule sets if dependencies are disabled
1271 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1272 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1273 $(Compile.CXX) $< -o $@
1275 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1276 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1277 $(Compile.CXX) $< -o $@
1279 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1280 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1281 $(Compile.C) $< -o $@
1283 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1284 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1285 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1286 $(call UPGRADE_MSG,$@)
1287 $(call UPGRADE_LL,$@)
1289 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1290 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1291 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1292 $(call UPGRADE_MSG,$@)
1293 $(call UPGRADE_LL,$@)
1295 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1296 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1297 $(BCCompile.C) $< -o $@ -S -emit-llvm
1298 $(call UPGRADE_MSG,@)
1299 $(call UPGRADE_LL,@)
1304 ## Rules for building preprocessed (.i/.ii) outputs.
1305 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1306 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1307 $(Verb) $(Preprocess.CXX) $< -o $@
1309 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1310 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1311 $(Verb) $(Preprocess.CXX) $< -o $@
1313 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1314 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1315 $(Verb) $(Preprocess.C) $< -o $@
1318 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1319 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1320 $(Compile.CXX) $< -o $@ -S
1322 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1323 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1324 $(Compile.CXX) $< -o $@ -S
1326 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1327 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1328 $(Compile.C) $< -o $@ -S
1331 # make the C and C++ compilers strip debug info out of bytecode libraries.
1333 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1334 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1335 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1337 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1338 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1339 $(Verb) $(LLVMAS) $< -o - | \
1340 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1344 #---------------------------------------------------------
1345 # Provide rule to build .bc files from .ll sources,
1346 # regardless of dependencies
1347 #---------------------------------------------------------
1348 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1349 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1350 $(Verb) $(LLVMAS) $< -f -o $@
1352 ###############################################################################
1353 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1354 ###############################################################################
1357 TABLEGEN_INC_FILES_COMMON = 1
1360 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1361 TABLEGEN_INC_FILES_COMMON = 1
1364 ifdef CLANG_BUILD_DIAGNOSTICS_INC
1365 TABLEGEN_INC_FILES_COMMON = 1
1368 ifdef TABLEGEN_INC_FILES_COMMON
1370 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1371 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1372 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1374 # INCFiles rule: All of the tblgen generated files are emitted to
1375 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1376 # us to only "touch" the real file if the contents of it change. IOW, if
1377 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1378 # dependencies of the .inc files are, unless the contents of the .inc file
1380 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1381 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1383 endif # TABLEGEN_INC_FILES_COMMON
1387 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1388 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1389 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1390 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1391 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1392 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1393 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1395 # All of these files depend on tblgen and the .td files.
1396 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1398 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1399 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1400 $(Echo) "Building $(<F) register names with tblgen"
1401 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1403 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1404 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1405 $(Echo) "Building $(<F) register information header with tblgen"
1406 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1408 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1409 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1410 $(Echo) "Building $(<F) register info implementation with tblgen"
1411 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1413 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1414 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1415 $(Echo) "Building $(<F) instruction names with tblgen"
1416 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1418 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1419 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1420 $(Echo) "Building $(<F) instruction information with tblgen"
1421 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1423 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1424 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1425 $(Echo) "Building $(<F) assembly writer with tblgen"
1426 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1428 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1429 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1430 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1431 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1433 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1434 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1435 $(Echo) "Building $(<F) code emitter with tblgen"
1436 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1438 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1439 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1440 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1441 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1443 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1444 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1445 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1446 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1448 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1449 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1450 $(Echo) "Building $(<F) subtarget information with tblgen"
1451 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1453 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1454 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1455 $(Echo) "Building $(<F) calling convention information with tblgen"
1456 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1458 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1459 $(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1460 $(Echo) "Building $(<F) calling convention information with tblgen"
1461 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1464 -$(Verb) $(RM) -f $(INCFiles)
1468 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1470 LLVMCPluginSrc := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td))
1472 TDFiles := $(LLVMCPluginSrc) \
1473 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1475 $(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1476 $(TBLGEN) $(TD_COMMON)
1477 $(Echo) "Building LLVMC configuration library with tblgen"
1478 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1480 endif # LLVMC_BUILD_AUTOGENERATED_INC
1482 ifdef CLANG_BUILD_DIAGNOSTICS_INC
1484 $(ObjDir)/Diagnostic%Kinds.inc.tmp : Diagnostic.td Diagnostic%Kinds.td $(TBLGEN)
1485 $(Echo) "Building Clang $(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) diagnostic tables with tblgen"
1486 $(Verb) $(MKDIR) $(@D)
1487 $(Verb) $(TableGen) -gen-clang-diags-defs -clang-component=$(patsubst Diagnostic%Kinds.inc.tmp,%,$(@F)) -o $(call SYSPATH, $@) $<
1491 ###############################################################################
1492 # OTHER RULES: Other rules needed
1493 ###############################################################################
1495 # To create postscript files from dot files...
1496 ifneq ($(DOT),false)
1498 $(DOT) -Tps < $< > $@
1501 $(Echo) "Cannot build $@: The program dot is not installed"
1504 # This rules ensures that header files that are removed still have a rule for
1505 # which they can be "generated." This allows make to ignore them and
1506 # reproduce the dependency lists.
1510 # Define clean-local to clean the current directory. Note that this uses a
1511 # very conservative approach ensuring that empty variables do not cause
1512 # errors or disastrous removal.
1514 ifneq ($(strip $(ObjRootDir)),)
1515 -$(Verb) $(RM) -rf $(ObjRootDir)
1517 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1518 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1519 -$(Verb) $(RM) -f *$(SHLIBEXT)
1523 -$(Verb) $(RM) -rf Debug Release Profile
1526 ###############################################################################
1527 # DEPENDENCIES: Include the dependency files if we should
1528 ###############################################################################
1529 ifndef DISABLE_AUTO_DEPENDENCIES
1531 # If its not one of the cleaning targets
1532 ifndef IS_CLEANING_TARGET
1534 # Get the list of dependency files
1535 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1536 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1538 -include $(DependFiles) ""
1544 ###############################################################################
1545 # CHECK: Running the test suite
1546 ###############################################################################
1549 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1550 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1551 $(EchoCmd) Running test suite ; \
1552 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1553 TESTSUITE=$(TESTSUITE) ; \
1555 $(EchoCmd) No Makefile in test directory ; \
1558 $(EchoCmd) No test directory ; \
1561 ###############################################################################
1562 # UNITTESTS: Running the unittests test suite
1563 ###############################################################################
1566 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1567 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1568 $(EchoCmd) Running unittests test suite ; \
1569 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1571 $(EchoCmd) No Makefile in unittests directory ; \
1574 $(EchoCmd) No unittests directory ; \
1577 ###############################################################################
1578 # DISTRIBUTION: Handle construction of a distribution tarball
1579 ###############################################################################
1581 #------------------------------------------------------------------------
1582 # Define distribution related variables
1583 #------------------------------------------------------------------------
1584 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1585 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1586 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1587 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1588 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1589 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1590 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1591 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1592 Makefile.config.in configure autoconf
1593 DistOther := $(notdir $(wildcard \
1594 $(PROJ_SRC_DIR)/*.h \
1595 $(PROJ_SRC_DIR)/*.td \
1596 $(PROJ_SRC_DIR)/*.def \
1597 $(PROJ_SRC_DIR)/*.ll \
1598 $(PROJ_SRC_DIR)/*.in))
1599 DistSubDirs := $(SubDirs)
1600 DistSources = $(Sources) $(EXTRA_DIST)
1601 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1603 #------------------------------------------------------------------------
1604 # We MUST build distribution with OBJ_DIR != SRC_DIR
1605 #------------------------------------------------------------------------
1606 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1607 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1608 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1612 #------------------------------------------------------------------------
1613 # Prevent attempt to run dist targets from anywhere but the top level
1614 #------------------------------------------------------------------------
1616 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1617 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1620 #------------------------------------------------------------------------
1621 # Provide the top level targets
1622 #------------------------------------------------------------------------
1624 dist-gzip:: $(DistTarGZip)
1626 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1627 $(Echo) Packing gzipped distribution tar file.
1628 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1629 $(GZIP) -c > "$(DistTarGZip)"
1631 dist-bzip2:: $(DistTarBZ2)
1633 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1634 $(Echo) Packing bzipped distribution tar file.
1635 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1636 $(BZIP2) -c >$(DistTarBZ2)
1638 dist-zip:: $(DistZip)
1640 $(DistZip) : $(TopDistDir)/.makedistdir
1641 $(Echo) Packing zipped distribution file.
1642 $(Verb) rm -f $(DistZip)
1643 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1645 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1646 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1648 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1650 dist-check:: $(DistTarGZip)
1651 $(Echo) Checking distribution tar file.
1652 $(Verb) if test -d $(DistCheckDir) ; then \
1653 $(RM) -rf $(DistCheckDir) ; \
1655 $(Verb) $(MKDIR) $(DistCheckDir)
1656 $(Verb) cd $(DistCheckDir) && \
1657 $(MKDIR) $(DistCheckDir)/build && \
1658 $(MKDIR) $(DistCheckDir)/install && \
1659 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1661 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1662 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1665 $(MAKE) unittests && \
1666 $(MAKE) install && \
1667 $(MAKE) uninstall && \
1668 $(MAKE) dist-clean && \
1669 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1672 $(Echo) Cleaning distribution files
1673 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1678 #------------------------------------------------------------------------
1679 # Provide the recursive distdir target for building the distribution directory
1680 #------------------------------------------------------------------------
1681 distdir: $(DistDir)/.makedistdir
1682 $(DistDir)/.makedistdir: $(DistSources)
1683 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1684 if test -d "$(DistDir)" ; then \
1685 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1688 $(EchoCmd) Removing old $(DistDir) ; \
1689 $(RM) -rf $(DistDir); \
1690 $(EchoCmd) Making 'all' to verify build ; \
1691 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1693 $(Echo) Building Distribution Directory $(DistDir)
1694 $(Verb) $(MKDIR) $(DistDir)
1695 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1696 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1697 for file in $(DistFiles) ; do \
1699 $(PROJ_SRC_DIR)/*) \
1700 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1702 $(PROJ_SRC_ROOT)/*) \
1703 file=`echo "$$file" | \
1704 sed "s#^$$srcrootstrip/##"` \
1707 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1708 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1709 from_dir="$(PROJ_SRC_DIR)" ; \
1710 elif test -f "$$file" || test -d "$$file" ; then \
1713 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1714 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1715 to_dir="$(DistDir)/$$dir"; \
1716 $(MKDIR) "$$to_dir" ; \
1718 to_dir="$(DistDir)"; \
1720 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1721 if test -n "$$mid_dir" ; then \
1722 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1724 if test -d "$$from_dir/$$file"; then \
1725 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1726 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1727 cd $(PROJ_SRC_DIR) ; \
1728 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1729 ( cd $$to_dir ; $(TAR) xf - ) ; \
1730 cd $(PROJ_OBJ_DIR) ; \
1733 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1734 ( cd $$to_dir ; $(TAR) xf - ) ; \
1735 cd $(PROJ_OBJ_DIR) ; \
1737 elif test -f "$$from_dir/$$file" ; then \
1738 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1739 elif test -L "$$from_dir/$$file" ; then \
1740 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1741 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1742 $(EchoCmd) "===== WARNING: Distribution Source " \
1743 "$$from_dir/$$file Not Found!" ; \
1744 elif test "$(Verb)" != '@' ; then \
1745 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1748 $(Verb) for subdir in $(DistSubDirs) ; do \
1749 if test "$$subdir" \!= "." ; then \
1750 new_distdir="$(DistDir)/$$subdir" ; \
1751 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1752 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1753 DistDir="$$new_distdir" distdir ) || exit 1; \
1756 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1757 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1758 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1759 -name .svn \) -print` ;\
1760 $(MAKE) dist-hook ; \
1761 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1762 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1763 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1764 -o ! -type d ! -perm -444 -exec \
1765 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1766 || chmod -R a+r $(DistDir) ; \
1769 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1775 ###############################################################################
1776 # TOP LEVEL - targets only to apply at the top level directory
1777 ###############################################################################
1781 #------------------------------------------------------------------------
1782 # Install support for the project's include files:
1783 #------------------------------------------------------------------------
1786 $(Echo) Install circumvented with NO_INSTALL
1788 $(Echo) Uninstall circumvented with NO_INSTALL
1791 $(Echo) Installing include files
1792 $(Verb) $(MKDIR) $(PROJ_includedir)
1793 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1794 cd $(PROJ_SRC_ROOT)/include && \
1795 for hdr in `find . -type f '!' '(' -name '*~' \
1796 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1797 grep -v .svn` ; do \
1798 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1799 if test \! -d "$$instdir" ; then \
1800 $(EchoCmd) Making install directory $$instdir ; \
1801 $(MKDIR) $$instdir ;\
1803 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1806 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1807 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1808 cd $(PROJ_OBJ_ROOT)/include && \
1809 for hdr in `find . -type f -print | grep -v CVS` ; do \
1810 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1816 $(Echo) Uninstalling include files
1817 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1818 cd $(PROJ_SRC_ROOT)/include && \
1819 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1820 '!' '(' -name '*~' -o -name '.#*' \
1821 -o -name '*.in' ')' -print ')' | \
1822 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1823 cd $(PROJ_SRC_ROOT)/include && \
1824 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1825 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1831 @echo searching for overlength lines in files: $(Sources)
1834 egrep -n '.{81}' $(Sources) /dev/null
1837 @echo searching for tabs in files: $(Sources)
1840 egrep -n ' ' $(Sources) /dev/null
1843 @ls -l $(LibDir) | awk '\
1844 BEGIN { sum = 0; } \
1846 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1847 @ls -l $(ToolDir) | awk '\
1848 BEGIN { sum = 0; } \
1850 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1851 #------------------------------------------------------------------------
1852 # Print out the directories used for building
1853 #------------------------------------------------------------------------
1855 $(Echo) "BuildMode : " '$(BuildMode)'
1856 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1857 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1858 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1859 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1860 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1861 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1862 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1863 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1864 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1865 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1866 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1867 $(Echo) "UserTargets : " '$(UserTargets)'
1868 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1869 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1870 $(Echo) "ObjDir : " '$(ObjDir)'
1871 $(Echo) "LibDir : " '$(LibDir)'
1872 $(Echo) "ToolDir : " '$(ToolDir)'
1873 $(Echo) "ExmplDir : " '$(ExmplDir)'
1874 $(Echo) "Sources : " '$(Sources)'
1875 $(Echo) "TDFiles : " '$(TDFiles)'
1876 $(Echo) "INCFiles : " '$(INCFiles)'
1877 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1878 $(Echo) "PreConditions: " '$(PreConditions)'
1879 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1880 $(Echo) "Compile.C : " '$(Compile.C)'
1881 $(Echo) "Archive : " '$(Archive)'
1882 $(Echo) "YaccFiles : " '$(YaccFiles)'
1883 $(Echo) "LexFiles : " '$(LexFiles)'
1884 $(Echo) "Module : " '$(Module)'
1885 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1886 $(Echo) "SubDirs : " '$(SubDirs)'
1887 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1888 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
1893 # General debugging rule, use 'make dbg-print-XXX' to print the
1894 # definition, value and origin of XXX.
1896 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))