1 #===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 #===------------------------------------------------------------------------===#
10 # This file is included by all of the LLVM makefiles. For details on how to use
11 # it properly, please see the document MakefileGuide.html in the docs directory.
13 #===-----------------------------------------------------------------------====#
15 ################################################################################
16 # TARGETS: Define standard targets that can be invoked
17 ################################################################################
19 #--------------------------------------------------------------------
20 # Define the various target sets
21 #--------------------------------------------------------------------
22 RecursiveTargets := all clean clean-all install uninstall install-bytecode \
24 LocalTargets := all-local clean-local clean-all-local check-local \
25 install-local printvars uninstall-local \
26 install-bytecode-local
27 TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
29 UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30 InternalTargets := preconditions distdir dist-hook
32 ################################################################################
33 # INITIALIZATION: Basic things the makefile needs
34 ################################################################################
36 #--------------------------------------------------------------------
37 # Set the VPATH so that we can find source files.
38 #--------------------------------------------------------------------
41 #--------------------------------------------------------------------
42 # Reset the list of suffixes we know how to build.
43 #--------------------------------------------------------------------
45 .SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
46 .SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
48 #--------------------------------------------------------------------
49 # Mark all of these targets as phony to avoid implicit rule search
50 #--------------------------------------------------------------------
51 .PHONY: $(UserTargets) $(InternalTargets)
53 #--------------------------------------------------------------------
54 # Make sure all the user-target rules are double colon rules and
55 # they are defined first.
56 #--------------------------------------------------------------------
60 ################################################################################
61 # PRECONDITIONS: that which must be built/checked first
62 ################################################################################
64 SrcMakefiles := $(filter %Makefile %Makefile.tests,\
65 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
66 ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
67 ConfigureScript := $(PROJ_SRC_ROOT)/configure
68 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
69 MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
70 MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
71 MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
72 MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
73 PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
74 ifneq ($(MakefileCommonIn),)
75 PreConditions += $(MakefileCommon)
78 ifneq ($(MakefileConfigIn),)
79 PreConditions += $(MakefileConfig)
82 preconditions: $(PreConditions)
84 #------------------------------------------------------------------------
85 # Make sure the BUILT_SOURCES are built first
86 #------------------------------------------------------------------------
87 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
90 ifneq ($(strip $(BUILT_SOURCES)),)
91 -$(Verb) $(RM) -f $(BUILT_SOURCES)
94 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
96 $(Verb) if test -x config.status ; then \
97 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
98 $(MKDIR) .spotless.save ; \
99 $(MV) config.status .spotless.save ; \
100 $(MV) mklib .spotless.save ; \
101 $(MV) projects .spotless.save ; \
103 $(MV) .spotless.save/config.status . ; \
104 $(MV) .spotless.save/mklib . ; \
105 $(MV) .spotless.save/projects . ; \
106 $(RM) -rf .spotless.save ; \
107 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
108 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109 $(ConfigStatusScript) ; \
111 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
115 $(EchoCmd) "spotless target not supported for objdir == srcdir"
118 $(BUILT_SOURCES) : $(ObjMakefiles)
120 #------------------------------------------------------------------------
121 # Make sure we're not using a stale configuration
122 #------------------------------------------------------------------------
124 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
125 $(Verb) cd $(PROJ_OBJ_ROOT) && \
126 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
127 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
129 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130 $(ConfigStatusScript)
132 # FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
133 # up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
135 .PRECIOUS: $(ConfigStatusScript)
136 $(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(LLVM_SRC_ROOT)/lib/Target/MSP430/AsmPrinter/Makefile
137 $(Echo) Reconfiguring with $<
138 $(Verb) cd $(PROJ_OBJ_ROOT) && \
139 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
140 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
142 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
143 $(ConfigStatusScript)
145 #------------------------------------------------------------------------
146 # Make sure the configuration makefile is up to date
147 #------------------------------------------------------------------------
148 ifneq ($(MakefileConfigIn),)
149 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
150 $(Echo) Regenerating $@
151 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
154 ifneq ($(MakefileCommonIn),)
155 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
156 $(Echo) Regenerating $@
157 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
160 #------------------------------------------------------------------------
161 # If the Makefile in the source tree has been updated, copy it over into the
162 # build tree. But, only do this if the source and object makefiles differ
163 #------------------------------------------------------------------------
164 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
166 Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
167 $(Echo) "Updating Makefile"
168 $(Verb) $(MKDIR) $(@D)
169 $(Verb) $(CP) -f $< $@
171 # Copy the Makefile.* files unless we're in the root directory which avoids
172 # the copying of Makefile.config.in or other things that should be explicitly
174 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
176 *Makefile.rules) ;; \
178 *) $(EchoCmd) "Updating $(@F)" ; \
185 #------------------------------------------------------------------------
186 # Set up the basic dependencies
187 #------------------------------------------------------------------------
188 $(UserTargets):: $(PreConditions)
192 clean-all:: clean-local clean-all-local
193 install:: install-local
194 uninstall:: uninstall-local
195 install-local:: all-local
196 install-bytecode:: install-bytecode-local
198 ###############################################################################
199 # LLVMC: Provide rules for compiling llvmc plugins
200 ###############################################################################
204 LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
205 CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN)
208 ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
209 LD.Flags += -lCompilerDriver
212 # Build a dynamic library if the user runs `make` directly from the plugin
214 ifndef LLVMC_BUILTIN_PLUGIN
219 ifneq ($(BUILT_SOURCES),)
220 LLVMC_BUILD_AUTOGENERATED_INC=1
225 ifdef LLVMC_BASED_DRIVER
227 TOOLNAME = $(LLVMC_BASED_DRIVER)
231 ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
232 LD.Flags += -lCompilerDriver
234 LLVMLIBS = CompilerDriver.a
235 LINK_COMPONENTS = support system
238 # Preprocessor magic that generates references to static variables in built-in
240 ifneq ($(LLVMC_BUILTIN_PLUGINS),)
242 USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS))
244 LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS))
245 LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS))
246 LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS))
247 LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS))
248 LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS))
249 LLVMC_BUILTIN_PLUGIN_6 = $(word 6, $(LLVMC_BUILTIN_PLUGINS))
250 LLVMC_BUILTIN_PLUGIN_7 = $(word 7, $(LLVMC_BUILTIN_PLUGINS))
251 LLVMC_BUILTIN_PLUGIN_8 = $(word 8, $(LLVMC_BUILTIN_PLUGINS))
252 LLVMC_BUILTIN_PLUGIN_9 = $(word 9, $(LLVMC_BUILTIN_PLUGINS))
253 LLVMC_BUILTIN_PLUGIN_10 = $(word 10, $(LLVMC_BUILTIN_PLUGINS))
256 ifneq ($(LLVMC_BUILTIN_PLUGIN_1),)
257 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1)
260 ifneq ($(LLVMC_BUILTIN_PLUGIN_2),)
261 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2)
264 ifneq ($(LLVMC_BUILTIN_PLUGIN_3),)
265 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3)
268 ifneq ($(LLVMC_BUILTIN_PLUGIN_4),)
269 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4)
272 ifneq ($(LLVMC_BUILTIN_PLUGIN_5),)
273 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5)
276 ifneq ($(LLVMC_BUILTIN_PLUGIN_6),)
277 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_6)
280 ifneq ($(LLVMC_BUILTIN_PLUGIN_7),)
281 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_7)
284 ifneq ($(LLVMC_BUILTIN_PLUGIN_8),)
285 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_8)
288 ifneq ($(LLVMC_BUILTIN_PLUGIN_9),)
289 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_9)
292 ifneq ($(LLVMC_BUILTIN_PLUGIN_10),)
293 CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_10)
299 endif # LLVMC_BASED_DRIVER
301 ###############################################################################
302 # VARIABLES: Set up various variables based on configuration data
303 ###############################################################################
305 # Variable for if this make is for a "cleaning" target
306 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
310 #--------------------------------------------------------------------
311 # Variables derived from configuration we are building
312 #--------------------------------------------------------------------
315 # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
316 # this can be overridden on the make command line.
317 ifndef OPTIMIZE_OPTION
318 ifneq ($(HOST_OS),MingW)
319 OPTIMIZE_OPTION := -O3
321 OPTIMIZE_OPTION := -O2
325 ifeq ($(ENABLE_OPTIMIZED),1)
327 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
328 ifneq ($(HOST_OS),FreeBSD)
329 ifneq ($(HOST_OS),Darwin)
330 OmitFramePointer := -fomit-frame-pointer
334 # Darwin requires -fstrict-aliasing to be explicitly enabled.
335 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
336 # with -fstrict-aliasing and ipa-type-escape radr://6756684
337 #ifeq ($(HOST_OS),Darwin)
338 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
340 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
341 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
342 LD.Flags += $(OPTIMIZE_OPTION)
344 BuildMode := $(BuildMode)+Debug
358 ifeq ($(ENABLE_PROFILING),1)
359 BuildMode := $(BuildMode)+Profile
360 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
361 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
362 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
366 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
367 # CXX.Flags += -fvisibility-inlines-hidden
370 # IF REQUIRES_EH=1 is specified then don't disable exceptions
372 CXX.Flags += -fno-exceptions
375 ifdef REQUIRES_FRAME_POINTER
376 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
377 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
378 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
381 # If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
382 ifeq ($(REQUIRES_RTTI), 1)
383 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
384 CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS))
387 ifdef ENABLE_COVERAGE
388 BuildMode := $(BuildMode)+Coverage
389 CXX.Flags += -ftest-coverage -fprofile-arcs
390 C.Flags += -ftest-coverage -fprofile-arcs
393 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
394 # then disable assertions by defining the appropriate preprocessor symbols.
395 ifdef DISABLE_ASSERTIONS
396 # Indicate that assertions are turned off using a minus sign
397 BuildMode := $(BuildMode)-Asserts
398 CPP.Defines += -DNDEBUG
400 CPP.Defines += -D_DEBUG
403 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
404 # configured), then enable expensive checks by defining the
405 # appropriate preprocessor symbols.
406 ifdef ENABLE_EXPENSIVE_CHECKS
407 BuildMode := $(BuildMode)+Checks
408 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
411 # LOADABLE_MODULE implies several other things so we force them to be
413 ifdef LOADABLE_MODULE
415 LINK_LIBS_IN_SHARED := 1
423 ifeq ($(ENABLE_PIC),1)
424 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
425 # Nothing. Win32 defaults to PIC and warns when given -fPIC
427 ifeq ($(HOST_OS),Darwin)
428 # Common symbols not allowed in dylib files
429 CXX.Flags += -fno-common
430 C.Flags += -fno-common
432 # Linux and others; pass -fPIC
438 ifeq ($(HOST_OS),Darwin)
439 CXX.Flags += -mdynamic-no-pic
440 C.Flags += -mdynamic-no-pic
444 CXX.Flags += -Woverloaded-virtual
445 CPP.BaseFlags += $(CPP.Defines)
448 # Make Floating point IEEE compliant on Alpha.
451 CPP.BaseFlags += -mieee
452 ifeq ($(ENABLE_PIC),0)
454 CPP.BaseFlags += -fPIC
459 LD.Flags += -Wl,--no-relax
462 ifeq ($(HOST_OS),MingW)
463 ifeq ($(LLVM_CROSS_COMPILING),1)
464 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
466 LD.Flags += -Wl,--allow-multiple-definition
471 ifdef ENABLE_EXPENSIVE_CHECKS
472 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
473 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
474 CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
475 CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS))
478 #--------------------------------------------------------------------
479 # Directory locations
480 #--------------------------------------------------------------------
482 ifeq ($(LLVM_CROSS_COMPILING),1)
483 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
486 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
487 ObjDir := $(ObjRootDir)
488 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
489 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
490 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
491 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
492 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
493 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
494 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
496 #--------------------------------------------------------------------
497 # Full Paths To Compiled Tools and Utilities
498 #--------------------------------------------------------------------
499 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
502 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
505 ifeq ($(LLVM_CROSS_COMPILING),1)
506 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
508 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
511 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
513 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
516 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
519 LLI := $(LLVMToolDir)/lli$(EXEEXT)
522 LLC := $(LLVMToolDir)/llc$(EXEEXT)
525 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
528 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
531 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
533 ifeq ($(LLVMGCC_MAJVERS),3)
534 LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
535 LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
537 LLVMGCCWITHPATH := $(LLVMGCC)
538 LLVMGXXWITHPATH := $(LLVMGXX)
541 #--------------------------------------------------------------------
542 # Adjust to user's request
543 #--------------------------------------------------------------------
545 ifeq ($(HOST_OS),Darwin)
546 DARWIN_VERSION := `sw_vers -productVersion`
547 # Strip a number like 10.4.7 to 10.4
548 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
549 # Get "4" out of 10.4 for later pieces in the makefile.
550 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
552 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
555 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
558 ifeq ($(HOST_OS),Cygwin)
559 SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
560 -Wl,--enable-auto-import -Wl,--enable-auto-image-base
562 SharedLinkOptions=-shared
566 ifeq ($(TARGET_OS),Darwin)
568 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
570 TargetCommonOpts += -marm
574 # Adjust LD.Flags depending on the kind of library that is to be built. Note
575 # that if LOADABLE_MODULE is specified then the resulting shared library can
576 # be opened with dlopen.
577 ifdef LOADABLE_MODULE
582 ifneq ($(DARWIN_MAJVERS),4)
583 LD.Flags += $(RPATH) -Wl,$(LibDir)
594 # Adjust settings for verbose mode
597 AR.Flags += >/dev/null 2>/dev/null
598 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
600 ConfigureScriptFLAGS :=
603 # By default, strip symbol information from executable
605 Strip := $(PLATFORMSTRIPOPTS)
606 StripWarnMsg := "(without symbols)"
607 Install.StripFlag += -s
610 # Adjust linker flags for building an executable
611 ifneq ($(HOST_OS),Darwin)
612 ifneq ($(DARWIN_MAJVERS),4)
615 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
617 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
623 #----------------------------------------------------------
624 # Options To Invoke Tools
625 #----------------------------------------------------------
628 CompileCommonOpts += -pedantic -Wno-long-long
630 CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
633 ifeq ($(HOST_OS),HP-UX)
634 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
637 # If we are building a universal binary on Mac OS/X, pass extra options. This
638 # is useful to people that want to link the LLVM libraries into their universal
641 # The following can be optionally specified:
642 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
643 # For Mac OS/X 10.4 Intel machines, the traditional one is:
644 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
645 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
646 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
649 ifndef UNIVERSAL_ARCH
650 UNIVERSAL_ARCH := i386 ppc
652 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
653 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
654 ifdef UNIVERSAL_SDK_PATH
655 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
658 # Building universal cannot compute dependencies automatically.
659 DISABLE_AUTO_DEPENDENCIES=1
661 ifeq ($(TARGET_OS),Darwin)
662 ifeq ($(ARCH),x86_64)
663 TargetCommonOpts = -m64
666 TargetCommonOpts = -m32
672 ifeq ($(HOST_OS),SunOS)
673 CPP.BaseFlags += -include llvm/System/Solaris.h
676 ifeq ($(HOST_OS),AuroraUX)
677 CPP.BaseFlags += -include llvm/System/Solaris.h
678 endif # !HOST_OS - AuroraUX.
680 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
681 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
682 # All -I flags should go here, so that they don't confuse llvm-config.
683 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
684 $(patsubst %,-I%/include,\
685 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
686 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
689 ifeq ($(BUILD_COMPONENT), 1)
690 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
691 $(TargetCommonOpts) $(CompileCommonOpts) -c
692 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
694 $(TargetCommonOpts) $(CompileCommonOpts) -c
695 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
696 $(CompileCommonOpts) $(CXX.Flags) -E
697 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
699 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
701 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
702 $(TargetCommonOpts) $(CompileCommonOpts) -c
703 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
704 $(TargetCommonOpts) $(CompileCommonOpts) -c
705 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
706 $(CompileCommonOpts) $(CXX.Flags) -E
707 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
708 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
711 BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CFLAGS) \
713 $(TargetCommonOpts) $(CompileCommonOpts)
714 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
715 $(TargetCommonOpts) $(CompileCommonOpts) -E
717 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
719 $(TargetCommonOpts) $(CompileCommonOpts)
721 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
722 ScriptInstall = $(INSTALL) -m 0755
723 DataInstall = $(INSTALL) -m 0644
725 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
726 # paths. In this case, the SYSPATH function (defined in
727 # Makefile.config) transforms Unix paths into Windows paths.
728 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
729 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
730 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
731 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
733 Archive = $(AR) $(AR.Flags)
734 LArchive = $(LLVMToolDir)/llvm-ar rcsf
741 #----------------------------------------------------------
742 # Get the list of source files and compute object file
744 #----------------------------------------------------------
747 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
748 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
750 Sources := $(SOURCES)
754 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
757 BaseNameSources := $(sort $(basename $(Sources)))
759 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
760 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
762 ###############################################################################
763 # DIRECTORIES: Handle recursive descent of directory structure
764 ###############################################################################
766 #---------------------------------------------------------
767 # Provide rules to make install dirs. This must be early
768 # in the file so they get built before dependencies
769 #---------------------------------------------------------
771 $(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
774 # To create other directories, as needed, and timestamp their creation
776 $(Verb) $(MKDIR) $* > /dev/null
779 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
780 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
782 #---------------------------------------------------------
783 # Handle the DIRS options for sequential construction
784 #---------------------------------------------------------
790 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
791 $(RecursiveTargets)::
792 $(Verb) for dir in $(DIRS); do \
793 if [ ! -f $$dir/Makefile ]; then \
795 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
797 ($(MAKE) -C $$dir $@ ) || exit 1; \
800 $(RecursiveTargets)::
801 $(Verb) for dir in $(DIRS); do \
802 ($(MAKE) -C $$dir $@ ) || exit 1; \
808 #---------------------------------------------------------
809 # Handle the EXPERIMENTAL_DIRS options ensuring success
810 # after each directory is built.
811 #---------------------------------------------------------
812 ifdef EXPERIMENTAL_DIRS
813 $(RecursiveTargets)::
814 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
815 if [ ! -f $$dir/Makefile ]; then \
817 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
819 ($(MAKE) -C $$dir $@ ) || exit 0; \
823 #-----------------------------------------------------------
824 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
825 #-----------------------------------------------------------
826 ifdef OPTIONAL_PARALLEL_DIRS
827 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
830 #-----------------------------------------------------------
831 # Handle the PARALLEL_DIRS options for parallel construction
832 #-----------------------------------------------------------
835 SubDirs += $(PARALLEL_DIRS)
837 # Unfortunately, this list must be maintained if new recursive targets are added
838 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
839 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
840 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
841 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
842 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
843 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
844 unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
846 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
849 $(Verb) if [ ! -f $(@D)/Makefile ]; then \
851 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
853 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
856 #---------------------------------------------------------
857 # Handle the OPTIONAL_DIRS options for directores that may
859 #---------------------------------------------------------
862 SubDirs += $(OPTIONAL_DIRS)
864 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
865 $(RecursiveTargets)::
866 $(Verb) for dir in $(OPTIONAL_DIRS); do \
867 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
868 if [ ! -f $$dir/Makefile ]; then \
870 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
872 ($(MAKE) -C$$dir $@ ) || exit 1; \
876 $(RecursiveTargets)::
877 $(Verb) for dir in $(OPTIONAL_DIRS); do \
878 ($(MAKE) -C$$dir $@ ) || exit 1; \
883 #---------------------------------------------------------
884 # Handle the CONFIG_FILES options
885 #---------------------------------------------------------
890 $(Echo) Install circumvented with NO_INSTALL
892 $(Echo) UnInstall circumvented with NO_INSTALL
894 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
895 $(Echo) Installing Configuration Files To $(PROJ_etcdir)
896 $(Verb)for file in $(CONFIG_FILES); do \
897 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
898 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
899 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
900 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
902 $(ECHO) Error: cannot find config file $${file}. ; \
907 $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
908 $(Verb)for file in $(CONFIG_FILES); do \
909 $(RM) -f $(PROJ_etcdir)/$${file} ; \
915 ###############################################################################
916 # Set up variables for building libararies
917 ###############################################################################
919 #---------------------------------------------------------
920 # Define various command line options pertaining to the
921 # libraries needed when linking. There are "Proj" libs
922 # (defined by the user's project) and "LLVM" libs (defined
923 # by the LLVM project).
924 #---------------------------------------------------------
927 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
928 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
929 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
930 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
934 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
935 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
936 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
937 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
940 ifndef IS_CLEANING_TARGET
941 ifdef LINK_COMPONENTS
943 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
944 # clean in tools, then do a make in tools (instead of at the top level).
946 @echo "*** llvm-config doesn't exist - rebuilding it."
947 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
949 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
951 LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
952 LLVMLibsPaths += $(LLVM_CONFIG) \
953 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
957 ###############################################################################
958 # Library Build Rules: Four ways to build a library
959 ###############################################################################
961 #---------------------------------------------------------
962 # Bytecode Module Targets:
963 # If the user set MODULE_NAME then they want to build a
964 # bytecode module from the sources. We compile all the
965 # sources and link it together into a single bytecode
967 #---------------------------------------------------------
970 ifeq ($(strip $(LLVMGCC)),)
971 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
974 Module := $(LibDir)/$(MODULE_NAME).bc
975 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
978 ifdef EXPORTED_SYMBOL_FILE
979 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
982 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
983 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
984 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
986 all-local:: $(Module)
989 ifneq ($(strip $(Module)),)
990 -$(Verb) $(RM) -f $(Module)
993 ifdef BYTECODE_DESTINATION
994 ModuleDestDir := $(BYTECODE_DESTINATION)
996 ModuleDestDir := $(PROJ_libdir)
1001 $(Echo) Install circumvented with NO_INSTALL
1003 $(Echo) Uninstall circumvented with NO_INSTALL
1005 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1007 install-module:: $(DestModule)
1008 install-local:: $(DestModule)
1010 $(DestModule): $(ModuleDestDir) $(Module)
1011 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
1012 $(Verb) $(DataInstall) $(Module) $(DestModule)
1015 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1016 -$(Verb) $(RM) -f $(DestModule)
1022 # if we're building a library ...
1025 # Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
1026 LIBRARYNAME := $(strip $(LIBRARYNAME))
1027 ifdef LOADABLE_MODULE
1028 LibName.A := $(LibDir)/$(LIBRARYNAME).a
1029 LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
1031 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
1032 LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1034 LibName.O := $(LibDir)/$(LIBRARYNAME).o
1035 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
1037 #---------------------------------------------------------
1038 # Shared Library Targets:
1039 # If the user asked for a shared library to be built
1040 # with the SHARED_LIBRARY variable, then we provide
1041 # targets for building them.
1042 #---------------------------------------------------------
1043 ifdef SHARED_LIBRARY
1045 all-local:: $(LibName.SO)
1047 ifdef LINK_LIBS_IN_SHARED
1048 ifdef LOADABLE_MODULE
1049 SharedLibKindMessage := "Loadable Module"
1051 SharedLibKindMessage := "Shared Library"
1053 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
1054 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1055 $(LIBRARYNAME)$(SHLIBEXT)
1056 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
1057 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
1059 $(LibName.SO): $(ObjectsO) $(LibDir)/.dir
1060 $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
1061 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
1065 ifneq ($(strip $(LibName.SO)),)
1066 -$(Verb) $(RM) -f $(LibName.SO)
1071 $(Echo) Install circumvented with NO_INSTALL
1073 $(Echo) Uninstall circumvented with NO_INSTALL
1075 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1077 install-local:: $(DestSharedLib)
1079 $(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
1080 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1081 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1084 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1085 -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
1089 #---------------------------------------------------------
1090 # Bytecode Library Targets:
1091 # If the user asked for a bytecode library to be built
1092 # with the BYTECODE_LIBRARY variable, then we provide
1093 # targets for building them.
1094 #---------------------------------------------------------
1095 ifdef BYTECODE_LIBRARY
1096 ifeq ($(strip $(LLVMGCC)),)
1097 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
1100 all-local:: $(LibName.BCA)
1102 ifdef EXPORTED_SYMBOL_FILE
1103 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
1104 -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1106 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1107 $(LLVMToolDir)/llvm-ar
1108 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1110 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
1112 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
1114 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1115 $(LLVMToolDir)/llvm-ar
1116 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1118 $(Verb) $(LArchive) $@ $(ObjectsBC)
1123 ifneq ($(strip $(LibName.BCA)),)
1124 -$(Verb) $(RM) -f $(LibName.BCA)
1127 ifdef BYTECODE_DESTINATION
1128 BytecodeDestDir := $(BYTECODE_DESTINATION)
1130 BytecodeDestDir := $(PROJ_libdir)
1133 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1135 install-bytecode-local:: $(DestBytecodeLib)
1139 $(Echo) Install circumvented with NO_INSTALL
1141 $(Echo) Uninstall circumvented with NO_INSTALL
1143 install-local:: $(DestBytecodeLib)
1145 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1146 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1147 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1150 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1151 -$(Verb) $(RM) -f $(DestBytecodeLib)
1156 #---------------------------------------------------------
1158 # If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1159 # building an archive.
1160 #---------------------------------------------------------
1161 ifndef BUILD_ARCHIVE
1162 ifndef LOADABLE_MODULE
1167 #---------------------------------------------------------
1168 # Archive Library Targets:
1169 # If the user wanted a regular archive library built,
1170 # then we provide targets for building them.
1171 #---------------------------------------------------------
1174 all-local:: $(LibName.A)
1176 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1177 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1178 -$(Verb) $(RM) -f $@
1179 $(Verb) $(Archive) $@ $(ObjectsO)
1180 $(Verb) $(Ranlib) $@
1183 ifneq ($(strip $(LibName.A)),)
1184 -$(Verb) $(RM) -f $(LibName.A)
1189 $(Echo) Install circumvented with NO_INSTALL
1191 $(Echo) Uninstall circumvented with NO_INSTALL
1193 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1195 install-local:: $(DestArchiveLib)
1197 $(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
1198 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1199 $(Verb) $(MKDIR) $(PROJ_libdir)
1200 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1203 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1204 -$(Verb) $(RM) -f $(DestArchiveLib)
1211 ###############################################################################
1212 # Tool Build Rules: Build executable tool based on TOOLNAME option
1213 ###############################################################################
1217 #---------------------------------------------------------
1218 # Set up variables for building a tool.
1219 #---------------------------------------------------------
1221 ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1223 ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1226 #---------------------------------------------------------
1228 #---------------------------------------------------------
1230 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1231 # not exporting all of the weak symbols from the binary. This reduces dyld
1232 # startup time by 4x on darwin in some cases.
1233 ifdef TOOL_NO_EXPORTS
1234 ifeq ($(HOST_OS),Darwin)
1236 # Tiger tools don't support this.
1237 ifneq ($(DARWIN_MAJVERS),4)
1238 LD.Flags += -Wl,-exported_symbol -Wl,_main
1242 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
1243 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1248 #---------------------------------------------------------
1249 # Provide targets for building the tools
1250 #---------------------------------------------------------
1251 all-local:: $(ToolBuildPath)
1254 ifneq ($(strip $(ToolBuildPath)),)
1255 -$(Verb) $(RM) -f $(ToolBuildPath)
1259 $(ToolBuildPath): $(ExmplDir)/.dir
1261 $(ToolBuildPath): $(ToolDir)/.dir
1264 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1265 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1266 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1267 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1268 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1273 $(Echo) Install circumvented with NO_INSTALL
1275 $(Echo) Uninstall circumvented with NO_INSTALL
1277 DestTool = $(PROJ_bindir)/$(TOOLNAME)$(EXEEXT)
1279 install-local:: $(DestTool)
1281 $(DestTool): $(ToolBuildPath) $(PROJ_bindir)
1282 $(Echo) Installing $(BuildMode) $(DestTool)
1283 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1286 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1287 -$(Verb) $(RM) -f $(DestTool)
1291 ###############################################################################
1292 # Object Build Rules: Build object files based on sources
1293 ###############################################################################
1295 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1296 ifeq ($(HOST_OS),HP-UX)
1297 DISABLE_AUTO_DEPENDENCIES=1
1300 # Provide rule sets for when dependency generation is enabled
1301 ifndef DISABLE_AUTO_DEPENDENCIES
1303 #---------------------------------------------------------
1304 # Create .o files in the ObjDir directory from the .cpp and .c files...
1305 #---------------------------------------------------------
1307 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1308 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1310 # If the build succeeded, move the dependency file over, otherwise
1312 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1313 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1315 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1316 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1317 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1320 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1321 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1322 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1325 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1326 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1327 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1330 #---------------------------------------------------------
1331 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1332 #---------------------------------------------------------
1334 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1335 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1337 # If the build succeeded, move the dependency file over, otherwise
1339 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1340 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1342 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1343 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1344 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1345 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1346 $(BC_DEPEND_MOVEFILE)
1348 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1349 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1350 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1351 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1352 $(BC_DEPEND_MOVEFILE)
1354 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1355 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1356 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1357 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1358 $(BC_DEPEND_MOVEFILE)
1360 # Provide alternate rule sets if dependencies are disabled
1363 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1364 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1365 $(Compile.CXX) $< -o $@
1367 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1368 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1369 $(Compile.CXX) $< -o $@
1371 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1372 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1373 $(Compile.C) $< -o $@
1375 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1376 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1377 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1379 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1380 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1381 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1383 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1384 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1385 $(BCCompile.C) $< -o $@ -S -emit-llvm
1390 ## Rules for building preprocessed (.i/.ii) outputs.
1391 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1392 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1393 $(Verb) $(Preprocess.CXX) $< -o $@
1395 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1396 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1397 $(Verb) $(Preprocess.CXX) $< -o $@
1399 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1400 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1401 $(Verb) $(Preprocess.C) $< -o $@
1404 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1405 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1406 $(Compile.CXX) $< -o $@ -S
1408 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1409 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1410 $(Compile.CXX) $< -o $@ -S
1412 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1413 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1414 $(Compile.C) $< -o $@ -S
1417 # make the C and C++ compilers strip debug info out of bytecode libraries.
1419 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1420 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1421 $(Verb) $(LOPT) $< -std-compile-opts -o $@
1423 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1424 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1425 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1429 #---------------------------------------------------------
1430 # Provide rule to build .bc files from .ll sources,
1431 # regardless of dependencies
1432 #---------------------------------------------------------
1433 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1434 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1435 $(Verb) $(LLVMAS) $< -f -o $@
1437 ###############################################################################
1438 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1439 ###############################################################################
1442 TABLEGEN_INC_FILES_COMMON = 1
1445 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1446 TABLEGEN_INC_FILES_COMMON = 1
1449 ifdef TABLEGEN_INC_FILES_COMMON
1451 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1452 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1453 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1455 # INCFiles rule: All of the tblgen generated files are emitted to
1456 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1457 # us to only "touch" the real file if the contents of it change. IOW, if
1458 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1459 # dependencies of the .inc files are, unless the contents of the .inc file
1461 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1462 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1464 endif # TABLEGEN_INC_FILES_COMMON
1468 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1469 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1470 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1471 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1472 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1473 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1474 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1476 # All of these files depend on tblgen and the .td files.
1477 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1479 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1480 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1481 $(Echo) "Building $(<F) register names with tblgen"
1482 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1484 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1485 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1486 $(Echo) "Building $(<F) register information header with tblgen"
1487 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1489 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1490 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1491 $(Echo) "Building $(<F) register info implementation with tblgen"
1492 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1494 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1495 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1496 $(Echo) "Building $(<F) instruction names with tblgen"
1497 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1499 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1500 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1501 $(Echo) "Building $(<F) instruction information with tblgen"
1502 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1504 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1505 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1506 $(Echo) "Building $(<F) assembly writer with tblgen"
1507 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1509 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1510 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1511 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1512 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1514 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1515 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1516 $(Echo) "Building $(<F) assembly matcher with tblgen"
1517 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1519 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1520 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1521 $(Echo) "Building $(<F) code emitter with tblgen"
1522 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1524 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1525 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1526 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1527 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1529 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1530 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1531 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1532 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1534 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1535 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1536 $(Echo) "Building $(<F) subtarget information with tblgen"
1537 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1539 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1540 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1541 $(Echo) "Building $(<F) calling convention information with tblgen"
1542 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1544 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1545 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1546 $(Echo) "Building $(<F) intrinsics information with tblgen"
1547 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1550 -$(Verb) $(RM) -f $(INCFiles)
1554 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1556 LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1557 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1559 TDFiles := $(LLVMCPluginSrc) \
1560 $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1562 $(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1563 $(TBLGEN) $(TD_COMMON)
1564 $(Echo) "Building LLVMC configuration library with tblgen"
1565 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1567 endif # LLVMC_BUILD_AUTOGENERATED_INC
1569 ###############################################################################
1570 # OTHER RULES: Other rules needed
1571 ###############################################################################
1573 # To create postscript files from dot files...
1574 ifneq ($(DOT),false)
1576 $(DOT) -Tps < $< > $@
1579 $(Echo) "Cannot build $@: The program dot is not installed"
1582 # This rules ensures that header files that are removed still have a rule for
1583 # which they can be "generated." This allows make to ignore them and
1584 # reproduce the dependency lists.
1588 # Define clean-local to clean the current directory. Note that this uses a
1589 # very conservative approach ensuring that empty variables do not cause
1590 # errors or disastrous removal.
1592 ifneq ($(strip $(ObjRootDir)),)
1593 -$(Verb) $(RM) -rf $(ObjRootDir)
1595 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1596 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1597 -$(Verb) $(RM) -f *$(SHLIBEXT)
1601 -$(Verb) $(RM) -rf Debug Release Profile
1604 ###############################################################################
1605 # DEPENDENCIES: Include the dependency files if we should
1606 ###############################################################################
1607 ifndef DISABLE_AUTO_DEPENDENCIES
1609 # If its not one of the cleaning targets
1610 ifndef IS_CLEANING_TARGET
1612 # Get the list of dependency files
1613 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1614 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1616 # Include bitcode dependency files if using bitcode libraries
1617 ifdef BYTECODE_LIBRARY
1618 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1621 -include $(DependFiles) ""
1627 ###############################################################################
1628 # CHECK: Running the test suite
1629 ###############################################################################
1632 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1633 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1634 $(EchoCmd) Running test suite ; \
1635 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1636 TESTSUITE=$(TESTSUITE) ; \
1638 $(EchoCmd) No Makefile in test directory ; \
1641 $(EchoCmd) No test directory ; \
1645 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1646 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1647 $(EchoCmd) Running test suite ; \
1648 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1650 $(EchoCmd) No Makefile in test directory ; \
1653 $(EchoCmd) No test directory ; \
1657 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1658 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1659 $(EchoCmd) Running test suite ; \
1660 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1662 $(EchoCmd) No Makefile in test directory ; \
1665 $(EchoCmd) No test directory ; \
1668 ###############################################################################
1669 # UNITTESTS: Running the unittests test suite
1670 ###############################################################################
1673 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1674 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1675 $(EchoCmd) Running unittests test suite ; \
1676 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
1678 $(EchoCmd) No Makefile in unittests directory ; \
1681 $(EchoCmd) No unittests directory ; \
1684 ###############################################################################
1685 # DISTRIBUTION: Handle construction of a distribution tarball
1686 ###############################################################################
1688 #------------------------------------------------------------------------
1689 # Define distribution related variables
1690 #------------------------------------------------------------------------
1691 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1692 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1693 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1694 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1695 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1696 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1697 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1698 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1699 Makefile.config.in configure autoconf
1700 DistOther := $(notdir $(wildcard \
1701 $(PROJ_SRC_DIR)/*.h \
1702 $(PROJ_SRC_DIR)/*.td \
1703 $(PROJ_SRC_DIR)/*.def \
1704 $(PROJ_SRC_DIR)/*.ll \
1705 $(PROJ_SRC_DIR)/*.in))
1706 DistSubDirs := $(SubDirs)
1707 DistSources = $(Sources) $(EXTRA_DIST)
1708 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1710 #------------------------------------------------------------------------
1711 # We MUST build distribution with OBJ_DIR != SRC_DIR
1712 #------------------------------------------------------------------------
1713 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1714 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1715 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1719 #------------------------------------------------------------------------
1720 # Prevent attempt to run dist targets from anywhere but the top level
1721 #------------------------------------------------------------------------
1723 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1724 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1727 #------------------------------------------------------------------------
1728 # Provide the top level targets
1729 #------------------------------------------------------------------------
1731 dist-gzip:: $(DistTarGZip)
1733 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1734 $(Echo) Packing gzipped distribution tar file.
1735 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1736 $(GZIP) -c > "$(DistTarGZip)"
1738 dist-bzip2:: $(DistTarBZ2)
1740 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1741 $(Echo) Packing bzipped distribution tar file.
1742 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1743 $(BZIP2) -c >$(DistTarBZ2)
1745 dist-zip:: $(DistZip)
1747 $(DistZip) : $(TopDistDir)/.makedistdir
1748 $(Echo) Packing zipped distribution file.
1749 $(Verb) rm -f $(DistZip)
1750 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1752 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1753 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1755 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1757 dist-check:: $(DistTarGZip)
1758 $(Echo) Checking distribution tar file.
1759 $(Verb) if test -d $(DistCheckDir) ; then \
1760 $(RM) -rf $(DistCheckDir) ; \
1762 $(Verb) $(MKDIR) $(DistCheckDir)
1763 $(Verb) cd $(DistCheckDir) && \
1764 $(MKDIR) $(DistCheckDir)/build && \
1765 $(MKDIR) $(DistCheckDir)/install && \
1766 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1768 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1769 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1772 $(MAKE) unittests && \
1773 $(MAKE) install && \
1774 $(MAKE) uninstall && \
1775 $(MAKE) dist-clean && \
1776 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1779 $(Echo) Cleaning distribution files
1780 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1785 #------------------------------------------------------------------------
1786 # Provide the recursive distdir target for building the distribution directory
1787 #------------------------------------------------------------------------
1788 distdir: $(DistDir)/.makedistdir
1789 $(DistDir)/.makedistdir: $(DistSources)
1790 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1791 if test -d "$(DistDir)" ; then \
1792 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1795 $(EchoCmd) Removing old $(DistDir) ; \
1796 $(RM) -rf $(DistDir); \
1797 $(EchoCmd) Making 'all' to verify build ; \
1798 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1800 $(Echo) Building Distribution Directory $(DistDir)
1801 $(Verb) $(MKDIR) $(DistDir)
1802 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1803 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1804 for file in $(DistFiles) ; do \
1806 $(PROJ_SRC_DIR)/*) \
1807 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1809 $(PROJ_SRC_ROOT)/*) \
1810 file=`echo "$$file" | \
1811 sed "s#^$$srcrootstrip/##"` \
1814 if test -f "$(PROJ_SRC_DIR)/$$file" || \
1815 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1816 from_dir="$(PROJ_SRC_DIR)" ; \
1817 elif test -f "$$file" || test -d "$$file" ; then \
1820 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1821 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1822 to_dir="$(DistDir)/$$dir"; \
1823 $(MKDIR) "$$to_dir" ; \
1825 to_dir="$(DistDir)"; \
1827 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1828 if test -n "$$mid_dir" ; then \
1829 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1831 if test -d "$$from_dir/$$file"; then \
1832 if test -d "$(PROJ_SRC_DIR)/$$file" && \
1833 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1834 cd $(PROJ_SRC_DIR) ; \
1835 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1836 ( cd $$to_dir ; $(TAR) xf - ) ; \
1837 cd $(PROJ_OBJ_DIR) ; \
1840 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1841 ( cd $$to_dir ; $(TAR) xf - ) ; \
1842 cd $(PROJ_OBJ_DIR) ; \
1844 elif test -f "$$from_dir/$$file" ; then \
1845 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1846 elif test -L "$$from_dir/$$file" ; then \
1847 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1848 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1849 $(EchoCmd) "===== WARNING: Distribution Source " \
1850 "$$from_dir/$$file Not Found!" ; \
1851 elif test "$(Verb)" != '@' ; then \
1852 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1855 $(Verb) for subdir in $(DistSubDirs) ; do \
1856 if test "$$subdir" \!= "." ; then \
1857 new_distdir="$(DistDir)/$$subdir" ; \
1858 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1859 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1860 DistDir="$$new_distdir" distdir ) || exit 1; \
1863 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1864 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1865 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1866 -name .svn \) -print` ;\
1867 $(MAKE) dist-hook ; \
1868 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1869 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1870 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1871 -o ! -type d ! -perm -444 -exec \
1872 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1873 || chmod -R a+r $(DistDir) ; \
1876 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1882 ###############################################################################
1883 # TOP LEVEL - targets only to apply at the top level directory
1884 ###############################################################################
1888 #------------------------------------------------------------------------
1889 # Install support for the project's include files:
1890 #------------------------------------------------------------------------
1893 $(Echo) Install circumvented with NO_INSTALL
1895 $(Echo) Uninstall circumvented with NO_INSTALL
1898 $(Echo) Installing include files
1899 $(Verb) $(MKDIR) $(PROJ_includedir)
1900 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1901 cd $(PROJ_SRC_ROOT)/include && \
1902 for hdr in `find . -type f '!' '(' -name '*~' \
1903 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1904 grep -v .svn` ; do \
1905 instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1906 if test \! -d "$$instdir" ; then \
1907 $(EchoCmd) Making install directory $$instdir ; \
1908 $(MKDIR) $$instdir ;\
1910 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1913 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1914 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1915 cd $(PROJ_OBJ_ROOT)/include && \
1916 for hdr in `find . -type f -print | grep -v CVS` ; do \
1917 $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1923 $(Echo) Uninstalling include files
1924 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1925 cd $(PROJ_SRC_ROOT)/include && \
1926 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1927 '!' '(' -name '*~' -o -name '.#*' \
1928 -o -name '*.in' ')' -print ')' | \
1929 grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1930 cd $(PROJ_SRC_ROOT)/include && \
1931 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1932 -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1938 @echo searching for overlength lines in files: $(Sources)
1941 egrep -n '.{81}' $(Sources) /dev/null
1944 @echo searching for tabs in files: $(Sources)
1947 egrep -n ' ' $(Sources) /dev/null
1950 @ls -l $(LibDir) | awk '\
1951 BEGIN { sum = 0; } \
1953 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1954 @ls -l $(ToolDir) | awk '\
1955 BEGIN { sum = 0; } \
1957 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1958 #------------------------------------------------------------------------
1959 # Print out the directories used for building
1960 #------------------------------------------------------------------------
1962 $(Echo) "BuildMode : " '$(BuildMode)'
1963 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1964 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1965 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1966 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1967 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1968 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1969 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
1970 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
1971 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
1972 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
1973 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
1974 $(Echo) "UserTargets : " '$(UserTargets)'
1975 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1976 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1977 $(Echo) "ObjDir : " '$(ObjDir)'
1978 $(Echo) "LibDir : " '$(LibDir)'
1979 $(Echo) "ToolDir : " '$(ToolDir)'
1980 $(Echo) "ExmplDir : " '$(ExmplDir)'
1981 $(Echo) "Sources : " '$(Sources)'
1982 $(Echo) "TDFiles : " '$(TDFiles)'
1983 $(Echo) "INCFiles : " '$(INCFiles)'
1984 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
1985 $(Echo) "PreConditions: " '$(PreConditions)'
1986 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
1987 $(Echo) "Compile.C : " '$(Compile.C)'
1988 $(Echo) "Archive : " '$(Archive)'
1989 $(Echo) "YaccFiles : " '$(YaccFiles)'
1990 $(Echo) "LexFiles : " '$(LexFiles)'
1991 $(Echo) "Module : " '$(Module)'
1992 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1993 $(Echo) "SubDirs : " '$(SubDirs)'
1994 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1995 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2000 # General debugging rule, use 'make dbg-print-XXX' to print the
2001 # definition, value and origin of XXX.
2003 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))