1 #===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source 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 tags 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
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 *) $(Echo) "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 #--------------------------------------------------------------------
202 # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
203 # this can be overridden on the make command line.
205 OPTIMIZE_OPTION := -O3
207 OPTIMIZE_OPTION := -O2
210 ifdef ENABLE_PROFILING
212 CXX.Flags := $(OPTIMIZE_OPTION) -pg -g
213 C.Flags := $(OPTIMIZE_OPTION) -pg -g
214 LD.Flags := $(OPTIMIZE_OPTION) -pg -g
216 ifeq ($(ENABLE_OPTIMIZED),1)
218 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
219 ifneq ($(OS),FreeBSD)
221 OmitFramePointer := -fomit-frame-pointer
225 # Darwin requires -fstrict-aliasing to be explicitly enabled.
227 EXTRA_OPTIONS += -fstrict-aliasing
230 CXX.Flags := $(OPTIMIZE_OPTION) $(OmitFramePointer)
231 C.Flags := $(OPTIMIZE_OPTION) $(OmitFramePointer)
232 LD.Flags := $(OPTIMIZE_OPTION)
242 # IF REQUIRES_EH=1 is specified then don't disable exceptions
244 CXX.Flags += -fno-exceptions
247 # IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
249 # CXX.Flags += -fno-rtti
252 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
253 # then disable assertions by defining the appropriate preprocessor symbols.
254 ifdef DISABLE_ASSERTIONS
255 BuildMode := $(BuildMode)-Asserts
256 CXX.Flags += -DNDEBUG
259 CXX.Flags += -D_DEBUG
263 ifeq ($(ENABLE_PIC),1)
268 CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual
270 CPP.BaseFlags += $(CPPFLAGS)
271 LD.Flags += $(LDFLAGS)
273 LibTool.Flags := --tag=CXX
275 # Make Floating point IEEE compliant on Alpha.
278 CPP.BaseFlags += -mieee
279 ifeq ($(ENABLE_PIC),0)
281 CPP.BaseFlags += -fPIC
286 LD.Flags += -Wl,--no-relax
289 #--------------------------------------------------------------------
290 # Directory locations
291 #--------------------------------------------------------------------
292 ObjDir := $(PROJ_OBJ_DIR)/$(BuildMode)
293 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
294 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
295 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
296 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
297 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
298 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
299 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
301 #--------------------------------------------------------------------
302 # Full Paths To Compiled Tools and Utilities
303 #--------------------------------------------------------------------
304 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
307 LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
310 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
313 ifeq ($(LLVM_CROSS_COMPILING),1)
314 TBLGEN := $(LLVMToolDir)/tblgen$(BUILD_EXEEXT)
316 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
319 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
321 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
324 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
327 LLI := $(LLVMToolDir)/lli$(EXEEXT)
330 LLC := $(LLVMToolDir)/llc$(EXEEXT)
333 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
336 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
339 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
341 ifeq ($(LLVMGCC_MAJVERS),3)
342 UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
343 UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
344 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
345 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
349 LLVMGCCWITHPATH := $(LLVMGCC)
350 LLVMGXXWITHPATH := $(LLVMGXX)
353 #--------------------------------------------------------------------
354 # Adjust to user's request
355 #--------------------------------------------------------------------
357 # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
358 # to be built. Note that if LOADABLE_MODULE is specified then the resulting
359 # shared library can be opened with dlopen. Also, LOADABLE_MODULE implies
360 # several other things so we force them to be defined/on.
361 ifdef LOADABLE_MODULE
363 DONT_BUILD_RELINKED := 1
364 LINK_LIBS_IN_SHARED := 1
369 LD.Flags += -rpath $(LibDir)
371 LibTool.Flags += --tag=disable-shared
381 # Adjust settings for verbose mode
384 LibTool.Flags += --silent
385 AR.Flags += >/dev/null 2>/dev/null
386 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
388 ConfigureScriptFLAGS :=
391 # By default, strip symbol information from executable
393 Strip := $(PLATFORMSTRIPOPTS)
394 StripWarnMsg := "(without symbols)"
395 Install.StripFlag += -s
398 # Adjust linker flags for building an executable
401 LD.Flags += -rpath $(ExmplDir) -export-dynamic
403 LD.Flags += -rpath $(ToolDir) -export-dynamic
407 #----------------------------------------------------------
408 # Options To Invoke Tools
409 #----------------------------------------------------------
411 CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
412 -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
415 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
418 # If we are building a universal binary on Mac OS/X, pass extra options. This
419 # is useful to people that want to link the LLVM libraries into their universal
422 # The following can be optionally specified:
423 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
424 # For Mac OS/X 10.4 Intel machines, the traditional one is:
425 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
426 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
427 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
430 ifndef UNIVERSAL_ARCH
431 UNIVERSAL_ARCH := i386 ppc
433 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
434 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
435 Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
436 ifdef UNIVERSAL_SDK_PATH
437 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
438 Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
441 # Building universal cannot compute dependencies automatically.
442 DISABLE_AUTO_DEPENDENCIES=1
445 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
446 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
447 # All -I flags should go here, so that they don't confuse llvm-config.
448 CPP.Flags += -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
449 -I$(PROJ_OBJ_ROOT)/include \
450 -I$(PROJ_SRC_ROOT)/include \
451 -I$(LLVM_OBJ_ROOT)/include \
452 -I$(LLVM_SRC_ROOT)/include \
455 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
456 LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
457 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
458 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
460 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
461 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
462 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
465 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
466 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
468 LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link)
469 Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
471 LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink)
472 LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
474 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
475 ScriptInstall = $(INSTALL) -m 0755
476 DataInstall = $(INSTALL) -m 0644
477 TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include \
478 -I $(PROJ_SRC_ROOT)/lib/Target
479 Archive = $(AR) $(AR.Flags)
480 LArchive = $(LLVMToolDir)/llvm-ar rcsf
487 #----------------------------------------------------------
488 # Get the list of source files and compute object file
490 #----------------------------------------------------------
493 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
494 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
495 $(PROJ_SRC_DIR)/*.l))
497 Sources := $(SOURCES)
501 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
504 BaseNameSources := $(sort $(basename $(Sources)))
506 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
507 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
508 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
510 ###############################################################################
511 # DIRECTORIES: Handle recursive descent of directory structure
512 ###############################################################################
514 #---------------------------------------------------------
515 # Provide rules to make install dirs. This must be early
516 # in the file so they get built before dependencies
517 #---------------------------------------------------------
519 $(PROJ_bindir): $(PROJ_bindir)/.dir
520 $(PROJ_libdir): $(PROJ_libdir)/.dir
521 $(PROJ_includedir): $(PROJ_includedir)/.dir
522 $(PROJ_etcdir): $(PROJ_etcdir)/.dir
524 # To create other directories, as needed, and timestamp their creation
526 $(Verb) $(MKDIR) $* > /dev/null
529 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
530 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
532 #---------------------------------------------------------
533 # Handle the DIRS options for sequential construction
534 #---------------------------------------------------------
540 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
541 $(RecursiveTargets)::
542 $(Verb) for dir in $(DIRS); do \
543 if [ ! -f $$dir/Makefile ]; then \
545 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
547 ($(MAKE) -C $$dir $@ ) || exit 1; \
550 $(RecursiveTargets)::
551 $(Verb) for dir in $(DIRS); do \
552 ($(MAKE) -C $$dir $@ ) || exit 1; \
558 #---------------------------------------------------------
559 # Handle the EXPERIMENTAL_DIRS options ensuring success
560 # after each directory is built.
561 #---------------------------------------------------------
562 ifdef EXPERIMENTAL_DIRS
563 $(RecursiveTargets)::
564 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
565 if [ ! -f $$dir/Makefile ]; then \
567 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
569 ($(MAKE) -C $$dir $@ ) || exit 0; \
573 #-----------------------------------------------------------
574 # Handle the PARALLEL_DIRS options for parallel construction
575 #-----------------------------------------------------------
578 SubDirs += $(PARALLEL_DIRS)
580 # Unfortunately, this list must be maintained if new recursive targets are added
581 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
582 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
583 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
584 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
585 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
586 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
588 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
591 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
593 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
595 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
598 #---------------------------------------------------------
599 # Handle the OPTIONAL_DIRS options for directores that may
601 #---------------------------------------------------------
604 SubDirs += $(OPTIONAL_DIRS)
606 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
607 $(RecursiveTargets)::
608 $(Verb) for dir in $(OPTIONAL_DIRS); do \
609 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
610 if [ ! -f $$dir/Makefile ]; then \
612 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
614 ($(MAKE) -C$$dir $@ ) || exit 1; \
618 $(RecursiveTargets)::
619 $(Verb) for dir in $(OPTIONAL_DIRS); do \
620 ($(MAKE) -C$$dir $@ ) || exit 1; \
625 #---------------------------------------------------------
626 # Handle the CONFIG_FILES options
627 #---------------------------------------------------------
632 $(Echo) Install circumvented with NO_INSTALL
634 $(Echo) UnInstall circumvented with NO_INSTALL
636 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
637 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
638 $(Verb)for file in $(CONFIG_FILES); do \
639 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
640 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
641 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
642 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
644 $(ECHO) Error: cannot find config file $${file}. ; \
649 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
650 $(Verb)for file in $(CONFIG_FILES); do \
651 $(RM) -f $(PROJ_etcdir)/$${file} ; \
657 ###############################################################################
658 # Set up variables for building libararies
659 ###############################################################################
661 #---------------------------------------------------------
662 # Define various command line options pertaining to the
663 # libraries needed when linking. There are "Proj" libs
664 # (defined by the user's project) and "LLVM" libs (defined
665 # by the LLVM project).
666 #---------------------------------------------------------
669 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
670 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
671 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
672 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
676 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
677 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
678 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
679 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
682 ifeq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
683 ifdef LINK_COMPONENTS
685 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
686 # clean in tools, then do a make in tools (instead of at the top level).
688 @echo "*** llvm-config doesn't exist - rebuilding it."
689 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
691 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
693 ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
694 ProjLibsPaths += $(LLVM_CONFIG) \
695 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
699 ###############################################################################
700 # Library Build Rules: Four ways to build a library
701 ###############################################################################
703 #---------------------------------------------------------
704 # Bytecode Module Targets:
705 # If the user set MODULE_NAME then they want to build a
706 # bytecode module from the sources. We compile all the
707 # sources and link it together into a single bytecode
709 #---------------------------------------------------------
712 ifeq ($(strip $(LLVMGCC)),)
713 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
716 Module := $(LibDir)/$(MODULE_NAME).bc
717 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir)
720 ifdef EXPORTED_SYMBOL_FILE
721 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
724 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
725 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
726 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
728 all-local:: $(Module)
731 ifneq ($(strip $(Module)),)
732 -$(Verb) $(RM) -f $(Module)
735 ifdef BYTECODE_DESTINATION
736 ModuleDestDir := $(BYTECODE_DESTINATION)
738 ModuleDestDir := $(PROJ_libdir)
743 $(Echo) Install circumvented with NO_INSTALL
745 $(Echo) Uninstall circumvented with NO_INSTALL
747 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
749 install-module:: $(DestModule)
750 install-local:: $(DestModule)
752 $(DestModule): $(ModuleDestDir) $(Module)
753 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
754 $(Verb) $(DataInstall) $(Module) $(DestModule)
757 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
758 -$(Verb) $(RM) -f $(DestModule)
764 # if we're building a library ...
767 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
768 LIBRARYNAME := $(strip $(LIBRARYNAME))
769 ifdef LOADABLE_MODULE
770 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
772 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
774 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
775 LibName.O := $(LibDir)/$(LIBRARYNAME).o
776 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
778 #---------------------------------------------------------
779 # Shared Library Targets:
780 # If the user asked for a shared library to be built
781 # with the SHARED_LIBRARY variable, then we provide
782 # targets for building them.
783 #---------------------------------------------------------
786 all-local:: $(LibName.LA)
788 ifdef LINK_LIBS_IN_SHARED
789 ifdef LOADABLE_MODULE
790 SharedLibKindMessage := "Loadable Module"
792 SharedLibKindMessage := "Shared Library"
794 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
795 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
796 $(LIBRARYNAME)$(SHLIBEXT)
797 $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \
799 $(Verb) $(LTInstall) $@ $(LibDir)
801 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
802 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
803 $(Verb) $(LTLink) -o $@ $(ObjectsLO)
804 $(Verb) $(LTInstall) $@ $(LibDir)
808 ifneq ($(strip $(LibName.LA)),)
809 -$(Verb) $(RM) -f $(LibName.LA)
814 $(Echo) Install circumvented with NO_INSTALL
816 $(Echo) Uninstall circumvented with NO_INSTALL
818 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
820 install-local:: $(DestSharedLib)
822 $(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
823 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
824 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
825 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
828 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
829 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
833 #---------------------------------------------------------
834 # Bytecode Library Targets:
835 # If the user asked for a bytecode library to be built
836 # with the BYTECODE_LIBRARY variable, then we provide
837 # targets for building them.
838 #---------------------------------------------------------
839 ifdef BYTECODE_LIBRARY
840 ifeq ($(strip $(LLVMGCC)),)
841 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
844 all-local:: $(LibName.BCA)
846 ifdef EXPORTED_SYMBOL_FILE
847 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
848 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
850 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
851 $(LLVMToolDir)/llvm-ar
852 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
854 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
856 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
858 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
859 $(LLVMToolDir)/llvm-ar
860 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
862 $(Verb) $(LArchive) $@ $(ObjectsBC)
867 ifneq ($(strip $(LibName.BCA)),)
868 -$(Verb) $(RM) -f $(LibName.BCA)
871 ifdef BYTECODE_DESTINATION
872 BytecodeDestDir := $(BYTECODE_DESTINATION)
874 BytecodeDestDir := $(PROJ_libdir)
877 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
879 install-bytecode-local:: $(DestBytecodeLib)
883 $(Echo) Install circumvented with NO_INSTALL
885 $(Echo) Uninstall circumvented with NO_INSTALL
887 install-local:: $(DestBytecodeLib)
889 $(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA)
890 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
891 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
894 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
895 -$(Verb) $(RM) -f $(DestBytecodeLib)
900 #---------------------------------------------------------
901 # ReLinked Library Targets:
902 # If the user explicitly requests a relinked library with
903 # BUILD_RELINKED, provide it. Otherwise, if they specify
904 # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
906 #---------------------------------------------------------
908 ifndef DONT_BUILD_RELINKED
915 all-local:: $(LibName.O)
917 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
918 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
919 $(Verb) $(LTRelink) -o $@ $(ObjectsO)
922 ifneq ($(strip $(LibName.O)),)
923 -$(Verb) $(RM) -f $(LibName.O)
928 $(Echo) Install circumvented with NO_INSTALL
930 $(Echo) Uninstall circumvented with NO_INSTALL
932 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
934 install-local:: $(DestRelinkedLib)
936 $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
937 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
938 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
941 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
942 -$(Verb) $(RM) -f $(DestRelinkedLib)
946 #---------------------------------------------------------
947 # Archive Library Targets:
948 # If the user wanted a regular archive library built,
949 # then we provide targets for building them.
950 #---------------------------------------------------------
953 all-local:: $(LibName.A)
955 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
956 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
958 $(Verb) $(Archive) $@ $(ObjectsO)
962 ifneq ($(strip $(LibName.A)),)
963 -$(Verb) $(RM) -f $(LibName.A)
968 $(Echo) Install circumvented with NO_INSTALL
970 $(Echo) Uninstall circumvented with NO_INSTALL
972 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
974 install-local:: $(DestArchiveLib)
976 $(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
977 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
978 $(Verb) $(MKDIR) $(PROJ_libdir)
979 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
982 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
983 -$(Verb) $(RM) -f $(DestArchiveLib)
990 ###############################################################################
991 # Tool Build Rules: Build executable tool based on TOOLNAME option
992 ###############################################################################
996 #---------------------------------------------------------
997 # Set up variables for building a tool.
998 #---------------------------------------------------------
1000 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1002 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1005 #---------------------------------------------------------
1006 # Provide targets for building the tools
1007 #---------------------------------------------------------
1008 all-local:: $(ToolBuildPath)
1011 ifneq ($(strip $(ToolBuildPath)),)
1012 -$(Verb) $(RM) -f $(ToolBuildPath)
1016 $(ToolBuildPath): $(ExmplDir)/.dir
1018 $(ToolBuildPath): $(ToolDir)/.dir
1021 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1022 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1023 $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1024 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1025 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1030 $(Echo) Install circumvented with NO_INSTALL
1032 $(Echo) Uninstall circumvented with NO_INSTALL
1034 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1036 install-local:: $(DestTool)
1038 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
1039 $(Echo) Installing $(BuildMode) $(DestTool)
1040 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1043 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1044 -$(Verb) $(RM) -f $(DestTool)
1048 ###############################################################################
1049 # Object Build Rules: Build object files based on sources
1050 ###############################################################################
1052 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1054 DISABLE_AUTO_DEPENDENCIES=1
1057 ifdef SHARED_LIBRARY
1059 MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
1060 MAYBE_PIC_Compile.C = $(LTCompile.C)
1062 MAYBE_PIC_Compile.CXX = $(Compile.CXX)
1063 MAYBE_PIC_Compile.C = $(Compile.C)
1066 # Provide rule sets for when dependency generation is enabled
1067 ifndef DISABLE_AUTO_DEPENDENCIES
1069 #---------------------------------------------------------
1070 # Create .lo files in the ObjDir directory from the .cpp and .c files...
1071 #---------------------------------------------------------
1073 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1074 $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1075 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1076 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1077 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1079 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1080 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1081 $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1082 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1083 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1085 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1086 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1087 $(Verb) if $(MAYBE_PIC_Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
1088 then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
1089 else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
1091 #---------------------------------------------------------
1092 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1093 #---------------------------------------------------------
1095 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1096 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1097 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1098 $< -o $@ -S -emit-llvm ; \
1099 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1100 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1101 $(call UPGRADE_MSG,$@)
1102 $(call UPGRADE_LL,$@)
1104 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1105 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1106 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1107 $< -o $@ -S -emit-llvm ; \
1108 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1109 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1110 $(call UPGRADE_MSG,$@)
1111 $(call UPGRADE_LL,$@)
1113 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1114 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1115 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1116 $< -o $@ -S -emit-llvm ; \
1117 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1118 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1119 $(call UPGRADE_MSG,$@)
1120 $(call UPGRADE_LL,$@)
1122 # Provide alternate rule sets if dependencies are disabled
1125 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1126 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1127 $(MAYBE_PIC_Compile.CXX) $< -o $@
1129 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1130 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1131 $(MAYBE_PIC_Compile.CXX) $< -o $@
1133 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1134 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1135 $(MAYBE_PIC_Compile.C) $< -o $@
1137 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1138 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1139 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1140 $(call UPGRADE_MSG,$@)
1141 $(call UPGRADE_LL,$@)
1143 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1144 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1145 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1146 $(call UPGRADE_MSG,$@)
1147 $(call UPGRADE_LL,$@)
1149 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1150 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1151 $(BCCompile.C) $< -o $@ -S -emit-llvm
1152 $(call UPGRADE_MSG,@)
1153 $(call UPGRADE_LL,@)
1158 ## Rules for building preprocessed (.i/.ii) outputs.
1159 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1160 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1161 $(Verb) $(Preprocess.CXX) $< -o $@
1163 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1164 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1165 $(Verb) $(Preprocess.CXX) $< -o $@
1167 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1168 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1169 $(Verb) $(Preprocess.C) $< -o $@
1172 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1173 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1174 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1176 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1177 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1178 $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1180 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1181 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1182 $(MAYBE_PIC_Compile.C) $< -o $@ -S
1185 # make the C and C++ compilers strip debug info out of bytecode libraries.
1187 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1188 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1189 $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1191 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1192 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1193 $(Verb) $(LLVMAS) $< -o - | \
1194 $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1198 #---------------------------------------------------------
1199 # Provide rule to build .bc files from .ll sources,
1200 # regardless of dependencies
1201 #---------------------------------------------------------
1202 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1203 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1204 $(Verb) $(LLVMAS) $< -f -o $@
1206 ###############################################################################
1207 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1208 ###############################################################################
1212 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1213 $(LLVM_SRC_ROOT)/lib/Target/Target.td \
1214 $(LLVM_SRC_ROOT)/lib/Target/TargetCallingConv.td \
1215 $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td \
1216 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1217 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1218 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1219 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1220 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1222 # All of these files depend on tblgen and the .td files.
1223 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1225 # INCFiles rule: All of the tblgen generated files are emitted to
1226 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1227 # us to only "touch" the real file if the contents of it change. IOW, if
1228 # tblgen is modified, all of the .inc.tmp files are regereated, but no
1229 # dependencies of the .inc files are, unless the contents of the .inc file
1231 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1232 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1234 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1235 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1236 $(Echo) "Building $(<F) register names with tblgen"
1237 $(Verb) $(TableGen) -gen-register-enums -o $@ $<
1239 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1240 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1241 $(Echo) "Building $(<F) register information header with tblgen"
1242 $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
1244 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1245 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1246 $(Echo) "Building $(<F) register info implementation with tblgen"
1247 $(Verb) $(TableGen) -gen-register-desc -o $@ $<
1249 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1250 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1251 $(Echo) "Building $(<F) instruction names with tblgen"
1252 $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
1254 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1255 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1256 $(Echo) "Building $(<F) instruction information with tblgen"
1257 $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
1259 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1260 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1261 $(Echo) "Building $(<F) assembly writer with tblgen"
1262 $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
1264 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1265 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1266 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1267 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $<
1269 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1270 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1271 $(Echo) "Building $(<F) code emitter with tblgen"
1272 $(Verb) $(TableGen) -gen-emitter -o $@ $<
1274 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1275 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1276 $(Echo) "Building $(<F) instruction selector implementation with tblgen"
1277 $(Verb) $(TableGen) -gen-dag-isel -o $@ $<
1279 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1280 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1281 $(Echo) "Building $(<F) subtarget information with tblgen"
1282 $(Verb) $(TableGen) -gen-subtarget -o $@ $<
1284 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1285 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1286 $(Echo) "Building $(<F) calling convention information with tblgen"
1287 $(Verb) $(TableGen) -gen-callingconv -o $@ $<
1290 -$(Verb) $(RM) -f $(INCFiles)
1294 ###############################################################################
1295 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1296 ###############################################################################
1298 #---------------------------------------------------------
1299 # Provide rules for generating a .cpp source file from
1300 # (f)lex input sources.
1301 #---------------------------------------------------------
1303 LexFiles := $(filter %.l,$(Sources))
1305 ifneq ($(LexFiles),)
1307 # Cancel built-in rules for lex
1311 all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1313 # Note the extra sed filtering here, used to cut down on the warnings emited
1314 # by GCC. The last line is a gross hack to work around flex aparently not
1315 # being able to resize the buffer on a large token input. Currently, for
1316 # uninitialized string buffers in LLVM we can generate very long tokens, so
1317 # this is a hack around it.
1318 # FIXME. (f.e. char Buffer[10000] )
1319 $(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1320 $(Echo) Flexing $*.l
1321 $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1322 $(SED) 's/void yyunput/inline void yyunput/' | \
1323 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1324 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1325 > $(PROJ_SRC_DIR)/$*.cpp
1327 # IFF the .l file has changed since it was last checked into CVS, copy the .l
1328 # file to .l.cvs and the generated .cpp file to .cpp.cvs. We use this mechanism
1329 # so that people without flex can build LLVM by copying the .cvs files to the
1330 # source location and building them.
1331 $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1332 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1333 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
1334 ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
1336 $(LexFiles:%.l=$(ObjDir)/%.o) : \
1337 $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1340 -$(Verb) $(RM) -f $(LexOutput)
1344 #---------------------------------------------------------
1345 # Provide rules for generating a .cpp and .h source files
1346 # from yacc (bison) input sources.
1347 #---------------------------------------------------------
1349 YaccFiles := $(filter %.y,$(Sources))
1350 ifneq ($(YaccFiles),)
1352 .PRECIOUS: $(YaccOutput)
1354 all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
1356 # Cancel built-in rules for yacc
1361 # Rule for building the bison based parsers...
1362 $(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1364 $(Echo) "Bisoning $*.y"
1365 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1366 $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1367 $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1369 $(Echo) "Bison of $*.y SKIPPED -- bison not found"
1372 # IFF the .y file has changed since it was last checked into CVS, copy the .y
1373 # file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs. We use this
1374 # mechanism so that people without flex can build LLVM by copying the .cvs files
1375 # to the source location and building them.
1376 $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1377 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1378 $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
1380 $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
1381 $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
1384 $(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1386 YaccOutput := $(YaccFiles:%.y=%.output)
1389 -$(Verb) $(RM) -f $(YaccOutput)
1392 ###############################################################################
1393 # OTHER RULES: Other rules needed
1394 ###############################################################################
1396 # To create postscript files from dot files...
1397 ifneq ($(DOT),false)
1399 $(DOT) -Tps < $< > $@
1402 $(Echo) "Cannot build $@: The program dot is not installed"
1405 # This rules ensures that header files that are removed still have a rule for
1406 # which they can be "generated." This allows make to ignore them and
1407 # reproduce the dependency lists.
1411 # Define clean-local to clean the current directory. Note that this uses a
1412 # very conservative approach ensuring that empty variables do not cause
1413 # errors or disastrous removal.
1415 ifneq ($(strip $(ObjDir)),)
1416 -$(Verb) $(RM) -rf $(ObjDir)
1418 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1419 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1420 -$(Verb) $(RM) -f *$(SHLIBEXT)
1424 -$(Verb) $(RM) -rf Debug Release Profile
1426 # Build tags database for Emacs/Xemacs:
1430 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1431 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1432 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1433 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1434 -name '*.cpp' -o -name '*.h' | \
1435 $(ETAGS) $(ETAGSFLAGS) -
1438 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1439 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1440 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1441 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1442 \( -name '*.cpp' -o -name '*.h' \) -print | \
1443 ctags -ImtT -o $(PROJ_OBJ_ROOT)/CTAGS -L -
1446 ###############################################################################
1447 # DEPENDENCIES: Include the dependency files if we should
1448 ###############################################################################
1449 ifndef DISABLE_AUTO_DEPENDENCIES
1451 # If its not one of the cleaning targets
1452 ifneq ($(strip $(filter-out clean clean-local dist-clean,$(MAKECMDGOALS)))),)
1454 # Get the list of dependency files
1455 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1456 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1458 -include /dev/null $(DependFiles)
1464 ###############################################################################
1465 # CHECK: Running the test suite
1466 ###############################################################################
1469 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1470 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1471 $(EchoCmd) Running test suite ; \
1472 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1473 TESTSUITE=$(TESTSUITE) ; \
1475 $(EchoCmd) No Makefile in test directory ; \
1478 $(EchoCmd) No test directory ; \
1481 ###############################################################################
1482 # DISTRIBUTION: Handle construction of a distribution tarball
1483 ###############################################################################
1485 #------------------------------------------------------------------------
1486 # Define distribution related variables
1487 #------------------------------------------------------------------------
1488 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1489 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1490 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1491 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1492 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1493 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1494 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1495 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1496 Makefile.config.in configure autoconf
1497 DistOther := $(notdir $(wildcard \
1498 $(PROJ_SRC_DIR)/*.h \
1499 $(PROJ_SRC_DIR)/*.td \
1500 $(PROJ_SRC_DIR)/*.def \
1501 $(PROJ_SRC_DIR)/*.ll \
1502 $(PROJ_SRC_DIR)/*.in))
1503 DistSubDirs := $(SubDirs)
1504 DistSources = $(Sources) $(EXTRA_DIST)
1505 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1507 #------------------------------------------------------------------------
1508 # We MUST build distribution with OBJ_DIR != SRC_DIR
1509 #------------------------------------------------------------------------
1510 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1511 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1512 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1516 #------------------------------------------------------------------------
1517 # Prevent attempt to run dist targets from anywhere but the top level
1518 #------------------------------------------------------------------------
1520 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1521 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1524 #------------------------------------------------------------------------
1525 # Provide the top level targets
1526 #------------------------------------------------------------------------
1528 dist-gzip:: $(DistTarGZip)
1530 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1531 $(Echo) Packing gzipped distribution tar file.
1532 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1533 $(GZIP) -c > "$(DistTarGZip)"
1535 dist-bzip2:: $(DistTarBZ2)
1537 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1538 $(Echo) Packing bzipped distribution tar file.
1539 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1540 $(BZIP2) -c >$(DistTarBZ2)
1542 dist-zip:: $(DistZip)
1544 $(DistZip) : $(TopDistDir)/.makedistdir
1545 $(Echo) Packing zipped distribution file.
1546 $(Verb) rm -f $(DistZip)
1547 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1549 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1550 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1552 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1554 dist-check:: $(DistTarGZip)
1555 $(Echo) Checking distribution tar file.
1556 $(Verb) if test -d $(DistCheckDir) ; then \
1557 $(RM) -rf $(DistCheckDir) ; \
1559 $(Verb) $(MKDIR) $(DistCheckDir)
1560 $(Verb) cd $(DistCheckDir) && \
1561 $(MKDIR) $(DistCheckDir)/build && \
1562 $(MKDIR) $(DistCheckDir)/install && \
1563 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1565 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1566 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1569 $(MAKE) install && \
1570 $(MAKE) uninstall && \
1571 $(MAKE) dist-clean && \
1572 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1575 $(Echo) Cleaning distribution files
1576 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1581 #------------------------------------------------------------------------
1582 # Provide the recursive distdir target for building the distribution directory
1583 #------------------------------------------------------------------------
1584 distdir: $(DistDir)/.makedistdir
1585 $(DistDir)/.makedistdir: $(DistSources)
1586 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1587 if test -d "$(DistDir)" ; then \
1588 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1591 $(EchoCmd) Removing old $(DistDir) ; \
1592 $(RM) -rf $(DistDir); \
1593 $(EchoCmd) Making 'all' to verify build ; \
1594 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1596 $(Echo) Building Distribution Directory $(DistDir)
1597 $(Verb) $(MKDIR) $(DistDir)
1598 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1599 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1600 for file in $(DistFiles) ; do \
1602 $(PROJ_SRC_DIR)/*) \
1603 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1605 $(PROJ_SRC_ROOT)/*) \
1606 file=`echo "$$file" | \
1607 sed "s#^$$srcrootstrip/##"` \
1610 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1611 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1612 from_dir="$(PROJ_SRC_DIR)" ; \
1613 elif test -f "$$file" || test -d "$$file" ; then \
1616 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1617 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1618 to_dir="$(DistDir)/$$dir"; \
1619 $(MKDIR) "$$to_dir" ; \
1621 to_dir="$(DistDir)"; \
1623 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1624 if test -n "$$mid_dir" ; then \
1625 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1627 if test -d "$$from_dir/$$file"; then \
1628 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1629 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1630 cd $(PROJ_SRC_DIR) ; \
1631 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1632 ( cd $$to_dir ; $(TAR) xf - ) ; \
1633 cd $(PROJ_OBJ_DIR) ; \
1636 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1637 ( cd $$to_dir ; $(TAR) xf - ) ; \
1638 cd $(PROJ_OBJ_DIR) ; \
1640 elif test -f "$$from_dir/$$file" ; then \
1641 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1642 elif test -L "$$from_dir/$$file" ; then \
1643 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1644 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1645 $(EchoCmd) "===== WARNING: Distribution Source " \
1646 "$$from_dir/$$file Not Found!" ; \
1647 elif test "$(Verb)" != '@' ; then \
1648 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1651 $(Verb) for subdir in $(DistSubDirs) ; do \
1652 if test "$$subdir" \!= "." ; then \
1653 new_distdir="$(DistDir)/$$subdir" ; \
1654 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1655 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1656 DistDir="$$new_distdir" distdir ) || exit 1; \
1659 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1660 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1661 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1662 -name .svn \) -print` ;\
1663 $(MAKE) dist-hook ; \
1664 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1665 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1666 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1667 -o ! -type d ! -perm -444 -exec \
1668 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1669 || chmod -R a+r $(DistDir) ; \
1672 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1678 ###############################################################################
1679 # TOP LEVEL - targets only to apply at the top level directory
1680 ###############################################################################
1684 #------------------------------------------------------------------------
1685 # Install support for the project's include files:
1686 #------------------------------------------------------------------------
1689 $(Echo) Install circumvented with NO_INSTALL
1691 $(Echo) Uninstall circumvented with NO_INSTALL
1694 $(Echo) Installing include files
1695 $(Verb) $(MKDIR) $(PROJ_includedir)
1696 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1697 cd $(PROJ_SRC_ROOT)/include && \
1698 for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1699 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1700 grep -v .svn` ; do \
1701 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1702 if test \! -d "$$instdir" ; then \
1703 $(EchoCmd) Making install directory $$instdir ; \
1704 $(MKDIR) $$instdir ;\
1706 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1709 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1710 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1711 cd $(PROJ_OBJ_ROOT)/include && \
1712 for hdr in `find . -type f -print | grep -v CVS` ; do \
1713 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1719 $(Echo) Uninstalling include files
1720 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1721 cd $(PROJ_SRC_ROOT)/include && \
1722 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1723 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1724 -o -name '*.in' ')' -print ')' | \
1725 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1726 cd $(PROJ_SRC_ROOT)/include && \
1727 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1728 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1734 @egrep -n '.{81}' $(Sources)
1737 @egrep -n ' ' $(Sources)
1739 @ls -l $(LibDir) | awk '\
1740 BEGIN { sum = 0; } \
1742 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1743 @ls -l $(ToolDir) | awk '\
1744 BEGIN { sum = 0; } \
1746 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1747 #------------------------------------------------------------------------
1748 # Print out the directories used for building
1749 #------------------------------------------------------------------------
1751 $(Echo) "BuildMode : " '$(BuildMode)'
1752 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1753 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1754 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1755 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1756 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1757 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1758 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1759 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1760 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1761 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1762 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1763 $(Echo) "UserTargets : " '$(UserTargets)'
1764 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1765 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1766 $(Echo) "ObjDir : " '$(ObjDir)'
1767 $(Echo) "LibDir : " '$(LibDir)'
1768 $(Echo) "ToolDir : " '$(ToolDir)'
1769 $(Echo) "ExmplDir : " '$(ExmplDir)'
1770 $(Echo) "Sources : " '$(Sources)'
1771 $(Echo) "TDFiles : " '$(TDFiles)'
1772 $(Echo) "INCFiles : " '$(INCFiles)'
1773 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1774 $(Echo) "PreConditions: " '$(PreConditions)'
1775 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1776 $(Echo) "Compile.C : " '$(Compile.C)'
1777 $(Echo) "Archive : " '$(Archive)'
1778 $(Echo) "YaccFiles : " '$(YaccFiles)'
1779 $(Echo) "LexFiles : " '$(LexFiles)'
1780 $(Echo) "Module : " '$(Module)'
1781 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1782 $(Echo) "SubDirs : " '$(SubDirs)'
1783 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1784 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'