CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.
[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 # Loadable module for Win32 requires all symbols resolved for linking.
898 # Then all symbols in LLVM.dll will be available.
899 ifeq ($(ENABLE_SHARED),1)
900   ifdef LOADABLE_MODULE
901     ifneq (,$(filter $(HOST_OS),Cygwin MingW))
902       LINK_COMPONENTS += all
903     endif
904   endif
905 endif
906
907 ifndef IS_CLEANING_TARGET
908 ifdef LINK_COMPONENTS
909
910 # If LLVM_CONFIG doesn't exist, build it.  This can happen if you do a make
911 # clean in tools, then do a make in tools (instead of at the top level).
912 $(LLVM_CONFIG):
913         @echo "*** llvm-config doesn't exist - rebuilding it."
914         @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
915
916 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
917
918 ifeq ($(ENABLE_SHARED), 1)
919 # We can take the "auto-import" feature to get rid of using dllimport.
920 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
921 LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
922                    -L $(SharedLibDir)
923 endif
924 LLVMLibsOptions += -lLLVM-$(LLVMVersion)
925 LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
926 else
927
928 ifndef NO_LLVM_CONFIG
929 LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
930 ifeq ($(LLVMConfigLibs),Error)
931 $(error llvm-config --libs failed)
932 endif
933 LLVMLibsOptions += $(LLVMConfigLibs)
934 LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
935 ifeq ($(LLVMConfigLibfiles),Error)
936 $(error llvm-config --libfiles failed)
937 endif
938 LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
939 endif
940
941 endif
942 endif
943 endif
944
945 # Set up the library exports file.
946 ifdef EXPORTED_SYMBOL_FILE
947
948 # First, set up the native export file, which may differ from the source
949 # export file.
950
951 ifeq ($(HOST_OS),Darwin)
952 # Darwin convention prefixes symbols with underscores.
953 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
954 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
955         $(Verb) sed -e 's/^/_/' < $< > $@
956 clean-local::
957         -$(Verb) $(RM) -f $(NativeExportsFile)
958 else
959 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
960 # Gold and BFD ld require a version script rather than a plain list.
961 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
962 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
963         $(Verb) echo "{" > $@
964         $(Verb) grep -q "\<" $< && echo "  global:" >> $@ || :
965         $(Verb) sed -e 's/$$/;/' -e 's/^/    /' < $< >> $@
966         $(Verb) echo "  local: *;" >> $@
967         $(Verb) echo "};" >> $@
968 clean-local::
969         -$(Verb) $(RM) -f $(NativeExportsFile)
970 else
971 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
972 # GNU ld Win32 accepts .DEF files that contain "DATA" entries.
973 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
974 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
975         $(Echo) Generating $(notdir $@)
976         $(Verb) $(ECHO) "EXPORTS" > $@
977         $(Verb) $(CAT) $< >> $@
978 clean-local::
979         -$(Verb) $(RM) -f $(NativeExportsFile)
980 else
981 # Default behavior: just use the exports file verbatim.
982 NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
983 endif
984 endif
985 endif
986
987 # Now add the linker command-line options to use the native export file.
988
989 # Darwin
990 ifeq ($(HOST_OS),Darwin)
991 LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
992 endif
993
994 # gold, bfd ld, etc.
995 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
996 LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
997 endif
998
999 # Windows
1000 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1001 # LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
1002 SharedLinkOptions += $(NativeExportsFile)
1003 endif
1004
1005 endif
1006
1007 ###############################################################################
1008 # Library Build Rules: Four ways to build a library
1009 ###############################################################################
1010
1011 #---------------------------------------------------------
1012 # Bytecode Module Targets:
1013 #   If the user set MODULE_NAME then they want to build a
1014 #   bytecode module from the sources. We compile all the
1015 #   sources and link it together into a single bytecode
1016 #   module.
1017 #---------------------------------------------------------
1018
1019 ifdef MODULE_NAME
1020 ifeq ($(strip $(LLVMCC)),)
1021 $(warning Modules require LLVM capable compiler but none is available ****)
1022 else
1023
1024 Module     := $(LibDir)/$(MODULE_NAME).bc
1025 LinkModule := $(LLVMLD) -r
1026
1027
1028 ifdef EXPORTED_SYMBOL_FILE
1029 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1030 endif
1031
1032 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
1033         $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
1034         $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1035
1036 all-local:: $(Module)
1037
1038 clean-local::
1039 ifneq ($(strip $(Module)),)
1040         -$(Verb) $(RM) -f $(Module)
1041 endif
1042
1043 ifdef BYTECODE_DESTINATION
1044 ModuleDestDir := $(BYTECODE_DESTINATION)
1045 else
1046 ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
1047 endif
1048
1049 ifdef NO_INSTALL
1050 install-local::
1051         $(Echo) Install circumvented with NO_INSTALL
1052 uninstall-local::
1053         $(Echo) Uninstall circumvented with NO_INSTALL
1054 else
1055 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1056
1057 install-module:: $(DestModule)
1058 install-local:: $(DestModule)
1059
1060 $(DestModule): $(ModuleDestDir) $(Module)
1061         $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
1062         $(Verb) $(DataInstall) $(Module) $(DestModule)
1063
1064 uninstall-local::
1065         $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1066         -$(Verb) $(RM) -f $(DestModule)
1067 endif
1068
1069 endif
1070 endif
1071
1072 # if we're building a library ...
1073 ifdef LIBRARYNAME
1074
1075 # Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
1076 LIBRARYNAME := $(strip $(LIBRARYNAME))
1077 ifdef LOADABLE_MODULE
1078 LibName.A  := $(LibDir)/$(LIBRARYNAME).a
1079 LibName.SO := $(SharedLibDir)/$(LIBRARYNAME)$(SHLIBEXT)
1080 else
1081 LibName.A  := $(LibDir)/lib$(LIBRARYNAME).a
1082 LibName.SO := $(SharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1083 endif
1084 LibName.O  := $(LibDir)/$(LIBRARYNAME).o
1085 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
1086
1087 #---------------------------------------------------------
1088 # Shared Library Targets:
1089 #   If the user asked for a shared library to be built
1090 #   with the SHARED_LIBRARY variable, then we provide
1091 #   targets for building them.
1092 #---------------------------------------------------------
1093 ifdef SHARED_LIBRARY
1094
1095 all-local:: $(LibName.SO)
1096
1097 ifdef EXPORTED_SYMBOL_FILE
1098 $(LibName.SO): $(NativeExportsFile)
1099 endif
1100
1101 ifdef LINK_LIBS_IN_SHARED
1102 ifdef LOADABLE_MODULE
1103 SharedLibKindMessage := "Loadable Module"
1104 else
1105 SharedLibKindMessage := "Shared Library"
1106 endif
1107 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
1108         $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1109           $(notdir $@)
1110         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
1111           $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
1112 else
1113 $(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
1114         $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
1115         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
1116 endif
1117
1118 clean-local::
1119 ifneq ($(strip $(LibName.SO)),)
1120         -$(Verb) $(RM) -f $(LibName.SO)
1121 endif
1122
1123 ifdef NO_INSTALL
1124 install-local::
1125         $(Echo) Install circumvented with NO_INSTALL
1126 uninstall-local::
1127         $(Echo) Uninstall circumvented with NO_INSTALL
1128 else
1129
1130 # Win32.DLL prefers to be located on the "PATH" of binaries.
1131 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1132 DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
1133 else
1134 DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
1135 endif
1136 DestSharedLib := $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1137
1138 install-local:: $(DestSharedLib)
1139
1140 $(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
1141         $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1142         $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1143
1144 uninstall-local::
1145         $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1146         -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
1147 endif
1148 endif
1149
1150 #---------------------------------------------------------
1151 # Bytecode Library Targets:
1152 #   If the user asked for a bytecode library to be built
1153 #   with the BYTECODE_LIBRARY variable, then we provide
1154 #   targets for building them.
1155 #---------------------------------------------------------
1156 ifdef BYTECODE_LIBRARY
1157 ifeq ($(strip $(LLVMCC)),)
1158 $(warning Bytecode libraries require LLVM capable compiler but none is available ****)
1159 else
1160
1161 all-local:: $(LibName.BCA)
1162
1163 ifdef EXPORTED_SYMBOL_FILE
1164 BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1165
1166 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1167                 $(LLVMToolDir)/llvm-ar
1168         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1169           "(internalize)"
1170         $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
1171         $(Verb) $(RM) -f $@
1172         $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
1173 else
1174 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1175                 $(LLVMToolDir)/llvm-ar
1176         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1177         $(Verb) $(RM) -f $@
1178         $(Verb) $(LArchive) $@ $(ObjectsBC)
1179
1180 endif
1181
1182 clean-local::
1183 ifneq ($(strip $(LibName.BCA)),)
1184         -$(Verb) $(RM) -f $(LibName.BCA)
1185 endif
1186
1187 ifdef BYTECODE_DESTINATION
1188 BytecodeDestDir := $(BYTECODE_DESTINATION)
1189 else
1190 BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
1191 endif
1192
1193 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1194
1195 install-bytecode-local:: $(DestBytecodeLib)
1196
1197 ifdef NO_INSTALL
1198 install-local::
1199         $(Echo) Install circumvented with NO_INSTALL
1200 uninstall-local::
1201         $(Echo) Uninstall circumvented with NO_INSTALL
1202 else
1203 install-local:: $(DestBytecodeLib)
1204
1205 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1206         $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1207         $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1208
1209 uninstall-local::
1210         $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1211         -$(Verb) $(RM) -f $(DestBytecodeLib)
1212 endif
1213 endif
1214 endif
1215
1216 #---------------------------------------------------------
1217 # Library Targets:
1218 #   If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1219 #   building an archive.
1220 #---------------------------------------------------------
1221 ifndef NO_BUILD_ARCHIVE
1222 ifndef BUILD_ARCHIVE
1223 ifndef LOADABLE_MODULE
1224 BUILD_ARCHIVE = 1
1225 endif
1226 endif
1227 endif
1228
1229 #---------------------------------------------------------
1230 # Archive Library Targets:
1231 #   If the user wanted a regular archive library built,
1232 #   then we provide targets for building them.
1233 #---------------------------------------------------------
1234 ifdef BUILD_ARCHIVE
1235
1236 all-local:: $(LibName.A)
1237
1238 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1239         $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1240         -$(Verb) $(RM) -f $@
1241         $(Verb) $(Archive) $@ $(ObjectsO)
1242         $(Verb) $(Ranlib) $@
1243
1244 clean-local::
1245 ifneq ($(strip $(LibName.A)),)
1246         -$(Verb) $(RM) -f $(LibName.A)
1247 endif
1248
1249 ifdef NO_INSTALL
1250 install-local::
1251         $(Echo) Install circumvented with NO_INSTALL
1252 uninstall-local::
1253         $(Echo) Uninstall circumvented with NO_INSTALL
1254 else
1255 ifdef NO_INSTALL_ARCHIVES
1256 install-local::
1257         $(Echo) Install circumvented with NO_INSTALL
1258 uninstall-local::
1259         $(Echo) Uninstall circumvented with NO_INSTALL
1260 else
1261 DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
1262
1263 install-local:: $(DestArchiveLib)
1264
1265 $(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
1266         $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1267         $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
1268         $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1269
1270 uninstall-local::
1271         $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1272         -$(Verb) $(RM) -f $(DestArchiveLib)
1273 endif
1274 endif
1275 endif
1276
1277 # endif LIBRARYNAME
1278 endif
1279
1280 ###############################################################################
1281 # Tool Build Rules: Build executable tool based on TOOLNAME option
1282 ###############################################################################
1283
1284 ifdef TOOLNAME
1285
1286 #---------------------------------------------------------
1287 # Set up variables for building a tool.
1288 #---------------------------------------------------------
1289 TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
1290 ifdef EXAMPLE_TOOL
1291 ToolBuildPath   := $(ExmplDir)/$(TOOLEXENAME)
1292 else
1293 ToolBuildPath   := $(ToolDir)/$(TOOLEXENAME)
1294 endif
1295
1296 # TOOLALIAS is a name to symlink (or copy) the tool to.
1297 ifdef TOOLALIAS
1298 ifdef EXAMPLE_TOOL
1299 ToolAliasBuildPath   := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1300 else
1301 ToolAliasBuildPath   := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1302 endif
1303 endif
1304
1305 #---------------------------------------------------------
1306 # Prune Exports
1307 #---------------------------------------------------------
1308
1309 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1310 # not exporting all of the weak symbols from the binary.  This reduces dyld
1311 # startup time by 4x on darwin in some cases.
1312 ifdef TOOL_NO_EXPORTS
1313 ifeq ($(HOST_OS),Darwin)
1314
1315 # Tiger tools don't support this.
1316 ifneq ($(DARWIN_MAJVERS),4)
1317 LD.Flags += -Wl,-exported_symbol,_main
1318 endif
1319 endif
1320
1321 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
1322 ifneq ($(ARCH), Mips)
1323   LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1324 endif
1325 endif
1326 endif
1327
1328 #---------------------------------------------------------
1329 # Tool Version Info Support
1330 #---------------------------------------------------------
1331
1332 ifeq ($(HOST_OS),Darwin)
1333 ifdef TOOL_INFO_PLIST
1334
1335 LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1336
1337 $(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1338
1339 $(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
1340         $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1341         $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1342                    -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1343                    -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1344                  -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1345                    $< > $@
1346
1347 endif
1348 endif
1349
1350 #---------------------------------------------------------
1351 # Provide targets for building the tools
1352 #---------------------------------------------------------
1353 all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
1354
1355 clean-local::
1356 ifneq ($(strip $(ToolBuildPath)),)
1357         -$(Verb) $(RM) -f $(ToolBuildPath)
1358 endif
1359 ifneq ($(strip $(ToolAliasBuildPath)),)
1360         -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1361 endif
1362
1363 ifdef EXAMPLE_TOOL
1364 $(ToolBuildPath): $(ExmplDir)/.dir
1365 else
1366 $(ToolBuildPath): $(ToolDir)/.dir
1367 endif
1368
1369 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1370         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1371         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1372         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1373         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1374           $(StripWarnMsg)
1375
1376 ifneq ($(strip $(ToolAliasBuildPath)),)
1377 $(ToolAliasBuildPath): $(ToolBuildPath)
1378         $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1379         $(Verb) $(RM) -f $(ToolAliasBuildPath)
1380         $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1381         $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
1382           $(StripWarnMsg)
1383 endif
1384
1385 ifdef NO_INSTALL
1386 install-local::
1387         $(Echo) Install circumvented with NO_INSTALL
1388 uninstall-local::
1389         $(Echo) Uninstall circumvented with NO_INSTALL
1390 else
1391 DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
1392
1393 install-local:: $(DestTool)
1394
1395 $(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
1396         $(Echo) Installing $(BuildMode) $(DestTool)
1397         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1398
1399 uninstall-local::
1400         $(Echo) Uninstalling $(BuildMode) $(DestTool)
1401         -$(Verb) $(RM) -f $(DestTool)
1402
1403 # TOOLALIAS install.
1404 ifdef TOOLALIAS
1405 DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
1406
1407 install-local:: $(DestToolAlias)
1408
1409 $(DestToolAlias): $(DestTool)
1410         $(Echo) Installing $(BuildMode) $(DestToolAlias)
1411         $(Verb) $(RM) -f $(DestToolAlias)
1412         $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1413
1414 uninstall-local::
1415         $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1416         -$(Verb) $(RM) -f $(DestToolAlias)
1417 endif
1418
1419 endif
1420 endif
1421
1422 ###############################################################################
1423 # Object Build Rules: Build object files based on sources
1424 ###############################################################################
1425
1426 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1427 ifeq ($(HOST_OS),HP-UX)
1428   DISABLE_AUTO_DEPENDENCIES=1
1429 endif
1430
1431 # Provide rule sets for when dependency generation is enabled
1432 ifndef DISABLE_AUTO_DEPENDENCIES
1433
1434 #---------------------------------------------------------
1435 # Create .o files in the ObjDir directory from the .cpp and .c files...
1436 #---------------------------------------------------------
1437
1438 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1439          -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1440
1441 # If the build succeeded, move the dependency file over, otherwise
1442 # remove it.
1443 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1444                   else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1445
1446 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1447         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1448         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1449                 $(DEPEND_MOVEFILE)
1450
1451 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1452         $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1453         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1454                 $(DEPEND_MOVEFILE)
1455
1456 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1457         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1458         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1459                 $(DEPEND_MOVEFILE)
1460
1461 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1462         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1463         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1464                 $(DEPEND_MOVEFILE)
1465
1466 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1467         $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1468         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1469                 $(DEPEND_MOVEFILE)
1470
1471 #---------------------------------------------------------
1472 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1473 #---------------------------------------------------------
1474
1475 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1476         -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1477
1478 # If the build succeeded, move the dependency file over, otherwise
1479 # remove it.
1480 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1481                      else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1482
1483 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1484         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1485         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1486                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1487                 $(BC_DEPEND_MOVEFILE)
1488
1489 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1490         $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1491         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1492                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1493                 $(BC_DEPEND_MOVEFILE)
1494
1495 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1496         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1497         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1498                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1499                 $(BC_DEPEND_MOVEFILE)
1500
1501 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1502         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1503         $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1504                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1505                 $(BC_DEPEND_MOVEFILE)
1506
1507 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1508         $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1509         $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1510                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1511                 $(BC_DEPEND_MOVEFILE)
1512
1513 # Provide alternate rule sets if dependencies are disabled
1514 else
1515
1516 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1517         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1518         $(Compile.CXX) $< -o $@
1519
1520 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1521         $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1522         $(Compile.CXX) $< -o $@
1523
1524 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1525         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1526         $(Compile.CXX) $< -o $@
1527
1528 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1529         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1530         $(Compile.C) $< -o $@
1531
1532 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1533         $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1534         $(Compile.C) $< -o $@
1535
1536 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1537         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1538         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1539
1540 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1541         $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1542         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1543
1544 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1545         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1546         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1547
1548 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1549         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1550         $(BCCompile.C) $< -o $@ -S -emit-llvm
1551
1552 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1553         $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1554         $(BCCompile.C) $< -o $@ -S -emit-llvm
1555
1556 endif
1557
1558
1559 ## Rules for building preprocessed (.i/.ii) outputs.
1560 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1561         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1562         $(Verb) $(Preprocess.CXX) $< -o $@
1563
1564 $(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1565         $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1566         $(Verb) $(Preprocess.CXX) $< -o $@
1567
1568 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1569         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1570         $(Verb) $(Preprocess.CXX) $< -o $@
1571
1572 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1573         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1574         $(Verb) $(Preprocess.C) $< -o $@
1575
1576 $(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1577         $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1578         $(Verb) $(Preprocess.C) $< -o $@
1579
1580
1581 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1582         $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1583         $(Compile.CXX) $< -o $@ -S
1584
1585 $(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1586         $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1587         $(Compile.CXX) $< -o $@ -S
1588
1589 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1590         $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1591         $(Compile.CXX) $< -o $@ -S
1592
1593 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1594         $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1595         $(Compile.C) $< -o $@ -S
1596
1597 $(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1598         $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1599         $(Compile.C) $< -o $@ -S
1600
1601
1602 # make the C and C++ compilers strip debug info out of bytecode libraries.
1603 ifdef DEBUG_RUNTIME
1604 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1605         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1606         $(Verb) $(LOPT) $< -std-compile-opts -o $@
1607 else
1608 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1609         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1610         $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1611 endif
1612
1613
1614 #---------------------------------------------------------
1615 # Provide rule to build .bc files from .ll sources,
1616 # regardless of dependencies
1617 #---------------------------------------------------------
1618 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1619         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1620         $(Verb) $(LLVMAS) $< -f -o $@
1621
1622 ###############################################################################
1623 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1624 ###############################################################################
1625
1626 ifdef TARGET
1627 TABLEGEN_INC_FILES_COMMON = 1
1628 endif
1629
1630 ifdef LLVMC_BASED_DRIVER
1631 TABLEGEN_INC_FILES_COMMON = 1
1632 endif
1633
1634 ifdef TABLEGEN_INC_FILES_COMMON
1635
1636 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1637 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1638 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1639
1640 # INCFiles rule: All of the tblgen generated files are emitted to
1641 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1642 # us to only "touch" the real file if the contents of it change.  IOW, if
1643 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1644 # dependencies of the .inc files are, unless the contents of the .inc file
1645 # changes.
1646 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1647         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1648
1649 endif # TABLEGEN_INC_FILES_COMMON
1650
1651 ifdef TARGET
1652
1653 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1654            $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1655            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1656            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1657            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1658            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1659            $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1660
1661 # All of these files depend on tblgen and the .td files.
1662 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1663
1664 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1665 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1666         $(Echo) "Building $(<F) register names with tblgen"
1667         $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1668
1669 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1670 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1671         $(Echo) "Building $(<F) register information header with tblgen"
1672         $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1673
1674 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1675 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1676         $(Echo) "Building $(<F) register info implementation with tblgen"
1677         $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1678
1679 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1680 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1681         $(Echo) "Building $(<F) instruction names with tblgen"
1682         $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1683
1684 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1685 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1686         $(Echo) "Building $(<F) instruction information with tblgen"
1687         $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1688
1689 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1690 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1691         $(Echo) "Building $(<F) assembly writer with tblgen"
1692         $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1693
1694 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1695 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1696         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1697         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1698
1699 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1700 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1701         $(Echo) "Building $(<F) assembly matcher with tblgen"
1702         $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1703
1704 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1705 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1706         $(Echo) "Building $(<F) code emitter with tblgen"
1707         $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1708
1709 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1710 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1711         $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1712         $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1713
1714 $(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1715 $(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1716         $(Echo) "Building $(<F) disassembly tables with tblgen"
1717         $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1718
1719 $(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1720 $(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1721         $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1722         $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1723
1724 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1725 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1726         $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1727         $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1728
1729 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1730 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1731         $(Echo) "Building $(<F) subtarget information with tblgen"
1732         $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1733
1734 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1735 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1736         $(Echo) "Building $(<F) calling convention information with tblgen"
1737         $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1738
1739 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1740 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1741         $(Echo) "Building $(<F) intrinsics information with tblgen"
1742         $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1743
1744 $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1745         $(Echo) "Building $(<F) decoder tables with tblgen"
1746         $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1747
1748
1749 clean-local::
1750         -$(Verb) $(RM) -f $(INCFiles)
1751
1752 endif # TARGET
1753
1754 ifdef LLVMC_BASED_DRIVER
1755
1756 TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1757                 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1758
1759 TDCommon := $(strip $(wildcard \
1760                 $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1761
1762 TDFiles := $(TDSrc) $(TDCommon)
1763
1764 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1765
1766 $(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
1767         $(Echo) "Building LLVMC compilation graph description with tblgen"
1768         $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1769
1770 clean-local::
1771         -$(Verb) $(RM) -f $(INCFiles)
1772
1773 endif # LLVMC_BASED_DRIVER
1774
1775 ###############################################################################
1776 # OTHER RULES: Other rules needed
1777 ###############################################################################
1778
1779 # To create postscript files from dot files...
1780 ifneq ($(DOT),false)
1781 %.ps: %.dot
1782         $(DOT) -Tps < $< > $@
1783 else
1784 %.ps: %.dot
1785         $(Echo) "Cannot build $@: The program dot is not installed"
1786 endif
1787
1788 # This rules ensures that header files that are removed still have a rule for
1789 # which they can be "generated."  This allows make to ignore them and
1790 # reproduce the dependency lists.
1791 %.h:: ;
1792 %.hpp:: ;
1793
1794 # Define clean-local to clean the current directory. Note that this uses a
1795 # very conservative approach ensuring that empty variables do not cause
1796 # errors or disastrous removal.
1797 clean-local::
1798 ifneq ($(strip $(ObjRootDir)),)
1799         -$(Verb) $(RM) -rf $(ObjRootDir)
1800 endif
1801         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1802 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1803         -$(Verb) $(RM) -f *$(SHLIBEXT)
1804 endif
1805
1806 clean-all-local::
1807         -$(Verb) $(RM) -rf Debug Release Profile
1808
1809
1810 ###############################################################################
1811 # DEPENDENCIES: Include the dependency files if we should
1812 ###############################################################################
1813 ifndef DISABLE_AUTO_DEPENDENCIES
1814
1815 # If its not one of the cleaning targets
1816 ifndef IS_CLEANING_TARGET
1817
1818 # Get the list of dependency files
1819 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
1820 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1821
1822 # Include bitcode dependency files if using bitcode libraries
1823 ifdef BYTECODE_LIBRARY
1824 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1825 endif
1826
1827 -include $(DependFiles) ""
1828
1829 endif
1830
1831 endif
1832
1833 ###############################################################################
1834 # CHECK: Running the test suite
1835 ###############################################################################
1836
1837 check::
1838         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1839           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1840             $(EchoCmd) Running test suite ; \
1841             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1842               TESTSUITE=$(TESTSUITE) ; \
1843           else \
1844             $(EchoCmd) No Makefile in test directory ; \
1845           fi ; \
1846         else \
1847           $(EchoCmd) No test directory ; \
1848         fi
1849
1850 check-lit:: check
1851
1852 check-dg::
1853         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1854           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1855             $(EchoCmd) Running test suite ; \
1856             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
1857           else \
1858             $(EchoCmd) No Makefile in test directory ; \
1859           fi ; \
1860         else \
1861           $(EchoCmd) No test directory ; \
1862         fi
1863
1864 check-all::
1865         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1866           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1867             $(EchoCmd) Running test suite ; \
1868             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1869           else \
1870             $(EchoCmd) No Makefile in test directory ; \
1871           fi ; \
1872         else \
1873           $(EchoCmd) No test directory ; \
1874         fi
1875
1876 ###############################################################################
1877 # UNITTESTS: Running the unittests test suite
1878 ###############################################################################
1879
1880 unittests::
1881         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1882           if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1883             $(EchoCmd) Running unittests test suite ; \
1884             $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
1885           else \
1886             $(EchoCmd) No Makefile in unittests directory ; \
1887           fi ; \
1888         else \
1889           $(EchoCmd) No unittests directory ; \
1890         fi
1891
1892 ###############################################################################
1893 # DISTRIBUTION: Handle construction of a distribution tarball
1894 ###############################################################################
1895
1896 #------------------------------------------------------------------------
1897 # Define distribution related variables
1898 #------------------------------------------------------------------------
1899 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1900 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1901 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1902 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1903 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1904 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1905 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1906                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1907                Makefile.config.in configure autoconf
1908 DistOther   := $(notdir $(wildcard \
1909                $(PROJ_SRC_DIR)/*.h \
1910                $(PROJ_SRC_DIR)/*.td \
1911                $(PROJ_SRC_DIR)/*.def \
1912                $(PROJ_SRC_DIR)/*.ll \
1913                $(PROJ_SRC_DIR)/*.in))
1914 DistSubDirs := $(SubDirs)
1915 DistSources  = $(Sources) $(EXTRA_DIST)
1916 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1917
1918 #------------------------------------------------------------------------
1919 # We MUST build distribution with OBJ_DIR != SRC_DIR
1920 #------------------------------------------------------------------------
1921 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1922 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1923         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1924
1925 else
1926
1927 #------------------------------------------------------------------------
1928 # Prevent attempt to run dist targets from anywhere but the top level
1929 #------------------------------------------------------------------------
1930 ifneq ($(LEVEL),.)
1931 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1932         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1933 else
1934
1935 #------------------------------------------------------------------------
1936 # Provide the top level targets
1937 #------------------------------------------------------------------------
1938
1939 dist-gzip:: $(DistTarGZip)
1940
1941 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1942         $(Echo) Packing gzipped distribution tar file.
1943         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1944           $(GZIP) -c > "$(DistTarGZip)"
1945
1946 dist-bzip2:: $(DistTarBZ2)
1947
1948 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1949         $(Echo) Packing bzipped distribution tar file.
1950         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1951           $(BZIP2) -c >$(DistTarBZ2)
1952
1953 dist-zip:: $(DistZip)
1954
1955 $(DistZip) : $(TopDistDir)/.makedistdir
1956         $(Echo) Packing zipped distribution file.
1957         $(Verb) rm -f $(DistZip)
1958         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1959
1960 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1961         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1962
1963 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1964
1965 dist-check:: $(DistTarGZip)
1966         $(Echo) Checking distribution tar file.
1967         $(Verb) if test -d $(DistCheckDir) ; then \
1968           $(RM) -rf $(DistCheckDir) ; \
1969         fi
1970         $(Verb) $(MKDIR) $(DistCheckDir)
1971         $(Verb) cd $(DistCheckDir) && \
1972           $(MKDIR) $(DistCheckDir)/build && \
1973           $(MKDIR) $(DistCheckDir)/install && \
1974           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1975           cd build && \
1976           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1977             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1978           $(MAKE) all && \
1979           $(MAKE) check && \
1980           $(MAKE) unittests && \
1981           $(MAKE) install && \
1982           $(MAKE) uninstall && \
1983           $(MAKE) dist-clean && \
1984           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1985
1986 dist-clean::
1987         $(Echo) Cleaning distribution files
1988         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1989           $(DistCheckDir)
1990
1991 endif
1992
1993 #------------------------------------------------------------------------
1994 # Provide the recursive distdir target for building the distribution directory
1995 #------------------------------------------------------------------------
1996 distdir: $(DistDir)/.makedistdir
1997 $(DistDir)/.makedistdir: $(DistSources)
1998         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1999           if test -d "$(DistDir)" ; then \
2000             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
2001               exit 1 ; \
2002           fi ; \
2003           $(EchoCmd) Removing old $(DistDir) ; \
2004           $(RM) -rf $(DistDir); \
2005           $(EchoCmd) Making 'all' to verify build ; \
2006           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
2007         fi
2008         $(Echo) Building Distribution Directory $(DistDir)
2009         $(Verb) $(MKDIR) $(DistDir)
2010         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2011         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
2012         for file in $(DistFiles) ; do \
2013           case "$$file" in \
2014             $(PROJ_SRC_DIR)/*) \
2015               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2016               ;; \
2017             $(PROJ_SRC_ROOT)/*) \
2018               file=`echo "$$file" | \
2019                 sed "s#^$$srcrootstrip/##"` \
2020               ;; \
2021           esac; \
2022           if test -f "$(PROJ_SRC_DIR)/$$file" || \
2023              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2024             from_dir="$(PROJ_SRC_DIR)" ; \
2025           elif test -f "$$file" || test -d "$$file" ; then \
2026             from_dir=. ; \
2027           fi ; \
2028           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
2029           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2030             to_dir="$(DistDir)/$$dir"; \
2031             $(MKDIR) "$$to_dir" ; \
2032           else \
2033             to_dir="$(DistDir)"; \
2034           fi; \
2035           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2036           if test -n "$$mid_dir" ; then \
2037             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
2038           fi ; \
2039           if test -d "$$from_dir/$$file"; then \
2040             if test -d "$(PROJ_SRC_DIR)/$$file" && \
2041                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
2042                cd $(PROJ_SRC_DIR) ; \
2043                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2044                  ( cd $$to_dir ; $(TAR) xf - ) ; \
2045                cd $(PROJ_OBJ_DIR) ; \
2046             else \
2047                cd $$from_dir ; \
2048                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2049                  ( cd $$to_dir ; $(TAR) xf - ) ; \
2050                cd $(PROJ_OBJ_DIR) ; \
2051             fi; \
2052           elif test -f "$$from_dir/$$file" ; then \
2053             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
2054           elif test -L "$$from_dir/$$file" ; then \
2055             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
2056           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
2057             $(EchoCmd) "===== WARNING: Distribution Source " \
2058               "$$from_dir/$$file Not Found!" ; \
2059           elif test "$(Verb)" != '@' ; then \
2060             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
2061           fi; \
2062         done
2063         $(Verb) for subdir in $(DistSubDirs) ; do \
2064           if test "$$subdir" \!= "." ; then \
2065             new_distdir="$(DistDir)/$$subdir" ; \
2066             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
2067             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
2068               DistDir="$$new_distdir" distdir ) || exit 1; \
2069           fi; \
2070         done
2071         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2072           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
2073           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2074                                   -name .svn \) -print` ;\
2075           $(MAKE) dist-hook ; \
2076           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2077             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2078             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2079             -o ! -type d ! -perm -444 -exec \
2080               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2081             || chmod -R a+r $(DistDir) ; \
2082         fi
2083
2084 # This is invoked by distdir target, define it as a no-op to avoid errors if not
2085 # defined by user.
2086 dist-hook::
2087
2088 endif
2089
2090 ###############################################################################
2091 # TOP LEVEL - targets only to apply at the top level directory
2092 ###############################################################################
2093
2094 ifeq ($(LEVEL),.)
2095
2096 #------------------------------------------------------------------------
2097 # Install support for the project's include files:
2098 #------------------------------------------------------------------------
2099 ifdef NO_INSTALL
2100 install-local::
2101         $(Echo) Install circumvented with NO_INSTALL
2102 uninstall-local::
2103         $(Echo) Uninstall circumvented with NO_INSTALL
2104 else
2105 install-local::
2106         $(Echo) Installing include files
2107         $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
2108         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2109           cd $(PROJ_SRC_ROOT)/include && \
2110           for  hdr in `find . -type f '!' '(' -name '*~' \
2111               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2112               grep -v .svn` ; do \
2113             instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2114             if test \! -d "$$instdir" ; then \
2115               $(EchoCmd) Making install directory $$instdir ; \
2116               $(MKDIR) $$instdir ;\
2117             fi ; \
2118             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2119           done ; \
2120         fi
2121 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2122         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2123           cd $(PROJ_OBJ_ROOT)/include && \
2124           for hdr in `find . -type f -print | grep -v CVS` ; do \
2125             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2126           done ; \
2127         fi
2128 endif
2129
2130 uninstall-local::
2131         $(Echo) Uninstalling include files
2132         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2133           cd $(PROJ_SRC_ROOT)/include && \
2134             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2135               '!' '(' -name '*~' -o -name '.#*' \
2136         -o -name '*.in' ')' -print ')' | \
2137         grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2138           cd $(PROJ_SRC_ROOT)/include && \
2139             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
2140       -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2141         fi
2142 endif
2143 endif
2144
2145 check-line-length:
2146         @echo searching for overlength lines in files: $(Sources)
2147         @echo
2148         @echo
2149         egrep -n '.{81}' $(Sources) /dev/null
2150
2151 check-for-tabs:
2152         @echo searching for tabs in files: $(Sources)
2153         @echo
2154         @echo
2155         egrep -n '      ' $(Sources) /dev/null
2156
2157 check-footprint:
2158         @ls -l $(LibDir) | awk '\
2159           BEGIN { sum = 0; } \
2160                 { sum += $$5; } \
2161           END   { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2162         @ls -l $(ToolDir) | awk '\
2163           BEGIN { sum = 0; } \
2164                 { sum += $$5; } \
2165           END   { printf("Programs:  %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2166 #------------------------------------------------------------------------
2167 # Print out the directories used for building
2168 #------------------------------------------------------------------------
2169 printvars::
2170         $(Echo) "BuildMode    : " '$(BuildMode)'
2171         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2172         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2173         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2174         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2175         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2176         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2177         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
2178         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
2179         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
2180         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
2181         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
2182         $(Echo) "UserTargets  : " '$(UserTargets)'
2183         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2184         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2185         $(Echo) "ObjDir       : " '$(ObjDir)'
2186         $(Echo) "LibDir       : " '$(LibDir)'
2187         $(Echo) "ToolDir      : " '$(ToolDir)'
2188         $(Echo) "ExmplDir     : " '$(ExmplDir)'
2189         $(Echo) "Sources      : " '$(Sources)'
2190         $(Echo) "TDFiles      : " '$(TDFiles)'
2191         $(Echo) "INCFiles     : " '$(INCFiles)'
2192         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
2193         $(Echo) "PreConditions: " '$(PreConditions)'
2194         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
2195         $(Echo) "Compile.C    : " '$(Compile.C)'
2196         $(Echo) "Archive      : " '$(Archive)'
2197         $(Echo) "YaccFiles    : " '$(YaccFiles)'
2198         $(Echo) "LexFiles     : " '$(LexFiles)'
2199         $(Echo) "Module       : " '$(Module)'
2200         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2201         $(Echo) "SubDirs      : " '$(SubDirs)'
2202         $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2203         $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2204
2205 ###
2206 # Debugging
2207
2208 # General debugging rule, use 'make dbg-print-XXX' to print the
2209 # definition, value and origin of XXX.
2210 make-print-%:
2211         $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))