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