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 #--------------------------------------------------------------------
199 # Variables derived from configuration we are building
200 #--------------------------------------------------------------------
203 # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
204 # this can be overridden on the make command line.
206 OPTIMIZE_OPTION := -O3
208 OPTIMIZE_OPTION := -O2
211 ifdef ENABLE_PROFILING
213 CXX.Flags += $(OPTIMIZE_OPTION) -pg -g
214 C.Flags += $(OPTIMIZE_OPTION) -pg -g
215 LD.Flags += $(OPTIMIZE_OPTION) -pg -g
218 ifeq ($(ENABLE_OPTIMIZED),1)
220 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
221 ifneq ($(OS),FreeBSD)
223 OmitFramePointer := -fomit-frame-pointer
227 # Darwin requires -fstrict-aliasing to be explicitly enabled.
229 EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
232 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
233 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
234 LD.Flags += $(OPTIMIZE_OPTION)
244 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
245 # CXX.Flags += -fvisibility-inlines-hidden
248 # IF REQUIRES_EH=1 is specified then don't disable exceptions
250 CXX.Flags += -fno-exceptions
253 # IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
255 # CXX.Flags += -fno-rtti
258 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
259 # then disable assertions by defining the appropriate preprocessor symbols.
260 ifdef DISABLE_ASSERTIONS
261 BuildMode := $(BuildMode)-Asserts
262 CPP.Defines += -DNDEBUG
264 CPP.Defines += -D_DEBUG
267 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
268 # configured), then enable expensive checks by defining the
269 # appropriate preprocessor symbols.
270 ifdef ENABLE_EXPENSIVE_CHECKS
271 BuildMode := $(BuildMode)+Checks
272 CPP.Defines += -D_GLIBCXX_DEBUG
275 ifeq ($(ENABLE_PIC),1)
280 CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
282 CPP.Defines += $(CPPFLAGS)
283 CPP.BaseFlags += $(CPP.Defines)
284 LD.Flags += $(LDFLAGS)
286 LibTool.Flags := --tag=CXX
288 # Make Floating point IEEE compliant on Alpha.
291 CPP.BaseFlags += -mieee
292 ifeq ($(ENABLE_PIC),0)
294 CPP.BaseFlags += -fPIC
299 LD.Flags += -Wl,--no-relax
302 #--------------------------------------------------------------------
303 # Directory locations
304 #--------------------------------------------------------------------
305 ObjDir := $(PROJ_OBJ_DIR)/$(BuildMode)
306 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
307 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
308 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
309 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
310 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
311 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
312 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
314 #--------------------------------------------------------------------
315 # Full Paths To Compiled Tools and Utilities
316 #--------------------------------------------------------------------
317 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
320 LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
323 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
326 ifeq ($(LLVM_CROSS_COMPILING),1)
327 TBLGEN := $(LLVMToolDir)/tblgen$(BUILD_EXEEXT)
329 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
332 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
334 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
337 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
340 LLI := $(LLVMToolDir)/lli$(EXEEXT)
343 LLC := $(LLVMToolDir)/llc$(EXEEXT)
346 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
349 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
352 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
354 ifeq ($(LLVMGCC_MAJVERS),3)
355 UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
356 UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
357 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
358 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
362 LLVMGCCWITHPATH := $(LLVMGCC)
363 LLVMGXXWITHPATH := $(LLVMGXX)
366 #--------------------------------------------------------------------
367 # Adjust to user's request
368 #--------------------------------------------------------------------
370 # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
371 # to be built. Note that if LOADABLE_MODULE is specified then the resulting
372 # shared library can be opened with dlopen. Also, LOADABLE_MODULE implies
373 # several other things so we force them to be defined/on.
374 ifdef LOADABLE_MODULE
376 DONT_BUILD_RELINKED := 1
377 LINK_LIBS_IN_SHARED := 1
382 LD.Flags += -rpath $(LibDir)
384 LibTool.Flags += --tag=disable-shared
394 # Adjust settings for verbose mode
397 LibTool.Flags += --silent
398 AR.Flags += >/dev/null 2>/dev/null
399 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
401 ConfigureScriptFLAGS :=
404 # By default, strip symbol information from executable
406 Strip := $(PLATFORMSTRIPOPTS)
407 StripWarnMsg := "(without symbols)"
408 Install.StripFlag += -s
411 # Adjust linker flags for building an executable
414 LD.Flags += -rpath $(ExmplDir) -export-dynamic
416 LD.Flags += -rpath $(ToolDir) -export-dynamic
420 #----------------------------------------------------------
421 # Options To Invoke Tools
422 #----------------------------------------------------------
424 CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
425 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
428 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
431 # If we are building a universal binary on Mac OS/X, pass extra options. This
432 # is useful to people that want to link the LLVM libraries into their universal
435 # The following can be optionally specified:
436 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
437 # For Mac OS/X 10.4 Intel machines, the traditional one is:
438 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
439 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
440 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
443 ifndef UNIVERSAL_ARCH
444 UNIVERSAL_ARCH := i386 ppc
446 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
447 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
448 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
449 ifdef UNIVERSAL_SDK_PATH
450 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
451 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
454 # Building universal cannot compute dependencies automatically.
455 DISABLE_AUTO_DEPENDENCIES=1
459 CPP.BaseFlags += -include llvm/System/Solaris.h
462 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
463 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
464 # All -I flags should go here, so that they don't confuse llvm-config.
465 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
466 $(patsubst %,-I%/include,\
467 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
468 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
471 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
472 LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
473 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
474 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
476 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
477 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
478 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
481 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
482 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
484 LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
485 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
487 LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
488 LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
490 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
491 ScriptInstall = $(INSTALL) -m 0755
492 DataInstall = $(INSTALL) -m 0644
494 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
495 # paths. In this case, the SYSPATH function (defined in
496 # Makefile.config) transforms Unix paths into Windows paths.
497 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
498 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
499 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
501 Archive = $(AR) $(AR.Flags)
502 LArchive = $(LLVMToolDir)/llvm-ar rcsf
509 #----------------------------------------------------------
510 # Get the list of source files and compute object file
512 #----------------------------------------------------------
515 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
516 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
517 $(PROJ_SRC_DIR)/*.l))
519 Sources := $(SOURCES)
523 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
526 BaseNameSources := $(sort $(basename $(Sources)))
528 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
529 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
530 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
532 ###############################################################################
533 # DIRECTORIES: Handle recursive descent of directory structure
534 ###############################################################################
536 #---------------------------------------------------------
537 # Provide rules to make install dirs. This must be early
538 # in the file so they get built before dependencies
539 #---------------------------------------------------------
541 $(PROJ_bindir): $(PROJ_bindir)/.dir
542 $(PROJ_libdir): $(PROJ_libdir)/.dir
543 $(PROJ_includedir): $(PROJ_includedir)/.dir
544 $(PROJ_etcdir): $(PROJ_etcdir)/.dir
546 # To create other directories, as needed, and timestamp their creation
548 $(Verb) $(MKDIR) $* > /dev/null
551 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
552 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
554 #---------------------------------------------------------
555 # Handle the DIRS options for sequential construction
556 #---------------------------------------------------------
562 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
563 $(RecursiveTargets)::
564 $(Verb) for dir in $(DIRS); do \
565 if [ ! -f $$dir/Makefile ]; then \
567 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
569 ($(MAKE) -C $$dir $@ ) || exit 1; \
572 $(RecursiveTargets)::
573 $(Verb) for dir in $(DIRS); do \
574 ($(MAKE) -C $$dir $@ ) || exit 1; \
580 #---------------------------------------------------------
581 # Handle the EXPERIMENTAL_DIRS options ensuring success
582 # after each directory is built.
583 #---------------------------------------------------------
584 ifdef EXPERIMENTAL_DIRS
585 $(RecursiveTargets)::
586 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
587 if [ ! -f $$dir/Makefile ]; then \
589 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
591 ($(MAKE) -C $$dir $@ ) || exit 0; \
595 #-----------------------------------------------------------
596 # Handle the PARALLEL_DIRS options for parallel construction
597 #-----------------------------------------------------------
600 SubDirs += $(PARALLEL_DIRS)
602 # Unfortunately, this list must be maintained if new recursive targets are added
603 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
604 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
605 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
606 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
607 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
608 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
610 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
613 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
615 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
617 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
620 #---------------------------------------------------------
621 # Handle the OPTIONAL_DIRS options for directores that may
623 #---------------------------------------------------------
626 SubDirs += $(OPTIONAL_DIRS)
628 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
629 $(RecursiveTargets)::
630 $(Verb) for dir in $(OPTIONAL_DIRS); do \
631 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
632 if [ ! -f $$dir/Makefile ]; then \
634 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
636 ($(MAKE) -C$$dir $@ ) || exit 1; \
640 $(RecursiveTargets)::
641 $(Verb) for dir in $(OPTIONAL_DIRS); do \
642 ($(MAKE) -C$$dir $@ ) || exit 1; \
647 #---------------------------------------------------------
648 # Handle the CONFIG_FILES options
649 #---------------------------------------------------------
654 $(Echo) Install circumvented with NO_INSTALL
656 $(Echo) UnInstall circumvented with NO_INSTALL
658 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
659 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
660 $(Verb)for file in $(CONFIG_FILES); do \
661 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
662 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
663 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
664 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
666 $(ECHO) Error: cannot find config file $${file}. ; \
671 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
672 $(Verb)for file in $(CONFIG_FILES); do \
673 $(RM) -f $(PROJ_etcdir)/$${file} ; \
679 ###############################################################################
680 # Set up variables for building libararies
681 ###############################################################################
683 #---------------------------------------------------------
684 # Define various command line options pertaining to the
685 # libraries needed when linking. There are "Proj" libs
686 # (defined by the user's project) and "LLVM" libs (defined
687 # by the LLVM project).
688 #---------------------------------------------------------
691 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
692 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
693 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
694 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
698 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
699 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
700 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
701 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
704 ifeq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
705 ifdef LINK_COMPONENTS
707 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
708 # clean in tools, then do a make in tools (instead of at the top level).
710 @echo "*** llvm-config doesn't exist - rebuilding it."
711 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
713 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
715 ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
716 ProjLibsPaths += $(LLVM_CONFIG) \
717 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
721 ###############################################################################
722 # Library Build Rules: Four ways to build a library
723 ###############################################################################
725 #---------------------------------------------------------
726 # Bytecode Module Targets:
727 # If the user set MODULE_NAME then they want to build a
728 # bytecode module from the sources. We compile all the
729 # sources and link it together into a single bytecode
731 #---------------------------------------------------------
734 ifeq ($(strip $(LLVMGCC)),)
735 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
738 Module := $(LibDir)/$(MODULE_NAME).bc
739 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
742 ifdef EXPORTED_SYMBOL_FILE
743 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
746 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
747 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
748 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
750 all-local:: $(Module)
753 ifneq ($(strip $(Module)),)
754 -$(Verb) $(RM) -f $(Module)
757 ifdef BYTECODE_DESTINATION
758 ModuleDestDir := $(BYTECODE_DESTINATION)
760 ModuleDestDir := $(PROJ_libdir)
765 $(Echo) Install circumvented with NO_INSTALL
767 $(Echo) Uninstall circumvented with NO_INSTALL
769 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
771 install-module:: $(DestModule)
772 install-local:: $(DestModule)
774 $(DestModule): $(ModuleDestDir) $(Module)
775 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
776 $(Verb) $(DataInstall) $(Module) $(DestModule)
779 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
780 -$(Verb) $(RM) -f $(DestModule)
786 # if we're building a library ...
789 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
790 LIBRARYNAME := $(strip $(LIBRARYNAME))
791 ifdef LOADABLE_MODULE
792 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
794 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
796 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
797 LibName.O := $(LibDir)/$(LIBRARYNAME).o
798 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
800 #---------------------------------------------------------
801 # Shared Library Targets:
802 # If the user asked for a shared library to be built
803 # with the SHARED_LIBRARY variable, then we provide
804 # targets for building them.
805 #---------------------------------------------------------
808 all-local:: $(LibName.LA)
810 ifdef LINK_LIBS_IN_SHARED
811 ifdef LOADABLE_MODULE
812 SharedLibKindMessage := "Loadable Module"
814 SharedLibKindMessage := "Shared Library"
816 $(LibName.LA): $(ObjectsLO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
817 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
818 $(LIBRARYNAME)$(SHLIBEXT)
819 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
821 $(Verb) $(LTInstall) $@ $(LibDir)
823 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
824 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
825 $(Verb) $(LTLink) -o $@ $(ObjectsLO)
826 $(Verb) $(LTInstall) $@ $(LibDir)
830 ifneq ($(strip $(LibName.LA)),)
831 -$(Verb) $(RM) -f $(LibName.LA)
836 $(Echo) Install circumvented with NO_INSTALL
838 $(Echo) Uninstall circumvented with NO_INSTALL
840 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
842 install-local:: $(DestSharedLib)
844 $(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
845 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
846 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
847 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
850 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
851 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
855 #---------------------------------------------------------
856 # Bytecode Library Targets:
857 # If the user asked for a bytecode library to be built
858 # with the BYTECODE_LIBRARY variable, then we provide
859 # targets for building them.
860 #---------------------------------------------------------
861 ifdef BYTECODE_LIBRARY
862 ifeq ($(strip $(LLVMGCC)),)
863 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
866 all-local:: $(LibName.BCA)
868 ifdef EXPORTED_SYMBOL_FILE
869 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
870 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
872 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
873 $(LLVMToolDir)/llvm-ar
874 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
876 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
878 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
880 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
881 $(LLVMToolDir)/llvm-ar
882 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
884 $(Verb) $(LArchive) $@ $(ObjectsBC)
889 ifneq ($(strip $(LibName.BCA)),)
890 -$(Verb) $(RM) -f $(LibName.BCA)
893 ifdef BYTECODE_DESTINATION
894 BytecodeDestDir := $(BYTECODE_DESTINATION)
896 BytecodeDestDir := $(PROJ_libdir)
899 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
901 install-bytecode-local:: $(DestBytecodeLib)
905 $(Echo) Install circumvented with NO_INSTALL
907 $(Echo) Uninstall circumvented with NO_INSTALL
909 install-local:: $(DestBytecodeLib)
911 $(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA)
912 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
913 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
916 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
917 -$(Verb) $(RM) -f $(DestBytecodeLib)
922 #---------------------------------------------------------
923 # ReLinked Library Targets:
924 # If the user explicitly requests a relinked library with
925 # BUILD_RELINKED, provide it. Otherwise, if they specify
926 # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
928 #---------------------------------------------------------
930 ifndef DONT_BUILD_RELINKED
937 all-local:: $(LibName.O)
939 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
940 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
941 $(Verb) $(LTRelink) -o $@ $(ObjectsO)
944 ifneq ($(strip $(LibName.O)),)
945 -$(Verb) $(RM) -f $(LibName.O)
950 $(Echo) Install circumvented with NO_INSTALL
952 $(Echo) Uninstall circumvented with NO_INSTALL
954 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
956 install-local:: $(DestRelinkedLib)
958 $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
959 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
960 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
963 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
964 -$(Verb) $(RM) -f $(DestRelinkedLib)
968 #---------------------------------------------------------
969 # Archive Library Targets:
970 # If the user wanted a regular archive library built,
971 # then we provide targets for building them.
972 #---------------------------------------------------------
975 all-local:: $(LibName.A)
977 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
978 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
980 $(Verb) $(Archive) $@ $(ObjectsO)
984 ifneq ($(strip $(LibName.A)),)
985 -$(Verb) $(RM) -f $(LibName.A)
990 $(Echo) Install circumvented with NO_INSTALL
992 $(Echo) Uninstall circumvented with NO_INSTALL
994 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
996 install-local:: $(DestArchiveLib)
998 $(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
999 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1000 $(Verb) $(MKDIR) $(PROJ_libdir)
1001 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
1004 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1005 -$(Verb) $(RM) -f $(DestArchiveLib)
1012 ###############################################################################
1013 # Tool Build Rules: Build executable tool based on TOOLNAME option
1014 ###############################################################################
1018 #---------------------------------------------------------
1019 # Set up variables for building a tool.
1020 #---------------------------------------------------------
1022 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1024 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1027 #---------------------------------------------------------
1028 # Provide targets for building the tools
1029 #---------------------------------------------------------
1030 all-local:: $(ToolBuildPath)
1033 ifneq ($(strip $(ToolBuildPath)),)
1034 -$(Verb) $(RM) -f $(ToolBuildPath)
1038 $(ToolBuildPath): $(ExmplDir)/.dir
1040 $(ToolBuildPath): $(ToolDir)/.dir
1043 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1044 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1045 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1046 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1047 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1052 $(Echo) Install circumvented with NO_INSTALL
1054 $(Echo) Uninstall circumvented with NO_INSTALL
1056 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1058 install-local:: $(DestTool)
1060 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
1061 $(Echo) Installing $(BuildMode) $(DestTool)
1062 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1065 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1066 -$(Verb) $(RM) -f $(DestTool)
1070 ###############################################################################
1071 # Object Build Rules: Build object files based on sources
1072 ###############################################################################
1074 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1076 DISABLE_AUTO_DEPENDENCIES=1
1079 ifdef SHARED_LIBRARY
1081 MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1082 MAYBE_PIC_Compile.C = $(LTCompile.C)
1084 MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1085 MAYBE_PIC_Compile.C = $(Compile.C)
1088 # Provide rule sets for when dependency generation is enabled
1089 ifndef DISABLE_AUTO_DEPENDENCIES
1091 #---------------------------------------------------------
1092 # Create .lo files in the ObjDir directory from the .cpp and .c files...
1093 #---------------------------------------------------------
1095 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1096 -MT "$(ObjDir)/$*.lo" -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1098 # If the build succeeded, move the dependency file over. If it failed, put an
1100 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1101 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1103 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1104 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1105 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1108 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1109 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1110 $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1113 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1114 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1115 $(Verb) if $(MAYBE_PIC_Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1118 #---------------------------------------------------------
1119 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1120 #---------------------------------------------------------
1122 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1123 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1124 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1125 $< -o $@ -S -emit-llvm ; \
1126 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1127 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1128 $(call UPGRADE_MSG,$@)
1129 $(call UPGRADE_LL,$@)
1131 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1132 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1133 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1134 $< -o $@ -S -emit-llvm ; \
1135 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1136 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1137 $(call UPGRADE_MSG,$@)
1138 $(call UPGRADE_LL,$@)
1140 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1141 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1142 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1143 $< -o $@ -S -emit-llvm ; \
1144 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1145 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1146 $(call UPGRADE_MSG,$@)
1147 $(call UPGRADE_LL,$@)
1149 # Provide alternate rule sets if dependencies are disabled
1152 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1153 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1154 $(MAYBE_PIC_Compile.CXX) $< -o $@
1156 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1157 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1158 $(MAYBE_PIC_Compile.CXX) $< -o $@
1160 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1161 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1162 $(MAYBE_PIC_Compile.C) $< -o $@
1164 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1165 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1166 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1167 $(call UPGRADE_MSG,$@)
1168 $(call UPGRADE_LL,$@)
1170 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1171 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1172 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1173 $(call UPGRADE_MSG,$@)
1174 $(call UPGRADE_LL,$@)
1176 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1177 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1178 $(BCCompile.C) $< -o $@ -S -emit-llvm
1179 $(call UPGRADE_MSG,@)
1180 $(call UPGRADE_LL,@)
1185 ## Rules for building preprocessed (.i/.ii) outputs.
1186 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1187 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1188 $(Verb) $(Preprocess.CXX) $< -o $@
1190 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1191 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1192 $(Verb) $(Preprocess.CXX) $< -o $@
1194 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1195 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1196 $(Verb) $(Preprocess.C) $< -o $@
1199 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1200 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1201 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1203 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1204 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1205 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1207 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1208 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1209 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1212 # make the C and C++ compilers strip debug info out of bytecode libraries.
1214 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1215 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1216 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1218 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1219 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1220 $(Verb) $(LLVMAS) $< -o - | \
1221 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1225 #---------------------------------------------------------
1226 # Provide rule to build .bc files from .ll sources,
1227 # regardless of dependencies
1228 #---------------------------------------------------------
1229 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1230 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1231 $(Verb) $(LLVMAS) $< -f -o $@
1233 ###############################################################################
1234 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1235 ###############################################################################
1239 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1240 $(LLVM_SRC_ROOT)/lib/Target/Target.td \
1241 $(LLVM_SRC_ROOT)/lib/Target/TargetCallingConv.td \
1242 $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td \
1243 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1244 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1245 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1246 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1247 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1249 # All of these files depend on tblgen and the .td files.
1250 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1252 # INCFiles rule: All of the tblgen generated files are emitted to
1253 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1254 # us to only "touch" the real file if the contents of it change. IOW, if
1255 # tblgen is modified, all of the .inc.tmp files are regereated, but no
1256 # dependencies of the .inc files are, unless the contents of the .inc file
1258 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1259 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1261 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1262 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1263 $(Echo) "Building $(<F) register names with tblgen"
1264 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1266 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1267 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1268 $(Echo) "Building $(<F) register information header with tblgen"
1269 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1271 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1272 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1273 $(Echo) "Building $(<F) register info implementation with tblgen"
1274 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1276 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1277 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1278 $(Echo) "Building $(<F) instruction names with tblgen"
1279 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1281 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1282 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1283 $(Echo) "Building $(<F) instruction information with tblgen"
1284 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1286 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1287 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1288 $(Echo) "Building $(<F) assembly writer with tblgen"
1289 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1291 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1292 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1293 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1294 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1296 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1297 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1298 $(Echo) "Building $(<F) code emitter with tblgen"
1299 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1301 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1302 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1303 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1304 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1306 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1307 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1308 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1309 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1311 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1312 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1313 $(Echo) "Building $(<F) subtarget information with tblgen"
1314 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1316 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1317 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1318 $(Echo) "Building $(<F) calling convention information with tblgen"
1319 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1322 -$(Verb) $(RM) -f $(INCFiles)
1326 ###############################################################################
1327 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1328 ###############################################################################
1330 #---------------------------------------------------------
1331 # Provide rules for generating a .cpp source file from
1332 # (f)lex input sources.
1333 #---------------------------------------------------------
1335 LexFiles := $(filter %.l,$(Sources))
1337 ifneq ($(LexFiles),)
1339 # Cancel built-in rules for lex
1343 all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1345 # Note the extra sed filtering here, used to cut down on the warnings emited
1346 # by GCC. The last line is a gross hack to work around flex aparently not
1347 # being able to resize the buffer on a large token input. Currently, for
1348 # uninitialized string buffers in LLVM we can generate very long tokens, so
1349 # this is a hack around it.
1350 # FIXME. (f.e. char Buffer[10000] )
1351 $(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1352 $(Echo) Flexing $*.l
1353 $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1354 $(SED) 's/void yyunput/inline void yyunput/' | \
1355 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1356 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1357 > $(PROJ_SRC_DIR)/$*.cpp
1359 # IFF the .l file has changed since it was last checked into SVN, copy the .l
1360 # file to .l.cvs and the generated .cpp file to .cpp.cvs. We use this mechanism
1361 # so that people without flex can build LLVM by copying the .cvs files to the
1362 # source location and building them.
1363 $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1364 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1365 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
1366 ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
1368 $(LexFiles:%.l=$(ObjDir)/%.o) : \
1369 $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1372 -$(Verb) $(RM) -f $(LexOutput)
1376 #---------------------------------------------------------
1377 # Provide rules for generating a .cpp and .h source files
1378 # from yacc (bison) input sources.
1379 #---------------------------------------------------------
1381 YaccFiles := $(filter %.y,$(Sources))
1382 ifneq ($(YaccFiles),)
1384 .PRECIOUS: $(YaccOutput)
1386 all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
1388 # Cancel built-in rules for yacc
1393 # Rule for building the bison based parsers...
1395 $(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1396 $(Echo) "Bisoning $*.y"
1397 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1398 $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1399 $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1401 # IFF the .y file has changed since it was last checked into SVN, copy the .y
1402 # file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs. We use this
1403 # mechanism so that people without flex can build LLVM by copying the .cvs files
1404 # to the source location and building them.
1405 $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1406 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1407 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
1409 $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
1410 $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
1413 $(PROJ_SRC_DIR)/%.cpp : $(PROJ_SRC_DIR)/%.cpp.cvs
1414 $(Echo) "Bison of $*.y SKIPPED, bison not found -- copying .cpp.cvs"
1415 $(Verb)$(CP) $(PROJ_SRC_DIR)/$*.cpp.cvs $(PROJ_SRC_DIR)/$*.cpp
1417 $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.h.cvs
1418 $(Echo) "Bison of $*.y SKIPPED, bison not found -- copying .h.cvs"
1419 $(Verb)$(CP) $(PROJ_SRC_DIR)/$*.h.cvs $(PROJ_SRC_DIR)/$*.h
1423 $(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1425 YaccOutput := $(YaccFiles:%.y=%.output)
1428 -$(Verb) $(RM) -f $(YaccOutput)
1431 ###############################################################################
1432 # OTHER RULES: Other rules needed
1433 ###############################################################################
1435 # To create postscript files from dot files...
1436 ifneq ($(DOT),false)
1438 $(DOT) -Tps < $< > $@
1441 $(Echo) "Cannot build $@: The program dot is not installed"
1444 # This rules ensures that header files that are removed still have a rule for
1445 # which they can be "generated." This allows make to ignore them and
1446 # reproduce the dependency lists.
1450 # Define clean-local to clean the current directory. Note that this uses a
1451 # very conservative approach ensuring that empty variables do not cause
1452 # errors or disastrous removal.
1454 ifneq ($(strip $(ObjDir)),)
1455 -$(Verb) $(RM) -rf $(ObjDir)
1457 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1458 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1459 -$(Verb) $(RM) -f *$(SHLIBEXT)
1463 -$(Verb) $(RM) -rf Debug Release Profile
1466 ###############################################################################
1467 # DEPENDENCIES: Include the dependency files if we should
1468 ###############################################################################
1469 ifndef DISABLE_AUTO_DEPENDENCIES
1471 # If its not one of the cleaning targets
1472 ifneq ($(strip $(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
1474 # Get the list of dependency files
1475 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1476 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1478 -include $(DependFiles) ""
1484 ###############################################################################
1485 # CHECK: Running the test suite
1486 ###############################################################################
1489 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1490 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1491 $(EchoCmd) Running test suite ; \
1492 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1493 TESTSUITE=$(TESTSUITE) ; \
1495 $(EchoCmd) No Makefile in test directory ; \
1498 $(EchoCmd) No test directory ; \
1501 ###############################################################################
1502 # DISTRIBUTION: Handle construction of a distribution tarball
1503 ###############################################################################
1505 #------------------------------------------------------------------------
1506 # Define distribution related variables
1507 #------------------------------------------------------------------------
1508 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1509 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1510 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1511 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1512 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1513 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1514 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1515 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1516 Makefile.config.in configure autoconf
1517 DistOther := $(notdir $(wildcard \
1518 $(PROJ_SRC_DIR)/*.h \
1519 $(PROJ_SRC_DIR)/*.td \
1520 $(PROJ_SRC_DIR)/*.def \
1521 $(PROJ_SRC_DIR)/*.ll \
1522 $(PROJ_SRC_DIR)/*.in))
1523 DistSubDirs := $(SubDirs)
1524 DistSources = $(Sources) $(EXTRA_DIST)
1525 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1527 #------------------------------------------------------------------------
1528 # We MUST build distribution with OBJ_DIR != SRC_DIR
1529 #------------------------------------------------------------------------
1530 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1531 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1532 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1536 #------------------------------------------------------------------------
1537 # Prevent attempt to run dist targets from anywhere but the top level
1538 #------------------------------------------------------------------------
1540 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1541 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1544 #------------------------------------------------------------------------
1545 # Provide the top level targets
1546 #------------------------------------------------------------------------
1548 dist-gzip:: $(DistTarGZip)
1550 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1551 $(Echo) Packing gzipped distribution tar file.
1552 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1553 $(GZIP) -c > "$(DistTarGZip)"
1555 dist-bzip2:: $(DistTarBZ2)
1557 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1558 $(Echo) Packing bzipped distribution tar file.
1559 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1560 $(BZIP2) -c >$(DistTarBZ2)
1562 dist-zip:: $(DistZip)
1564 $(DistZip) : $(TopDistDir)/.makedistdir
1565 $(Echo) Packing zipped distribution file.
1566 $(Verb) rm -f $(DistZip)
1567 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1569 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1570 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1572 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1574 dist-check:: $(DistTarGZip)
1575 $(Echo) Checking distribution tar file.
1576 $(Verb) if test -d $(DistCheckDir) ; then \
1577 $(RM) -rf $(DistCheckDir) ; \
1579 $(Verb) $(MKDIR) $(DistCheckDir)
1580 $(Verb) cd $(DistCheckDir) && \
1581 $(MKDIR) $(DistCheckDir)/build && \
1582 $(MKDIR) $(DistCheckDir)/install && \
1583 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1585 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1586 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1589 $(MAKE) install && \
1590 $(MAKE) uninstall && \
1591 $(MAKE) dist-clean && \
1592 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1595 $(Echo) Cleaning distribution files
1596 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1601 #------------------------------------------------------------------------
1602 # Provide the recursive distdir target for building the distribution directory
1603 #------------------------------------------------------------------------
1604 distdir: $(DistDir)/.makedistdir
1605 $(DistDir)/.makedistdir: $(DistSources)
1606 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1607 if test -d "$(DistDir)" ; then \
1608 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1611 $(EchoCmd) Removing old $(DistDir) ; \
1612 $(RM) -rf $(DistDir); \
1613 $(EchoCmd) Making 'all' to verify build ; \
1614 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1616 $(Echo) Building Distribution Directory $(DistDir)
1617 $(Verb) $(MKDIR) $(DistDir)
1618 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1619 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1620 for file in $(DistFiles) ; do \
1622 $(PROJ_SRC_DIR)/*) \
1623 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1625 $(PROJ_SRC_ROOT)/*) \
1626 file=`echo "$$file" | \
1627 sed "s#^$$srcrootstrip/##"` \
1630 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1631 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1632 from_dir="$(PROJ_SRC_DIR)" ; \
1633 elif test -f "$$file" || test -d "$$file" ; then \
1636 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1637 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1638 to_dir="$(DistDir)/$$dir"; \
1639 $(MKDIR) "$$to_dir" ; \
1641 to_dir="$(DistDir)"; \
1643 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1644 if test -n "$$mid_dir" ; then \
1645 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1647 if test -d "$$from_dir/$$file"; then \
1648 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1649 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1650 cd $(PROJ_SRC_DIR) ; \
1651 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1652 ( cd $$to_dir ; $(TAR) xf - ) ; \
1653 cd $(PROJ_OBJ_DIR) ; \
1656 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1657 ( cd $$to_dir ; $(TAR) xf - ) ; \
1658 cd $(PROJ_OBJ_DIR) ; \
1660 elif test -f "$$from_dir/$$file" ; then \
1661 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1662 elif test -L "$$from_dir/$$file" ; then \
1663 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1664 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1665 $(EchoCmd) "===== WARNING: Distribution Source " \
1666 "$$from_dir/$$file Not Found!" ; \
1667 elif test "$(Verb)" != '@' ; then \
1668 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1671 $(Verb) for subdir in $(DistSubDirs) ; do \
1672 if test "$$subdir" \!= "." ; then \
1673 new_distdir="$(DistDir)/$$subdir" ; \
1674 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1675 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1676 DistDir="$$new_distdir" distdir ) || exit 1; \
1679 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1680 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1681 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1682 -name .svn \) -print` ;\
1683 $(MAKE) dist-hook ; \
1684 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1685 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1686 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1687 -o ! -type d ! -perm -444 -exec \
1688 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1689 || chmod -R a+r $(DistDir) ; \
1692 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1698 ###############################################################################
1699 # TOP LEVEL - targets only to apply at the top level directory
1700 ###############################################################################
1704 #------------------------------------------------------------------------
1705 # Install support for the project's include files:
1706 #------------------------------------------------------------------------
1709 $(Echo) Install circumvented with NO_INSTALL
1711 $(Echo) Uninstall circumvented with NO_INSTALL
1714 $(Echo) Installing include files
1715 $(Verb) $(MKDIR) $(PROJ_includedir)
1716 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1717 cd $(PROJ_SRC_ROOT)/include && \
1718 for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1719 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1720 grep -v .svn` ; do \
1721 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1722 if test \! -d "$$instdir" ; then \
1723 $(EchoCmd) Making install directory $$instdir ; \
1724 $(MKDIR) $$instdir ;\
1726 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1729 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1730 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1731 cd $(PROJ_OBJ_ROOT)/include && \
1732 for hdr in `find . -type f -print | grep -v CVS` ; do \
1733 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1739 $(Echo) Uninstalling include files
1740 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1741 cd $(PROJ_SRC_ROOT)/include && \
1742 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1743 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1744 -o -name '*.in' ')' -print ')' | \
1745 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1746 cd $(PROJ_SRC_ROOT)/include && \
1747 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1748 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1754 @echo searching for overlength lines in files: $(Sources)
1757 egrep -n '.{81}' $(Sources) /dev/null
1760 @echo searching for tabs in files: $(Sources)
1763 egrep -n ' ' $(Sources) /dev/null
1766 @ls -l $(LibDir) | awk '\
1767 BEGIN { sum = 0; } \
1769 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1770 @ls -l $(ToolDir) | awk '\
1771 BEGIN { sum = 0; } \
1773 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1774 #------------------------------------------------------------------------
1775 # Print out the directories used for building
1776 #------------------------------------------------------------------------
1778 $(Echo) "BuildMode : " '$(BuildMode)'
1779 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1780 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1781 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1782 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1783 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1784 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1785 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1786 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1787 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1788 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1789 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1790 $(Echo) "UserTargets : " '$(UserTargets)'
1791 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1792 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1793 $(Echo) "ObjDir : " '$(ObjDir)'
1794 $(Echo) "LibDir : " '$(LibDir)'
1795 $(Echo) "ToolDir : " '$(ToolDir)'
1796 $(Echo) "ExmplDir : " '$(ExmplDir)'
1797 $(Echo) "Sources : " '$(Sources)'
1798 $(Echo) "TDFiles : " '$(TDFiles)'
1799 $(Echo) "INCFiles : " '$(INCFiles)'
1800 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1801 $(Echo) "PreConditions: " '$(PreConditions)'
1802 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1803 $(Echo) "Compile.C : " '$(Compile.C)'
1804 $(Echo) "Archive : " '$(Archive)'
1805 $(Echo) "YaccFiles : " '$(YaccFiles)'
1806 $(Echo) "LexFiles : " '$(LexFiles)'
1807 $(Echo) "Module : " '$(Module)'
1808 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1809 $(Echo) "SubDirs : " '$(SubDirs)'
1810 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1811 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'