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