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