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