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