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
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 .y .l .lo .o .a .bc .td .ps .dot .ll
45 .SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
47 #--------------------------------------------------------------------
48 # Mark all of these targets as phony to avoid implicit rule search
49 #--------------------------------------------------------------------
50 .PHONY: $(UserTargets) $(InternalTargets)
52 #--------------------------------------------------------------------
53 # Make sure all the user-target rules are double colon rules and
54 # they are defined first.
55 #--------------------------------------------------------------------
59 ################################################################################
60 # PRECONDITIONS: that which must be built/checked first
61 ################################################################################
63 SrcMakefiles := $(filter %Makefile %Makefile.tests,\
64 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
65 ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
66 ConfigureScript := $(PROJ_SRC_ROOT)/configure
67 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
68 MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
69 MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
70 MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
71 MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
72 PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
73 ifneq ($(MakefileCommonIn),)
74 PreConditions += $(MakefileCommon)
77 ifneq ($(MakefileConfigIn),)
78 PreConditions += $(MakefileConfig)
81 preconditions: $(PreConditions)
83 #------------------------------------------------------------------------
84 # Make sure the BUILT_SOURCES are built first
85 #------------------------------------------------------------------------
86 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
89 ifneq ($(strip $(BUILT_SOURCES)),)
90 -$(Verb) $(RM) -f $(BUILT_SOURCES)
93 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
95 $(Verb) if test -x config.status ; then \
96 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
97 $(MKDIR) .spotless.save ; \
98 $(MV) config.status .spotless.save ; \
99 $(MV) mklib .spotless.save ; \
100 $(MV) projects .spotless.save ; \
102 $(MV) .spotless.save/config.status . ; \
103 $(MV) .spotless.save/mklib . ; \
104 $(MV) .spotless.save/projects . ; \
105 $(RM) -rf .spotless.save ; \
106 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
107 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108 $(ConfigStatusScript) ; \
110 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
114 $(EchoCmd) "spotless target not supported for objdir == srcdir"
117 $(BUILT_SOURCES) : $(ObjMakefiles)
119 #------------------------------------------------------------------------
120 # Make sure we're not using a stale configuration
121 #------------------------------------------------------------------------
123 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
124 $(Verb) cd $(PROJ_OBJ_ROOT) && \
125 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
126 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
128 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129 $(ConfigStatusScript)
131 .PRECIOUS: $(ConfigStatusScript)
132 $(ConfigStatusScript): $(ConfigureScript)
133 $(Echo) Reconfiguring with $<
134 $(Verb) cd $(PROJ_OBJ_ROOT) && \
135 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
138 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139 $(ConfigStatusScript)
141 #------------------------------------------------------------------------
142 # Make sure the configuration makefile is up to date
143 #------------------------------------------------------------------------
144 ifneq ($(MakefileConfigIn),)
145 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
146 $(Echo) Regenerating $@
147 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
150 ifneq ($(MakefileCommonIn),)
151 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
152 $(Echo) Regenerating $@
153 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
156 #------------------------------------------------------------------------
157 # If the Makefile in the source tree has been updated, copy it over into the
158 # build tree. But, only do this if the source and object makefiles differ
159 #------------------------------------------------------------------------
160 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
162 Makefile: $(PROJ_SRC_DIR)/Makefile $(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 # VARIABLES: Set up various variables based on configuration data
196 ###############################################################################
198 # Variable for if this make is for a "cleaning" target
199 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
203 #--------------------------------------------------------------------
204 # Variables derived from configuration we are building
205 #--------------------------------------------------------------------
208 # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
209 # this can be overridden on the make command line.
211 OPTIMIZE_OPTION := -O3
213 OPTIMIZE_OPTION := -O2
216 ifdef ENABLE_PROFILING
218 CXX.Flags += $(OPTIMIZE_OPTION) -pg -g
219 C.Flags += $(OPTIMIZE_OPTION) -pg -g
220 LD.Flags += $(OPTIMIZE_OPTION) -pg -g
223 ifeq ($(ENABLE_OPTIMIZED),1)
225 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
226 ifneq ($(OS),FreeBSD)
228 OmitFramePointer := -fomit-frame-pointer
232 # Darwin requires -fstrict-aliasing to be explicitly enabled.
234 EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
237 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
238 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
239 LD.Flags += $(OPTIMIZE_OPTION)
249 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
250 # CXX.Flags += -fvisibility-inlines-hidden
253 # IF REQUIRES_EH=1 is specified then don't disable exceptions
255 CXX.Flags += -fno-exceptions
258 # IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
260 # CXX.Flags += -fno-rtti
263 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
264 # then disable assertions by defining the appropriate preprocessor symbols.
265 ifdef DISABLE_ASSERTIONS
266 BuildMode := $(BuildMode)-Asserts
267 CPP.Defines += -DNDEBUG
269 CPP.Defines += -D_DEBUG
272 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
273 # configured), then enable expensive checks by defining the
274 # appropriate preprocessor symbols.
275 ifdef ENABLE_EXPENSIVE_CHECKS
276 BuildMode := $(BuildMode)+Checks
277 CPP.Defines += -D_GLIBCXX_DEBUG
280 ifeq ($(ENABLE_PIC),1)
285 CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
287 CPP.Defines += $(CPPFLAGS)
288 CPP.BaseFlags += $(CPP.Defines)
289 LD.Flags += $(LDFLAGS)
291 LibTool.Flags := --tag=CXX
293 # Make Floating point IEEE compliant on Alpha.
296 CPP.BaseFlags += -mieee
297 ifeq ($(ENABLE_PIC),0)
299 CPP.BaseFlags += -fPIC
304 LD.Flags += -Wl,--no-relax
307 #--------------------------------------------------------------------
308 # Directory locations
309 #--------------------------------------------------------------------
311 ifeq ($(LLVM_CROSS_COMPILING),1)
312 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
315 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
316 ObjDir := $(ObjRootDir)
317 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
318 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
319 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
320 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
321 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
322 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
323 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
325 #--------------------------------------------------------------------
326 # Full Paths To Compiled Tools and Utilities
327 #--------------------------------------------------------------------
328 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
331 LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
334 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
337 ifeq ($(LLVM_CROSS_COMPILING),1)
338 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
340 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
343 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
345 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
348 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
351 LLI := $(LLVMToolDir)/lli$(EXEEXT)
354 LLC := $(LLVMToolDir)/llc$(EXEEXT)
357 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
360 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
363 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
365 ifeq ($(LLVMGCC_MAJVERS),3)
366 UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
367 UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
368 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
369 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
373 LLVMGCCWITHPATH := $(LLVMGCC)
374 LLVMGXXWITHPATH := $(LLVMGXX)
377 #--------------------------------------------------------------------
378 # Adjust to user's request
379 #--------------------------------------------------------------------
381 # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
382 # to be built. Note that if LOADABLE_MODULE is specified then the resulting
383 # shared library can be opened with dlopen. Also, LOADABLE_MODULE implies
384 # several other things so we force them to be defined/on.
385 ifdef LOADABLE_MODULE
387 DONT_BUILD_RELINKED := 1
388 LINK_LIBS_IN_SHARED := 1
393 LD.Flags += -rpath $(LibDir)
395 LibTool.Flags += --tag=disable-shared
405 # Adjust settings for verbose mode
408 LibTool.Flags += --silent
409 AR.Flags += >/dev/null 2>/dev/null
410 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
412 ConfigureScriptFLAGS :=
415 # By default, strip symbol information from executable
417 Strip := $(PLATFORMSTRIPOPTS)
418 StripWarnMsg := "(without symbols)"
419 Install.StripFlag += -s
422 # Adjust linker flags for building an executable
425 LD.Flags += -rpath $(ExmplDir) -export-dynamic
427 LD.Flags += -rpath $(ToolDir) -export-dynamic
431 #----------------------------------------------------------
432 # Options To Invoke Tools
433 #----------------------------------------------------------
435 CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
436 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
439 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
442 # If we are building a universal binary on Mac OS/X, pass extra options. This
443 # is useful to people that want to link the LLVM libraries into their universal
446 # The following can be optionally specified:
447 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
448 # For Mac OS/X 10.4 Intel machines, the traditional one is:
449 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
450 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
451 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
454 ifndef UNIVERSAL_ARCH
455 UNIVERSAL_ARCH := i386 ppc
457 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
458 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
459 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
460 ifdef UNIVERSAL_SDK_PATH
461 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
462 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
465 # Building universal cannot compute dependencies automatically.
466 DISABLE_AUTO_DEPENDENCIES=1
470 CPP.BaseFlags += -include llvm/System/Solaris.h
473 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
474 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
475 # All -I flags should go here, so that they don't confuse llvm-config.
476 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
477 $(patsubst %,-I%/include,\
478 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
479 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
482 ifeq ($(BUILD_COMPONENT), 1)
483 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
484 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
485 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
486 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
488 Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
491 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
492 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
493 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
494 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
496 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
500 LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
501 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
502 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
504 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
505 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
508 LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
509 LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
510 LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
512 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
513 ScriptInstall = $(INSTALL) -m 0755
514 DataInstall = $(INSTALL) -m 0644
516 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
517 # paths. In this case, the SYSPATH function (defined in
518 # Makefile.config) transforms Unix paths into Windows paths.
519 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
520 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
521 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
523 Archive = $(AR) $(AR.Flags)
524 LArchive = $(LLVMToolDir)/llvm-ar rcsf
531 #----------------------------------------------------------
532 # Get the list of source files and compute object file
534 #----------------------------------------------------------
537 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
538 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
539 $(PROJ_SRC_DIR)/*.l))
541 Sources := $(SOURCES)
545 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
548 BaseNameSources := $(sort $(basename $(Sources)))
550 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
551 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
552 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
554 ###############################################################################
555 # DIRECTORIES: Handle recursive descent of directory structure
556 ###############################################################################
558 #---------------------------------------------------------
559 # Provide rules to make install dirs. This must be early
560 # in the file so they get built before dependencies
561 #---------------------------------------------------------
563 $(PROJ_bindir): $(PROJ_bindir)/.dir
564 $(PROJ_libdir): $(PROJ_libdir)/.dir
565 $(PROJ_includedir): $(PROJ_includedir)/.dir
566 $(PROJ_etcdir): $(PROJ_etcdir)/.dir
568 # To create other directories, as needed, and timestamp their creation
570 $(Verb) $(MKDIR) $* > /dev/null
573 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
574 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
576 #---------------------------------------------------------
577 # Handle the DIRS options for sequential construction
578 #---------------------------------------------------------
584 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
585 $(RecursiveTargets)::
586 $(Verb) for dir in $(DIRS); do \
587 if [ ! -f $$dir/Makefile ]; then \
589 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
591 ($(MAKE) -C $$dir $@ ) || exit 1; \
594 $(RecursiveTargets)::
595 $(Verb) for dir in $(DIRS); do \
596 ($(MAKE) -C $$dir $@ ) || exit 1; \
602 #---------------------------------------------------------
603 # Handle the EXPERIMENTAL_DIRS options ensuring success
604 # after each directory is built.
605 #---------------------------------------------------------
606 ifdef EXPERIMENTAL_DIRS
607 $(RecursiveTargets)::
608 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
609 if [ ! -f $$dir/Makefile ]; then \
611 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
613 ($(MAKE) -C $$dir $@ ) || exit 0; \
617 #-----------------------------------------------------------
618 # Handle the PARALLEL_DIRS options for parallel construction
619 #-----------------------------------------------------------
622 SubDirs += $(PARALLEL_DIRS)
624 # Unfortunately, this list must be maintained if new recursive targets are added
625 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
626 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
627 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
628 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
629 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
630 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
632 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
635 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
637 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
639 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
642 #---------------------------------------------------------
643 # Handle the OPTIONAL_DIRS options for directores that may
645 #---------------------------------------------------------
648 SubDirs += $(OPTIONAL_DIRS)
650 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
651 $(RecursiveTargets)::
652 $(Verb) for dir in $(OPTIONAL_DIRS); do \
653 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
654 if [ ! -f $$dir/Makefile ]; then \
656 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
658 ($(MAKE) -C$$dir $@ ) || exit 1; \
662 $(RecursiveTargets)::
663 $(Verb) for dir in $(OPTIONAL_DIRS); do \
664 ($(MAKE) -C$$dir $@ ) || exit 1; \
669 #---------------------------------------------------------
670 # Handle the CONFIG_FILES options
671 #---------------------------------------------------------
676 $(Echo) Install circumvented with NO_INSTALL
678 $(Echo) UnInstall circumvented with NO_INSTALL
680 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
681 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
682 $(Verb)for file in $(CONFIG_FILES); do \
683 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
684 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
685 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
686 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
688 $(ECHO) Error: cannot find config file $${file}. ; \
693 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
694 $(Verb)for file in $(CONFIG_FILES); do \
695 $(RM) -f $(PROJ_etcdir)/$${file} ; \
701 ###############################################################################
702 # Set up variables for building libararies
703 ###############################################################################
705 #---------------------------------------------------------
706 # Define various command line options pertaining to the
707 # libraries needed when linking. There are "Proj" libs
708 # (defined by the user's project) and "LLVM" libs (defined
709 # by the LLVM project).
710 #---------------------------------------------------------
713 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
714 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
715 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
716 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
720 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
721 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
722 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
723 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
726 ifndef IS_CLEANING_TARGET
727 ifdef LINK_COMPONENTS
729 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
730 # clean in tools, then do a make in tools (instead of at the top level).
732 @echo "*** llvm-config doesn't exist - rebuilding it."
733 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
735 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
737 ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
738 ProjLibsPaths += $(LLVM_CONFIG) \
739 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
743 ###############################################################################
744 # Library Build Rules: Four ways to build a library
745 ###############################################################################
747 #---------------------------------------------------------
748 # Bytecode Module Targets:
749 # If the user set MODULE_NAME then they want to build a
750 # bytecode module from the sources. We compile all the
751 # sources and link it together into a single bytecode
753 #---------------------------------------------------------
756 ifeq ($(strip $(LLVMGCC)),)
757 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
760 Module := $(LibDir)/$(MODULE_NAME).bc
761 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
764 ifdef EXPORTED_SYMBOL_FILE
765 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
768 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
769 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
770 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
772 all-local:: $(Module)
775 ifneq ($(strip $(Module)),)
776 -$(Verb) $(RM) -f $(Module)
779 ifdef BYTECODE_DESTINATION
780 ModuleDestDir := $(BYTECODE_DESTINATION)
782 ModuleDestDir := $(PROJ_libdir)
787 $(Echo) Install circumvented with NO_INSTALL
789 $(Echo) Uninstall circumvented with NO_INSTALL
791 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
793 install-module:: $(DestModule)
794 install-local:: $(DestModule)
796 $(DestModule): $(ModuleDestDir) $(Module)
797 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
798 $(Verb) $(DataInstall) $(Module) $(DestModule)
801 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
802 -$(Verb) $(RM) -f $(DestModule)
808 # if we're building a library ...
811 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
812 LIBRARYNAME := $(strip $(LIBRARYNAME))
813 ifdef LOADABLE_MODULE
814 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
816 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
818 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
819 LibName.O := $(LibDir)/$(LIBRARYNAME).o
820 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
822 #---------------------------------------------------------
823 # Shared Library Targets:
824 # If the user asked for a shared library to be built
825 # with the SHARED_LIBRARY variable, then we provide
826 # targets for building them.
827 #---------------------------------------------------------
830 all-local:: $(LibName.LA)
832 ifdef LINK_LIBS_IN_SHARED
833 ifdef LOADABLE_MODULE
834 SharedLibKindMessage := "Loadable Module"
836 SharedLibKindMessage := "Shared Library"
838 $(LibName.LA): $(ObjectsLO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
839 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
840 $(LIBRARYNAME)$(SHLIBEXT)
841 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
843 $(Verb) $(LTInstall) $@ $(LibDir)
845 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
846 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
847 $(Verb) $(LTLink) -o $@ $(ObjectsLO)
848 $(Verb) $(LTInstall) $@ $(LibDir)
852 ifneq ($(strip $(LibName.LA)),)
853 -$(Verb) $(RM) -f $(LibName.LA)
858 $(Echo) Install circumvented with NO_INSTALL
860 $(Echo) Uninstall circumvented with NO_INSTALL
862 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
864 install-local:: $(DestSharedLib)
866 $(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
867 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
868 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
869 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
872 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
873 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
877 #---------------------------------------------------------
878 # Bytecode Library Targets:
879 # If the user asked for a bytecode library to be built
880 # with the BYTECODE_LIBRARY variable, then we provide
881 # targets for building them.
882 #---------------------------------------------------------
883 ifdef BYTECODE_LIBRARY
884 ifeq ($(strip $(LLVMGCC)),)
885 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
888 all-local:: $(LibName.BCA)
890 ifdef EXPORTED_SYMBOL_FILE
891 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
892 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
894 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
895 $(LLVMToolDir)/llvm-ar
896 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
898 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
900 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
902 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
903 $(LLVMToolDir)/llvm-ar
904 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
906 $(Verb) $(LArchive) $@ $(ObjectsBC)
911 ifneq ($(strip $(LibName.BCA)),)
912 -$(Verb) $(RM) -f $(LibName.BCA)
915 ifdef BYTECODE_DESTINATION
916 BytecodeDestDir := $(BYTECODE_DESTINATION)
918 BytecodeDestDir := $(PROJ_libdir)
921 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
923 install-bytecode-local:: $(DestBytecodeLib)
927 $(Echo) Install circumvented with NO_INSTALL
929 $(Echo) Uninstall circumvented with NO_INSTALL
931 install-local:: $(DestBytecodeLib)
933 $(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA)
934 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
935 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
938 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
939 -$(Verb) $(RM) -f $(DestBytecodeLib)
944 #---------------------------------------------------------
945 # ReLinked Library Targets:
946 # If the user explicitly requests a relinked library with
947 # BUILD_RELINKED, provide it. Otherwise, if they specify
948 # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
950 #---------------------------------------------------------
952 ifndef DONT_BUILD_RELINKED
959 all-local:: $(LibName.O)
961 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
962 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
963 $(Verb) $(LTRelink) -o $@ $(ObjectsO)
966 ifneq ($(strip $(LibName.O)),)
967 -$(Verb) $(RM) -f $(LibName.O)
972 $(Echo) Install circumvented with NO_INSTALL
974 $(Echo) Uninstall circumvented with NO_INSTALL
976 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
978 install-local:: $(DestRelinkedLib)
980 $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
981 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
982 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
985 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
986 -$(Verb) $(RM) -f $(DestRelinkedLib)
990 #---------------------------------------------------------
991 # Archive Library Targets:
992 # If the user wanted a regular archive library built,
993 # then we provide targets for building them.
994 #---------------------------------------------------------
997 all-local:: $(LibName.A)
999 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1000 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1001 -$(Verb) $(RM) -f $@
1002 $(Verb) $(Archive) $@ $(ObjectsO)
1003 $(Verb) $(Ranlib) $@
1006 ifneq ($(strip $(LibName.A)),)
1007 -$(Verb) $(RM) -f $(LibName.A)
1012 $(Echo) Install circumvented with NO_INSTALL
1014 $(Echo) Uninstall circumvented with NO_INSTALL
1016 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1018 install-local:: $(DestArchiveLib)
1020 $(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
1021 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1022 $(Verb) $(MKDIR) $(PROJ_libdir)
1023 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
1026 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1027 -$(Verb) $(RM) -f $(DestArchiveLib)
1034 ###############################################################################
1035 # Tool Build Rules: Build executable tool based on TOOLNAME option
1036 ###############################################################################
1040 #---------------------------------------------------------
1041 # Set up variables for building a tool.
1042 #---------------------------------------------------------
1044 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1046 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1049 #---------------------------------------------------------
1050 # Provide targets for building the tools
1051 #---------------------------------------------------------
1052 all-local:: $(ToolBuildPath)
1055 ifneq ($(strip $(ToolBuildPath)),)
1056 -$(Verb) $(RM) -f $(ToolBuildPath)
1060 $(ToolBuildPath): $(ExmplDir)/.dir
1062 $(ToolBuildPath): $(ToolDir)/.dir
1065 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1066 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1067 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1068 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1069 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1074 $(Echo) Install circumvented with NO_INSTALL
1076 $(Echo) Uninstall circumvented with NO_INSTALL
1078 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1080 install-local:: $(DestTool)
1082 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
1083 $(Echo) Installing $(BuildMode) $(DestTool)
1084 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1087 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1088 -$(Verb) $(RM) -f $(DestTool)
1092 ###############################################################################
1093 # Object Build Rules: Build object files based on sources
1094 ###############################################################################
1096 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1098 DISABLE_AUTO_DEPENDENCIES=1
1101 ifdef SHARED_LIBRARY
1103 MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1104 MAYBE_PIC_Compile.C = $(LTCompile.C)
1106 MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1107 MAYBE_PIC_Compile.C = $(Compile.C)
1110 # Provide rule sets for when dependency generation is enabled
1111 ifndef DISABLE_AUTO_DEPENDENCIES
1113 #---------------------------------------------------------
1114 # Create .lo files in the ObjDir directory from the .cpp and .c files...
1115 #---------------------------------------------------------
1117 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1118 -MT "$(ObjDir)/$*.lo" -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1120 # If the build succeeded, move the dependency file over. If it failed, put an
1122 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1123 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1125 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1126 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1127 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1130 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1131 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1132 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1135 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1136 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1137 $(Verb) if $(MAYBE_PIC_Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1140 #---------------------------------------------------------
1141 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1142 #---------------------------------------------------------
1144 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1145 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1146 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1147 $< -o $@ -S -emit-llvm ; \
1148 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1149 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1150 $(call UPGRADE_MSG,$@)
1151 $(call UPGRADE_LL,$@)
1153 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1154 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1155 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1156 $< -o $@ -S -emit-llvm ; \
1157 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1158 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1159 $(call UPGRADE_MSG,$@)
1160 $(call UPGRADE_LL,$@)
1162 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1163 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1164 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1165 $< -o $@ -S -emit-llvm ; \
1166 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1167 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1168 $(call UPGRADE_MSG,$@)
1169 $(call UPGRADE_LL,$@)
1171 # Provide alternate rule sets if dependencies are disabled
1174 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1175 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1176 $(MAYBE_PIC_Compile.CXX) $< -o $@
1178 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1179 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1180 $(MAYBE_PIC_Compile.CXX) $< -o $@
1182 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1183 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1184 $(MAYBE_PIC_Compile.C) $< -o $@
1186 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1187 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1188 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1189 $(call UPGRADE_MSG,$@)
1190 $(call UPGRADE_LL,$@)
1192 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1193 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1194 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1195 $(call UPGRADE_MSG,$@)
1196 $(call UPGRADE_LL,$@)
1198 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1199 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1200 $(BCCompile.C) $< -o $@ -S -emit-llvm
1201 $(call UPGRADE_MSG,@)
1202 $(call UPGRADE_LL,@)
1207 ## Rules for building preprocessed (.i/.ii) outputs.
1208 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1209 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1210 $(Verb) $(Preprocess.CXX) $< -o $@
1212 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1213 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1214 $(Verb) $(Preprocess.CXX) $< -o $@
1216 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1217 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1218 $(Verb) $(Preprocess.C) $< -o $@
1221 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1222 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1223 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1225 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1226 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1227 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1229 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1230 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1231 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1234 # make the C and C++ compilers strip debug info out of bytecode libraries.
1236 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1237 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1238 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1240 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1241 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1242 $(Verb) $(LLVMAS) $< -o - | \
1243 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1247 #---------------------------------------------------------
1248 # Provide rule to build .bc files from .ll sources,
1249 # regardless of dependencies
1250 #---------------------------------------------------------
1251 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1252 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1253 $(Verb) $(LLVMAS) $< -f -o $@
1255 ###############################################################################
1256 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1257 ###############################################################################
1261 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1262 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1263 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1264 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1265 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1266 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1267 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1268 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1269 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1270 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1272 # All of these files depend on tblgen and the .td files.
1273 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1275 # INCFiles rule: All of the tblgen generated files are emitted to
1276 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1277 # us to only "touch" the real file if the contents of it change. IOW, if
1278 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1279 # dependencies of the .inc files are, unless the contents of the .inc file
1281 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1282 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1284 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1285 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1286 $(Echo) "Building $(<F) register names with tblgen"
1287 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1289 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1290 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1291 $(Echo) "Building $(<F) register information header with tblgen"
1292 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1294 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1295 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1296 $(Echo) "Building $(<F) register info implementation with tblgen"
1297 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1299 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1300 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1301 $(Echo) "Building $(<F) instruction names with tblgen"
1302 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1304 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1305 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1306 $(Echo) "Building $(<F) instruction information with tblgen"
1307 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1309 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1310 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1311 $(Echo) "Building $(<F) assembly writer with tblgen"
1312 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1314 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1315 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1316 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1317 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1319 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1320 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1321 $(Echo) "Building $(<F) code emitter with tblgen"
1322 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1324 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1325 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1326 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1327 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1329 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1330 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1331 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1332 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1334 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1335 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1336 $(Echo) "Building $(<F) subtarget information with tblgen"
1337 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1339 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1340 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1341 $(Echo) "Building $(<F) calling convention information with tblgen"
1342 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1345 -$(Verb) $(RM) -f $(INCFiles)
1349 ###############################################################################
1350 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1351 ###############################################################################
1353 #---------------------------------------------------------
1354 # Provide rules for generating a .cpp source file from
1355 # (f)lex input sources.
1356 #---------------------------------------------------------
1358 LexFiles := $(filter %.l,$(Sources))
1360 ifneq ($(LexFiles),)
1362 # Cancel built-in rules for lex
1366 all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1368 # Note the extra sed filtering here, used to cut down on the warnings emited
1369 # by GCC. The last line is a gross hack to work around flex aparently not
1370 # being able to resize the buffer on a large token input. Currently, for
1371 # uninitialized string buffers in LLVM we can generate very long tokens, so
1372 # this is a hack around it.
1373 # FIXME. (f.e. char Buffer[10000] )
1374 $(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1375 $(Echo) Flexing $*.l
1376 $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1377 $(SED) 's/void yyunput/inline void yyunput/' | \
1378 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1379 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1380 > $(PROJ_SRC_DIR)/$*.cpp
1382 # IFF the .l file has changed since it was last checked into SVN, copy the .l
1383 # file to .l.cvs and the generated .cpp file to .cpp.cvs. We use this mechanism
1384 # so that people without flex can build LLVM by copying the .cvs files to the
1385 # source location and building them.
1386 $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1387 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1388 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
1389 ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
1391 $(LexFiles:%.l=$(ObjDir)/%.o) : \
1392 $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1395 -$(Verb) $(RM) -f $(LexOutput)
1399 #---------------------------------------------------------
1400 # Provide rules for generating a .cpp and .h source files
1401 # from yacc (bison) input sources.
1402 #---------------------------------------------------------
1404 YaccFiles := $(filter %.y,$(Sources))
1405 ifneq ($(YaccFiles),)
1407 .PRECIOUS: $(YaccOutput)
1409 all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
1411 # Cancel built-in rules for yacc
1416 # Rule for building the bison based parsers...
1418 $(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1419 $(Echo) "Bisoning $*.y"
1420 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1421 $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1422 $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1424 # IFF the .y file has changed since it was last checked into SVN, copy the .y
1425 # file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs. We use this
1426 # mechanism so that people without flex can build LLVM by copying the .cvs files
1427 # to the source location and building them.
1428 $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1429 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1430 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
1432 $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
1433 $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
1436 $(PROJ_SRC_DIR)/%.cpp : $(PROJ_SRC_DIR)/%.cpp.cvs
1437 $(Echo) "Bison of $*.y SKIPPED, bison not found -- copying .cpp.cvs"
1438 $(Verb)$(CP) $(PROJ_SRC_DIR)/$*.cpp.cvs $(PROJ_SRC_DIR)/$*.cpp
1440 $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.h.cvs
1441 $(Echo) "Bison of $*.y SKIPPED, bison not found -- copying .h.cvs"
1442 $(Verb)$(CP) $(PROJ_SRC_DIR)/$*.h.cvs $(PROJ_SRC_DIR)/$*.h
1446 $(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1448 YaccOutput := $(YaccFiles:%.y=%.output)
1451 -$(Verb) $(RM) -f $(YaccOutput)
1454 ###############################################################################
1455 # OTHER RULES: Other rules needed
1456 ###############################################################################
1458 # To create postscript files from dot files...
1459 ifneq ($(DOT),false)
1461 $(DOT) -Tps < $< > $@
1464 $(Echo) "Cannot build $@: The program dot is not installed"
1467 # This rules ensures that header files that are removed still have a rule for
1468 # which they can be "generated." This allows make to ignore them and
1469 # reproduce the dependency lists.
1473 # Define clean-local to clean the current directory. Note that this uses a
1474 # very conservative approach ensuring that empty variables do not cause
1475 # errors or disastrous removal.
1477 ifneq ($(strip $(ObjRootDir)),)
1478 -$(Verb) $(RM) -rf $(ObjRootDir)
1480 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1481 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1482 -$(Verb) $(RM) -f *$(SHLIBEXT)
1486 -$(Verb) $(RM) -rf Debug Release Profile
1489 ###############################################################################
1490 # DEPENDENCIES: Include the dependency files if we should
1491 ###############################################################################
1492 ifndef DISABLE_AUTO_DEPENDENCIES
1494 # If its not one of the cleaning targets
1495 ifndef IS_CLEANING_TARGET
1497 # Get the list of dependency files
1498 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1499 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1501 -include $(DependFiles) ""
1507 ###############################################################################
1508 # CHECK: Running the test suite
1509 ###############################################################################
1512 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1513 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1514 $(EchoCmd) Running test suite ; \
1515 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1516 TESTSUITE=$(TESTSUITE) ; \
1518 $(EchoCmd) No Makefile in test directory ; \
1521 $(EchoCmd) No test directory ; \
1524 ###############################################################################
1525 # DISTRIBUTION: Handle construction of a distribution tarball
1526 ###############################################################################
1528 #------------------------------------------------------------------------
1529 # Define distribution related variables
1530 #------------------------------------------------------------------------
1531 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1532 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1533 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1534 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1535 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1536 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1537 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1538 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1539 Makefile.config.in configure autoconf
1540 DistOther := $(notdir $(wildcard \
1541 $(PROJ_SRC_DIR)/*.h \
1542 $(PROJ_SRC_DIR)/*.td \
1543 $(PROJ_SRC_DIR)/*.def \
1544 $(PROJ_SRC_DIR)/*.ll \
1545 $(PROJ_SRC_DIR)/*.in))
1546 DistSubDirs := $(SubDirs)
1547 DistSources = $(Sources) $(EXTRA_DIST)
1548 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1550 #------------------------------------------------------------------------
1551 # We MUST build distribution with OBJ_DIR != SRC_DIR
1552 #------------------------------------------------------------------------
1553 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1554 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1555 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1559 #------------------------------------------------------------------------
1560 # Prevent attempt to run dist targets from anywhere but the top level
1561 #------------------------------------------------------------------------
1563 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1564 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1567 #------------------------------------------------------------------------
1568 # Provide the top level targets
1569 #------------------------------------------------------------------------
1571 dist-gzip:: $(DistTarGZip)
1573 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1574 $(Echo) Packing gzipped distribution tar file.
1575 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1576 $(GZIP) -c > "$(DistTarGZip)"
1578 dist-bzip2:: $(DistTarBZ2)
1580 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1581 $(Echo) Packing bzipped distribution tar file.
1582 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1583 $(BZIP2) -c >$(DistTarBZ2)
1585 dist-zip:: $(DistZip)
1587 $(DistZip) : $(TopDistDir)/.makedistdir
1588 $(Echo) Packing zipped distribution file.
1589 $(Verb) rm -f $(DistZip)
1590 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1592 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1593 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1595 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1597 dist-check:: $(DistTarGZip)
1598 $(Echo) Checking distribution tar file.
1599 $(Verb) if test -d $(DistCheckDir) ; then \
1600 $(RM) -rf $(DistCheckDir) ; \
1602 $(Verb) $(MKDIR) $(DistCheckDir)
1603 $(Verb) cd $(DistCheckDir) && \
1604 $(MKDIR) $(DistCheckDir)/build && \
1605 $(MKDIR) $(DistCheckDir)/install && \
1606 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1608 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1609 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1612 $(MAKE) install && \
1613 $(MAKE) uninstall && \
1614 $(MAKE) dist-clean && \
1615 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1618 $(Echo) Cleaning distribution files
1619 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1624 #------------------------------------------------------------------------
1625 # Provide the recursive distdir target for building the distribution directory
1626 #------------------------------------------------------------------------
1627 distdir: $(DistDir)/.makedistdir
1628 $(DistDir)/.makedistdir: $(DistSources)
1629 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1630 if test -d "$(DistDir)" ; then \
1631 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1634 $(EchoCmd) Removing old $(DistDir) ; \
1635 $(RM) -rf $(DistDir); \
1636 $(EchoCmd) Making 'all' to verify build ; \
1637 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1639 $(Echo) Building Distribution Directory $(DistDir)
1640 $(Verb) $(MKDIR) $(DistDir)
1641 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1642 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1643 for file in $(DistFiles) ; do \
1645 $(PROJ_SRC_DIR)/*) \
1646 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1648 $(PROJ_SRC_ROOT)/*) \
1649 file=`echo "$$file" | \
1650 sed "s#^$$srcrootstrip/##"` \
1653 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1654 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1655 from_dir="$(PROJ_SRC_DIR)" ; \
1656 elif test -f "$$file" || test -d "$$file" ; then \
1659 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1660 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1661 to_dir="$(DistDir)/$$dir"; \
1662 $(MKDIR) "$$to_dir" ; \
1664 to_dir="$(DistDir)"; \
1666 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1667 if test -n "$$mid_dir" ; then \
1668 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1670 if test -d "$$from_dir/$$file"; then \
1671 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1672 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1673 cd $(PROJ_SRC_DIR) ; \
1674 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1675 ( cd $$to_dir ; $(TAR) xf - ) ; \
1676 cd $(PROJ_OBJ_DIR) ; \
1679 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1680 ( cd $$to_dir ; $(TAR) xf - ) ; \
1681 cd $(PROJ_OBJ_DIR) ; \
1683 elif test -f "$$from_dir/$$file" ; then \
1684 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1685 elif test -L "$$from_dir/$$file" ; then \
1686 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1687 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1688 $(EchoCmd) "===== WARNING: Distribution Source " \
1689 "$$from_dir/$$file Not Found!" ; \
1690 elif test "$(Verb)" != '@' ; then \
1691 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1694 $(Verb) for subdir in $(DistSubDirs) ; do \
1695 if test "$$subdir" \!= "." ; then \
1696 new_distdir="$(DistDir)/$$subdir" ; \
1697 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1698 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1699 DistDir="$$new_distdir" distdir ) || exit 1; \
1702 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1703 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1704 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1705 -name .svn \) -print` ;\
1706 $(MAKE) dist-hook ; \
1707 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1708 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1709 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1710 -o ! -type d ! -perm -444 -exec \
1711 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1712 || chmod -R a+r $(DistDir) ; \
1715 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1721 ###############################################################################
1722 # TOP LEVEL - targets only to apply at the top level directory
1723 ###############################################################################
1727 #------------------------------------------------------------------------
1728 # Install support for the project's include files:
1729 #------------------------------------------------------------------------
1732 $(Echo) Install circumvented with NO_INSTALL
1734 $(Echo) Uninstall circumvented with NO_INSTALL
1737 $(Echo) Installing include files
1738 $(Verb) $(MKDIR) $(PROJ_includedir)
1739 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1740 cd $(PROJ_SRC_ROOT)/include && \
1741 for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1742 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1743 grep -v .svn` ; do \
1744 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1745 if test \! -d "$$instdir" ; then \
1746 $(EchoCmd) Making install directory $$instdir ; \
1747 $(MKDIR) $$instdir ;\
1749 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1752 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1753 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1754 cd $(PROJ_OBJ_ROOT)/include && \
1755 for hdr in `find . -type f -print | grep -v CVS` ; do \
1756 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1762 $(Echo) Uninstalling include files
1763 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1764 cd $(PROJ_SRC_ROOT)/include && \
1765 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1766 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1767 -o -name '*.in' ')' -print ')' | \
1768 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1769 cd $(PROJ_SRC_ROOT)/include && \
1770 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1771 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1777 @echo searching for overlength lines in files: $(Sources)
1780 egrep -n '.{81}' $(Sources) /dev/null
1783 @echo searching for tabs in files: $(Sources)
1786 egrep -n ' ' $(Sources) /dev/null
1789 @ls -l $(LibDir) | awk '\
1790 BEGIN { sum = 0; } \
1792 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1793 @ls -l $(ToolDir) | awk '\
1794 BEGIN { sum = 0; } \
1796 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1797 #------------------------------------------------------------------------
1798 # Print out the directories used for building
1799 #------------------------------------------------------------------------
1801 $(Echo) "BuildMode : " '$(BuildMode)'
1802 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1803 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1804 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1805 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1806 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1807 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1808 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1809 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1810 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1811 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1812 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1813 $(Echo) "UserTargets : " '$(UserTargets)'
1814 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1815 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1816 $(Echo) "ObjDir : " '$(ObjDir)'
1817 $(Echo) "LibDir : " '$(LibDir)'
1818 $(Echo) "ToolDir : " '$(ToolDir)'
1819 $(Echo) "ExmplDir : " '$(ExmplDir)'
1820 $(Echo) "Sources : " '$(Sources)'
1821 $(Echo) "TDFiles : " '$(TDFiles)'
1822 $(Echo) "INCFiles : " '$(INCFiles)'
1823 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1824 $(Echo) "PreConditions: " '$(PreConditions)'
1825 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1826 $(Echo) "Compile.C : " '$(Compile.C)'
1827 $(Echo) "Archive : " '$(Archive)'
1828 $(Echo) "YaccFiles : " '$(YaccFiles)'
1829 $(Echo) "LexFiles : " '$(LexFiles)'
1830 $(Echo) "Module : " '$(Module)'
1831 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1832 $(Echo) "SubDirs : " '$(SubDirs)'
1833 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1834 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'