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