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