]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - Makefile.rules
We don't want FP elimination when doing an Apple-style build.
[opencl/llvm.git] / Makefile.rules
1 #===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 #===------------------------------------------------------------------------===#
9 #
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.
12 #
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                     unitcheck
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 \
28                     dist-zip unittests
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 #--------------------------------------------------------------------
39 VPATH=$(PROJ_SRC_DIR)
41 #--------------------------------------------------------------------
42 # Reset the list of suffixes we know how to build.
43 #--------------------------------------------------------------------
44 .SUFFIXES:
45 .SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll .m .mm
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 #--------------------------------------------------------------------
58 $(UserTargets)::
60 #------------------------------------------------------------------------
61 # LLVMBuild Integration
62 #------------------------------------------------------------------------
63 #
64 # We use llvm-build to generate all the data required by the Makefile based
65 # build system in one swoop:
66 #
67 #  - We generate a file (a Makefile fragment) in the object root which contains
68 #    all the definitions that are required by Makefiles across the entire
69 #    project.
70 #
71 #  - We generate the library table used by llvm-config.
72 #
73 #  - We generate the dependencies for the Makefile fragment, so that we will
74 #    automatically reconfigure outselves.
76 # The path to the llvm-build tool itself.
77 LLVMBuildTool   := $(PROJ_SRC_ROOT)/utils/llvm-build/llvm-build
79 # The files we are going to generate using llvm-build.
80 LLVMBuildMakeFrag := $(PROJ_OBJ_ROOT)/Makefile.llvmbuild
81 LLVMConfigLibraryDependenciesInc := \
82         $(PROJ_OBJ_ROOT)/tools/llvm-config/LibraryDependencies.inc
84 # This is for temporary backwards compatibility.
85 ifndef TARGET_NATIVE_ARCH
86 TARGET_NATIVE_ARCH := $(ARCH)
87 endif
89 # The rule to create the LLVMBuild Makefile fragment as well as the llvm-config
90 # library table.
91 #
92 # Note that this target gets its real dependencies generated for us by
93 # llvm-build.
94 #
95 # We include a dependency on this Makefile to ensure that changes to the
96 # generation command get picked up.
97 $(LLVMBuildMakeFrag): $(PROJ_SRC_ROOT)/Makefile.rules \
98                       $(PROJ_OBJ_ROOT)/Makefile.config
99         $(Echo) Constructing LLVMBuild project information.
100         $(Verb)$(PYTHON) $(LLVMBuildTool) \
101           --native-target "$(TARGET_NATIVE_ARCH)" \
102           --enable-targets "$(TARGETS_TO_BUILD)" \
103           --enable-optional-components "$(OPTIONAL_COMPONENTS)" \
104           --write-library-table $(LLVMConfigLibraryDependenciesInc) \
105           --write-make-fragment $(LLVMBuildMakeFrag)
107 # For completeness, let Make know how the extra files are generated.
108 $(LLVMConfigLibraryDependenciesInc): $(LLVMBuildMakeFrag)
110 # Include the generated Makefile fragment.
112 # We currently only include the dependencies for the fragment itself if we are
113 # at the top-level. Otherwise, recursive invocations would ends up doing
114 # substantially more redundant stat'ing.
116 # This means that we won't properly regenerate things for developers used to
117 # building from a subdirectory, but that is always somewhat unreliable.
118 ifeq ($(LEVEL),.)
119 LLVMBUILD_INCLUDE_DEPENDENCIES := 1
121 # Clean the generated makefile fragment at the top-level.
122 clean-local::
123         -$(Verb) $(RM) -f $(LLVMBuildMakeFrag)
124 endif
125 -include $(LLVMBuildMakeFrag)
127 ################################################################################
128 # PRECONDITIONS: that which must be built/checked first
129 ################################################################################
131 SrcMakefiles       := $(filter %Makefile %Makefile.tests,\
132                       $(wildcard $(PROJ_SRC_DIR)/Makefile*))
133 ObjMakefiles       := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
134 ConfigureScript    := $(PROJ_SRC_ROOT)/configure
135 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
136 MakefileConfigIn   := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
137 MakefileCommonIn   := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
138 MakefileConfig     := $(PROJ_OBJ_ROOT)/Makefile.config
139 MakefileCommon     := $(PROJ_OBJ_ROOT)/Makefile.common
140 PreConditions      := $(ConfigStatusScript) $(ObjMakefiles)
141 ifneq ($(MakefileCommonIn),)
142 PreConditions      += $(MakefileCommon)
143 endif
145 ifneq ($(MakefileConfigIn),)
146 PreConditions      += $(MakefileConfig)
147 endif
149 preconditions: $(PreConditions)
151 #------------------------------------------------------------------------
152 # Make sure the BUILT_SOURCES are built first
153 #------------------------------------------------------------------------
154 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
156 clean-all-local::
157 ifneq ($(strip $(BUILT_SOURCES)),)
158         -$(Verb) $(RM) -f $(BUILT_SOURCES)
159 endif
161 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
162 spotless:
163         $(Verb) if test -x config.status ; then \
164           $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
165           $(MKDIR) .spotless.save ; \
166           $(MV) config.status .spotless.save ; \
167           $(MV) mklib  .spotless.save ; \
168           $(MV) projects  .spotless.save ; \
169           $(RM) -rf * ; \
170           $(MV) .spotless.save/config.status . ; \
171           $(MV) .spotless.save/mklib . ; \
172           $(MV) .spotless.save/projects . ; \
173           $(RM) -rf .spotless.save ; \
174           $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
175           $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
176           $(ConfigStatusScript) ; \
177         else \
178           $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
179         fi
180 else
181 spotless:
182         $(EchoCmd) "spotless target not supported for objdir == srcdir"
183 endif
185 $(BUILT_SOURCES) : $(ObjMakefiles)
187 #------------------------------------------------------------------------
188 # Make sure we're not using a stale configuration
189 #------------------------------------------------------------------------
190 reconfigure:
191         $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
192         $(Verb) cd $(PROJ_OBJ_ROOT) && \
193           $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
194           $(ConfigStatusScript)
196 .PRECIOUS: $(ConfigStatusScript)
197 $(ConfigStatusScript): $(ConfigureScript)
198         $(Echo) Reconfiguring with $<
199         $(Verb) cd $(PROJ_OBJ_ROOT) && \
200           $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
201           $(ConfigStatusScript)
203 #------------------------------------------------------------------------
204 # Make sure the configuration makefile is up to date
205 #------------------------------------------------------------------------
206 ifneq ($(MakefileConfigIn),)
207 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
208         $(Echo) Regenerating $@
209         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
210 endif
212 ifneq ($(MakefileCommonIn),)
213 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
214         $(Echo) Regenerating $@
215         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
216 endif
218 #------------------------------------------------------------------------
219 # If the Makefile in the source tree has been updated, copy it over into the
220 # build tree. But, only do this if the source and object makefiles differ
221 #------------------------------------------------------------------------
222 ifndef PROJ_MAKEFILE
223 PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
224 endif
226 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
228 Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
229         $(Echo) "Updating Makefile"
230         $(Verb) $(MKDIR) $(@D)
231         $(Verb) $(CP) -f $< $@
233 # Copy the Makefile.* files unless we're in the root directory which avoids
234 # the copying of Makefile.config.in or other things that should be explicitly
235 # taken care of.
236 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
237         @case '$?' in \
238           *Makefile.rules) ;; \
239           *.in) ;; \
240           *) $(EchoCmd) "Updating $(@F)" ; \
241              $(MKDIR) $(@D) ; \
242              $(CP) -f $< $@ ;; \
243         esac
245 endif
247 #------------------------------------------------------------------------
248 # Set up the basic dependencies
249 #------------------------------------------------------------------------
250 $(UserTargets):: $(PreConditions)
252 all:: all-local
253 clean:: clean-local
254 clean-all:: clean-local clean-all-local
255 install:: install-local
256 uninstall:: uninstall-local
257 install-local:: all-local
258 install-bytecode:: install-bytecode-local
260 ###############################################################################
261 # VARIABLES: Set up various variables based on configuration data
262 ###############################################################################
264 # Variable for if this make is for a "cleaning" target
265 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
266   IS_CLEANING_TARGET=1
267 endif
269 #--------------------------------------------------------------------
270 # Variables derived from configuration we are building
271 #--------------------------------------------------------------------
273 CPP.Defines :=
274 ifeq ($(ENABLE_OPTIMIZED),1)
275   BuildMode := Release
276   # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
277   ifneq ($(HOST_OS),FreeBSD)
278   ifneq ($(HOST_OS),Darwin)
279     OmitFramePointer := -fomit-frame-pointer
280   endif
281   endif
283   CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
284   C.Flags   += $(OPTIMIZE_OPTION) $(OmitFramePointer)
285   LD.Flags  += $(OPTIMIZE_OPTION)
286   ifdef DEBUG_SYMBOLS
287     BuildMode := $(BuildMode)+Debug
288     CXX.Flags += -g
289     C.Flags   += -g
290     LD.Flags  += -g
291     KEEP_SYMBOLS := 1
292   endif
293 else
294   ifdef NO_DEBUG_SYMBOLS
295     BuildMode := Unoptimized
296     CXX.Flags +=
297     C.Flags   +=
298     LD.Flags  +=
299     KEEP_SYMBOLS := 1
300   else
301     BuildMode := Debug
302     CXX.Flags += -g
303     C.Flags   += -g
304     LD.Flags  += -g
305     KEEP_SYMBOLS := 1
306   endif
307 endif
309 ifeq ($(ENABLE_LIBCPP),1)
310   CXX.Flags +=  -stdlib=libc++
311   LD.Flags +=  -stdlib=libc++
312 endif
314 ifeq ($(ENABLE_CXX11),1)
315   CXX.Flags += -std=c++11
316 endif
318 ifeq ($(ENABLE_WERROR),1)
319   CXX.Flags += -Werror
320   C.Flags += -Werror
321 endif
323 ifeq ($(ENABLE_PROFILING),1)
324   BuildMode := $(BuildMode)+Profile
325   CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
326   C.Flags   := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
327   LD.Flags  := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
328   KEEP_SYMBOLS := 1
329 endif
331 ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
332     CXX.Flags += -fvisibility-inlines-hidden
333 endif
335 ifdef ENABLE_EXPENSIVE_CHECKS
336   # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
337   # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
338   REQUIRES_RTTI := 1
339 endif
341 # IF REQUIRES_EH=1 is specified then don't disable exceptions
342 ifndef REQUIRES_EH
343   CXX.Flags += -fno-exceptions
344 else
345   # If the library requires EH, it also requires RTTI.
346   REQUIRES_RTTI := 1
347 endif
349 ifdef REQUIRES_FRAME_POINTER
350   CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
351   C.Flags   := $(filter-out -fomit-frame-pointer,$(C.Flags))
352   LD.Flags  := $(filter-out -fomit-frame-pointer,$(LD.Flags))
353 endif
355 # If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
356 ifneq ($(REQUIRES_RTTI), 1)
357   CXX.Flags += -fno-rtti
358 endif
360 ifeq ($(ENABLE_COVERAGE),1)
361   BuildMode := $(BuildMode)+Coverage
362   CXX.Flags += -ftest-coverage -fprofile-arcs
363   C.Flags   += -ftest-coverage -fprofile-arcs
364 endif
366 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
367 # then disable assertions by defining the appropriate preprocessor symbols.
368 ifeq ($(DISABLE_ASSERTIONS),1)
369   CPP.Defines += -DNDEBUG
370 else
371   BuildMode := $(BuildMode)+Asserts
372   CPP.Defines += -D_DEBUG
373 endif
375 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
376 # configured), then enable expensive checks by defining the
377 # appropriate preprocessor symbols.
378 ifeq ($(ENABLE_EXPENSIVE_CHECKS),1)
379   BuildMode := $(BuildMode)+Checks
380   CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
381 endif
383 # LOADABLE_MODULE implies several other things so we force them to be
384 # defined/on.
385 ifdef LOADABLE_MODULE
386   SHARED_LIBRARY := 1
387   LINK_LIBS_IN_SHARED := 1
388 endif
390 ifdef SHARED_LIBRARY
391   ENABLE_PIC := 1
392   PIC_FLAG = "(PIC)"
393 endif
395 ifeq ($(ENABLE_PIC),1)
396   ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
397     # Nothing. Win32 defaults to PIC and warns when given -fPIC
398   else
399     ifeq ($(HOST_OS),Darwin)
400       # Common symbols not allowed in dylib files
401       CXX.Flags += -fno-common
402       C.Flags   += -fno-common
403     else
404       # Linux and others; pass -fPIC
405       CXX.Flags += -fPIC
406       C.Flags   += -fPIC
407     endif
408   endif
409 else
410   ifeq ($(HOST_OS),Darwin)
411       CXX.Flags += -mdynamic-no-pic
412       C.Flags   += -mdynamic-no-pic
413   endif
414 endif
416 # Support makefile variable to disable any kind of timestamp/non-deterministic
417 # info from being used in the build.
418 ifeq ($(ENABLE_TIMESTAMPS),1)
419   DOTDIR_TIMESTAMP_COMMAND := $(DATE)
420 else
421   DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
422 endif
424 ifeq ($(HOST_OS),MingW)
425   # Work around PR4957
426   CPP.Defines += -D__NO_CTYPE_INLINE
427   ifeq ($(LLVM_CROSS_COMPILING),1)
428     # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
429     ifdef TOOLNAME
430       LD.Flags += -Wl,--allow-multiple-definition
431     endif
432   endif
433 endif
435 CXX.Flags     += -Woverloaded-virtual
436 CPP.BaseFlags += $(CPP.Defines)
437 AR.Flags      := cru
439 # Make Floating point IEEE compliant on Alpha.
440 ifeq ($(ARCH),Alpha)
441   CXX.Flags     += -mieee
442   CPP.BaseFlags += -mieee
443 ifeq ($(ENABLE_PIC),0)
444   CXX.Flags     += -fPIC
445   CPP.BaseFlags += -fPIC
446 endif
448   LD.Flags += -Wl,--no-relax
449 endif
451 # GNU ld/PECOFF accepts but ignores them below;
452 #   --version-script
453 #   --export-dynamic
454 #   --rpath
455 # FIXME: autoconf should be aware of them.
456 ifneq (,$(filter $(HOST_OS),Cygwin MingW))
457   HAVE_LINK_VERSION_SCRIPT := 0
458   RPATH :=
459   RDYNAMIC := -Wl,--export-all-symbols
460 endif
462 #--------------------------------------------------------------------
463 # Directory locations
464 #--------------------------------------------------------------------
465 TargetMode :=
466 ifeq ($(LLVM_CROSS_COMPILING),1)
467   BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
468 endif
470 ObjRootDir  := $(PROJ_OBJ_DIR)/$(BuildMode)
471 ObjDir      := $(ObjRootDir)
472 LibDir      := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
473 ToolDir     := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
474 ExmplDir    := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
475 LLVMLibDir  := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
476 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
477 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
479 #--------------------------------------------------------------------
480 # Locations of shared libraries
481 #--------------------------------------------------------------------
483 SharedPrefix     := lib
484 SharedLibDir     := $(LibDir)
485 LLVMSharedLibDir := $(LLVMLibDir)
487 # Win32.DLL prefers to be located on the "PATH" of binaries.
488 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
489   SharedLibDir     := $(ToolDir)
490   LLVMSharedLibDir := $(LLVMToolDir)
492   ifeq ($(HOST_OS),Cygwin)
493     SharedPrefix  := cyg
494   else
495     SharedPrefix  :=
496   endif
497 endif
499 #--------------------------------------------------------------------
500 # LLVM Capable Compiler
501 #--------------------------------------------------------------------
503 ifneq ($(findstring llvm-gcc,$(LLVMCC_OPTION)),)
504   LLVMCC := $(LLVMGCC)
505   LLVMCXX := $(LLVMGXX)
506 else
507   ifneq ($(findstring clang,$(LLVMCC_OPTION)),)
508     ifneq ($(CLANGPATH),)
509       LLVMCC := $(CLANGPATH)
510       LLVMCXX := $(CLANGXXPATH)
511     else
512       ifeq ($(ENABLE_BUILT_CLANG),1)
513         LLVMCC := $(LLVMToolDir)/clang
514         LLVMCXX := $(LLVMToolDir)/clang++
515       endif
516     endif
517   endif
518 endif
520 #--------------------------------------------------------------------
521 # Full Paths To Compiled Tools and Utilities
522 #--------------------------------------------------------------------
523 EchoCmd  := $(ECHO) llvm[$(MAKELEVEL)]:
524 ifdef BUILD_DIRS_ONLY
525 EchoCmd  := $(EchoCmd) "(build tools)":
526 endif
528 Echo     := @$(EchoCmd)
529 ifndef LLVMAS
530 LLVMAS   := $(LLVMToolDir)/llvm-as$(EXEEXT)
531 endif
532 ifndef LLVM_TBLGEN
533   ifeq ($(LLVM_CROSS_COMPILING),1)
534     LLVM_TBLGEN   := $(BuildLLVMToolDir)/llvm-tblgen$(BUILD_EXEEXT)
535   else
536     LLVM_TBLGEN   := $(LLVMToolDir)/llvm-tblgen$(EXEEXT)
537   endif
538 endif
539 ifeq ($(LLVM_CROSS_COMPILING),1)
540   LLVM_CONFIG := $(BuildLLVMToolDir)/llvm-config$(BUILD_EXEEXT)
541 else
542   LLVM_CONFIG := $(LLVMToolDir)/llvm-config$(EXEEXT)
543 endif
544 ifndef LLVMDIS
545 LLVMDIS  := $(LLVMToolDir)/llvm-dis$(EXEEXT)
546 endif
547 ifndef LLI
548 LLI      := $(LLVMToolDir)/lli$(EXEEXT)
549 endif
550 ifndef LLC
551 LLC      := $(LLVMToolDir)/llc$(EXEEXT)
552 endif
553 ifndef LOPT
554 LOPT     := $(LLVMToolDir)/opt$(EXEEXT)
555 endif
556 ifndef LBUGPOINT
557 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
558 endif
559 ifndef LLVMLINK
560 LLVMLINK      := $(LLVMToolDir)/llvm-link$(EXEEXT)
561 endif
563 #--------------------------------------------------------------------
564 # Adjust to user's request
565 #--------------------------------------------------------------------
567 ifeq ($(HOST_OS),Darwin)
568  ifdef MACOSX_DEPLOYMENT_TARGET
569   DARWIN_VERSION := $(MACOSX_DEPLOYMENT_TARGET)
570  else
571   DARWIN_VERSION := `sw_vers -productVersion`
572  endif
573   # Strip a number like 10.4.7 to 10.4
574   DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
575   # Get "4" out of 10.4 for later pieces in the makefile.
576   DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
578   LoadableModuleOptions := -Wl,-flat_namespace -Wl,-undefined,suppress
579   SharedLinkOptions := -dynamiclib
580   ifdef DEPLOYMENT_TARGET
581     SharedLinkOptions += $(DEPLOYMENT_TARGET)
582   else
583     ifneq ($(ARCH),ARM)
584       SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
585     endif
586   endif
587 else
588   SharedLinkOptions=-shared
589 endif
591 ifeq ($(TARGET_OS),Darwin)
592   ifdef DEPLOYMENT_TARGET
593     TargetCommonOpts += $(DEPLOYMENT_TARGET)
594   else
595     ifneq ($(ARCH),ARM)
596       TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
597     endif
598   endif
599 endif
601 ifdef SHARED_LIBRARY
602 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
603 ifneq ($(HOST_OS),Darwin)
604   LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
605 endif
606 endif
607 endif
609 ifdef TOOL_VERBOSE
610   C.Flags += -v
611   CXX.Flags += -v
612   LD.Flags += -v
613   VERBOSE := 1
614 endif
616 # Adjust settings for verbose mode
617 ifndef VERBOSE
618   Verb := @
619   AR.Flags += >/dev/null 2>/dev/null
620   ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
621 else
622   ConfigureScriptFLAGS :=
623 endif
625 # By default, strip symbol information from executable
626 ifndef KEEP_SYMBOLS
627   Strip := $(PLATFORMSTRIPOPTS)
628   StripWarnMsg := "(without symbols)"
629   Install.StripFlag += -s
630 endif
632 ifdef TOOL_NO_EXPORTS
633   DynamicFlags :=
634 else
635   DynamicFlag := $(RDYNAMIC)
636 endif
638 # Adjust linker flags for building an executable
639 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
640   ifneq ($(HOST_OS), Darwin)
641     ifdef TOOLNAME
642       LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
643       ifdef EXAMPLE_TOOL
644         LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(DynamicFlag)
645       else
646         LD.Flags += $(RPATH) -Wl,$(ToolDir) $(DynamicFlag)
647     endif
648   endif
649 else
650   ifneq ($(DARWIN_MAJVERS),4)
651     LD.Flags += $(RPATH) -Wl,@executable_path/../lib
652   endif
653   ifeq ($(RC_XBS),YES)
654     TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
655     LD.Flags += -Wl,-object_path_lto -Wl,$(TempFile) -Wl,-mllvm,-disable-fp-elim
656   endif
657 endif
658 endif
661 #----------------------------------------------------------
662 # Options To Invoke Tools
663 #----------------------------------------------------------
665 ifdef EXTRA_LD_OPTIONS
666 LD.Flags += $(EXTRA_LD_OPTIONS)
667 endif
669 ifndef NO_PEDANTIC
670 CompileCommonOpts += -pedantic -Wno-long-long
671 endif
672 CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
673                      $(EXTRA_OPTIONS) $(COVERED_SWITCH_DEFAULT) \
674                      $(NO_UNINITIALIZED) $(NO_MAYBE_UNINITIALIZED) \
675                      $(NO_MISSING_FIELD_INITIALIZERS)
676 # Enable cast-qual for C++; the workaround is to use const_cast.
677 CXX.Flags += -Wcast-qual
679 ifeq ($(HOST_OS),HP-UX)
680   CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
681 endif
683 # If we are building a universal binary on Mac OS/X, pass extra options.  This
684 # is useful to people that want to link the LLVM libraries into their universal
685 # apps.
687 # The following can be optionally specified:
688 #   UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
689 #      For Mac OS/X 10.4 Intel machines, the traditional one is:
690 #      UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
691 #   UNIVERSAL_ARCH can be optionally specified to be a list of architectures
692 #      to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64".  This defaults to
693 #      i386/ppc only.
694 ifdef UNIVERSAL
695   ifndef UNIVERSAL_ARCH
696     UNIVERSAL_ARCH := i386 ppc
697   endif
698   UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
699   CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
700   ifdef UNIVERSAL_SDK_PATH
701     CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
702   endif
704   # Building universal cannot compute dependencies automatically.
705   DISABLE_AUTO_DEPENDENCIES=1
706 else
707   ifeq ($(TARGET_OS),Darwin)
708     ifeq ($(ARCH),x86_64)
709       TargetCommonOpts = -m64
710     else
711       ifeq ($(ARCH),x86)
712         TargetCommonOpts = -m32
713       endif
714     endif
715   endif
716 endif
718 ifeq ($(HOST_OS),SunOS)
719 CPP.BaseFlags += -include llvm/Support/Solaris.h
720 endif
722 ifeq ($(HOST_OS),AuroraUX)
723 CPP.BaseFlags += -include llvm/Support/Solaris.h
724 endif # !HOST_OS - AuroraUX.
726 # On Windows, SharedLibDir != LibDir. The order is important.
727 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
728   LD.Flags    += -L$(SharedLibDir) -L$(LibDir) -L$(LLVMToolDir) -L$(LLVMLibDir)
729 else
730   LD.Flags    += -L$(LibDir) -L$(LLVMLibDir)
731 endif
733 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
734 # All -I flags should go here, so that they don't confuse llvm-config.
735 CPP.Flags     += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
736                  $(patsubst %,-I%/include,\
737                  $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
738                  $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
739                  $(CPP.BaseFlags)
741 ifeq ($(INCLUDE_BUILD_DIR),1)
742   CPP.Flags   += -I$(ObjDir)
743 endif
745 # SHOW_DIAGNOSTICS support.
746 ifeq ($(SHOW_DIAGNOSTICS),1)
747   Compile.Wrapper := env CC_LOG_DIAGNOSTICS=1 \
748                           CC_LOG_DIAGNOSTICS_FILE="$(LLVM_OBJ_ROOT)/$(BuildMode)/diags"
749 else
750   Compile.Wrapper :=
751 endif
753 Compile.C     = $(Compile.Wrapper) \
754                   $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
755                 $(TargetCommonOpts) $(CompileCommonOpts) -c
756 Compile.CXX   = $(Compile.Wrapper) \
757                   $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
758                 $(TargetCommonOpts) $(CompileCommonOpts) -c
759 Preprocess.CXX= $(Compile.Wrapper) \
760                   $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
761                 $(CompileCommonOpts) $(CXX.Flags) -E
762 Link          = $(Compile.Wrapper) \
763                   $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LD.Flags) \
764                 $(LDFLAGS) $(TargetCommonOpts)  $(CompileCommonOpts) $(Strip)
766 BCCompile.C   = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
767                 $(TargetCommonOpts) $(CompileCommonOpts)
768 Preprocess.C  = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
769                 $(TargetCommonOpts) $(CompileCommonOpts) -E
771 BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
772                 $(TargetCommonOpts) $(CompileCommonOpts)
774 ProgInstall   = $(INSTALL) $(Install.StripFlag) -m 0755
775 ScriptInstall = $(INSTALL) -m 0755
776 DataInstall   = $(INSTALL) -m 0644
778 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
779 # paths. In this case, the SYSPATH function (defined in
780 # Makefile.config) transforms Unix paths into Windows paths.
781 TableGen.Flags= -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
782                 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
783                 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
784                 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
785 LLVMTableGen  = $(LLVM_TBLGEN) $(TableGen.Flags)
787 Archive       = $(AR) $(AR.Flags)
788 LArchive      = $(LLVMToolDir)/llvm-ar rcsf
789 ifdef RANLIB
790 Ranlib        = $(RANLIB)
791 else
792 Ranlib        = ranlib
793 endif
795 AliasTool     = ln -s
797 #----------------------------------------------------------
798 # Get the list of source files and compute object file
799 # names from them.
800 #----------------------------------------------------------
802 ifndef SOURCES
803   Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
804              $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
805 else
806   Sources := $(SOURCES)
807 endif
809 ifdef BUILT_SOURCES
810 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
811 endif
813 BaseNameSources := $(sort $(basename $(Sources)))
815 ObjectsO  := $(BaseNameSources:%=$(ObjDir)/%.o)
816 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
818 #----------------------------------------------------------
819 # For Mingw MSYS bash and Python/w32:
821 # $(ECHOPATH) prints DOSish pathstring.
822 #   ex) $(ECHOPATH) /include/sys/types.h
823 #   --> C:/mingw/include/sys/types.h
824 # built-in "echo" does not transform path to DOSish path.
826 # FIXME: It would not be needed when MSYS's python
827 # were provided.
828 #----------------------------------------------------------
830 ifeq (-mingw32,$(findstring -mingw32,$(BUILD_TRIPLE)))
831   ECHOPATH := $(Verb)$(PYTHON) -u -c "import sys;print ' '.join(sys.argv[1:])"
832 else
833   ECHOPATH := $(Verb)$(ECHO)
834 endif
836 ###############################################################################
837 # DIRECTORIES: Handle recursive descent of directory structure
838 ###############################################################################
840 #---------------------------------------------------------
841 # Provide rules to make install dirs. This must be early
842 # in the file so they get built before dependencies
843 #---------------------------------------------------------
845 $(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
846         $(Verb) $(MKDIR) $@
848 # To create other directories, as needed, and timestamp their creation
849 %/.dir:
850         $(Verb) $(MKDIR) $* > /dev/null
851         $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
853 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
854 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
856 #---------------------------------------------------------
857 # Handle the DIRS options for sequential construction
858 #---------------------------------------------------------
860 SubDirs :=
861 ifdef DIRS
862 SubDirs += $(DIRS)
864 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
865 $(RecursiveTargets)::
866         $(Verb) for dir in $(DIRS); do \
867           if ([ ! -f $$dir/Makefile ] || \
868               command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
869             $(MKDIR) $$dir; \
870             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
871           fi; \
872           ($(MAKE) -C $$dir $@ ) || exit 1; \
873         done
874 else
875 $(RecursiveTargets)::
876         $(Verb) for dir in $(DIRS); do \
877           ($(MAKE) -C $$dir $@ ) || exit 1; \
878         done
879 endif
881 endif
883 #---------------------------------------------------------
884 # Handle the EXPERIMENTAL_DIRS options ensuring success
885 # after each directory is built.
886 #---------------------------------------------------------
887 ifdef EXPERIMENTAL_DIRS
888 $(RecursiveTargets)::
889         $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
890           if ([ ! -f $$dir/Makefile ] || \
891               command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
892             $(MKDIR) $$dir; \
893             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
894           fi; \
895           ($(MAKE) -C $$dir $@ ) || exit 0; \
896         done
897 endif
899 #-----------------------------------------------------------
900 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
901 #-----------------------------------------------------------
902 ifdef OPTIONAL_PARALLEL_DIRS
903   PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) -o -f $(T)/Makefile && echo "$(T)"))
904 endif
906 #-----------------------------------------------------------
907 # Handle the PARALLEL_DIRS options for parallel construction
908 #-----------------------------------------------------------
909 ifdef PARALLEL_DIRS
911 SubDirs += $(PARALLEL_DIRS)
913 # Unfortunately, this list must be maintained if new recursive targets are added
914 all      :: $(addsuffix /.makeall      ,$(PARALLEL_DIRS))
915 clean    :: $(addsuffix /.makeclean    ,$(PARALLEL_DIRS))
916 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
917 install  :: $(addsuffix /.makeinstall  ,$(PARALLEL_DIRS))
918 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
919 install-bytecode  :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
920 unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
922 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
924 $(ParallelTargets) :
925         $(Verb) \
926           SD=$(PROJ_SRC_DIR)/$(@D); \
927           DD=$(@D); \
928           if [ ! -f $$SD/Makefile ]; then \
929             SD=$(@D); \
930             DD=$(notdir $(@D)); \
931           fi; \
932           if ([ ! -f $$DD/Makefile ] || \
933                     command test $$DD/Makefile -ot \
934                       $$SD/Makefile ); then \
935           $(MKDIR) $$DD; \
936           $(CP) $$SD/Makefile $$DD/Makefile; \
937         fi; \
938         $(MAKE) -C $$DD $(subst $(@D)/.make,,$@)
939 endif
941 #---------------------------------------------------------
942 # Handle the OPTIONAL_DIRS options for directores that may
943 # or may not exist.
944 #---------------------------------------------------------
945 ifdef OPTIONAL_DIRS
947 SubDirs += $(OPTIONAL_DIRS)
949 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
950 $(RecursiveTargets)::
951         $(Verb) for dir in $(OPTIONAL_DIRS); do \
952           if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
953             if ([ ! -f $$dir/Makefile ] || \
954                 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
955               $(MKDIR) $$dir; \
956               $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
957             fi; \
958             ($(MAKE) -C$$dir $@ ) || exit 1; \
959           fi \
960         done
961 else
962 $(RecursiveTargets)::
963         $(Verb) for dir in $(OPTIONAL_DIRS); do \
964           if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
965             ($(MAKE) -C$$dir $@ ) || exit 1; \
966           fi \
967         done
968 endif
969 endif
971 #---------------------------------------------------------
972 # Handle the CONFIG_FILES options
973 #---------------------------------------------------------
974 ifdef CONFIG_FILES
976 ifdef NO_INSTALL
977 install-local::
978         $(Echo) Install circumvented with NO_INSTALL
979 uninstall-local::
980         $(Echo) UnInstall circumvented with NO_INSTALL
981 else
982 install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
983         $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
984         $(Verb)for file in $(CONFIG_FILES); do \
985           if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
986             $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
987           elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
988             $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
989           else \
990             $(ECHO) Error: cannot find config file $${file}. ; \
991           fi \
992         done
994 uninstall-local::
995         $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
996         $(Verb)for file in $(CONFIG_FILES); do \
997           $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
998         done
999 endif
1001 endif
1003 ###############################################################################
1004 # Set up variables for building libraries
1005 ###############################################################################
1007 #---------------------------------------------------------
1008 # Define various command line options pertaining to the
1009 # libraries needed when linking. There are "Proj" libs
1010 # (defined by the user's project) and "LLVM" libs (defined
1011 # by the LLVM project).
1012 #---------------------------------------------------------
1014 ifdef USEDLIBS
1015 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
1016 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o,  $(ProjLibsOptions))
1017 ProjUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
1018 ProjLibsPaths   := $(addprefix $(LibDir)/,$(ProjUsedLibs))
1019 endif
1021 ifdef LLVMLIBS
1022 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
1023 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
1024 LLVMUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
1025 LLVMLibsPaths   := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
1026 endif
1028 # Loadable module for Win32 requires all symbols resolved for linking.
1029 # Then all symbols in LLVM.dll will be available.
1030 ifeq ($(ENABLE_SHARED),1)
1031   ifdef LOADABLE_MODULE
1032     ifneq (,$(filter $(HOST_OS),Cygwin MingW))
1033       LINK_COMPONENTS += all
1034     endif
1035   endif
1036 endif
1038 ifndef IS_CLEANING_TARGET
1039 ifdef LINK_COMPONENTS
1041 # If LLVM_CONFIG doesn't exist, build it.  This can happen if you do a make
1042 # clean in tools, then do a make in tools (instead of at the top level).
1043 $(LLVM_CONFIG):
1044         @echo "*** llvm-config doesn't exist - rebuilding it."
1045         @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
1047 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
1049 ifeq ($(ENABLE_SHARED), 1)
1050 # We can take the "auto-import" feature to get rid of using dllimport.
1051 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1052 LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
1053                    -L $(SharedLibDir)
1054 endif
1055 LLVMLibsOptions += -lLLVM-$(LLVMVersion)
1056 LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
1057 else
1059 ifndef NO_LLVM_CONFIG
1060 LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
1061 ifeq ($(LLVMConfigLibs),Error)
1062 $(error llvm-config --libs failed)
1063 endif
1064 LLVMLibsOptions += $(LLVMConfigLibs)
1065 LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
1066 ifeq ($(LLVMConfigLibfiles),Error)
1067 $(error llvm-config --libfiles failed)
1068 endif
1069 LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
1070 endif
1072 endif
1073 endif
1074 endif
1076 # Set up the library exports file.
1077 ifdef EXPORTED_SYMBOL_FILE
1079 # First, set up the native export file, which may differ from the source
1080 # export file.
1082 ifeq ($(HOST_OS),Darwin)
1083 # Darwin convention prefixes symbols with underscores.
1084 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
1085 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1086         $(Verb) sed -e 's/^/_/' < $< > $@
1087 clean-local::
1088         -$(Verb) $(RM) -f $(NativeExportsFile)
1089 else
1090 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1091 # Gold and BFD ld require a version script rather than a plain list.
1092 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
1093 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1094         $(Verb) echo "{" > $@
1095         $(Verb) grep -q '[[:alnum:]_]' $< && echo "  global:" >> $@ || :
1096         $(Verb) sed -e 's/$$/;/' -e 's/^/    /' < $< >> $@
1097 ifneq ($(HOST_OS),OpenBSD)
1098         $(Verb) echo "  local: *;" >> $@
1099 endif
1100         $(Verb) echo "};" >> $@
1101 clean-local::
1102         -$(Verb) $(RM) -f $(NativeExportsFile)
1103 else
1104 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1105 # GNU ld Win32 accepts .DEF files that contain "DATA" entries.
1106 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
1107 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
1108         $(Echo) Generating $(notdir $@)
1109         $(Verb) $(ECHO) "EXPORTS" > $@
1110         $(Verb) $(CAT) $< >> $@
1111 clean-local::
1112         -$(Verb) $(RM) -f $(NativeExportsFile)
1113 else
1114 # Default behavior: just use the exports file verbatim.
1115 NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
1116 endif
1117 endif
1118 endif
1120 # Now add the linker command-line options to use the native export file.
1122 # Darwin
1123 ifeq ($(HOST_OS),Darwin)
1124 LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
1125 endif
1127 # gold, bfd ld, etc.
1128 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
1129 LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
1130 endif
1132 # Windows
1133 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1134 # LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1135 SharedLinkOptions += $(NativeExportsFile)
1136 endif
1138 endif
1140 ###############################################################################
1141 # Library Build Rules: Four ways to build a library
1142 ###############################################################################
1144 #---------------------------------------------------------
1145 # Bytecode Module Targets:
1146 #   If the user set MODULE_NAME then they want to build a
1147 #   bytecode module from the sources. We compile all the
1148 #   sources and link it together into a single bytecode
1149 #   module.
1150 #---------------------------------------------------------
1152 ifdef MODULE_NAME
1153 ifeq ($(strip $(LLVMCC)),)
1154 $(warning Modules require LLVM capable compiler but none is available ****)
1155 else
1157 Module     := $(LibDir)/$(MODULE_NAME).bc
1158 LinkModule := $(LLVMLINK)
1161 ifdef EXPORTED_SYMBOL_FILE
1162 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1163 endif
1165 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK)
1166         $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
1167         $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1169 all-local:: $(Module)
1171 clean-local::
1172 ifneq ($(strip $(Module)),)
1173         -$(Verb) $(RM) -f $(Module)
1174 endif
1176 ifdef BYTECODE_DESTINATION
1177 ModuleDestDir := $(BYTECODE_DESTINATION)
1178 else
1179 ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
1180 endif
1182 ifdef NO_INSTALL
1183 install-local::
1184         $(Echo) Install circumvented with NO_INSTALL
1185 uninstall-local::
1186         $(Echo) Uninstall circumvented with NO_INSTALL
1187 else
1188 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1190 install-module:: $(DestModule)
1191 install-local:: $(DestModule)
1193 $(DestModule): $(ModuleDestDir) $(Module)
1194         $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
1195         $(Verb) $(DataInstall) $(Module) $(DestModule)
1197 uninstall-local::
1198         $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1199         -$(Verb) $(RM) -f $(DestModule)
1200 endif
1202 endif
1203 endif
1205 # if we're building a library ...
1206 ifdef LIBRARYNAME
1208 # Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
1209 LIBRARYNAME := $(strip $(LIBRARYNAME))
1210 ifdef LOADABLE_MODULE
1211 BaseLibName.A  := $(LIBRARYNAME).a
1212 BaseLibName.SO := $(LIBRARYNAME)$(SHLIBEXT)
1213 else
1214 BaseLibName.A  := lib$(LIBRARYNAME).a
1215 BaseLibName.SO := $(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1216 endif
1217 LibName.A  := $(LibDir)/$(BaseLibName.A)
1218 LibName.SO := $(SharedLibDir)/$(BaseLibName.SO)
1219 LibName.O  := $(LibDir)/$(LIBRARYNAME).o
1220 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
1222 #---------------------------------------------------------
1223 # Shared Library Targets:
1224 #   If the user asked for a shared library to be built
1225 #   with the SHARED_LIBRARY variable, then we provide
1226 #   targets for building them.
1227 #---------------------------------------------------------
1228 ifdef SHARED_LIBRARY
1230 all-local:: $(LibName.SO)
1232 ifdef EXPORTED_SYMBOL_FILE
1233 $(LibName.SO): $(NativeExportsFile)
1234 endif
1236 ifdef LINK_LIBS_IN_SHARED
1237 ifdef LOADABLE_MODULE
1238 SharedLibKindMessage := "Loadable Module"
1239 SharedLinkOptions := $(LoadableModuleOptions) $(SharedLinkOptions)
1240 else
1241 SharedLibKindMessage := "Shared Library"
1242 endif
1243 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
1244         $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1245           $(notdir $@)
1246         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
1247           $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
1248 else
1249 $(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
1250         $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
1251         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
1252 endif
1254 clean-local::
1255 ifneq ($(strip $(LibName.SO)),)
1256         -$(Verb) $(RM) -f $(LibName.SO)
1257 endif
1259 ifdef NO_INSTALL
1260 install-local::
1261         $(Echo) Install circumvented with NO_INSTALL
1262 uninstall-local::
1263         $(Echo) Uninstall circumvented with NO_INSTALL
1264 else
1266 # Win32.DLL prefers to be located on the "PATH" of binaries.
1267 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1268 DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
1269 else
1270 DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
1271 endif
1272 DestSharedLib := $(DestSharedLibDir)/$(BaseLibName.SO)
1274 install-local:: $(DestSharedLib)
1276 $(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
1277         $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1278         $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1280 uninstall-local::
1281         $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1282         -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
1283 endif
1284 endif
1286 #---------------------------------------------------------
1287 # Bytecode Library Targets:
1288 #   If the user asked for a bytecode library to be built
1289 #   with the BYTECODE_LIBRARY variable, then we provide
1290 #   targets for building them.
1291 #---------------------------------------------------------
1292 ifdef BYTECODE_LIBRARY
1293 ifeq ($(strip $(LLVMCC)),)
1294 $(warning Bytecode libraries require LLVM capable compiler but none is available ****)
1295 else
1297 all-local:: $(LibName.BCA)
1299 ifdef EXPORTED_SYMBOL_FILE
1300 BCLinkLib = $(LLVMLINK) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1302 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLINK) \
1303                 $(LLVMToolDir)/llvm-ar
1304         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1305           "(internalize)"
1306         $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
1307         $(Verb) $(RM) -f $@
1308         $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
1309 else
1310 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1311                 $(LLVMToolDir)/llvm-ar
1312         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1313         $(Verb) $(RM) -f $@
1314         $(Verb) $(LArchive) $@ $(ObjectsBC)
1316 endif
1318 clean-local::
1319 ifneq ($(strip $(LibName.BCA)),)
1320         -$(Verb) $(RM) -f $(LibName.BCA)
1321 endif
1323 ifdef BYTECODE_DESTINATION
1324 BytecodeDestDir := $(BYTECODE_DESTINATION)
1325 else
1326 BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
1327 endif
1329 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1331 install-bytecode-local:: $(DestBytecodeLib)
1333 ifdef NO_INSTALL
1334 install-local::
1335         $(Echo) Install circumvented with NO_INSTALL
1336 uninstall-local::
1337         $(Echo) Uninstall circumvented with NO_INSTALL
1338 else
1339 install-local:: $(DestBytecodeLib)
1341 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1342         $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1343         $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1345 uninstall-local::
1346         $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1347         -$(Verb) $(RM) -f $(DestBytecodeLib)
1348 endif
1349 endif
1350 endif
1352 #---------------------------------------------------------
1353 # Library Targets:
1354 #   If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1355 #   building an archive.
1356 #---------------------------------------------------------
1357 ifndef NO_BUILD_ARCHIVE
1358 ifndef BUILD_ARCHIVE
1359 ifndef LOADABLE_MODULE
1360 BUILD_ARCHIVE = 1
1361 endif
1362 endif
1363 endif
1365 #---------------------------------------------------------
1366 # Archive Library Targets:
1367 #   If the user wanted a regular archive library built,
1368 #   then we provide targets for building them.
1369 #---------------------------------------------------------
1370 ifdef BUILD_ARCHIVE
1372 all-local:: $(LibName.A)
1374 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1375         $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1376         -$(Verb) $(RM) -f $@
1377         $(Verb) $(Archive) $@ $(ObjectsO)
1378         $(Verb) $(Ranlib) $@
1380 clean-local::
1381 ifneq ($(strip $(LibName.A)),)
1382         -$(Verb) $(RM) -f $(LibName.A)
1383 endif
1385 ifdef NO_INSTALL
1386 install-local::
1387         $(Echo) Install circumvented with NO_INSTALL
1388 uninstall-local::
1389         $(Echo) Uninstall circumvented with NO_INSTALL
1390 else
1391 ifdef NO_INSTALL_ARCHIVES
1392 install-local::
1393         $(Echo) Install circumvented with NO_INSTALL
1394 uninstall-local::
1395         $(Echo) Uninstall circumvented with NO_INSTALL
1396 else
1397 DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
1399 install-local:: $(DestArchiveLib)
1401 $(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
1402         $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1403         $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
1404         $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1406 uninstall-local::
1407         $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1408         -$(Verb) $(RM) -f $(DestArchiveLib)
1409 endif
1410 endif
1411 endif
1413 # endif LIBRARYNAME
1414 endif
1416 ###############################################################################
1417 # Tool Build Rules: Build executable tool based on TOOLNAME option
1418 ###############################################################################
1420 ifdef TOOLNAME
1422 #---------------------------------------------------------
1423 # Set up variables for building a tool.
1424 #---------------------------------------------------------
1425 TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
1426 ifdef EXAMPLE_TOOL
1427 ToolBuildPath   := $(ExmplDir)/$(TOOLEXENAME)
1428 else
1429 ToolBuildPath   := $(ToolDir)/$(TOOLEXENAME)
1430 endif
1432 # TOOLALIAS is a name to symlink (or copy) the tool to.
1433 ifdef TOOLALIAS
1434 ifdef EXAMPLE_TOOL
1435 ToolAliasBuildPath   := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1436 else
1437 ToolAliasBuildPath   := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1438 endif
1439 endif
1441 #---------------------------------------------------------
1442 # Prune Exports
1443 #---------------------------------------------------------
1445 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1446 # not exporting all of the weak symbols from the binary.  This reduces dyld
1447 # startup time by 4x on darwin in some cases.
1448 ifdef TOOL_NO_EXPORTS
1449 ifeq ($(HOST_OS),Darwin)
1451 # Tiger tools don't support this.
1452 ifneq ($(DARWIN_MAJVERS),4)
1453 LD.Flags += -Wl,-exported_symbol,_main
1454 endif
1455 endif
1457 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD GNU))
1458 ifneq ($(ARCH), Mips)
1459   LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1460 endif
1461 endif
1462 endif
1464 #---------------------------------------------------------
1465 # Tool Order File Support
1466 #---------------------------------------------------------
1468 ifeq ($(HOST_OS),Darwin)
1469 ifdef TOOL_ORDER_FILE
1471 LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1473 endif
1474 endif
1476 #---------------------------------------------------------
1477 # Tool Version Info Support
1478 #---------------------------------------------------------
1480 ifeq ($(HOST_OS),Darwin)
1481 ifdef TOOL_INFO_PLIST
1483 LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1485 $(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1487 $(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
1488         $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1489         $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1490                    -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1491                    -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1492                  -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1493                    $< > $@
1495 endif
1496 endif
1498 #---------------------------------------------------------
1499 # Provide targets for building the tools
1500 #---------------------------------------------------------
1501 all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
1503 clean-local::
1504 ifneq ($(strip $(ToolBuildPath)),)
1505         -$(Verb) $(RM) -f $(ToolBuildPath)
1506 endif
1507 ifneq ($(strip $(ToolAliasBuildPath)),)
1508         -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1509 endif
1511 ifdef EXAMPLE_TOOL
1512 $(ToolBuildPath): $(ExmplDir)/.dir
1513 else
1514 $(ToolBuildPath): $(ToolDir)/.dir
1515 endif
1517 ifdef CODESIGN_TOOLS
1518 TOOL_CODESIGN_IDENTITY ?= -
1520 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1521         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1522         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1523         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1524         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1525           $(StripWarnMsg)
1526         $(Echo) ======= Code-Signing $(BuildMode) Executable $(TOOLNAME)
1527         $(Verb) codesign -s $(TOOL_CODESIGN_IDENTITY) $@
1528 else
1529 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1530         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1531         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1532         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1533         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1534           $(StripWarnMsg)
1535 endif
1537 ifneq ($(strip $(ToolAliasBuildPath)),)
1538 $(ToolAliasBuildPath): $(ToolBuildPath)
1539         $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1540         $(Verb) $(RM) -f $(ToolAliasBuildPath)
1541         $(Verb) $(AliasTool) $(notdir $(ToolBuildPath)) $(ToolAliasBuildPath)
1542         $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
1543           $(StripWarnMsg)
1544 endif
1546 ifdef NO_INSTALL
1547 install-local::
1548         $(Echo) Install circumvented with NO_INSTALL
1549 uninstall-local::
1550         $(Echo) Uninstall circumvented with NO_INSTALL
1551 else
1553 ifdef INTERNAL_TOOL
1554 ToolBinDir = $(DESTDIR)$(PROJ_internal_prefix)/bin
1555 else
1556 ToolBinDir = $(DESTDIR)$(PROJ_bindir)
1557 endif
1558 DestTool = $(ToolBinDir)/$(program_prefix)$(TOOLEXENAME)
1560 install-local:: $(DestTool)
1562 $(DestTool): $(ToolBuildPath)
1563         $(Echo) Installing $(BuildMode) $(DestTool)
1564         $(Verb) $(MKDIR) $(ToolBinDir)
1565         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1567 uninstall-local::
1568         $(Echo) Uninstalling $(BuildMode) $(DestTool)
1569         -$(Verb) $(RM) -f $(DestTool)
1571 # TOOLALIAS install.
1572 ifdef TOOLALIAS
1573 DestToolAlias = $(ToolBinDir)/$(program_prefix)$(TOOLALIAS)$(EXEEXT)
1575 install-local:: $(DestToolAlias)
1577 $(DestToolAlias): $(DestTool)
1578         $(Echo) Installing $(BuildMode) $(DestToolAlias)
1579         $(Verb) $(RM) -f $(DestToolAlias)
1580         $(Verb) $(AliasTool) $(notdir $(DestTool)) $(DestToolAlias)
1582 uninstall-local::
1583         $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1584         -$(Verb) $(RM) -f $(DestToolAlias)
1585 endif
1587 endif
1588 endif
1590 ###############################################################################
1591 # Object Build Rules: Build object files based on sources
1592 ###############################################################################
1594 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1595 ifeq ($(HOST_OS),HP-UX)
1596   DISABLE_AUTO_DEPENDENCIES=1
1597 endif
1599 # Provide rule sets for when dependency generation is enabled
1600 ifndef DISABLE_AUTO_DEPENDENCIES
1602 #---------------------------------------------------------
1603 # Create .o files in the ObjDir directory from the .cpp and .c files...
1604 #---------------------------------------------------------
1606 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1607          -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1609 # If the build succeeded, move the dependency file over, otherwise
1610 # remove it.
1611 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1612                   else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1614 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1615         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1616         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1617                 $(DEPEND_MOVEFILE)
1619 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1620         $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1621         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1622                 $(DEPEND_MOVEFILE)
1624 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1625         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1626         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1627                 $(DEPEND_MOVEFILE)
1629 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1630         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1631         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1632                 $(DEPEND_MOVEFILE)
1634 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1635         $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1636         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1637                 $(DEPEND_MOVEFILE)
1639 #---------------------------------------------------------
1640 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1641 #---------------------------------------------------------
1643 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1644         -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1646 # If the build succeeded, move the dependency file over, otherwise
1647 # remove it.
1648 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1649                      else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1651 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1652         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1653         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1654                         $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1655                 $(BC_DEPEND_MOVEFILE)
1657 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1658         $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1659         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1660                         $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1661                 $(BC_DEPEND_MOVEFILE)
1663 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1664         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1665         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1666                         $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1667                 $(BC_DEPEND_MOVEFILE)
1669 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1670         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1671         $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1672                         $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1673                 $(BC_DEPEND_MOVEFILE)
1675 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1676         $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1677         $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1678                         $< -o $(ObjDir)/$*.ll -S $(LLVMCC_EMITIR_FLAG) ; \
1679                 $(BC_DEPEND_MOVEFILE)
1681 # Provide alternate rule sets if dependencies are disabled
1682 else
1684 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1685         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1686         $(Compile.CXX) $< -o $@
1688 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1689         $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1690         $(Compile.CXX) $< -o $@
1692 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1693         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1694         $(Compile.CXX) $< -o $@
1696 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1697         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1698         $(Compile.C) $< -o $@
1700 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1701         $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1702         $(Compile.C) $< -o $@
1704 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1705         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1706         $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1708 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1709         $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1710         $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1712 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1713         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1714         $(BCCompile.CXX) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1716 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1717         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1718         $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1720 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1721         $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1722         $(BCCompile.C) $< -o $@ -S $(LLVMCC_EMITIR_FLAG)
1724 endif
1727 ## Rules for building preprocessed (.i/.ii) outputs.
1728 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1729         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1730         $(Verb) $(Preprocess.CXX) $< -o $@
1732 $(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1733         $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1734         $(Verb) $(Preprocess.CXX) $< -o $@
1736 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1737         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1738         $(Verb) $(Preprocess.CXX) $< -o $@
1740 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1741         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1742         $(Verb) $(Preprocess.C) $< -o $@
1744 $(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1745         $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1746         $(Verb) $(Preprocess.C) $< -o $@
1749 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1750         $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1751         $(Compile.CXX) $< -o $@ -S
1753 $(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1754         $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1755         $(Compile.CXX) $< -o $@ -S
1757 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1758         $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1759         $(Compile.CXX) $< -o $@ -S
1761 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1762         $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1763         $(Compile.C) $< -o $@ -S
1765 $(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1766         $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1767         $(Compile.C) $< -o $@ -S
1770 # make the C and C++ compilers strip debug info out of bytecode libraries.
1771 ifdef DEBUG_RUNTIME
1772 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1773         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1774         $(Verb) $(LOPT) $< -std-compile-opts -o $@
1775 else
1776 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1777         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1778         $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1779 endif
1782 #---------------------------------------------------------
1783 # Provide rule to build .bc files from .ll sources,
1784 # regardless of dependencies
1785 #---------------------------------------------------------
1786 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1787         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1788         $(Verb) $(LLVMAS) $< -f -o $@
1790 ###############################################################################
1791 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1792 ###############################################################################
1794 ifdef TARGET
1795 TABLEGEN_INC_FILES_COMMON = 1
1796 endif
1798 ifdef TABLEGEN_INC_FILES_COMMON
1800 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1801 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1802 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1804 # INCFiles rule: All of the tblgen generated files are emitted to
1805 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1806 # us to only "touch" the real file if the contents of it change.  IOW, if
1807 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1808 # dependencies of the .inc files are, unless the contents of the .inc file
1809 # changes.
1810 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1811         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1813 endif # TABLEGEN_INC_FILES_COMMON
1815 ifdef TARGET
1817 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1818            $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1819            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1820            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1821            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1822            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1823            $(wildcard $(LLVM_SRC_ROOT)/include/llvm/IR/Intrinsics*.td)
1825 # All .inc.tmp files depend on the .td files.
1826 $(INCTMPFiles) : $(TDFiles)
1828 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1829 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1830         $(Echo) "Building $(<F) register info implementation with tblgen"
1831         $(Verb) $(LLVMTableGen) -gen-register-info -o $(call SYSPATH, $@) $<
1833 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1834 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1835         $(Echo) "Building $(<F) instruction information with tblgen"
1836         $(Verb) $(LLVMTableGen) -gen-instr-info -o $(call SYSPATH, $@) $<
1838 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1839 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1840         $(Echo) "Building $(<F) assembly writer with tblgen"
1841         $(Verb) $(LLVMTableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1843 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1844 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1845         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1846         $(Verb) $(LLVMTableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1848 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1849 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1850         $(Echo) "Building $(<F) assembly matcher with tblgen"
1851         $(Verb) $(LLVMTableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1853 $(TARGET:%=$(ObjDir)/%GenMCCodeEmitter.inc.tmp): \
1854 $(ObjDir)/%GenMCCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1855         $(Echo) "Building $(<F) MC code emitter with tblgen"
1856         $(Verb) $(LLVMTableGen) -gen-emitter -mc-emitter -o $(call SYSPATH, $@) $<
1858 $(TARGET:%=$(ObjDir)/%GenMCPseudoLowering.inc.tmp): \
1859 $(ObjDir)/%GenMCPseudoLowering.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1860         $(Echo) "Building $(<F) MC Pseudo instruction expander with tblgen"
1861         $(Verb) $(LLVMTableGen) -gen-pseudo-lowering -o $(call SYSPATH, $@) $<
1863 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1864 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1865         $(Echo) "Building $(<F) code emitter with tblgen"
1866         $(Verb) $(LLVMTableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1868 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1869 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1870         $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1871         $(Verb) $(LLVMTableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1873 $(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1874 $(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1875         $(Echo) "Building $(<F) disassembly tables with tblgen"
1876         $(Verb) $(LLVMTableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1878 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1879 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1880         $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1881         $(Verb) $(LLVMTableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1883 $(TARGET:%=$(ObjDir)/%GenSubtargetInfo.inc.tmp): \
1884 $(ObjDir)/%GenSubtargetInfo.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1885         $(Echo) "Building $(<F) subtarget information with tblgen"
1886         $(Verb) $(LLVMTableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1888 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1889 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1890         $(Echo) "Building $(<F) calling convention information with tblgen"
1891         $(Verb) $(LLVMTableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1893 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1894 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1895         $(Echo) "Building $(<F) intrinsics information with tblgen"
1896         $(Verb) $(LLVMTableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1898 $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1899         $(Echo) "Building $(<F) decoder tables with tblgen"
1900         $(Verb) $(LLVMTableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1902 $(ObjDir)/%GenDFAPacketizer.inc.tmp : %.td $(ObjDir)/.dir $(LLVM_TBLGEN)
1903         $(Echo) "Building $(<F) DFA packetizer tables with tblgen"
1904         $(Verb) $(LLVMTableGen) -gen-dfa-packetizer -o $(call SYSPATH, $@) $<
1906 clean-local::
1907         -$(Verb) $(RM) -f $(INCFiles)
1909 endif # TARGET
1911 ###############################################################################
1912 # OTHER RULES: Other rules needed
1913 ###############################################################################
1915 # To create postscript files from dot files...
1916 ifneq ($(DOT),false)
1917 %.ps: %.dot
1918         $(DOT) -Tps < $< > $@
1919 else
1920 %.ps: %.dot
1921         $(Echo) "Cannot build $@: The program dot is not installed"
1922 endif
1924 # This rules ensures that header files that are removed still have a rule for
1925 # which they can be "generated."  This allows make to ignore them and
1926 # reproduce the dependency lists.
1927 %.h:: ;
1928 %.hpp:: ;
1930 # Define clean-local to clean the current directory. Note that this uses a
1931 # very conservative approach ensuring that empty variables do not cause
1932 # errors or disastrous removal.
1933 clean-local::
1934 ifneq ($(strip $(ObjRootDir)),)
1935         -$(Verb) $(RM) -rf $(ObjRootDir)
1936 endif
1937 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1938         -$(Verb) $(RM) -f *$(SHLIBEXT)
1939 endif
1941 clean-all-local::
1942         -$(Verb) $(RM) -rf Debug Release Profile
1945 ###############################################################################
1946 # DEPENDENCIES: Include the dependency files if we should
1947 ###############################################################################
1948 ifndef DISABLE_AUTO_DEPENDENCIES
1950 # If its not one of the cleaning targets
1951 ifndef IS_CLEANING_TARGET
1953 # Get the list of dependency files
1954 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
1955 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1957 # Include bitcode dependency files if using bitcode libraries
1958 ifdef BYTECODE_LIBRARY
1959 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1960 endif
1962 -include $(DependFiles) ""
1964 endif
1966 endif
1968 ###############################################################################
1969 # CHECK: Running the test suite
1970 ###############################################################################
1972 check:: all
1973         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1974           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1975             $(EchoCmd) Running test suite ; \
1976             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1977               TESTSUITE=$(TESTSUITE) ; \
1978           else \
1979             $(EchoCmd) No Makefile in test directory ; \
1980           fi ; \
1981         else \
1982           $(EchoCmd) No test directory ; \
1983         fi
1985 # An alias dating from when both lit and DejaGNU test runners were used.
1986 check-lit:: check
1988 check-all::
1989         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1990           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1991             $(EchoCmd) Running test suite ; \
1992             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1993           else \
1994             $(EchoCmd) No Makefile in test directory ; \
1995           fi ; \
1996         else \
1997           $(EchoCmd) No test directory ; \
1998         fi
2000 ###############################################################################
2001 # UNITTESTS: Running the unittests test suite
2002 ###############################################################################
2004 unittests::
2005         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
2006           if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
2007             $(EchoCmd) Running unittests test suite ; \
2008             $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
2009           else \
2010             $(EchoCmd) No Makefile in unittests directory ; \
2011           fi ; \
2012         else \
2013           $(EchoCmd) No unittests directory ; \
2014         fi
2016 ###############################################################################
2017 # DISTRIBUTION: Handle construction of a distribution tarball
2018 ###############################################################################
2020 #------------------------------------------------------------------------
2021 # Define distribution related variables
2022 #------------------------------------------------------------------------
2023 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
2024 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
2025 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
2026 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
2027 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
2028 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
2029 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
2030                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
2031                Makefile.config.in configure autoconf
2032 DistOther   := $(notdir $(wildcard \
2033                $(PROJ_SRC_DIR)/*.h \
2034                $(PROJ_SRC_DIR)/*.td \
2035                $(PROJ_SRC_DIR)/*.def \
2036                $(PROJ_SRC_DIR)/*.ll \
2037                $(PROJ_SRC_DIR)/*.in))
2038 DistSubDirs := $(SubDirs)
2039 DistSources  = $(Sources) $(EXTRA_DIST)
2040 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
2042 #------------------------------------------------------------------------
2043 # We MUST build distribution with OBJ_DIR != SRC_DIR
2044 #------------------------------------------------------------------------
2045 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
2046 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
2047         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
2049 else
2051 #------------------------------------------------------------------------
2052 # Prevent attempt to run dist targets from anywhere but the top level
2053 #------------------------------------------------------------------------
2054 ifneq ($(LEVEL),.)
2055 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
2056         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
2057 else
2059 #------------------------------------------------------------------------
2060 # Provide the top level targets
2061 #------------------------------------------------------------------------
2063 dist-gzip:: $(DistTarGZip)
2065 $(DistTarGZip) : $(TopDistDir)/.makedistdir
2066         $(Echo) Packing gzipped distribution tar file.
2067         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
2068           $(GZIP) -c > "$(DistTarGZip)"
2070 dist-bzip2:: $(DistTarBZ2)
2072 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
2073         $(Echo) Packing bzipped distribution tar file.
2074         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
2075           $(BZIP2) -c >$(DistTarBZ2)
2077 dist-zip:: $(DistZip)
2079 $(DistZip) : $(TopDistDir)/.makedistdir
2080         $(Echo) Packing zipped distribution file.
2081         $(Verb) rm -f $(DistZip)
2082         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
2084 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
2085         $(Echo) ===== DISTRIBUTION PACKAGING SUCCESSFUL =====
2087 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
2089 dist-check:: $(DistTarGZip)
2090         $(Echo) Checking distribution tar file.
2091         $(Verb) if test -d $(DistCheckDir) ; then \
2092           $(RM) -rf $(DistCheckDir) ; \
2093         fi
2094         $(Verb) $(MKDIR) $(DistCheckDir)
2095         $(Verb) cd $(DistCheckDir) && \
2096           $(MKDIR) $(DistCheckDir)/build && \
2097           $(MKDIR) $(DistCheckDir)/install && \
2098           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
2099           cd build && \
2100           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
2101             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
2102           $(MAKE) all && \
2103           $(MAKE) check && \
2104           $(MAKE) unittests && \
2105           $(MAKE) install && \
2106           $(MAKE) uninstall && \
2107           $(MAKE) dist-clean && \
2108           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
2110 dist-clean::
2111         $(Echo) Cleaning distribution files
2112         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2113           $(DistCheckDir)
2115 endif
2117 #------------------------------------------------------------------------
2118 # Provide the recursive distdir target for building the distribution directory
2119 #------------------------------------------------------------------------
2120 distdir: $(DistDir)/.makedistdir
2121 $(DistDir)/.makedistdir: $(DistSources)
2122         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2123           if test -d "$(DistDir)" ; then \
2124             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
2125               exit 1 ; \
2126           fi ; \
2127           $(EchoCmd) Removing old $(DistDir) ; \
2128           $(RM) -rf $(DistDir); \
2129           $(EchoCmd) Making 'all' to verify build ; \
2130           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
2131         fi
2132         $(Echo) Building Distribution Directory $(DistDir)
2133         $(Verb) $(MKDIR) $(DistDir)
2134         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2135         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
2136         for file in $(DistFiles) ; do \
2137           case "$$file" in \
2138             $(PROJ_SRC_DIR)/*) \
2139               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2140               ;; \
2141             $(PROJ_SRC_ROOT)/*) \
2142               file=`echo "$$file" | \
2143                 sed "s#^$$srcrootstrip/##"` \
2144               ;; \
2145           esac; \
2146           if test -f "$(PROJ_SRC_DIR)/$$file" || \
2147              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2148             from_dir="$(PROJ_SRC_DIR)" ; \
2149           elif test -f "$$file" || test -d "$$file" ; then \
2150             from_dir=. ; \
2151           fi ; \
2152           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
2153           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2154             to_dir="$(DistDir)/$$dir"; \
2155             $(MKDIR) "$$to_dir" ; \
2156           else \
2157             to_dir="$(DistDir)"; \
2158           fi; \
2159           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2160           if test -n "$$mid_dir" ; then \
2161             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
2162           fi ; \
2163           if test -d "$$from_dir/$$file"; then \
2164             if test -d "$(PROJ_SRC_DIR)/$$file" && \
2165                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
2166                cd $(PROJ_SRC_DIR) ; \
2167                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2168                  ( cd $$to_dir ; $(TAR) xf - ) ; \
2169                cd $(PROJ_OBJ_DIR) ; \
2170             else \
2171                cd $$from_dir ; \
2172                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2173                  ( cd $$to_dir ; $(TAR) xf - ) ; \
2174                cd $(PROJ_OBJ_DIR) ; \
2175             fi; \
2176           elif test -f "$$from_dir/$$file" ; then \
2177             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
2178           elif test -L "$$from_dir/$$file" ; then \
2179             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
2180           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
2181             $(EchoCmd) "===== WARNING: Distribution Source " \
2182               "$$from_dir/$$file Not Found!" ; \
2183           elif test "$(Verb)" != '@' ; then \
2184             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
2185           fi; \
2186         done
2187         $(Verb) for subdir in $(DistSubDirs) ; do \
2188           if test "$$subdir" \!= "." ; then \
2189             new_distdir="$(DistDir)/$$subdir" ; \
2190             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
2191             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
2192               DistDir="$$new_distdir" distdir ) || exit 1; \
2193           fi; \
2194         done
2195         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2196           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
2197           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2198                                   -name .svn \) -print` ;\
2199           $(MAKE) dist-hook ; \
2200           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2201             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2202             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2203             -o ! -type d ! -perm -444 -exec \
2204               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2205             || chmod -R a+r $(DistDir) ; \
2206         fi
2208 # This is invoked by distdir target, define it as a no-op to avoid errors if not
2209 # defined by user.
2210 dist-hook::
2212 endif
2214 ###############################################################################
2215 # TOP LEVEL - targets only to apply at the top level directory
2216 ###############################################################################
2218 ifeq ($(LEVEL),.)
2220 #------------------------------------------------------------------------
2221 # Install support for the project's include files:
2222 #------------------------------------------------------------------------
2223 ifdef NO_INSTALL
2224 install-local::
2225         $(Echo) Install circumvented with NO_INSTALL
2226 uninstall-local::
2227         $(Echo) Uninstall circumvented with NO_INSTALL
2228 else
2229 install-local::
2230         $(Echo) Installing include files
2231         $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
2232         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2233           cd $(PROJ_SRC_ROOT)/include && \
2234           for hdr in `find . -type f \
2235               '(' -name LICENSE.TXT \
2236                -o -name '*.def' \
2237                -o -name '*.h' \
2238                -o -name '*.inc' \
2239                -o -name '*.td' \
2240               ')' -print | grep -v CVS | \
2241               grep -v .svn` ; do \
2242             instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2243             if test \! -d "$$instdir" ; then \
2244               $(EchoCmd) Making install directory $$instdir ; \
2245               $(MKDIR) $$instdir ;\
2246             fi ; \
2247             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2248           done ; \
2249         fi
2250 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2251         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2252           cd $(PROJ_OBJ_ROOT)/include && \
2253           for hdr in `find . -type f \
2254               '(' -name LICENSE.TXT \
2255                -o -name '*.def' \
2256                -o -name '*.h' \
2257                -o -name '*.inc' \
2258                -o -name '*.td' \
2259               ')' -print | grep -v CVS | \
2260               grep -v .svn` ; do \
2261             instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2262             if test \! -d "$$instdir" ; then \
2263               $(EchoCmd) Making install directory $$instdir ; \
2264               $(MKDIR) $$instdir ;\
2265             fi ; \
2266             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2267           done ; \
2268         fi
2269 endif
2271 uninstall-local::
2272         $(Echo) Uninstalling include files
2273         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2274           cd $(PROJ_SRC_ROOT)/include && \
2275             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2276               '!' '(' -name '*~' -o -name '.#*' \
2277         -o -name '*.in' ')' -print ')' | \
2278         grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2279           cd $(PROJ_SRC_ROOT)/include && \
2280             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
2281       -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2282         fi
2283 endif
2284 endif
2286 check-line-length:
2287         @echo searching for overlength lines in files: $(Sources)
2288         @echo
2289         @echo
2290         egrep -n '.{81}' $(Sources) /dev/null
2292 check-for-tabs:
2293         @echo searching for tabs in files: $(Sources)
2294         @echo
2295         @echo
2296         egrep -n '      ' $(Sources) /dev/null
2298 check-footprint:
2299         @ls -l $(LibDir) | awk '\
2300           BEGIN { sum = 0; } \
2301                 { sum += $$5; } \
2302           END   { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2303         @ls -l $(ToolDir) | awk '\
2304           BEGIN { sum = 0; } \
2305                 { sum += $$5; } \
2306           END   { printf("Programs:  %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2307 #------------------------------------------------------------------------
2308 # Print out the directories used for building
2309 #------------------------------------------------------------------------
2310 printvars::
2311         $(Echo) "BuildMode    : " '$(BuildMode)'
2312         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2313         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2314         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2315         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2316         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2317         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2318         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
2319         $(Echo) "PROJ_internal_prefix  : " '$(PROJ_internal_prefix)'
2320         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
2321         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
2322         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
2323         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
2324         $(Echo) "UserTargets  : " '$(UserTargets)'
2325         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2326         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2327         $(Echo) "ObjDir       : " '$(ObjDir)'
2328         $(Echo) "LibDir       : " '$(LibDir)'
2329         $(Echo) "ToolDir      : " '$(ToolDir)'
2330         $(Echo) "ExmplDir     : " '$(ExmplDir)'
2331         $(Echo) "Sources      : " '$(Sources)'
2332         $(Echo) "TDFiles      : " '$(TDFiles)'
2333         $(Echo) "INCFiles     : " '$(INCFiles)'
2334         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
2335         $(Echo) "PreConditions: " '$(PreConditions)'
2336         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
2337         $(Echo) "Compile.C    : " '$(Compile.C)'
2338         $(Echo) "Archive      : " '$(Archive)'
2339         $(Echo) "YaccFiles    : " '$(YaccFiles)'
2340         $(Echo) "LexFiles     : " '$(LexFiles)'
2341         $(Echo) "Module       : " '$(Module)'
2342         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2343         $(Echo) "SubDirs      : " '$(SubDirs)'
2344         $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2345         $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2347 ###
2348 # Debugging
2350 # General debugging rule, use 'make dbg-print-XXX' to print the
2351 # definition, value and origin of XXX.
2352 make-print-%:
2353         $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))