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