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