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