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 #--------------------------------------------------------------------
38 VPATH=$(BUILD_SRC_DIR)
40 #--------------------------------------------------------------------
41 # Reset the list of suffixes we know how to build
42 #--------------------------------------------------------------------
44 .SUFFIXES: .c .cpp .h .hpp .y .l .lo .o .a .bc .td .ps .dot
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 $(BUILD_SRC_DIR)/Makefile*))
65 ObjMakefiles := $(subst $(BUILD_SRC_DIR),$(BUILD_OBJ_DIR),$(SrcMakefiles))
66 ConfigureScript := $(LLVM_SRC_ROOT)/configure
67 ConfigStatusScript := $(LLVM_OBJ_ROOT)/config.status
68 MakefileConfigIn := $(LLVM_SRC_ROOT)/Makefile.config.in
69 MakefileConfig := $(LLVM_OBJ_ROOT)/Makefile.config
70 PreConditions := $(ConfigStatusScript) $(MakefileConfig) $(ObjMakefiles)
72 preconditions : $(PreConditions)
74 #------------------------------------------------------------------------
75 # Make sure the BUILT_SOURCES are built first
76 #------------------------------------------------------------------------
77 $(filter-out clean clean-local,UserTargets):: $(BUILT_SOURCES)
80 ifneq ($(strip $(BUILT_SOURCES)),)
81 -$(Verb) $(RM) -f $(BUILT_SOURCES)
84 $(BUILT_SOURCES) : $(ObjMakefiles)
86 #------------------------------------------------------------------------
87 # Make sure we're not using a stale configuration
88 #------------------------------------------------------------------------
89 .PRECIOUS: $(ConfigStatusScript)
90 $(ConfigStatusScript): $(ConfigureScript)
91 $(Echo) Reconfiguring with $<
92 $(Verb) cd $(BUILD_OBJ_ROOT) && \
93 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
96 #------------------------------------------------------------------------
97 # Make sure the configuration makefile is up to date
98 #------------------------------------------------------------------------
99 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
100 $(Echo) Regenerating $@
101 $(Verb) cd $(LLVM_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
103 #------------------------------------------------------------------------
104 # If the Makefile in the source tree has been updated, copy it over into the
105 # build tree. But, only do this if the source and object makefiles differ
106 #------------------------------------------------------------------------
107 ifneq ($(BUILD_OBJ_DIR),$(BUILD_SRC_DIR))
109 Makefile: $(BUILD_SRC_DIR)/Makefile
110 $(Echo) "Updating Makefile"
111 $(Verb) $(MKDIR) $(@D)
114 # Copy the Makefile.* files unless we're in the root directory which avoids
115 # the copying of Makefile.config.in or other things that should be explicitly
117 $(BUILD_OBJ_DIR)/Makefile% : $(BUILD_SRC_DIR)/Makefile%
119 *Makefile.rules) ;; \
121 *) $(Echo) "Updating $(@F)" ; \
128 #------------------------------------------------------------------------
129 # Set up the basic dependencies
130 #------------------------------------------------------------------------
131 $(UserTargets):: $(PreConditions)
135 clean-all:: clean-local clean-all-local
136 install:: install-local
137 uninstall:: uninstall-local
138 install-local:: all-local
139 install-bytecode:: install-bytecode-local
141 ###############################################################################
142 # VARIABLES: Set up various variables based on configuration data
143 ###############################################################################
145 #--------------------------------------------------------------------
146 # Variables derived from configuration we are building
147 #--------------------------------------------------------------------
149 ifdef ENABLE_PROFILING
151 CXX.Flags := -O3 -DNDEBUG -felide-constructors -finline-functions -pg
152 C.Flags := -O3 -DNDEBUG -pg
153 LD.Flags := -O3 -DNDEBUG -pg
155 ifdef ENABLE_OPTIMIZED
157 CXX.Flags := -O3 -DNDEBUG -finline-functions \
158 -felide-constructors -fomit-frame-pointer
159 C.Flags := -O3 -DNDEBUG -fomit-frame-pointer
160 LD.Flags := -O3 -DNDEBUG
163 CXX.Flags := -g -D_DEBUG
164 C.Flags := -g -D_DEBUG
165 LD.Flags := -g -D_DEBUG
170 CXX.Flags += $(CXXFLAGS)
172 CPP.Flags += $(CPPFLAGS)
173 LD.Flags += $(LDFLAGS)
175 LibTool.Flags := --tag=CXX
177 #--------------------------------------------------------------------
178 # Directory locations
179 #--------------------------------------------------------------------
180 ObjDir := $(BUILD_OBJ_DIR)/$(BuildMode)
181 LibDir := $(BUILD_OBJ_ROOT)/$(BuildMode)/lib
182 ToolDir := $(BUILD_OBJ_ROOT)/$(BuildMode)/bin
183 ExmplDir := $(BUILD_OBJ_ROOT)/$(BuildMode)/examples
184 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
185 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
186 LExmplDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
188 #--------------------------------------------------------------------
189 # Full Paths To Compiled Tools and Utilities
190 #--------------------------------------------------------------------
191 EchoCmd := $(ECHO) llvm[$(MAKELEVEL)]:
194 LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
197 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
200 BURG := $(LLVMToolDir)/burg$(EXEEXT)
203 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
206 GCCAS := $(LLVMToolDir)/gccas$(EXEEXT)
209 GCCLD := $(LLVMToolDir)/gccld$(EXEEXT)
212 LLVMGCC := PATH=$(LLVMToolDir):$(PATH) $(LLVMGCCDIR)/bin/gcc
215 LLVMGXX := PATH=$(LLVMToolDir):$(PATH) $(LLVMGCCDIR)/bin/g++
218 #--------------------------------------------------------------------
219 # Adjust to user's request
220 #--------------------------------------------------------------------
222 # Adjust LIBTOOL flags for shared libraries, or not.
223 ifndef SHARED_LIBRARY
224 LibTool.Flags += --tag=disable-shared
226 LD.Flags += -rpath $(LibDir)
236 # Adjust settings for verbose mode
239 LibTool.Flags += --silent
240 AR.Flags += >/dev/null 2>/dev/null
241 ConfigureScriptFLAGS += >$(BUILD_OBJ_DIR)/configure.out 2>&1
243 ConfigureScriptFLAGS :=
246 # By default, strip symbol information from executable
248 Strip := $(PLATFORMSTRIPOPTS)
249 StripWarnMsg := "(without symbols)"
252 # Adjust linker flags for building an executable
255 LD.Flags += -rpath $(ExmplDir) -export-dynamic
257 LD.Flags += -rpath $(ToolDir) -export-dynamic
261 #----------------------------------------------------------
262 # Options To Invoke Tools
263 #----------------------------------------------------------
265 CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused
267 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
268 CPP.Flags += -I$(BUILD_OBJ_DIR) \
270 -I$(BUILD_SRC_ROOT)/include \
271 -I$(BUILD_OBJ_ROOT)/include \
272 -I$(LLVM_OBJ_ROOT)/include \
273 -I$(LLVM_SRC_ROOT)/include \
274 -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
276 Compile.C = $(CC) $(CPP.Flags) $(CompileCommonOpts) -c $(C.Flags)
277 LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
278 BCCompile.C = $(LLVMGCC) $(CPP.Flags) $(CompileCommonOpts) $(C.Flags) -c
279 Compile.CXX = $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -c
280 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
281 BCCompile.CXX = $(LLVMGXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -c
282 Link = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
283 $(CompileCommonOpts) $(LD.Flags) $(Strip)
284 Relink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
286 LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL)
287 Burg = $(BURG) -I $(BUILD_SRC_DIR)
288 TableGen = $(TBLGEN) -I $(BUILD_SRC_DIR)
289 Archive = $(AR) $(AR.Flags)
290 LArchive = $(LLVMToolDir)/llvm-ar rcsf
297 #----------------------------------------------------------
298 # Get the list of source files and compute object file
300 #----------------------------------------------------------
303 FakeSources := $(FAKE_SOURCES)
305 FakeSources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
307 BaseNameSources := $(sort $(basename $(FakeSources)))
308 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
309 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
310 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
313 Sources := $(notdir $(wildcard $(BUILD_SRC_DIR)/*.cpp \
314 $(BUILD_SRC_DIR)/*.cc $(BUILD_SRC_DIR)/*.c $(BUILD_SRC_DIR)/*.y \
315 $(BUILD_SRC_DIR)/*.l))
317 Sources := $(SOURCES)
321 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
324 BaseNameSources := $(sort $(basename $(Sources)))
325 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
326 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
327 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
330 ###############################################################################
331 # DIRECTORIES: Handle recursive descent of directory structure
332 ###############################################################################
334 #---------------------------------------------------------
335 # Provide rules to make install dirs. This must be early
336 # in the file so they get built before dependencies
337 #---------------------------------------------------------
340 $(Verb) $(MKDIR) $(bindir)
343 $(Verb) $(MKDIR) $(libdir)
346 $(Verb) $(MKDIR) $(bytecode_libdir)
349 $(Verb) $(MKDIR) $(sysconfdir)
351 # To create other directories, as needed, and timestamp their creation
353 $(Verb) $(MKDIR) $* > /dev/null
356 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
357 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
359 #---------------------------------------------------------
360 # Handle the DIRS options for sequential construction
361 #---------------------------------------------------------
366 $(RecursiveTargets)::
367 $(Verb) for dir in $(DIRS); do \
368 if [ ! -f $$dir/Makefile ]; then \
370 cp $(BUILD_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
372 if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
373 ($(MAKE) -C $$dir $@ ) || exit 1; \
378 #---------------------------------------------------------
379 # Handle the EXPERIMENTAL_DIRS options ensuring success
380 # after each directory is built.
381 #---------------------------------------------------------
382 ifdef EXPERIMENTAL_DIRS
383 $(RecursiveTargets)::
384 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
385 if [ ! -f $$dir/Makefile ]; then \
387 cp $(BUILD_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
389 if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
390 ($(MAKE) -C $$dir $@ ) || exit 0; \
395 #---------------------------------------------------------
396 # Handle the PARALLEL_DIRS options for parallel construction
397 #---------------------------------------------------------
400 SubDirs += $(PARALLEL_DIRS)
402 # Unfortunately, this list must be maintained if new recursive targets are added
403 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
404 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
405 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
406 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
407 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
408 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
410 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
413 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
415 cp $(BUILD_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
417 if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
418 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) ; \
422 #---------------------------------------------------------
423 # Handle the OPTIONAL_DIRS options for directores that may
425 #---------------------------------------------------------
428 SubDirs += $(OPTIONAL_DIRS)
430 $(RecursiveTargets)::
431 $(Verb) for dir in $(OPTIONAL_DIRS); do \
432 if [ -d $(BUILD_SRC_DIR)/$$dir ]; then\
433 if [ ! -f $$dir/Makefile ]; then \
435 cp $(BUILD_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
437 if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
438 ($(MAKE) -C$$dir $@ ) || exit 1; \
444 #---------------------------------------------------------
445 # Handle the CONFIG_FILES options
446 #---------------------------------------------------------
449 install-local:: $(sysconfdir) $(CONFIG_FILES)
450 $(Echo) Installing Configuration Files To $(sysconfdir)
451 $(Verb)for file in $(CONFIG_FILES); do \
452 if test -f $(BUILD_OBJ_DIR)/$${file} ; then \
453 $(INSTALL) $(BUILD_OBJ_DIR)/$${file} $(sysconfdir) ; \
454 elif test -f $(BUILD_SRC_DIR)/$${file} ; then \
455 $(INSTALL) $(BUILD_SRC_DIR)/$${file} $(sysconfdir) ; \
457 $(ECHO) Error: cannot find config file $${file}. ; \
462 $(Echo) Uninstalling Configuration Files From $(sysconfdir)
463 $(Verb)for file in $(CONFIG_FILES); do \
464 $(RM) -f $(sysconfdir)/$${file} ; \
469 ###############################################################################
470 # Library Build Rules: Four ways to build a library
471 ###############################################################################
473 #---------------------------------------------------------
474 # Bytecode Module Targets:
475 # If the user set MODULE_NAME then they want to build a
476 # bytecode module from the sources. We compile all the
477 # sources and link it together into a single bytecode
479 #---------------------------------------------------------
483 Module := $(LibDir)/$(MODULE_NAME).bc
484 LinkModule := $(LLVMGCC) -shared -nostdlib
486 ifdef EXPORTED_SYMBOL_FILE
487 LinkMOdule += -Xlinker -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
490 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
491 $(Echo) Building $(BuildMOde) Bytecode Module $(notdir $@)
492 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
494 all-local:: $(Module)
497 ifneq ($(strip $(Module)),)
498 -$(Verb) $(RM) -f $(Module)
501 DestModule := $(bytecode_libdir)/$(MODULE_NAME).bc
503 install-local:: $(DestModule)
505 $(DestModule): $(bytecode_libdir) $(Module)
506 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
507 $(Verb) $(INSTALL) $(Module) $@
510 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
511 -$(Verb) $(RM) -f $(DestModule)
515 # if we're building a library ...
518 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
519 LIBRARYNAME := $(strip $(LIBRARYNAME))
520 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
521 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
522 LibName.O := $(LibDir)/$(LIBRARYNAME).o
523 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
525 #---------------------------------------------------------
526 # Shared Library Targets:
527 # If the user asked for a shared library to be built
528 # with the SHARED_LIBRARY variable, then we provide
529 # targets for building them.
530 #---------------------------------------------------------
533 all-local:: $(LibName.LA)
535 $(LibName.LA): $(BUILT_SOURCES) $(ObjectsLO) $(LibDir)/.dir
536 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
537 $(Verb) $(Link) -o $@ $(ObjectsLO)
538 $(Verb) $(LTInstall) $@ $(LibDir)
541 ifneq ($(strip $(LibName.LA)),)
542 -$(Verb) $(RM) -f $(LibName.LA)
545 DestSharedLib = $(libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
547 install-local:: $(DestSharedLib)
549 $(DestSharedLib): $(libdir) $(LibName.LA)
550 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
551 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
552 $(Verb) $(LIBTOOL) --finish $(libdir)
555 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
556 -$(Verb) $(RM) -f $(libdir)/lib$(LIBRARYNAME).*
560 #---------------------------------------------------------
561 # Bytecode Library Targets:
562 # If the user asked for a bytecode library to be built
563 # with the BYTECODE_LIBRARY variable, then we provide
564 # targets for building them.
565 #---------------------------------------------------------
566 ifdef BYTECODE_LIBRARY
568 # make the C and C++ compilers strip debug info out of bytecode libraries.
569 BCCompile.C += -Wa,-strip-debug
570 BCCompile.CXX += -Wa,-strip-debug
572 all-local:: $(LibName.BCA)
574 ifdef EXPORTED_SYMBOL_FILE
575 BCLinkLib = $(LLVMGCC) -shared -nostdlib -Xlinker \
576 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
578 $(LibName.BCA): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
579 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
581 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
582 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
584 $(LibName.BCA): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir
585 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
586 $(Verb) $(LArchive) $@ $(ObjectsBC)
591 ifneq ($(strip $(LibName.BCA)),)
592 -$(Verb) $(RM) -f $(LibName.BCA)
595 DestBytecodeLib = $(bytecode_libdir)/lib$(LIBRARYNAME).a
597 install-bytecode-local:: $(DestBytecodeLib)
599 install-local:: $(DestBytecodeLib)
601 $(DestBytecodeLib): $(bytecode_libdir) $(LibName.BCA)
602 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
603 $(Verb) $(INSTALL) $(LibName.BCA) $@
606 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
607 -$(Verb) $(RM) -f $(DestBytecodeLib)
611 #---------------------------------------------------------
612 # ReLinked Library Targets:
613 # If the user didn't explicitly forbid building a
614 # relinked then we provide targets for building them.
615 #---------------------------------------------------------
616 ifndef DONT_BUILD_RELINKED
618 all-local:: $(LibName.O)
620 $(LibName.O): $(BUILT_SOURCES) $(ObjectsO) $(LibDir)/.dir
621 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
622 $(Verb) $(Relink) -o $@ $(ObjectsO)
625 ifneq ($(strip $(LibName.O)),)
626 -$(Verb) $(RM) -f $(LibName.O)
629 DestRelinkedLib = $(libdir)/$(LIBRARYNAME).o
631 install-local:: $(DestRelinkedLib)
633 $(DestRelinkedLib): $(libdir) $(LibName.O)
634 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
635 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
638 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
639 -$(Verb) $(RM) -f $(DestRelinkedLib)
643 #---------------------------------------------------------
644 # Archive Library Targets:
645 # If the user wanted a regular archive library built,
646 # then we provide targets for building them.
647 #---------------------------------------------------------
650 all-local:: $(LibName.A)
652 $(LibName.A): $(BUILT_SOURCES) $(ObjectsO) $(LibDir)/.dir
653 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
655 $(Verb) $(Archive) $@ $(ObjectsO)
659 ifneq ($(strip $(LibName.A)),)
660 -$(Verb) $(RM) -f $(LibName.A)
663 DestArchiveLib := $(libdir)/lib$(LIBRARYNAME).a
665 install-local:: $(DestArchiveLib)
667 $(DestArchiveLib): $(libdir) $(LibName.A)
668 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
669 $(Verb) $(MKDIR) $(libdir)
670 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
673 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
674 -$(Verb) $(RM) -f $(DestArchiveLib)
681 ###############################################################################
682 # Tool Build Rules: Build executable tool based on TOOLNAME option
683 ###############################################################################
687 #---------------------------------------------------------
688 # Handle the special "JIT" value for LLVM_LIBS which is a
689 # shorthand for a bunch of libraries that get the correct
690 # JIT support for a tool that runs JIT.
691 #---------------------------------------------------------
692 ifeq ($(LLVMLIBS),JIT)
694 # Make sure we can get our own symbols in the tool
697 # Generic JIT libraries
698 JIT_LIBS := LLVMInterpreter LLVMJIT LLVMCodeGen LLVMExecutionEngine
700 # You can enable the X86 JIT on a non-X86 host by setting the flag
701 # ENABLE_X86_JIT on the make command line. If not, it will still be
702 # enabled automagically on an X86 host.
707 # What the X86 JIT requires
709 JIT_LIBS += LLVMX86 LLVMSelectionDAG
712 # You can enable the SparcV9 JIT on a non-SparcV9 host by setting the flag
713 # ENABLE_SPARCV9_JIT on the make command line. If not, it will still be
714 # enabled automagically on an SparcV9 host.
715 ifeq ($(ARCH), Sparc)
716 ENABLE_SPARCV9_JIT = 1
719 # What the Sparc JIT requires
720 ifdef ENABLE_SPARCV9_JIT
721 JIT_LIBS += LLVMSparcV9 LLVMSparcV9ModuloSched LLVMSparcV9InstrSched \
722 LLVMSparcV9LiveVar LLVMInstrumentation.a LLVMProfilePaths \
723 LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMipa.a \
724 LLVMDataStructure.a LLVMSparcV9RegAlloc
727 # You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
728 # ENABLE_PPC_JIT on the make command line. If not, it will still be
729 # enabled automagically on an PowerPC host.
730 ifeq ($(ARCH), PowerPC)
734 # What the PowerPC JIT requires
736 JIT_LIBS += LLVMPowerPC
739 LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts LLVMAnalysis.a LLVMTransformUtils.a \
740 LLVMBCReader LLVMCore LLVMSupport.a LLVMTarget.a LLVMbzip2 \
741 LLVMSystem.a $(PLATFORMLIBDL)
744 #---------------------------------------------------------
745 # Set up variables for building a tool.
746 #---------------------------------------------------------
748 ToolBuildPath := $(ExmplDir)/$(TOOLNAME)$(EXEEXT)
750 ToolBuildPath := $(ToolDir)/$(TOOLNAME)$(EXEEXT)
752 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
753 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
754 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
755 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
756 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
757 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
758 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
759 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
761 #---------------------------------------------------------
762 # Tell make that we need to rebuild subdirectories before
763 # we can link the tool. This affects things like LLI which
764 # has library subdirectories.
765 #---------------------------------------------------------
766 $(ToolBuildPath): $(addsuffix /.makeall, $(PARALLEL_DIRS))
768 #---------------------------------------------------------
769 # Provide targets for building the tools
770 #---------------------------------------------------------
771 all-local:: $(ToolBuildPath)
774 ifneq ($(strip $(ToolBuildPath)),)
775 -$(Verb) $(RM) -f $(ToolBuildPath)
779 $(ToolBuildPath): $(ExmplDir)/.dir
781 $(ToolBuildPath): $(ToolDir)/.dir
784 $(ToolBuildPath): $(BUILT_SOURCES) $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
785 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
786 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
787 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB)
788 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) $(StripWarnMsg)
790 DestTool = $(bindir)/$(TOOLNAME)
792 install-local:: $(DestTool)
794 $(DestTool): $(bindir) $(ToolBuildPath)
795 $(Echo) Installing $(BuildMode) $(DestTool)
796 $(Verb) $(INSTALL) $(ToolBuildPath) $(DestTool)
799 $(Echo) Uninstalling $(BuildMode) $(DestTool)
800 -$(Verb) $(RM) -f $(DestTool)
804 ###############################################################################
805 # Object Build Rules: Build object files based on sources
806 ###############################################################################
808 # Provide rule sets for when dependency generation is enabled
809 ifndef DISABLE_AUTO_DEPENDENCIES
811 #---------------------------------------------------------
812 # Create .lo files in the ObjDir directory from the .cpp and .c files...
813 #---------------------------------------------------------
816 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir
817 $(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
818 $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ; \
819 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
820 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
822 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir
823 $(Echo) "Compiling $*.c for $(BuildMode) build (PIC)"
824 $(Verb) if $(LTCompile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
825 then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
826 else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
828 #---------------------------------------------------------
829 # Create .o files in the ObjDir directory from the .cpp and .c files...
830 #---------------------------------------------------------
833 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir
834 $(Echo) "Compiling $*.cpp for $(BuildMode) build"
835 $(Verb) if $(Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.CXXd $< -o $@ ; \
836 then $(MV) -f "$(ObjDir)/$*.CXXd" "$(ObjDir)/$*.d"; \
837 else $(RM) -f "$(ObjDir)/$*.CXXd"; exit 1; fi
839 $(ObjDir)/%.o: %.c $(ObjDir)/.dir
840 $(Echo) "Compiling $*.c for $(BuildMode) build"
841 $(Verb) if $(Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.Cd $< -o $@ ; \
842 then $(MV) -f "$(ObjDir)/$*.Cd" "$(ObjDir)/$*.d"; \
843 else $(RM) -f "$(ObjDir)/$*.Cd"; exit 1; fi
847 #---------------------------------------------------------
848 # Create .bc files in the ObjDir directory from .cpp and .c files...
849 #---------------------------------------------------------
850 $(ObjDir)/%.bc: %.cpp $(ObjDir)/.dir $(GCCAS)
851 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
852 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" $< -o $@ ; \
853 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
854 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
856 $(ObjDir)/%.bc: %.c $(ObjDir)/.dir $(GCCAS)
857 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
858 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" $< -o $@ ; \
859 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
860 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
862 # Provide alternate rule sets if dependencies are disabled
867 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir
868 $(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
869 $(LTCompile.CXX) $< -o $@
871 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir
872 $(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
873 $(LTCompile.C) $< -o $@
877 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir
878 $(Echo) "Compiling $*.cpp for $(BuildMode) build"
879 $(Compile.CXX) $< -o $@
881 $(ObjDir)/%.o: %.c $(ObjDir)/.dir
882 $(Echo) "Compiling $*.cpp for $(BuildMode) build"
883 $(Compile.C) $< -o $@
886 $(ObjDir)/%.bc: %.cpp $(ObjDir)/.dir $(GCCAS)
887 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
888 $(BCCompile.CXX) $< -o $@
890 $(ObjDir)/%.bc: %.c $(ObjDir)/.dir $(GCCAS)
891 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
892 $(BCCompile.C) $< -o $@
896 #---------------------------------------------------------
897 # Provide rule to build .bc files from .ll sources,
898 # regardless of dependencies
899 #---------------------------------------------------------
900 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
901 $(Echo) "Compiling $*.ll for $(BuildMode) build"
902 $(Verb) $(LLVMAS) $< -f -o $@
904 ###############################################################################
905 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
906 ###############################################################################
910 TDFiles := $(strip $(wildcard $(BUILD_SRC_DIR)/*.td) $(LLVM_SRC_ROOT)/lib/Target/Target.td)
911 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
913 $(INCFiles) : $(TBLGEN) $(TDFiles)
915 %GenRegisterNames.inc : %.td
916 $(Echo) "Building $(<F) register names with tblgen"
917 $(Verb) $(TableGen) -gen-register-enums -o $@ $<
919 %GenRegisterInfo.h.inc : %.td
920 $(Echo) "Building $(<F) register information header with tblgen"
921 $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
923 %GenRegisterInfo.inc : %.td
924 $(Echo) "Building $(<F) register info implementation with tblgen"
925 $(Verb) $(TableGen) -gen-register-desc -o $@ $<
927 %GenInstrNames.inc : %.td
928 $(Echo) "Building $(<F) instruction names with tblgen"
929 $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
931 %GenInstrInfo.inc : %.td
932 $(Echo) "Building $(<F) instruction information with tblgen"
933 $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
935 %GenAsmWriter.inc : %.td
936 $(Echo) "Building $(<F) assembly writer with tblgen"
937 $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
939 %GenATTAsmWriter.inc : %.td
940 $(Echo) "Building $(<F) AT&T assembly writer with tblgen"
941 $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
943 %GenIntelAsmWriter.inc : %.td
944 $(Echo) "Building $(<F) Intel assembly writer with tblgen"
945 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $<
947 %GenInstrSelector.inc: %.td
948 $(Echo) "Building $(<F) instruction selector with tblgen"
949 $(Verb) $(TableGen) -gen-instr-selector -o $@ $<
951 %GenCodeEmitter.inc:: %.td
952 $(Echo) "Building $(<F) code emitter with tblgen"
953 $(Verb) $(TableGen) -gen-emitter -o $@ $<
956 -$(Verb) $(RM) -f $(INCFiles)
960 ###############################################################################
961 # LEX AND YACC: Provide rules for generating sources with lex and yacc
962 ###############################################################################
964 #---------------------------------------------------------
965 # Provide rules for generating a .cpp source file from
966 # (f)lex input sources.
967 #---------------------------------------------------------
969 LexFiles := $(filter %.l,$(Sources))
973 LexOutput := $(strip $(patsubst %.l,%.cpp,$(LexFiles)))
975 .PRECIOUS: $(LexOutput)
977 # Note the extra sed filtering here, used to cut down on the warnings emited
978 # by GCC. The last line is a gross hack to work around flex aparently not
979 # being able to resize the buffer on a large token input. Currently, for
980 # uninitialized string buffers in LLVM we can generate very long tokens, so
981 # this is a hack around it.
982 # FIXME. (f.e. char Buffer[10000] )
985 $(Verb) $(FLEX) -t $< | \
986 $(SED) 's/void yyunput/inline void yyunput/' | \
987 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
988 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
992 -$(Verb) $(RM) -f $(LexOutput)
993 $(Verb) $(RM) -f $(LexOutput)
997 #---------------------------------------------------------
998 # Provide rules for generating a .cpp and .h source files
999 # from yacc (bison) input sources.
1000 #---------------------------------------------------------
1002 YaccFiles := $(filter %.y,$(Sources))
1003 ifneq ($(YaccFiles),)
1004 YaccOutput := $(addprefix $(patsubst %.y,%,$(YaccFiles)),.h .cpp .output)
1006 .PRECIOUS: $(YaccOutput)
1008 # Cancel built-in rules for yacc
1013 # Rule for building the bison parsers...
1015 $(Echo) "Bisoning $*.y"
1016 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1017 $(Verb) $(MV) -f $*.tab.c $*.cpp
1018 $(Verb) $(MV) -f $*.tab.h $*.h
1021 -$(Verb) $(RM) -f $(YaccOutput)
1022 $(Verb) $(RM) -f $(YaccOutput)
1025 ###############################################################################
1026 # OTHER RULES: Other rules needed
1027 ###############################################################################
1029 # To create postscript files from dot files...
1030 ifneq ($(DOT),false)
1032 $(DOT) -Tps < $< > $@
1035 $(Echo) "Cannot build $@: The program dot is not installed"
1038 # This rules ensures that header files that are removed still have a rule for
1039 # which they can be "generated." This allows make to ignore them and
1040 # reproduce the dependency lists.
1043 # Define clean-local to clean the current directory. Note that this uses a
1044 # very conservative approach ensuring that empty variables do not cause
1045 # errors or disastrous removal.
1047 ifneq ($(strip $(ObjDir)),)
1048 -$(Verb) $(RM) -rf $(ObjDir)
1050 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1051 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1052 -$(Verb) $(RM) -f *$(SHLIBEXT)
1056 -$(Verb) $(RM) -rf Debug Release Profile
1058 # Build tags database for Emacs/Xemacs:
1062 find $(BUILD_SRC_ROOT)/include $(BUILD_SRC_ROOT)/lib \
1063 $(BUILD_SRC_ROOT)/tools $(BUILD_SRC_ROOT)/examples \
1064 $(BUILD_OBJ_ROOT)/include $(BUILD_OBJ_ROOT)/lib \
1065 $(BUILD_OBJ_ROOT)/tools $(BUILD_OBJ_ROOT)/examples \
1066 -name '*.cpp' -o -name '*.h' | \
1067 $(ETAGS) $(ETAGSFLAGS) -
1070 find $(BUILD_SRC_ROOT)/include $(BUILD_SRC_ROOT)/lib \
1071 $(BUILD_SRC_ROOT)/tools $(BUILD_SRC_ROOT)/examples \
1072 $(BUILD_OBJ_ROOT)/include $(BUILD_OBJ_ROOT)/lib \
1073 $(BUILD_OBJ_ROOT)/tools $(BUILD_OBJ_ROOT)/examples \
1074 \( -name '*.cpp' -o -name '*.h' \) -print | \
1075 ctags -ImtT -o $(BUILD_OBJ_ROOT)/CTAGS -L -
1078 ###############################################################################
1079 # DEPENDENCIES: Include the dependency files if we should
1080 ###############################################################################
1081 ifndef DISABLE_AUTO_DEPENDENCIES
1083 # If its not one of the cleaning targets
1084 ifneq ($strip($(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
1086 # Get the list of dependency files
1087 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1088 DependFiles := $(patsubst %,$(BUILD_OBJ_DIR)/$(BuildMode)/%.d,$(DependFiles))
1090 -include /dev/null $(DependFiles)
1096 ###############################################################################
1097 # CHECK: Running the test suite
1098 ###############################################################################
1101 $(Verb) if test -d "$(BUILD_OBJ_ROOT)/test" ; then \
1102 if test -f "$(BUILD_OBJ_ROOT)/test/Makefile" ; then \
1103 $(EchoCmd) Running test suite ; \
1104 $(MAKE) -C $(BUILD_OBJ_ROOT)/test check-local \
1105 TESTSUITE=$(TESTSUITE) ; \
1107 $(EchoCmd) No Makefile in test directory ; \
1110 $(EchoCmd) No test directory ; \
1113 ###############################################################################
1114 # DISTRIBUTION: Handle construction of a distribution tarball
1115 ###############################################################################
1117 #------------------------------------------------------------------------
1118 # Define distribution related variables
1119 #------------------------------------------------------------------------
1120 DistName := $(LLVM_TARBALL_NAME)
1121 DistDir := $(BUILD_OBJ_ROOT)/$(DistName)
1122 TopDistDir := $(BUILD_OBJ_ROOT)/$(DistName)
1123 DistTarGZip := $(BUILD_OBJ_ROOT)/$(DistName).tar.gz
1124 DistZip := $(BUILD_OBJ_ROOT)/$(DistName).zip
1125 DistTarBZ2 := $(BUILD_OBJ_ROOT)/$(DistName).tar.bz2
1126 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1127 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1128 Makefile.config.in configure autoconf
1129 DistOther := $(notdir $(wildcard \
1130 $(BUILD_SRC_DIR)/*.h \
1131 $(BUILD_SRC_DIR)/*.td \
1132 $(BUILD_SRC_DIR)/*.def \
1133 $(BUILD_SRC_DIR)/*.ll \
1134 $(BUILD_SRC_DIR)/*.in))
1135 DistSubDirs := $(SubDirs)
1136 DistSources = $(Sources) $(EXTRA_DIST)
1137 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1139 #------------------------------------------------------------------------
1140 # We MUST build distribution with OBJ_DIR != SRC_DIR
1141 #------------------------------------------------------------------------
1142 ifeq ($(BUILD_SRC_DIR),$(BUILD_OBJ_DIR))
1143 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1144 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1148 #------------------------------------------------------------------------
1149 # Prevent catastrophic remove
1150 #------------------------------------------------------------------------
1151 ifeq ($(LLVM_TARBALL_NAME),)
1152 $(error LLVM_TARBALL_NAME is empty. Please rerun configure)
1155 #------------------------------------------------------------------------
1156 # Prevent attempt to run dist targets from anywhere but the top level
1157 #------------------------------------------------------------------------
1160 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1161 $(Echo) ERROR: You must run $@ from $(BUILD_OBJ_ROOT)
1165 #------------------------------------------------------------------------
1166 # Provide the top level targets
1167 #------------------------------------------------------------------------
1169 dist-gzip:: $(DistTarGZip)
1171 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1172 $(Echo) Packing gzipped distribution tar file.
1173 $(Verb) cd $(BUILD_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1174 $(GZIP) -c > "$(DistTarGZip)"
1176 dist-bzip2:: $(DistTarBZ2)
1178 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1179 $(Echo) Packing bzipped distribution tar file.
1180 $(Verb) cd $(BUILD_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1181 $(BZIP2) -c >$(DistTarBZ2)
1183 dist-zip:: $(DistZip)
1185 $(DistZip) : $(TopDistDir)/.makedistdir
1186 $(Echo) Packing zipped distribution file.
1187 $(Verb) rm -f $(DistZip)
1188 $(Verb) cd $(BUILD_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1190 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1191 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1193 DistCheckDir := $(LLVM_OBJ_ROOT)/_distcheckdir
1195 dist-check:: $(DistTarGZip)
1196 $(Echo) Checking distribution tar file.
1197 $(Verb) if test -d $(DistCheckDir) ; then \
1198 $(RM) -rf $(DistCheckDir) ; \
1200 $(Verb) $(MKDIR) $(DistCheckDir)
1201 $(Verb) cd $(DistCheckDir) && \
1202 $(MKDIR) $(DistCheckDir)/build && \
1203 $(MKDIR) $(DistCheckDir)/install && \
1204 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1206 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1207 --srcdir=../$(DistName) --with-llvmgccdir="$(LLVMGCCDIR)" && \
1210 $(MAKE) install && \
1211 $(MAKE) uninstall && \
1214 $(MAKE) dist-clean && \
1215 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1218 $(Echo) Cleaning distribution files
1219 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1224 #------------------------------------------------------------------------
1225 # Provide the recursive distdir target for building the distribution directory
1226 #------------------------------------------------------------------------
1227 distdir: $(DistDir)/.makedistdir
1228 $(DistDir)/.makedistdir: $(DistSources)
1229 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1230 if test -d "$(DistDir)" ; then \
1231 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1234 $(EchoCmd) Removing old $(DistDir) ; \
1235 $(RM) -rf $(DistDir); \
1236 $(EchoCmd) Making 'all' to verify build ; \
1239 $(Echo) Building Distribution Directory $(DistDir)
1240 $(Verb) $(MKDIR) $(DistDir)
1241 $(Verb) srcdirstrip=`echo "$(BUILD_SRC_DIR)" | sed 's|.|.|g'`; \
1242 srcrootstrip=`echo "$(BUILD_SRC_ROOT)" | sed 's|.|.|g'`; \
1243 for file in $(DistFiles) ; do \
1245 $(BUILD_SRC_DIR)/*) \
1246 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1248 $(BUILD_SRC_ROOT)/*) \
1249 file=`echo "$$file" | \
1250 sed "s#^$$srcrootstrip/##"` \
1253 if test -f "$(BUILD_SRC_DIR)/$$file" || \
1254 test -d "$(BUILD_SRC_DIR)/$$file" ; then \
1255 from_dir="$(BUILD_SRC_DIR)" ; \
1256 elif test -f "$$file" || test -d "$$file" ; then \
1259 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1260 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1261 to_dir="$(DistDir)/$$dir"; \
1262 $(MKDIR) "$$to_dir" ; \
1264 to_dir="$(DistDir)"; \
1266 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1267 if test -n "$$mid_dir" ; then \
1268 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1270 if test -d "$$from_dir/$$file"; then \
1271 if test -d "$(BUILD_SRC_DIR)/$$file" && \
1272 test "$$from_dir" != "$(BUILD_SRC_DIR)" ; then \
1273 cp -pR "$(BUILD_SRC_DIR)/$$file" "$$to_dir" || exit 1; \
1275 cp -pR $$from_dir/$$file $$to_dir || exit 1; \
1276 elif test -f "$$from_dir/$$file" ; then \
1277 cp -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1278 elif test -L "$$from_dir/$$file" ; then \
1279 cp -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1280 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1281 $(EchoCmd) "===== WARNING: Distribution Source " \
1282 "$$from_dir/$$file Not Found!" ; \
1283 elif test "$(Verb)" != '@' ; then \
1284 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1287 $(Verb) for subdir in $(DistSubDirs) ; do \
1288 if test "$$subdir" \!= "." ; then \
1289 new_distdir="$(DistDir)/$$subdir" ; \
1290 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1291 ( cd $$subdir && $(MAKE) DistDir="$$new_distdir" distdir ) || \
1295 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1296 $(EchoCmd) Eliminating CVS directories from distribution ; \
1297 $(RM) -rf `find $(TopDistDir) -type d -name CVS -print` ;\
1298 $(MAKE) dist-hook ; \
1299 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1300 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1301 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1302 -o ! -type d ! -perm -444 -exec \
1303 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1304 || chmod -R a+r $(DistDir) ; \
1307 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1313 ###############################################################################
1314 # TOP LEVEL - targets only to apply at the top level directory
1315 ###############################################################################
1319 #------------------------------------------------------------------------
1320 # Install support for the project's include files:
1321 #------------------------------------------------------------------------
1323 $(Echo) Installing include files
1324 $(Verb) $(MKDIR) $(includedir)
1325 $(Verb) if [ -d "$(BUILD_SRC_ROOT)/include" ] ; then \
1326 cd $(BUILD_SRC_ROOT)/include && \
1327 find . -path '*/Internal' -prune -o '(' -type f \
1328 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' ')' \
1329 -print ')' | grep -v CVS | pax -rwdvpe $(includedir) ; \
1333 $(Echo) Uninstalling include files
1334 $(Verb) if [ -d "$(BUILD_SRC_ROOT)/include" ] ; then \
1335 cd $(BUILD_SRC_ROOT)/include && \
1336 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1337 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' ')' \
1338 -print ')' | grep -v CVS | sed 's#^#$(includedir)/#'` ; \
1343 #------------------------------------------------------------------------
1344 # Print out the directories used for building
1345 #------------------------------------------------------------------------
1347 $(Echo) "BuildMode : " '$(BuildMode)'
1348 $(Echo) "BUILD_SRC_ROOT : " '$(BUILD_SRC_ROOT)'
1349 $(Echo) "BUILD_SRC_DIR : " '$(BUILD_SRC_DIR)'
1350 $(Echo) "BUILD_OBJ_ROOT : " '$(BUILD_OBJ_ROOT)'
1351 $(Echo) "BUILD_OBJ_DIR : " '$(BUILD_OBJ_DIR)'
1352 $(Echo) "LLVM_SRC_ROOT : " '$(LLVM_SRC_ROOT)'
1353 $(Echo) "LLVM_OBJ_ROOT : " '$(LLVM_OBJ_ROOT)'
1354 $(Echo) "libdir : " '$(libdir)'
1355 $(Echo) "bindir : " '$(bindir)'
1356 $(Echo) "sysconfdir : " '$(sysconfdir)'
1357 $(Echo) "bytecode_libdir: " '$(bytecode_libdir)'
1358 $(Echo) "UserTargets : " '$(UserTargets)'
1359 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1360 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1361 $(Echo) "ObjDir : " '$(ObjDir)'
1362 $(Echo) "LibDir : " '$(LibDir)'
1363 $(Echo) "ToolDir : " '$(ToolDir)'
1364 $(Echo) "ExmplDir : " '$(ExmplDir)'
1365 $(Echo) "Sources : " '$(Sources)'
1366 $(Echo) "TDFiles : " '$(TDFiles)'
1367 $(Echo) "INCFiles : " '$(INCFiles)'
1368 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1369 $(Echo) "Compile.C : " '$(Compile.C)'
1370 $(Echo) "Archive : " '$(Archive)'
1371 $(Echo) "YaccFiles : " '$(YaccFiles)'
1372 $(Echo) "LexFiles : " '$(LexFiles)'
1373 $(Echo) "Module : " '$(Module)'