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