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
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)
76 ifneq ($(MakefileConfigIn),)
77 PreConditions += $(MakefileConfig)
80 preconditions : $(PreConditions)
82 #------------------------------------------------------------------------
83 # Make sure the BUILT_SOURCES are built first
84 #------------------------------------------------------------------------
85 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
88 ifneq ($(strip $(BUILT_SOURCES)),)
89 -$(Verb) $(RM) -f $(BUILT_SOURCES)
92 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
94 $(Verb) if test -x config.status ; then \
95 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
96 $(MKDIR) .spotless.save ; \
97 $(MV) config.status .spotless.save ; \
98 $(MV) mklib .spotless.save ; \
99 $(MV) projects .spotless.save ; \
101 $(MV) .spotless.save/config.status . ; \
102 $(MV) .spotless.save/mklib . ; \
103 $(MV) .spotless.save/projects . ; \
104 $(RM) -rf .spotless.save ; \
105 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
106 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
107 $(ConfigStatusScript) ; \
109 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
113 $(BUILT_SOURCES) : $(ObjMakefiles)
115 #------------------------------------------------------------------------
116 # Make sure we're not using a stale configuration
117 #------------------------------------------------------------------------
119 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
120 $(Verb) cd $(PROJ_OBJ_ROOT) && \
121 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
122 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
124 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
125 $(ConfigStatusScript)
127 .PRECIOUS: $(ConfigStatusScript)
128 $(ConfigStatusScript): $(ConfigureScript)
129 $(Echo) Reconfiguring with $<
130 $(Verb) cd $(PROJ_OBJ_ROOT) && \
131 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
132 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
134 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
135 $(ConfigStatusScript)
137 #------------------------------------------------------------------------
138 # Make sure the configuration makefile is up to date
139 #------------------------------------------------------------------------
140 ifneq ($(MakefileConfigIn),)
141 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
142 $(Echo) Regenerating $@
143 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
146 ifneq ($(MakefileCommonIn),)
147 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
148 $(Echo) Regenerating $@
149 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
152 #------------------------------------------------------------------------
153 # If the Makefile in the source tree has been updated, copy it over into the
154 # build tree. But, only do this if the source and object makefiles differ
155 #------------------------------------------------------------------------
156 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
158 Makefile: $(PROJ_SRC_DIR)/Makefile
159 $(Echo) "Updating Makefile"
160 $(Verb) $(MKDIR) $(@D)
161 $(Verb) $(CP) -f $< $@
163 # Copy the Makefile.* files unless we're in the root directory which avoids
164 # the copying of Makefile.config.in or other things that should be explicitly
166 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
168 *Makefile.rules) ;; \
170 *) $(Echo) "Updating $(@F)" ; \
177 #------------------------------------------------------------------------
178 # Set up the basic dependencies
179 #------------------------------------------------------------------------
180 $(UserTargets):: $(PreConditions)
184 clean-all:: clean-local clean-all-local
185 install:: install-local
186 uninstall:: uninstall-local
187 install-local:: all-local
188 install-bytecode:: install-bytecode-local
190 ###############################################################################
191 # VARIABLES: Set up various variables based on configuration data
192 ###############################################################################
194 #--------------------------------------------------------------------
195 # Variables derived from configuration we are building
196 #--------------------------------------------------------------------
199 ifdef ENABLE_PROFILING
201 CXX.Flags := -O3 -DNDEBUG -felide-constructors -finline-functions -pg
202 C.Flags := -O3 -DNDEBUG -pg
203 LD.Flags := -O3 -DNDEBUG -pg
205 ifdef ENABLE_OPTIMIZED
207 # Don't use -fomit-frame-pointer on FreeBSD
208 ifneq ($(OS),FreeBSD)
209 OmitFramePointer := -fomit-frame-pointer
211 CXX.Flags := -O3 -DNDEBUG -finline-functions -felide-constructors \
213 C.Flags := -O3 -DNDEBUG $(OmitFramePointer)
214 LD.Flags := -O3 -DNDEBUG
217 CXX.Flags := -g -D_DEBUG
218 C.Flags := -g -D_DEBUG
219 LD.Flags := -g -D_DEBUG
224 CXX.Flags += $(CXXFLAGS)
226 CPP.Flags += $(CPPFLAGS)
227 LD.Flags += $(LDFLAGS)
229 LibTool.Flags := --tag=CXX
231 #Make Floating point ieee complient on alpha
237 #--------------------------------------------------------------------
238 # Directory locations
239 #--------------------------------------------------------------------
240 ObjDir := $(PROJ_OBJ_DIR)/$(BuildMode)
241 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
242 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
243 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
244 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
245 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
246 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
247 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
249 #--------------------------------------------------------------------
250 # Full Paths To Compiled Tools and Utilities
251 #--------------------------------------------------------------------
252 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
255 LIBTOOL := $(LLVM_OBJ_ROOT)/mklib
258 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
261 BURG := $(LLVMToolDir)/burg$(EXEEXT)
264 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
267 GCCAS := $(LLVMToolDir)/gccas$(EXEEXT)
270 GCCLD := $(LLVMToolDir)/gccld$(EXEEXT)
273 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
276 LLI := $(LLVMToolDir)/lli$(EXEEXT)
279 LLC := $(LLVMToolDir)/llc$(EXEEXT)
282 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
285 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
288 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
289 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
291 #--------------------------------------------------------------------
292 # Adjust to user's request
293 #--------------------------------------------------------------------
295 # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
296 # to be built. Note that if LOADABLE_MODULE is specified then the resulting
297 # shared library can be opened with dlopen
299 LD.Flags += -rpath $(LibDir)
300 ifdef LOADABLE_MODULE
304 LibTool.Flags += --tag=disable-shared
314 # Adjust settings for verbose mode
317 LibTool.Flags += --silent
318 AR.Flags += >/dev/null 2>/dev/null
319 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
321 ConfigureScriptFLAGS :=
324 # By default, strip symbol information from executable
326 Strip := $(PLATFORMSTRIPOPTS)
327 StripWarnMsg := "(without symbols)"
328 Install.StripFlag += -s
331 # Adjust linker flags for building an executable
334 LD.Flags += -rpath $(ExmplDir) -export-dynamic
336 LD.Flags += -rpath $(ToolDir) -export-dynamic
340 #----------------------------------------------------------
341 # Options To Invoke Tools
342 #----------------------------------------------------------
344 CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused
347 CompileCommonOpts += -D_REENTRANT -D_HPUX_SOURCE
350 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
351 CPP.Flags += -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
352 -I$(PROJ_OBJ_ROOT)/include \
353 -I$(PROJ_SRC_ROOT)/include \
354 -I$(LLVM_OBJ_ROOT)/include \
355 -I$(LLVM_SRC_ROOT)/include \
356 -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
358 Compile.C = $(CC) $(CPP.Flags) $(CompileCommonOpts) -c $(C.Flags)
359 LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
360 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
362 Compile.CXX = $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -c
363 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
364 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
366 Link = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
367 $(CompileCommonOpts) $(LD.Flags) $(Strip)
368 Relink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
370 LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
372 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
373 DataInstall = $(INSTALL) -m 0644
374 Burg = $(BURG) -I $(PROJ_SRC_DIR)
375 TableGen = $(TBLGEN) -I $(PROJ_SRC_DIR)
376 Archive = $(AR) $(AR.Flags)
377 LArchive = $(LLVMToolDir)/llvm-ar rcsf
384 #----------------------------------------------------------
385 # Get the list of source files and compute object file
387 #----------------------------------------------------------
390 FakeSources := $(FAKE_SOURCES)
392 FakeSources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
394 BaseNameSources := $(sort $(basename $(FakeSources)))
395 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
396 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
397 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
400 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
401 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
402 $(PROJ_SRC_DIR)/*.l))
404 Sources := $(SOURCES)
408 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
411 BaseNameSources := $(sort $(basename $(Sources)))
412 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
413 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
414 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
417 ###############################################################################
418 # DIRECTORIES: Handle recursive descent of directory structure
419 ###############################################################################
421 #---------------------------------------------------------
422 # Provide rules to make install dirs. This must be early
423 # in the file so they get built before dependencies
424 #---------------------------------------------------------
426 $(PROJ_bindir): $(PROJ_bindir)/.dir
427 $(PROJ_libdir): $(PROJ_libdir)/.dir
428 $(PROJ_includedir): $(PROJ_includedir)/.dir
429 $(PROJ_etcdir): $(PROJ_etcdir)/.dir
431 # To create other directories, as needed, and timestamp their creation
433 $(Verb) $(MKDIR) $* > /dev/null
436 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
437 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
439 #---------------------------------------------------------
440 # Handle the DIRS options for sequential construction
441 #---------------------------------------------------------
446 $(RecursiveTargets)::
447 $(Verb) for dir in $(DIRS); do \
448 if [ ! -f $$dir/Makefile ]; then \
450 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
452 if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
453 ($(MAKE) -C $$dir $@ ) || exit 1; \
458 #---------------------------------------------------------
459 # Handle the EXPERIMENTAL_DIRS options ensuring success
460 # after each directory is built.
461 #---------------------------------------------------------
462 ifdef EXPERIMENTAL_DIRS
463 $(RecursiveTargets)::
464 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
465 if [ ! -f $$dir/Makefile ]; then \
467 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
469 if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
470 ($(MAKE) -C $$dir $@ ) || exit 0; \
475 #---------------------------------------------------------
476 # Handle the PARALLEL_DIRS options for parallel construction
477 #---------------------------------------------------------
480 SubDirs += $(PARALLEL_DIRS)
482 # Unfortunately, this list must be maintained if new recursive targets are added
483 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
484 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
485 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
486 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
487 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
488 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
490 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
493 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
495 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
497 if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
498 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) ; \
502 #---------------------------------------------------------
503 # Handle the OPTIONAL_DIRS options for directores that may
505 #---------------------------------------------------------
508 SubDirs += $(OPTIONAL_DIRS)
510 $(RecursiveTargets)::
511 $(Verb) for dir in $(OPTIONAL_DIRS); do \
512 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
513 if [ ! -f $$dir/Makefile ]; then \
515 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
517 if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
518 ($(MAKE) -C$$dir $@ ) || exit 1; \
524 #---------------------------------------------------------
525 # Handle the CONFIG_FILES options
526 #---------------------------------------------------------
529 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
530 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
531 $(Verb)for file in $(CONFIG_FILES); do \
532 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
533 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
534 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
535 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
537 $(ECHO) Error: cannot find config file $${file}. ; \
542 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
543 $(Verb)for file in $(CONFIG_FILES); do \
544 $(RM) -f $(PROJ_etcdir)/$${file} ; \
549 ###############################################################################
550 # Set up variables for building libararies
551 ###############################################################################
553 #---------------------------------------------------------
554 # Handle the special "JIT" value for LLVM_LIBS which is a
555 # shorthand for a bunch of libraries that get the correct
556 # JIT support for a library or a tool that runs JIT.
557 #---------------------------------------------------------
558 ifeq ($(LLVMLIBS),JIT)
560 # Make sure we can get our own symbols in the tool
563 # Generic JIT libraries
564 JIT_LIBS := LLVMInterpreter LLVMJIT LLVMCodeGen LLVMExecutionEngine
566 # You can enable the X86 JIT on a non-X86 host by setting the flag
567 # ENABLE_X86_JIT on the make command line. If not, it will still be
568 # enabled automagically on an X86 host.
573 # What the X86 JIT requires
575 JIT_LIBS += LLVMX86 LLVMSelectionDAG
578 # You can enable the SparcV9 JIT on a non-SparcV9 host by setting the flag
579 # ENABLE_SPARCV9_JIT on the make command line. If not, it will still be
580 # enabled automagically on an SparcV9 host.
581 ifeq ($(ARCH), Sparc)
582 ENABLE_SPARCV9_JIT = 1
585 # What the Sparc JIT requires
586 ifdef ENABLE_SPARCV9_JIT
587 JIT_LIBS += LLVMSparcV9 LLVMSparcV9ModuloSched LLVMSparcV9InstrSched \
588 LLVMSparcV9LiveVar LLVMInstrumentation.a LLVMProfilePaths \
589 LLVMBCWriter LLVMTransforms.a LLVMipo.a LLVMipa.a \
590 LLVMDataStructure.a LLVMSparcV9RegAlloc
593 # You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
594 # ENABLE_PPC_JIT on the make command line. If not, it will still be
595 # enabled automagically on an PowerPC host.
596 ifeq ($(ARCH), PowerPC)
600 # What the PowerPC JIT requires
602 JIT_LIBS += LLVMPowerPC LLVMSelectionDAG
605 LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts LLVMAnalysis.a LLVMTransformUtils.a \
606 LLVMBCReader LLVMCore LLVMSupport.a LLVMTarget.a LLVMbzip2 \
607 LLVMSystem.a $(PLATFORMLIBDL)
610 #---------------------------------------------------------
611 # Define various command line options pertaining to the
612 # libraries needed when linking. There are "Proj" libs
613 # (defined by the user's project) and "LLVM" libs (defined
614 # by the # LLVM project).
615 #---------------------------------------------------------
616 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
617 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
618 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
619 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
620 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
621 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
622 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
623 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
625 ###############################################################################
626 # Library Build Rules: Four ways to build a library
627 ###############################################################################
629 #---------------------------------------------------------
630 # Bytecode Module Targets:
631 # If the user set MODULE_NAME then they want to build a
632 # bytecode module from the sources. We compile all the
633 # sources and link it together into a single bytecode
635 #---------------------------------------------------------
638 ifeq ($(strip $(LLVMGCC)),)
639 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
642 Module := $(LibDir)/$(MODULE_NAME).bc
643 LinkModule := $(LLVMGCCWITHPATH) -shared -nostdlib
645 ifdef EXPORTED_SYMBOL_FILE
646 LinkModule += -Xlinker -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
649 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
650 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
651 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
653 all-local:: $(Module)
656 ifneq ($(strip $(Module)),)
657 -$(Verb) $(RM) -f $(Module)
660 ifdef BYTECODE_DESTINATION
661 ModuleDestDir := $(BYTECODE_DESTINATION)
663 ModuleDestDir := $(PROJ_libdir)
666 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
668 install-module:: $(DestModule)
669 install-local:: $(DestModule)
671 $(DestModule): $(ModuleDestDir) $(Module)
672 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
673 $(Verb) $(DataInstall) $(Module) $(DestModule)
676 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
677 -$(Verb) $(RM) -f $(DestModule)
682 # if we're building a library ...
685 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
686 LIBRARYNAME := $(strip $(LIBRARYNAME))
687 ifdef LOADABLE_MODULE
688 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
690 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
692 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
693 LibName.O := $(LibDir)/$(LIBRARYNAME).o
694 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
696 #---------------------------------------------------------
697 # Shared Library Targets:
698 # If the user asked for a shared library to be built
699 # with the SHARED_LIBRARY variable, then we provide
700 # targets for building them.
701 #---------------------------------------------------------
704 all-local:: $(LibName.LA)
706 ifdef LINK_LIBS_IN_SHARED
707 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
708 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
709 $(Verb) $(Link) -o $@ $(ObjectsLO) \
710 $(ProjLibsOptions) $(LLVMLibsOptions)
711 $(Verb) $(LTInstall) $@ $(LibDir)
713 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
714 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
715 $(Verb) $(Link) -o $@ $(ObjectsLO)
716 $(Verb) $(LTInstall) $@ $(LibDir)
720 ifneq ($(strip $(LibName.LA)),)
721 -$(Verb) $(RM) -f $(LibName.LA)
724 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
726 install-local:: $(DestSharedLib)
728 $(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
729 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
730 $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
731 $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
734 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
735 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
739 #---------------------------------------------------------
740 # Bytecode Library Targets:
741 # If the user asked for a bytecode library to be built
742 # with the BYTECODE_LIBRARY variable, then we provide
743 # targets for building them.
744 #---------------------------------------------------------
745 ifdef BYTECODE_LIBRARY
746 ifeq ($(strip $(LLVMGCC)),)
747 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
750 # make the C and C++ compilers strip debug info out of bytecode libraries.
751 BCCompile.C += -Wa,-strip-debug
752 BCCompile.CXX += -Wa,-strip-debug
754 all-local:: $(LibName.BCA)
756 ifdef EXPORTED_SYMBOL_FILE
757 BCLinkLib = $(LLVMGCCWITHPATH) -shared -nostdlib -Xlinker \
758 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
760 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(GCCLD) \
761 $(LLVMToolDir)/llvm-ar
762 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
764 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
766 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
768 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
769 $(LLVMToolDir)/llvm-ar
770 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
772 $(Verb) $(LArchive) $@ $(ObjectsBC)
777 ifneq ($(strip $(LibName.BCA)),)
778 -$(Verb) $(RM) -f $(LibName.BCA)
781 ifdef BYTECODE_DESTINATION
782 BytecodeDestDir := $(BYTECODE_DESTINATION)
784 BytecodeDestDir := $(PROJ_libdir)
787 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
789 install-bytecode-local:: $(DestBytecodeLib)
791 install-local:: $(DestBytecodeLib)
793 $(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA)
794 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
795 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
798 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
799 -$(Verb) $(RM) -f $(DestBytecodeLib)
804 #---------------------------------------------------------
805 # ReLinked Library Targets:
806 # If the user didn't explicitly forbid building a
807 # relinked then we provide targets for building them.
808 #---------------------------------------------------------
809 ifndef DONT_BUILD_RELINKED
811 all-local:: $(LibName.O)
813 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
814 $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
815 $(Verb) $(Relink) -o $@ $(ObjectsO)
818 ifneq ($(strip $(LibName.O)),)
819 -$(Verb) $(RM) -f $(LibName.O)
822 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
824 install-local:: $(DestRelinkedLib)
826 $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
827 $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
828 $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
831 $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
832 -$(Verb) $(RM) -f $(DestRelinkedLib)
836 #---------------------------------------------------------
837 # Archive Library Targets:
838 # If the user wanted a regular archive library built,
839 # then we provide targets for building them.
840 #---------------------------------------------------------
843 all-local:: $(LibName.A)
845 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
846 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
848 $(Verb) $(Archive) $@ $(ObjectsO)
852 ifneq ($(strip $(LibName.A)),)
853 -$(Verb) $(RM) -f $(LibName.A)
856 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
858 install-local:: $(DestArchiveLib)
860 $(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
861 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
862 $(Verb) $(MKDIR) $(PROJ_libdir)
863 $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
866 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
867 -$(Verb) $(RM) -f $(DestArchiveLib)
874 ###############################################################################
875 # Tool Build Rules: Build executable tool based on TOOLNAME option
876 ###############################################################################
880 #---------------------------------------------------------
881 # Set up variables for building a tool.
882 #---------------------------------------------------------
884 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
886 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
889 #---------------------------------------------------------
890 # Tell make that we need to rebuild subdirectories before
891 # we can link the tool. This affects things like LLI which
892 # has library subdirectories.
893 #---------------------------------------------------------
894 $(ToolBuildPath): $(addsuffix /.makeall, $(PARALLEL_DIRS))
896 #---------------------------------------------------------
897 # Provide targets for building the tools
898 #---------------------------------------------------------
899 all-local:: $(ToolBuildPath)
902 ifneq ($(strip $(ToolBuildPath)),)
903 -$(Verb) $(RM) -f $(ToolBuildPath)
907 $(ToolBuildPath): $(ExmplDir)/.dir
909 $(ToolBuildPath): $(ToolDir)/.dir
912 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
913 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
914 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
915 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
916 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) $(StripWarnMsg)
918 DestTool = $(PROJ_bindir)/$(TOOLNAME)
920 install-local:: $(DestTool)
922 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
923 $(Echo) Installing $(BuildMode) $(DestTool)
924 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
927 $(Echo) Uninstalling $(BuildMode) $(DestTool)
928 -$(Verb) $(RM) -f $(DestTool)
932 ###############################################################################
933 # Object Build Rules: Build object files based on sources
934 ###############################################################################
936 # Provide rule sets for when dependency generation is enabled
937 ifndef DISABLE_AUTO_DEPENDENCIES
939 #---------------------------------------------------------
940 # Create .lo files in the ObjDir directory from the .cpp and .c files...
941 #---------------------------------------------------------
944 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
945 $(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
946 $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ; \
947 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
948 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
950 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
951 $(Echo) "Compiling $*.cc for $(BuildMode) build (PIC)"
952 $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ; \
953 then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
954 else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
956 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
957 $(Echo) "Compiling $*.c for $(BuildMode) build (PIC)"
958 $(Verb) if $(LTCompile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
959 then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
960 else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
962 #---------------------------------------------------------
963 # Create .o files in the ObjDir directory from the .cpp and .c files...
964 #---------------------------------------------------------
967 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
968 $(Echo) "Compiling $*.cpp for $(BuildMode) build"
969 $(Verb) if $(Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.CXXd $< -o $@ ; \
970 then $(MV) -f "$(ObjDir)/$*.CXXd" "$(ObjDir)/$*.d"; \
971 else $(RM) -f "$(ObjDir)/$*.CXXd"; exit 1; fi
973 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
974 $(Echo) "Compiling $*.cc for $(BuildMode) build"
975 $(Verb) if $(Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.CXXd $< -o $@ ; \
976 then $(MV) -f "$(ObjDir)/$*.CXXd" "$(ObjDir)/$*.d"; \
977 else $(RM) -f "$(ObjDir)/$*.CXXd"; exit 1; fi
979 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
980 $(Echo) "Compiling $*.c for $(BuildMode) build"
981 $(Verb) if $(Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.Cd $< -o $@ ; \
982 then $(MV) -f "$(ObjDir)/$*.Cd" "$(ObjDir)/$*.d"; \
983 else $(RM) -f "$(ObjDir)/$*.Cd"; exit 1; fi
987 #---------------------------------------------------------
988 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
989 #---------------------------------------------------------
990 $(ObjDir)/%.bc: %.cpp $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
991 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
992 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" $< -o $@ ; \
993 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
994 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
996 $(ObjDir)/%.bc: %.cc $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
997 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
998 $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" $< -o $@ ; \
999 then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1000 else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1002 $(ObjDir)/%.bc: %.c $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1003 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1004 $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" $< -o $@ ; \
1005 then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1006 else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1008 # Provide alternate rule sets if dependencies are disabled
1011 ifdef SHARED_LIBRARY
1013 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1014 $(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
1015 $(LTCompile.CXX) $< -o $@
1017 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1018 $(Echo) "Compiling $*.cc for $(BuildMode) build (PIC)"
1019 $(LTCompile.CXX) $< -o $@
1021 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1022 $(Echo) "Compiling $*.c for $(BuildMode) build (PIC)"
1023 $(LTCompile.C) $< -o $@
1027 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1028 $(Echo) "Compiling $*.cpp for $(BuildMode) build"
1029 $(Compile.CXX) $< -o $@
1031 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1032 $(Echo) "Compiling $*.cc for $(BuildMode) build"
1033 $(Compile.CXX) $< -o $@
1035 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1036 $(Echo) "Compiling $*.c for $(BuildMode) build"
1037 $(Compile.C) $< -o $@
1040 $(ObjDir)/%.bc: %.cpp $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1041 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1042 $(BCCompile.CXX) $< -o $@
1044 $(ObjDir)/%.bc: %.cc $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1045 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1046 $(BCCompile.CXX) $< -o $@
1048 $(ObjDir)/%.bc: %.c $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1049 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1050 $(BCCompile.C) $< -o $@
1054 #---------------------------------------------------------
1055 # Provide rule to build .bc files from .ll sources,
1056 # regardless of dependencies
1057 #---------------------------------------------------------
1058 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1059 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1060 $(Verb) $(LLVMAS) $< -f -o $@
1062 ###############################################################################
1063 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1064 ###############################################################################
1068 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) $(LLVM_SRC_ROOT)/lib/Target/Target.td)
1069 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1070 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1071 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1073 # All of these files depend on tblgen and the .td files.
1074 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1076 # INCFiles rule: All of the tblgen generated files are emitted to
1077 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1078 # us to only "touch" the real file if the contents of it change. IOW, if
1079 # tblgen is modified, all of the .inc.tmp files are regereated, but no
1080 # dependencies of the .inc files are, unless the contents of the .inc file
1082 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1083 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1085 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1086 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1087 $(Echo) "Building $(<F) register names with tblgen"
1088 $(Verb) $(TableGen) -gen-register-enums -o $@ $<
1090 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1091 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1092 $(Echo) "Building $(<F) register information header with tblgen"
1093 $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
1095 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1096 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1097 $(Echo) "Building $(<F) register info implementation with tblgen"
1098 $(Verb) $(TableGen) -gen-register-desc -o $@ $<
1100 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1101 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1102 $(Echo) "Building $(<F) instruction names with tblgen"
1103 $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
1105 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1106 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1107 $(Echo) "Building $(<F) instruction information with tblgen"
1108 $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
1110 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1111 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1112 $(Echo) "Building $(<F) assembly writer with tblgen"
1113 $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
1115 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1116 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1117 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1118 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $<
1120 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1121 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1122 $(Echo) "Building $(<F) code emitter with tblgen"
1123 $(Verb) $(TableGen) -gen-emitter -o $@ $<
1126 -$(Verb) $(RM) -f $(INCFiles)
1130 ###############################################################################
1131 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1132 ###############################################################################
1134 #---------------------------------------------------------
1135 # Provide rules for generating a .cpp source file from
1136 # (f)lex input sources.
1137 #---------------------------------------------------------
1139 LexFiles := $(filter %.l,$(Sources))
1141 ifneq ($(LexFiles),)
1143 LexOutput := $(strip $(patsubst %.l,%.cpp,$(LexFiles)))
1145 .PRECIOUS: $(LexOutput)
1147 # Note the extra sed filtering here, used to cut down on the warnings emited
1148 # by GCC. The last line is a gross hack to work around flex aparently not
1149 # being able to resize the buffer on a large token input. Currently, for
1150 # uninitialized string buffers in LLVM we can generate very long tokens, so
1151 # this is a hack around it.
1152 # FIXME. (f.e. char Buffer[10000] )
1154 $(Echo) Flexing $*.l
1155 $(Verb) $(FLEX) -t $< | \
1156 $(SED) 's/void yyunput/inline void yyunput/' | \
1157 $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1158 $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1162 -$(Verb) $(RM) -f $(LexOutput)
1163 $(Verb) $(RM) -f $(LexOutput)
1167 #---------------------------------------------------------
1168 # Provide rules for generating a .cpp and .h source files
1169 # from yacc (bison) input sources.
1170 #---------------------------------------------------------
1172 YaccFiles := $(filter %.y,$(Sources))
1173 ifneq ($(YaccFiles),)
1174 YaccOutput := $(addprefix $(patsubst %.y,%,$(YaccFiles)),.h .cpp .output)
1176 .PRECIOUS: $(YaccOutput)
1178 # Cancel built-in rules for yacc
1183 # Rule for building the bison parsers...
1185 $(Echo) "Bisoning $*.y"
1186 $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1187 $(Verb) $(MV) -f $*.tab.c $*.cpp
1188 $(Verb) $(MV) -f $*.tab.h $*.h
1191 -$(Verb) $(RM) -f $(YaccOutput)
1192 $(Verb) $(RM) -f $(YaccOutput)
1195 ###############################################################################
1196 # OTHER RULES: Other rules needed
1197 ###############################################################################
1199 # To create postscript files from dot files...
1200 ifneq ($(DOT),false)
1202 $(DOT) -Tps < $< > $@
1205 $(Echo) "Cannot build $@: The program dot is not installed"
1208 # This rules ensures that header files that are removed still have a rule for
1209 # which they can be "generated." This allows make to ignore them and
1210 # reproduce the dependency lists.
1214 # Define clean-local to clean the current directory. Note that this uses a
1215 # very conservative approach ensuring that empty variables do not cause
1216 # errors or disastrous removal.
1218 ifneq ($(strip $(ObjDir)),)
1219 -$(Verb) $(RM) -rf $(ObjDir)
1221 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1222 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1223 -$(Verb) $(RM) -f *$(SHLIBEXT)
1227 -$(Verb) $(RM) -rf Debug Release Profile
1229 # Build tags database for Emacs/Xemacs:
1233 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1234 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1235 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1236 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1237 -name '*.cpp' -o -name '*.h' | \
1238 $(ETAGS) $(ETAGSFLAGS) -
1241 find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1242 $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1243 $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1244 $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1245 \( -name '*.cpp' -o -name '*.h' \) -print | \
1246 ctags -ImtT -o $(PROJ_OBJ_ROOT)/CTAGS -L -
1249 ###############################################################################
1250 # DEPENDENCIES: Include the dependency files if we should
1251 ###############################################################################
1252 ifndef DISABLE_AUTO_DEPENDENCIES
1254 # If its not one of the cleaning targets
1255 ifneq ($strip($(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
1257 # Get the list of dependency files
1258 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1259 DependFiles := $(patsubst %,$(PROJ_OBJ_DIR)/$(BuildMode)/%.d,$(DependFiles))
1261 -include /dev/null $(DependFiles)
1267 ###############################################################################
1268 # CHECK: Running the test suite
1269 ###############################################################################
1272 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1273 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1274 $(EchoCmd) Running test suite ; \
1275 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1276 TESTSUITE=$(TESTSUITE) ; \
1278 $(EchoCmd) No Makefile in test directory ; \
1281 $(EchoCmd) No test directory ; \
1284 ###############################################################################
1285 # DISTRIBUTION: Handle construction of a distribution tarball
1286 ###############################################################################
1288 #------------------------------------------------------------------------
1289 # Define distribution related variables
1290 #------------------------------------------------------------------------
1291 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1292 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1293 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1294 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1295 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1296 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1297 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1298 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1299 Makefile.config.in configure autoconf
1300 DistOther := $(notdir $(wildcard \
1301 $(PROJ_SRC_DIR)/*.h \
1302 $(PROJ_SRC_DIR)/*.td \
1303 $(PROJ_SRC_DIR)/*.def \
1304 $(PROJ_SRC_DIR)/*.ll \
1305 $(PROJ_SRC_DIR)/*.in))
1306 DistSubDirs := $(SubDirs)
1307 DistSources = $(Sources) $(EXTRA_DIST)
1308 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1310 #------------------------------------------------------------------------
1311 # We MUST build distribution with OBJ_DIR != SRC_DIR
1312 #------------------------------------------------------------------------
1313 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1314 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1315 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1319 #------------------------------------------------------------------------
1320 # Prevent attempt to run dist targets from anywhere but the top level
1321 #------------------------------------------------------------------------
1323 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1324 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1327 #------------------------------------------------------------------------
1328 # Provide the top level targets
1329 #------------------------------------------------------------------------
1331 dist-gzip:: $(DistTarGZip)
1333 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1334 $(Echo) Packing gzipped distribution tar file.
1335 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1336 $(GZIP) -c > "$(DistTarGZip)"
1338 dist-bzip2:: $(DistTarBZ2)
1340 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1341 $(Echo) Packing bzipped distribution tar file.
1342 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1343 $(BZIP2) -c >$(DistTarBZ2)
1345 dist-zip:: $(DistZip)
1347 $(DistZip) : $(TopDistDir)/.makedistdir
1348 $(Echo) Packing zipped distribution file.
1349 $(Verb) rm -f $(DistZip)
1350 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1352 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1353 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1355 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1357 dist-check:: $(DistTarGZip)
1358 $(Echo) Checking distribution tar file.
1359 $(Verb) if test -d $(DistCheckDir) ; then \
1360 $(RM) -rf $(DistCheckDir) ; \
1362 $(Verb) $(MKDIR) $(DistCheckDir)
1363 $(Verb) cd $(DistCheckDir) && \
1364 $(MKDIR) $(DistCheckDir)/build && \
1365 $(MKDIR) $(DistCheckDir)/install && \
1366 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1368 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1369 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1372 $(MAKE) install && \
1373 $(MAKE) uninstall && \
1376 $(MAKE) dist-clean && \
1377 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1380 $(Echo) Cleaning distribution files
1381 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1386 #------------------------------------------------------------------------
1387 # Provide the recursive distdir target for building the distribution directory
1388 #------------------------------------------------------------------------
1389 distdir: $(DistDir)/.makedistdir
1390 $(DistDir)/.makedistdir: $(DistSources)
1391 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1392 if test -d "$(DistDir)" ; then \
1393 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1396 $(EchoCmd) Removing old $(DistDir) ; \
1397 $(RM) -rf $(DistDir); \
1398 $(EchoCmd) Making 'all' to verify build ; \
1401 $(Echo) Building Distribution Directory $(DistDir)
1402 $(Verb) $(MKDIR) $(DistDir)
1403 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1404 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1405 for file in $(DistFiles) ; do \
1407 $(PROJ_SRC_DIR)/*) \
1408 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1410 $(PROJ_SRC_ROOT)/*) \
1411 file=`echo "$$file" | \
1412 sed "s#^$$srcrootstrip/##"` \
1415 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1416 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1417 from_dir="$(PROJ_SRC_DIR)" ; \
1418 elif test -f "$$file" || test -d "$$file" ; then \
1421 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1422 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1423 to_dir="$(DistDir)/$$dir"; \
1424 $(MKDIR) "$$to_dir" ; \
1426 to_dir="$(DistDir)"; \
1428 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1429 if test -n "$$mid_dir" ; then \
1430 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1432 if test -d "$$from_dir/$$file"; then \
1433 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1434 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1435 cd $(PROJ_SRC_DIR) ; \
1436 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1437 ( cd $$to_dir ; $(TAR) xf - ) ; \
1438 cd $(PROJ_OBJ_DIR) ; \
1441 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1442 ( cd $$to_dir ; $(TAR) xf - ) ; \
1443 cd $(PROJ_OBJ_DIR) ; \
1445 elif test -f "$$from_dir/$$file" ; then \
1446 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1447 elif test -L "$$from_dir/$$file" ; then \
1448 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1449 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1450 $(EchoCmd) "===== WARNING: Distribution Source " \
1451 "$$from_dir/$$file Not Found!" ; \
1452 elif test "$(Verb)" != '@' ; then \
1453 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1456 $(Verb) for subdir in $(DistSubDirs) ; do \
1457 if test "$$subdir" \!= "." ; then \
1458 new_distdir="$(DistDir)/$$subdir" ; \
1459 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1460 ( cd $$subdir && $(MAKE) DistDir="$$new_distdir" distdir ) || \
1464 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1465 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1466 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o -name .svn \) -print` ;\
1467 $(MAKE) dist-hook ; \
1468 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1469 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1470 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1471 -o ! -type d ! -perm -444 -exec \
1472 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1473 || chmod -R a+r $(DistDir) ; \
1476 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1482 ###############################################################################
1483 # TOP LEVEL - targets only to apply at the top level directory
1484 ###############################################################################
1488 #------------------------------------------------------------------------
1489 # Install support for the project's include files:
1490 #------------------------------------------------------------------------
1492 $(Echo) Installing include files
1493 $(Verb) $(MKDIR) $(PROJ_includedir)
1494 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1495 cd $(PROJ_SRC_ROOT)/include && \
1496 for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1497 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
1498 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1499 if test \! -d "$$instdir" ; then \
1500 $(EchoCmd) Making install directory $$instdir ; \
1501 $(MKDIR) $$instdir ;\
1503 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1506 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1507 cd $(PROJ_OBJ_ROOT)/include && \
1508 for hdr in `find . -type f -print` ; do \
1509 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1514 $(Echo) Uninstalling include files
1515 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1516 cd $(PROJ_SRC_ROOT)/include && \
1517 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1518 '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' -o -name '*.in' ')' \
1519 -print ')' | grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1520 cd $(PROJ_SRC_ROOT)/include && \
1521 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' -print ')' \
1522 | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1527 #------------------------------------------------------------------------
1528 # Print out the directories used for building
1529 #------------------------------------------------------------------------
1531 $(Echo) "BuildMode : " '$(BuildMode)'
1532 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1533 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1534 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1535 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1536 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1537 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1538 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1539 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1540 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1541 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1542 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1543 $(Echo) "UserTargets : " '$(UserTargets)'
1544 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1545 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1546 $(Echo) "ObjDir : " '$(ObjDir)'
1547 $(Echo) "LibDir : " '$(LibDir)'
1548 $(Echo) "ToolDir : " '$(ToolDir)'
1549 $(Echo) "ExmplDir : " '$(ExmplDir)'
1550 $(Echo) "Sources : " '$(Sources)'
1551 $(Echo) "TDFiles : " '$(TDFiles)'
1552 $(Echo) "INCFiles : " '$(INCFiles)'
1553 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1554 $(Echo) "PreConditions: " '$(PreConditions)'
1555 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1556 $(Echo) "Compile.C : " '$(Compile.C)'
1557 $(Echo) "Archive : " '$(Archive)'
1558 $(Echo) "YaccFiles : " '$(YaccFiles)'
1559 $(Echo) "LexFiles : " '$(LexFiles)'
1560 $(Echo) "Module : " '$(Module)'