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