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