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