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