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