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