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 ifdef ENABLE_EXPENSIVE_CHECKS
379 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
380 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
381 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
384 #--------------------------------------------------------------------
385 # Directory locations
386 #--------------------------------------------------------------------
388 ifeq ($(LLVM_CROSS_COMPILING),1)
389 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
392 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
393 ObjDir := $(ObjRootDir)
394 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
395 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
396 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
397 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
398 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
399 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
400 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
402 #--------------------------------------------------------------------
403 # Full Paths To Compiled Tools and Utilities
404 #--------------------------------------------------------------------
405 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
408 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
411 ifeq ($(LLVM_CROSS_COMPILING),1)
412 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
414 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
417 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
419 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
422 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
425 LLI := $(LLVMToolDir)/lli$(EXEEXT)
428 LLC := $(LLVMToolDir)/llc$(EXEEXT)
431 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
434 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
437 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
439 ifeq ($(LLVMGCC_MAJVERS),3)
440 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
441 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
443 LLVMGCCWITHPATH := $(LLVMGCC)
444 LLVMGXXWITHPATH := $(LLVMGXX)
447 #--------------------------------------------------------------------
448 # Adjust to user's request
449 #--------------------------------------------------------------------
452 DARWIN_VERSION := `sw_vers -productVersion`
453 # Strip a number like 10.4.7 to 10.4
454 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
455 # Get "4" out of 10.4 for later pieces in the makefile.
456 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
458 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
459 -dynamiclib -mmacosx-version-min=$(DARWIN_VERSION)
460 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
463 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
464 -Wl,--enable-auto-import -Wl,--enable-auto-image-base \
465 -Wl,--enable-runtime-pseudo-relocs
467 SharedLinkOptions=-shared
471 # Adjust LD.Flags depending on the kind of library that is to be built. Note
472 # that if LOADABLE_MODULE is specified then the resulting shared library can
473 # be opened with dlopen.
474 ifdef LOADABLE_MODULE
479 ifneq ($(DARWIN_MAJVERS),4)
480 LD.Flags += $(RPATH) -Wl,$(LibDir)
491 # Adjust settings for verbose mode
494 AR.Flags += >/dev/null 2>/dev/null
495 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
497 ConfigureScriptFLAGS :=
500 # By default, strip symbol information from executable
502 Strip := $(PLATFORMSTRIPOPTS)
503 StripWarnMsg := "(without symbols)"
504 Install.StripFlag += -s
507 # Adjust linker flags for building an executable
509 ifneq ($(DARWIN_MAJVERS),4)
512 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
514 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
520 #----------------------------------------------------------
521 # Options To Invoke Tools
522 #----------------------------------------------------------
525 CompileCommonOpts += -pedantic
527 CompileCommonOpts += -Wall -W -Wwrite-strings -Wno-long-long \
528 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
531 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
534 # If we are building a universal binary on Mac OS/X, pass extra options. This
535 # is useful to people that want to link the LLVM libraries into their universal
538 # The following can be optionally specified:
539 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
540 # For Mac OS/X 10.4 Intel machines, the traditional one is:
541 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
542 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
543 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
546 ifndef UNIVERSAL_ARCH
547 UNIVERSAL_ARCH := i386 ppc
549 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
550 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
551 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS)
552 ifdef UNIVERSAL_SDK_PATH
553 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
554 Relink.Flags += -isysroot $(UNIVERSAL_SDK_PATH)
557 # Building universal cannot compute dependencies automatically.
558 DISABLE_AUTO_DEPENDENCIES=1
561 ifeq ($(ARCH),x86_64)
562 TargetCommonOpts = -m64
565 TargetCommonOpts = -m32
572 CPP.BaseFlags += -include llvm/System/Solaris.h
575 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
576 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
577 # All -I flags should go here, so that they don't confuse llvm-config.
578 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
579 $(patsubst %,-I%/include,\
580 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
581 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
584 ifeq ($(BUILD_COMPONENT), 1)
585 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(C.Flags.NoRelink) \
586 $(TargetCommonOpts) $(CompileCommonOpts) -c
587 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
588 $(TargetCommonOpts) $(CompileCommonOpts) -c
589 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(TargetCommonOpts) \
590 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
591 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
592 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
593 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
594 $(CompileCommonOpts) $(Relink.Flags)
596 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(C.Flags.NoRelink) \
597 $(TargetCommonOpts) $(CompileCommonOpts) -c
598 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
599 $(TargetCommonOpts) $(CompileCommonOpts) -c
600 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) \
601 $(CompileCommonOpts) $(CXX.Flags) $(CXX.Flags.NoRelink) -E
602 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXX.Flags.NoRelink) \
603 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
604 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(TargetCommonOpts) \
605 $(CompileCommonOpts) $(Relink.Flags)
608 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) \
609 $(TargetCommonOpts) $(CompileCommonOpts)
610 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) \
611 $(TargetCommonOpts) $(CompileCommonOpts) -E
613 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
614 $(TargetCommonOpts) $(CompileCommonOpts)
616 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
617 ScriptInstall = $(INSTALL) -m 0755
618 DataInstall = $(INSTALL) -m 0644
620 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
621 # paths. In this case, the SYSPATH function (defined in
622 # Makefile.config) transforms Unix paths into Windows paths.
623 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
624 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
625 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
626 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
628 Archive = $(AR) $(AR.Flags)
629 LArchive = $(LLVMToolDir)/llvm-ar rcsf
636 #----------------------------------------------------------
637 # Get the list of source files and compute object file
639 #----------------------------------------------------------
642 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
643 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
645 Sources := $(SOURCES)
649 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
652 BaseNameSources := $(sort $(basename $(Sources)))
654 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
655 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
657 ###############################################################################
658 # DIRECTORIES: Handle recursive descent of directory structure
659 ###############################################################################
661 #---------------------------------------------------------
662 # Provide rules to make install dirs. This must be early
663 # in the file so they get built before dependencies
664 #---------------------------------------------------------
666 $(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
669 # To create other directories, as needed, and timestamp their creation
671 $(Verb) $(MKDIR) $* > /dev/null
674 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
675 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
677 #---------------------------------------------------------
678 # Handle the DIRS options for sequential construction
679 #---------------------------------------------------------
685 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
686 $(RecursiveTargets)::
687 $(Verb) for dir in $(DIRS); do \
688 if [ ! -f $$dir/Makefile ]; then \
690 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
692 ($(MAKE) -C $$dir $@ ) || exit 1; \
695 $(RecursiveTargets)::
696 $(Verb) for dir in $(DIRS); do \
697 ($(MAKE) -C $$dir $@ ) || exit 1; \
703 #---------------------------------------------------------
704 # Handle the EXPERIMENTAL_DIRS options ensuring success
705 # after each directory is built.
706 #---------------------------------------------------------
707 ifdef EXPERIMENTAL_DIRS
708 $(RecursiveTargets)::
709 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
710 if [ ! -f $$dir/Makefile ]; then \
712 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
714 ($(MAKE) -C $$dir $@ ) || exit 0; \
718 #-----------------------------------------------------------
719 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
720 #-----------------------------------------------------------
721 ifdef OPTIONAL_PARALLEL_DIRS
722 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
725 #-----------------------------------------------------------
726 # Handle the PARALLEL_DIRS options for parallel construction
727 #-----------------------------------------------------------
730 SubDirs += $(PARALLEL_DIRS)
732 # Unfortunately, this list must be maintained if new recursive targets are added
733 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
734 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
735 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
736 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
737 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
738 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
740 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
743 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
745 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
747 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
750 #---------------------------------------------------------
751 # Handle the OPTIONAL_DIRS options for directores that may
753 #---------------------------------------------------------
756 SubDirs += $(OPTIONAL_DIRS)
758 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
759 $(RecursiveTargets)::
760 $(Verb) for dir in $(OPTIONAL_DIRS); do \
761 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
762 if [ ! -f $$dir/Makefile ]; then \
764 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
766 ($(MAKE) -C$$dir $@ ) || exit 1; \
770 $(RecursiveTargets)::
771 $(Verb) for dir in $(OPTIONAL_DIRS); do \
772 ($(MAKE) -C$$dir $@ ) || exit 1; \
777 #---------------------------------------------------------
778 # Handle the CONFIG_FILES options
779 #---------------------------------------------------------
784 $(Echo) Install circumvented with NO_INSTALL
786 $(Echo) UnInstall circumvented with NO_INSTALL
788 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
789 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
790 $(Verb)for file in $(CONFIG_FILES); do \
791 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
792 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
793 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
794 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
796 $(ECHO) Error: cannot find config file $${file}. ; \
801 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
802 $(Verb)for file in $(CONFIG_FILES); do \
803 $(RM) -f $(PROJ_etcdir)/$${file} ; \
809 ###############################################################################
810 # Set up variables for building libararies
811 ###############################################################################
813 #---------------------------------------------------------
814 # Define various command line options pertaining to the
815 # libraries needed when linking. There are "Proj" libs
816 # (defined by the user's project) and "LLVM" libs (defined
817 # by the LLVM project).
818 #---------------------------------------------------------
821 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
822 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
823 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
824 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
828 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
829 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
830 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
831 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
834 ifndef IS_CLEANING_TARGET
835 ifdef LINK_COMPONENTS
837 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
838 # clean in tools, then do a make in tools (instead of at the top level).
840 @echo "*** llvm-config doesn't exist - rebuilding it."
841 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
843 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
845 LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
846 LLVMLibsPaths += $(LLVM_CONFIG) \
847 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
851 ###############################################################################
852 # Library Build Rules: Four ways to build a library
853 ###############################################################################
855 #---------------------------------------------------------
856 # Bytecode Module Targets:
857 # If the user set MODULE_NAME then they want to build a
858 # bytecode module from the sources. We compile all the
859 # sources and link it together into a single bytecode
861 #---------------------------------------------------------
864 ifeq ($(strip $(LLVMGCC)),)
865 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
868 Module := $(LibDir)/$(MODULE_NAME).bc
869 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
872 ifdef EXPORTED_SYMBOL_FILE
873 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
876 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
877 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
878 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
880 all-local:: $(Module)
883 ifneq ($(strip $(Module)),)
884 -$(Verb) $(RM) -f $(Module)
887 ifdef BYTECODE_DESTINATION
888 ModuleDestDir := $(BYTECODE_DESTINATION)
890 ModuleDestDir := $(PROJ_libdir)
895 $(Echo) Install circumvented with NO_INSTALL
897 $(Echo) Uninstall circumvented with NO_INSTALL
899 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
901 install-module:: $(DestModule)
902 install-local:: $(DestModule)
904 $(DestModule): $(ModuleDestDir) $(Module)
905 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
906 $(Verb) $(DataInstall) $(Module) $(DestModule)
909 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
910 -$(Verb) $(RM) -f $(DestModule)
916 # if we're building a library ...
919 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
920 LIBRARYNAME := $(strip $(LIBRARYNAME))
921 ifdef LOADABLE_MODULE
922 LibName.A := $(LibDir)/$(LIBRARYNAME).a
923 LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
925 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
926 LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
928 LibName.O := $(LibDir)/$(LIBRARYNAME).o
929 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
931 #---------------------------------------------------------
932 # Shared Library Targets:
933 # If the user asked for a shared library to be built
934 # with the SHARED_LIBRARY variable, then we provide
935 # targets for building them.
936 #---------------------------------------------------------
939 all-local:: $(LibName.SO)
941 ifdef LINK_LIBS_IN_SHARED
942 ifdef LOADABLE_MODULE
943 SharedLibKindMessage := "Loadable Module"
945 SharedLibKindMessage := "Shared Library"
947 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
948 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
949 $(LIBRARYNAME)$(SHLIBEXT)
950 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
951 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
953 $(LibName.SO): $(ObjectsO) $(LibDir)/.dir
954 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
955 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
959 ifneq ($(strip $(LibName.SO)),)
960 -$(Verb) $(RM) -f $(LibName.SO)
965 $(Echo) Install circumvented with NO_INSTALL
967 $(Echo) Uninstall circumvented with NO_INSTALL
969 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
971 install-local:: $(DestSharedLib)
973 $(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
974 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
975 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
978 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
979 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
983 #---------------------------------------------------------
984 # Bytecode Library Targets:
985 # If the user asked for a bytecode library to be built
986 # with the BYTECODE_LIBRARY variable, then we provide
987 # targets for building them.
988 #---------------------------------------------------------
989 ifdef BYTECODE_LIBRARY
990 ifeq ($(strip $(LLVMGCC)),)
991 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
994 all-local:: $(LibName.BCA)
996 ifdef EXPORTED_SYMBOL_FILE
997 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
998 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1000 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1001 $(LLVMToolDir)/llvm-ar
1002 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1004 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
1006 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
1008 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1009 $(LLVMToolDir)/llvm-ar
1010 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1012 $(Verb) $(LArchive) $@ $(ObjectsBC)
1017 ifneq ($(strip $(LibName.BCA)),)
1018 -$(Verb) $(RM) -f $(LibName.BCA)
1021 ifdef BYTECODE_DESTINATION
1022 BytecodeDestDir := $(BYTECODE_DESTINATION)
1024 BytecodeDestDir := $(PROJ_libdir)
1027 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1029 install-bytecode-local:: $(DestBytecodeLib)
1033 $(Echo) Install circumvented with NO_INSTALL
1035 $(Echo) Uninstall circumvented with NO_INSTALL
1037 install-local:: $(DestBytecodeLib)
1039 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1040 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1041 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1044 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1045 -$(Verb) $(RM) -f $(DestBytecodeLib)
1050 #---------------------------------------------------------
1051 # ReLinked Library Targets:
1052 # If the user explicitly requests a relinked library with
1053 # BUILD_RELINKED, provide it. Otherwise, if they specify
1054 # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
1056 #---------------------------------------------------------
1057 ifndef BUILD_ARCHIVE
1058 ifndef DONT_BUILD_RELINKED
1063 ifdef BUILD_RELINKED
1065 all-local:: $(LibName.O)
1067 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
1068 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
1069 $(Verb) $(Relink) -r -nodefaultlibs -nostdlib -nostartfiles -o $@ $(ObjectsO)
1072 ifneq ($(strip $(LibName.O)),)
1073 -$(Verb) $(RM) -f $(LibName.O)
1078 $(Echo) Install circumvented with NO_INSTALL
1080 $(Echo) Uninstall circumvented with NO_INSTALL
1082 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
1084 install-local:: $(DestRelinkedLib)
1086 $(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
1087 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
1088 $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
1091 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1092 -$(Verb) $(RM) -f $(DestRelinkedLib)
1096 #---------------------------------------------------------
1097 # Archive Library Targets:
1098 # If the user wanted a regular archive library built,
1099 # then we provide targets for building them.
1100 #---------------------------------------------------------
1103 all-local:: $(LibName.A)
1105 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1106 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1107 -$(Verb) $(RM) -f $@
1108 $(Verb) $(Archive) $@ $(ObjectsO)
1109 $(Verb) $(Ranlib) $@
1112 ifneq ($(strip $(LibName.A)),)
1113 -$(Verb) $(RM) -f $(LibName.A)
1118 $(Echo) Install circumvented with NO_INSTALL
1120 $(Echo) Uninstall circumvented with NO_INSTALL
1122 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1124 install-local:: $(DestArchiveLib)
1126 $(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
1127 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1128 $(Verb) $(MKDIR) $(PROJ_libdir)
1129 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1132 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1133 -$(Verb) $(RM) -f $(DestArchiveLib)
1140 ###############################################################################
1141 # Tool Build Rules: Build executable tool based on TOOLNAME option
1142 ###############################################################################
1146 #---------------------------------------------------------
1147 # Set up variables for building a tool.
1148 #---------------------------------------------------------
1150 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1152 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1155 #---------------------------------------------------------
1157 #---------------------------------------------------------
1159 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1160 # not exporting all of the weak symbols from the binary. This reduces dyld
1161 # startup time by 4x on darwin in some cases.
1162 ifdef TOOL_NO_EXPORTS
1165 # Tiger tools don't support this.
1166 ifneq ($(DARWIN_MAJVERS),4)
1167 LD.Flags += -Wl,-exported_symbol -Wl,_main
1171 ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
1172 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1177 #---------------------------------------------------------
1178 # Provide targets for building the tools
1179 #---------------------------------------------------------
1180 all-local:: $(ToolBuildPath)
1183 ifneq ($(strip $(ToolBuildPath)),)
1184 -$(Verb) $(RM) -f $(ToolBuildPath)
1188 $(ToolBuildPath): $(ExmplDir)/.dir
1190 $(ToolBuildPath): $(ToolDir)/.dir
1193 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1194 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1195 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1196 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1197 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1202 $(Echo) Install circumvented with NO_INSTALL
1204 $(Echo) Uninstall circumvented with NO_INSTALL
1206 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1208 install-local:: $(DestTool)
1210 $(DestTool): $(ToolBuildPath) $(PROJ_bindir)
1211 $(Echo) Installing $(BuildMode) $(DestTool)
1212 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1215 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1216 -$(Verb) $(RM) -f $(DestTool)
1220 ###############################################################################
1221 # Object Build Rules: Build object files based on sources
1222 ###############################################################################
1224 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1226 DISABLE_AUTO_DEPENDENCIES=1
1229 # Provide rule sets for when dependency generation is enabled
1230 ifndef DISABLE_AUTO_DEPENDENCIES
1232 #---------------------------------------------------------
1233 # Create .o files in the ObjDir directory from the .cpp and .c files...
1234 #---------------------------------------------------------
1236 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1237 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1239 # If the build succeeded, move the dependency file over, otherwise
1241 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1242 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1244 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1245 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1246 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1249 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1250 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1251 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1254 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1255 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1256 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1259 #---------------------------------------------------------
1260 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1261 #---------------------------------------------------------
1263 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1264 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1266 # If the build succeeded, move the dependency file over, otherwise
1268 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1269 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1271 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1272 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1273 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1274 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1275 $(BC_DEPEND_MOVEFILE)
1277 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1278 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1279 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1280 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1281 $(BC_DEPEND_MOVEFILE)
1283 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1284 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1285 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1286 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1287 $(BC_DEPEND_MOVEFILE)
1289 # Provide alternate rule sets if dependencies are disabled
1292 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1293 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1294 $(Compile.CXX) $< -o $@
1296 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1297 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1298 $(Compile.CXX) $< -o $@
1300 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1301 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1302 $(Compile.C) $< -o $@
1304 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1305 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1306 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1308 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1309 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1310 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1312 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1313 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1314 $(BCCompile.C) $< -o $@ -S -emit-llvm
1319 ## Rules for building preprocessed (.i/.ii) outputs.
1320 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1321 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1322 $(Verb) $(Preprocess.CXX) $< -o $@
1324 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1325 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1326 $(Verb) $(Preprocess.CXX) $< -o $@
1328 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1329 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1330 $(Verb) $(Preprocess.C) $< -o $@
1333 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1334 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1335 $(Compile.CXX) $< -o $@ -S
1337 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1338 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1339 $(Compile.CXX) $< -o $@ -S
1341 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1342 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1343 $(Compile.C) $< -o $@ -S
1346 # make the C and C++ compilers strip debug info out of bytecode libraries.
1348 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1349 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1350 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1352 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1353 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1354 $(Verb) $(LLVMAS) $< -o - | \
1355 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1359 #---------------------------------------------------------
1360 # Provide rule to build .bc files from .ll sources,
1361 # regardless of dependencies
1362 #---------------------------------------------------------
1363 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1364 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1365 $(Verb) $(LLVMAS) $< -f -o $@
1367 ###############################################################################
1368 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1369 ###############################################################################
1372 TABLEGEN_INC_FILES_COMMON = 1
1375 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1376 TABLEGEN_INC_FILES_COMMON = 1
1379 ifdef TABLEGEN_INC_FILES_COMMON
1381 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1382 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1383 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1385 # INCFiles rule: All of the tblgen generated files are emitted to
1386 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1387 # us to only "touch" the real file if the contents of it change. IOW, if
1388 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1389 # dependencies of the .inc files are, unless the contents of the .inc file
1391 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1392 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1394 endif # TABLEGEN_INC_FILES_COMMON
1398 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1399 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1400 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1401 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1402 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1403 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1404 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1406 # All of these files depend on tblgen and the .td files.
1407 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1409 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1410 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1411 $(Echo) "Building $(<F) register names with tblgen"
1412 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1414 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1415 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1416 $(Echo) "Building $(<F) register information header with tblgen"
1417 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1419 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1420 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1421 $(Echo) "Building $(<F) register info implementation with tblgen"
1422 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1424 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1425 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1426 $(Echo) "Building $(<F) instruction names with tblgen"
1427 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1429 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1430 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1431 $(Echo) "Building $(<F) instruction information with tblgen"
1432 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1434 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1435 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1436 $(Echo) "Building $(<F) assembly writer with tblgen"
1437 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1439 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1440 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1441 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1442 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1444 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1445 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1446 $(Echo) "Building $(<F) code emitter with tblgen"
1447 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1449 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1450 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1451 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1452 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1454 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1455 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1456 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1457 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1459 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1460 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1461 $(Echo) "Building $(<F) subtarget information with tblgen"
1462 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1464 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1465 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1466 $(Echo) "Building $(<F) calling convention information with tblgen"
1467 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1469 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1470 $(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1471 $(Echo) "Building $(<F) calling convention information with tblgen"
1472 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1475 -$(Verb) $(RM) -f $(INCFiles)
1479 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1481 LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1482 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1484 TDFiles := $(LLVMCPluginSrc) \
1485 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1487 $(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1488 $(TBLGEN) $(TD_COMMON)
1489 $(Echo) "Building LLVMC configuration library with tblgen"
1490 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1492 endif # LLVMC_BUILD_AUTOGENERATED_INC
1494 ###############################################################################
1495 # OTHER RULES: Other rules needed
1496 ###############################################################################
1498 # To create postscript files from dot files...
1499 ifneq ($(DOT),false)
1501 $(DOT) -Tps < $< > $@
1504 $(Echo) "Cannot build $@: The program dot is not installed"
1507 # This rules ensures that header files that are removed still have a rule for
1508 # which they can be "generated." This allows make to ignore them and
1509 # reproduce the dependency lists.
1513 # Define clean-local to clean the current directory. Note that this uses a
1514 # very conservative approach ensuring that empty variables do not cause
1515 # errors or disastrous removal.
1517 ifneq ($(strip $(ObjRootDir)),)
1518 -$(Verb) $(RM) -rf $(ObjRootDir)
1520 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1521 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1522 -$(Verb) $(RM) -f *$(SHLIBEXT)
1526 -$(Verb) $(RM) -rf Debug Release Profile
1529 ###############################################################################
1530 # DEPENDENCIES: Include the dependency files if we should
1531 ###############################################################################
1532 ifndef DISABLE_AUTO_DEPENDENCIES
1534 # If its not one of the cleaning targets
1535 ifndef IS_CLEANING_TARGET
1537 # Get the list of dependency files
1538 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1539 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1541 # Include bitcode dependency files if using bitcode libraries
1542 ifdef BYTECODE_LIBRARY
1543 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1546 -include $(DependFiles) ""
1552 ###############################################################################
1553 # CHECK: Running the test suite
1554 ###############################################################################
1557 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1558 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1559 $(EchoCmd) Running test suite ; \
1560 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1561 TESTSUITE=$(TESTSUITE) ; \
1563 $(EchoCmd) No Makefile in test directory ; \
1566 $(EchoCmd) No test directory ; \
1569 ###############################################################################
1570 # UNITTESTS: Running the unittests test suite
1571 ###############################################################################
1574 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1575 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1576 $(EchoCmd) Running unittests test suite ; \
1577 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1579 $(EchoCmd) No Makefile in unittests directory ; \
1582 $(EchoCmd) No unittests directory ; \
1585 ###############################################################################
1586 # DISTRIBUTION: Handle construction of a distribution tarball
1587 ###############################################################################
1589 #------------------------------------------------------------------------
1590 # Define distribution related variables
1591 #------------------------------------------------------------------------
1592 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1593 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1594 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1595 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1596 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1597 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1598 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1599 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1600 Makefile.config.in configure autoconf
1601 DistOther := $(notdir $(wildcard \
1602 $(PROJ_SRC_DIR)/*.h \
1603 $(PROJ_SRC_DIR)/*.td \
1604 $(PROJ_SRC_DIR)/*.def \
1605 $(PROJ_SRC_DIR)/*.ll \
1606 $(PROJ_SRC_DIR)/*.in))
1607 DistSubDirs := $(SubDirs)
1608 DistSources = $(Sources) $(EXTRA_DIST)
1609 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1611 #------------------------------------------------------------------------
1612 # We MUST build distribution with OBJ_DIR != SRC_DIR
1613 #------------------------------------------------------------------------
1614 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1615 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1616 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1620 #------------------------------------------------------------------------
1621 # Prevent attempt to run dist targets from anywhere but the top level
1622 #------------------------------------------------------------------------
1624 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1625 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1628 #------------------------------------------------------------------------
1629 # Provide the top level targets
1630 #------------------------------------------------------------------------
1632 dist-gzip:: $(DistTarGZip)
1634 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1635 $(Echo) Packing gzipped distribution tar file.
1636 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1637 $(GZIP) -c > "$(DistTarGZip)"
1639 dist-bzip2:: $(DistTarBZ2)
1641 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1642 $(Echo) Packing bzipped distribution tar file.
1643 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1644 $(BZIP2) -c >$(DistTarBZ2)
1646 dist-zip:: $(DistZip)
1648 $(DistZip) : $(TopDistDir)/.makedistdir
1649 $(Echo) Packing zipped distribution file.
1650 $(Verb) rm -f $(DistZip)
1651 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1653 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1654 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1656 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1658 dist-check:: $(DistTarGZip)
1659 $(Echo) Checking distribution tar file.
1660 $(Verb) if test -d $(DistCheckDir) ; then \
1661 $(RM) -rf $(DistCheckDir) ; \
1663 $(Verb) $(MKDIR) $(DistCheckDir)
1664 $(Verb) cd $(DistCheckDir) && \
1665 $(MKDIR) $(DistCheckDir)/build && \
1666 $(MKDIR) $(DistCheckDir)/install && \
1667 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1669 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1670 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1673 $(MAKE) unittests && \
1674 $(MAKE) install && \
1675 $(MAKE) uninstall && \
1676 $(MAKE) dist-clean && \
1677 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1680 $(Echo) Cleaning distribution files
1681 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1686 #------------------------------------------------------------------------
1687 # Provide the recursive distdir target for building the distribution directory
1688 #------------------------------------------------------------------------
1689 distdir: $(DistDir)/.makedistdir
1690 $(DistDir)/.makedistdir: $(DistSources)
1691 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1692 if test -d "$(DistDir)" ; then \
1693 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1696 $(EchoCmd) Removing old $(DistDir) ; \
1697 $(RM) -rf $(DistDir); \
1698 $(EchoCmd) Making 'all' to verify build ; \
1699 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1701 $(Echo) Building Distribution Directory $(DistDir)
1702 $(Verb) $(MKDIR) $(DistDir)
1703 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1704 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1705 for file in $(DistFiles) ; do \
1707 $(PROJ_SRC_DIR)/*) \
1708 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1710 $(PROJ_SRC_ROOT)/*) \
1711 file=`echo "$$file" | \
1712 sed "s#^$$srcrootstrip/##"` \
1715 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1716 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1717 from_dir="$(PROJ_SRC_DIR)" ; \
1718 elif test -f "$$file" || test -d "$$file" ; then \
1721 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1722 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1723 to_dir="$(DistDir)/$$dir"; \
1724 $(MKDIR) "$$to_dir" ; \
1726 to_dir="$(DistDir)"; \
1728 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1729 if test -n "$$mid_dir" ; then \
1730 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1732 if test -d "$$from_dir/$$file"; then \
1733 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1734 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1735 cd $(PROJ_SRC_DIR) ; \
1736 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1737 ( cd $$to_dir ; $(TAR) xf - ) ; \
1738 cd $(PROJ_OBJ_DIR) ; \
1741 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1742 ( cd $$to_dir ; $(TAR) xf - ) ; \
1743 cd $(PROJ_OBJ_DIR) ; \
1745 elif test -f "$$from_dir/$$file" ; then \
1746 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1747 elif test -L "$$from_dir/$$file" ; then \
1748 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1749 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1750 $(EchoCmd) "===== WARNING: Distribution Source " \
1751 "$$from_dir/$$file Not Found!" ; \
1752 elif test "$(Verb)" != '@' ; then \
1753 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1756 $(Verb) for subdir in $(DistSubDirs) ; do \
1757 if test "$$subdir" \!= "." ; then \
1758 new_distdir="$(DistDir)/$$subdir" ; \
1759 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1760 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1761 DistDir="$$new_distdir" distdir ) || exit 1; \
1764 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1765 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1766 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1767 -name .svn \) -print` ;\
1768 $(MAKE) dist-hook ; \
1769 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1770 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1771 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1772 -o ! -type d ! -perm -444 -exec \
1773 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1774 || chmod -R a+r $(DistDir) ; \
1777 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1783 ###############################################################################
1784 # TOP LEVEL - targets only to apply at the top level directory
1785 ###############################################################################
1789 #------------------------------------------------------------------------
1790 # Install support for the project's include files:
1791 #------------------------------------------------------------------------
1794 $(Echo) Install circumvented with NO_INSTALL
1796 $(Echo) Uninstall circumvented with NO_INSTALL
1799 $(Echo) Installing include files
1800 $(Verb) $(MKDIR) $(PROJ_includedir)
1801 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1802 cd $(PROJ_SRC_ROOT)/include && \
1803 for hdr in `find . -type f '!' '(' -name '*~' \
1804 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1805 grep -v .svn` ; do \
1806 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1807 if test \! -d "$$instdir" ; then \
1808 $(EchoCmd) Making install directory $$instdir ; \
1809 $(MKDIR) $$instdir ;\
1811 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1814 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1815 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1816 cd $(PROJ_OBJ_ROOT)/include && \
1817 for hdr in `find . -type f -print | grep -v CVS` ; do \
1818 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1824 $(Echo) Uninstalling include files
1825 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1826 cd $(PROJ_SRC_ROOT)/include && \
1827 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1828 '!' '(' -name '*~' -o -name '.#*' \
1829 -o -name '*.in' ')' -print ')' | \
1830 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1831 cd $(PROJ_SRC_ROOT)/include && \
1832 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1833 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1839 @echo searching for overlength lines in files: $(Sources)
1842 egrep -n '.{81}' $(Sources) /dev/null
1845 @echo searching for tabs in files: $(Sources)
1848 egrep -n ' ' $(Sources) /dev/null
1851 @ls -l $(LibDir) | awk '\
1852 BEGIN { sum = 0; } \
1854 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1855 @ls -l $(ToolDir) | awk '\
1856 BEGIN { sum = 0; } \
1858 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1859 #------------------------------------------------------------------------
1860 # Print out the directories used for building
1861 #------------------------------------------------------------------------
1863 $(Echo) "BuildMode : " '$(BuildMode)'
1864 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1865 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1866 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1867 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1868 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1869 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1870 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1871 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1872 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1873 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1874 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1875 $(Echo) "UserTargets : " '$(UserTargets)'
1876 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1877 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1878 $(Echo) "ObjDir : " '$(ObjDir)'
1879 $(Echo) "LibDir : " '$(LibDir)'
1880 $(Echo) "ToolDir : " '$(ToolDir)'
1881 $(Echo) "ExmplDir : " '$(ExmplDir)'
1882 $(Echo) "Sources : " '$(Sources)'
1883 $(Echo) "TDFiles : " '$(TDFiles)'
1884 $(Echo) "INCFiles : " '$(INCFiles)'
1885 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1886 $(Echo) "PreConditions: " '$(PreConditions)'
1887 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1888 $(Echo) "Compile.C : " '$(Compile.C)'
1889 $(Echo) "Archive : " '$(Archive)'
1890 $(Echo) "YaccFiles : " '$(YaccFiles)'
1891 $(Echo) "LexFiles : " '$(LexFiles)'
1892 $(Echo) "Module : " '$(Module)'
1893 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1894 $(Echo) "SubDirs : " '$(SubDirs)'
1895 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1896 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
1901 # General debugging rule, use 'make dbg-print-XXX' to print the
1902 # definition, value and origin of XXX.
1904 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))