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