a3a4937b792ad38a2286133d0554061a959948dd
[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 ifneq ($(ARCH), Mips)
1343   LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1344 endif
1345 endif
1346 endif
1347
1348 #---------------------------------------------------------
1349 # Tool Version Info Support
1350 #---------------------------------------------------------
1351
1352 ifeq ($(HOST_OS),Darwin)
1353 ifdef TOOL_INFO_PLIST
1354
1355 LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1356
1357 $(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1358
1359 $(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
1360         $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1361         $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1362                    -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1363                    -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1364                  -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1365                    $< > $@
1366
1367 endif
1368 endif
1369
1370 #---------------------------------------------------------
1371 # Provide targets for building the tools
1372 #---------------------------------------------------------
1373 all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
1374
1375 clean-local::
1376 ifneq ($(strip $(ToolBuildPath)),)
1377         -$(Verb) $(RM) -f $(ToolBuildPath)
1378 endif
1379 ifneq ($(strip $(ToolAliasBuildPath)),)
1380         -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1381 endif
1382
1383 ifdef EXAMPLE_TOOL
1384 $(ToolBuildPath): $(ExmplDir)/.dir
1385 else
1386 $(ToolBuildPath): $(ToolDir)/.dir
1387 endif
1388
1389 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1390         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1391         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1392         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1393         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1394           $(StripWarnMsg)
1395
1396 ifneq ($(strip $(ToolAliasBuildPath)),)
1397 $(ToolAliasBuildPath): $(ToolBuildPath)
1398         $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1399         $(Verb) $(RM) -f $(ToolAliasBuildPath)
1400         $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1401         $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLNAME) \
1402           $(StripWarnMsg)
1403 endif
1404
1405 ifdef NO_INSTALL
1406 install-local::
1407         $(Echo) Install circumvented with NO_INSTALL
1408 uninstall-local::
1409         $(Echo) Uninstall circumvented with NO_INSTALL
1410 else
1411 DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
1412
1413 install-local:: $(DestTool)
1414
1415 $(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
1416         $(Echo) Installing $(BuildMode) $(DestTool)
1417         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1418
1419 uninstall-local::
1420         $(Echo) Uninstalling $(BuildMode) $(DestTool)
1421         -$(Verb) $(RM) -f $(DestTool)
1422
1423 # TOOLALIAS install.
1424 ifdef TOOLALIAS
1425 DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
1426
1427 install-local:: $(DestToolAlias)
1428
1429 $(DestToolAlias): $(DestTool)
1430         $(Echo) Installing $(BuildMode) $(DestToolAlias)
1431         $(Verb) $(RM) -f $(DestToolAlias)
1432         $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1433
1434 uninstall-local::
1435         $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1436         -$(Verb) $(RM) -f $(DestToolAlias)
1437 endif
1438
1439 endif
1440 endif
1441
1442 ###############################################################################
1443 # Object Build Rules: Build object files based on sources
1444 ###############################################################################
1445
1446 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1447 ifeq ($(HOST_OS),HP-UX)
1448   DISABLE_AUTO_DEPENDENCIES=1
1449 endif
1450
1451 # Provide rule sets for when dependency generation is enabled
1452 ifndef DISABLE_AUTO_DEPENDENCIES
1453
1454 #---------------------------------------------------------
1455 # Create .o files in the ObjDir directory from the .cpp and .c files...
1456 #---------------------------------------------------------
1457
1458 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1459          -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1460
1461 # If the build succeeded, move the dependency file over, otherwise
1462 # remove it.
1463 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1464                   else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1465
1466 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1467         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1468         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1469                 $(DEPEND_MOVEFILE)
1470
1471 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1472         $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1473         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1474                 $(DEPEND_MOVEFILE)
1475
1476 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1477         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1478         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1479                 $(DEPEND_MOVEFILE)
1480
1481 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1482         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1483         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1484                 $(DEPEND_MOVEFILE)
1485
1486 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1487         $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1488         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1489                 $(DEPEND_MOVEFILE)
1490
1491 #---------------------------------------------------------
1492 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1493 #---------------------------------------------------------
1494
1495 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1496         -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1497
1498 # If the build succeeded, move the dependency file over, otherwise
1499 # remove it.
1500 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1501                      else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1502
1503 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1504         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1505         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1506                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1507                 $(BC_DEPEND_MOVEFILE)
1508
1509 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1510         $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1511         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1512                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1513                 $(BC_DEPEND_MOVEFILE)
1514
1515 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1516         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1517         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1518                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1519                 $(BC_DEPEND_MOVEFILE)
1520
1521 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1522         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1523         $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1524                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1525                 $(BC_DEPEND_MOVEFILE)
1526
1527 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1528         $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1529         $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1530                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1531                 $(BC_DEPEND_MOVEFILE)
1532
1533 # Provide alternate rule sets if dependencies are disabled
1534 else
1535
1536 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1537         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1538         $(Compile.CXX) $< -o $@
1539
1540 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1541         $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1542         $(Compile.CXX) $< -o $@
1543
1544 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1545         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1546         $(Compile.CXX) $< -o $@
1547
1548 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1549         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1550         $(Compile.C) $< -o $@
1551
1552 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1553         $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1554         $(Compile.C) $< -o $@
1555
1556 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1557         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1558         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1559
1560 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1561         $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1562         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1563
1564 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1565         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1566         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1567
1568 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1569         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1570         $(BCCompile.C) $< -o $@ -S -emit-llvm
1571
1572 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1573         $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1574         $(BCCompile.C) $< -o $@ -S -emit-llvm
1575
1576 endif
1577
1578
1579 ## Rules for building preprocessed (.i/.ii) outputs.
1580 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1581         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1582         $(Verb) $(Preprocess.CXX) $< -o $@
1583
1584 $(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1585         $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1586         $(Verb) $(Preprocess.CXX) $< -o $@
1587
1588 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1589         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1590         $(Verb) $(Preprocess.CXX) $< -o $@
1591
1592 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1593         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1594         $(Verb) $(Preprocess.C) $< -o $@
1595
1596 $(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1597         $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1598         $(Verb) $(Preprocess.C) $< -o $@
1599
1600
1601 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1602         $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1603         $(Compile.CXX) $< -o $@ -S
1604
1605 $(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1606         $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1607         $(Compile.CXX) $< -o $@ -S
1608
1609 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1610         $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1611         $(Compile.CXX) $< -o $@ -S
1612
1613 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1614         $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1615         $(Compile.C) $< -o $@ -S
1616
1617 $(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1618         $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1619         $(Compile.C) $< -o $@ -S
1620
1621
1622 # make the C and C++ compilers strip debug info out of bytecode libraries.
1623 ifdef DEBUG_RUNTIME
1624 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1625         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1626         $(Verb) $(LOPT) $< -std-compile-opts -o $@
1627 else
1628 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1629         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1630         $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1631 endif
1632
1633
1634 #---------------------------------------------------------
1635 # Provide rule to build .bc files from .ll sources,
1636 # regardless of dependencies
1637 #---------------------------------------------------------
1638 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1639         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1640         $(Verb) $(LLVMAS) $< -f -o $@
1641
1642 ###############################################################################
1643 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1644 ###############################################################################
1645
1646 ifdef TARGET
1647 TABLEGEN_INC_FILES_COMMON = 1
1648 endif
1649
1650 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1651 TABLEGEN_INC_FILES_COMMON = 1
1652 endif
1653
1654 ifdef TABLEGEN_INC_FILES_COMMON
1655
1656 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1657 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1658 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1659
1660 # INCFiles rule: All of the tblgen generated files are emitted to
1661 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1662 # us to only "touch" the real file if the contents of it change.  IOW, if
1663 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1664 # dependencies of the .inc files are, unless the contents of the .inc file
1665 # changes.
1666 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1667         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1668
1669 endif # TABLEGEN_INC_FILES_COMMON
1670
1671 ifdef TARGET
1672
1673 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1674            $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1675            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1676            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1677            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1678            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1679            $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1680
1681 # All of these files depend on tblgen and the .td files.
1682 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1683
1684 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1685 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1686         $(Echo) "Building $(<F) register names with tblgen"
1687         $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1688
1689 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1690 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1691         $(Echo) "Building $(<F) register information header with tblgen"
1692         $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1693
1694 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1695 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1696         $(Echo) "Building $(<F) register info implementation with tblgen"
1697         $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1698
1699 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1700 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1701         $(Echo) "Building $(<F) instruction names with tblgen"
1702         $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1703
1704 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1705 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1706         $(Echo) "Building $(<F) instruction information with tblgen"
1707         $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1708
1709 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1710 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1711         $(Echo) "Building $(<F) assembly writer with tblgen"
1712         $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1713
1714 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1715 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1716         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1717         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1718
1719 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1720 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1721         $(Echo) "Building $(<F) assembly matcher with tblgen"
1722         $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1723
1724 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1725 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1726         $(Echo) "Building $(<F) code emitter with tblgen"
1727         $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1728
1729 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1730 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1731         $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1732         $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1733
1734 $(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1735 $(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1736         $(Echo) "Building $(<F) disassembly tables with tblgen"
1737         $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1738
1739 $(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1740 $(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1741         $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1742         $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1743
1744 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1745 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1746         $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1747         $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1748
1749 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1750 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1751         $(Echo) "Building $(<F) subtarget information with tblgen"
1752         $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1753
1754 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1755 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1756         $(Echo) "Building $(<F) calling convention information with tblgen"
1757         $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1758
1759 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1760 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1761         $(Echo) "Building $(<F) intrinsics information with tblgen"
1762         $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1763
1764 $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1765         $(Echo) "Building $(<F) decoder tables with tblgen"
1766         $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1767
1768
1769 clean-local::
1770         -$(Verb) $(RM) -f $(INCFiles)
1771
1772 endif # TARGET
1773
1774 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1775
1776 LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1777         $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1778
1779 TDFiles := $(LLVMCPluginSrc) \
1780         $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1781
1782 $(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1783                                 $(TBLGEN) $(TD_COMMON)
1784         $(Echo) "Building LLVMC configuration library with tblgen"
1785         $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1786
1787 endif # LLVMC_BUILD_AUTOGENERATED_INC
1788
1789 ###############################################################################
1790 # OTHER RULES: Other rules needed
1791 ###############################################################################
1792
1793 # To create postscript files from dot files...
1794 ifneq ($(DOT),false)
1795 %.ps: %.dot
1796         $(DOT) -Tps < $< > $@
1797 else
1798 %.ps: %.dot
1799         $(Echo) "Cannot build $@: The program dot is not installed"
1800 endif
1801
1802 # This rules ensures that header files that are removed still have a rule for
1803 # which they can be "generated."  This allows make to ignore them and
1804 # reproduce the dependency lists.
1805 %.h:: ;
1806 %.hpp:: ;
1807
1808 # Define clean-local to clean the current directory. Note that this uses a
1809 # very conservative approach ensuring that empty variables do not cause
1810 # errors or disastrous removal.
1811 clean-local::
1812 ifneq ($(strip $(ObjRootDir)),)
1813         -$(Verb) $(RM) -rf $(ObjRootDir)
1814 endif
1815         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1816 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1817         -$(Verb) $(RM) -f *$(SHLIBEXT)
1818 endif
1819
1820 clean-all-local::
1821         -$(Verb) $(RM) -rf Debug Release Profile
1822
1823
1824 ###############################################################################
1825 # DEPENDENCIES: Include the dependency files if we should
1826 ###############################################################################
1827 ifndef DISABLE_AUTO_DEPENDENCIES
1828
1829 # If its not one of the cleaning targets
1830 ifndef IS_CLEANING_TARGET
1831
1832 # Get the list of dependency files
1833 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
1834 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1835
1836 # Include bitcode dependency files if using bitcode libraries
1837 ifdef BYTECODE_LIBRARY
1838 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1839 endif
1840
1841 -include $(DependFiles) ""
1842
1843 endif
1844
1845 endif
1846
1847 ###############################################################################
1848 # CHECK: Running the test suite
1849 ###############################################################################
1850
1851 check::
1852         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1853           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1854             $(EchoCmd) Running test suite ; \
1855             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1856               TESTSUITE=$(TESTSUITE) ; \
1857           else \
1858             $(EchoCmd) No Makefile in test directory ; \
1859           fi ; \
1860         else \
1861           $(EchoCmd) No test directory ; \
1862         fi
1863
1864 check-lit::
1865         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1866           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1867             $(EchoCmd) Running test suite ; \
1868             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1869           else \
1870             $(EchoCmd) No Makefile in test directory ; \
1871           fi ; \
1872         else \
1873           $(EchoCmd) No test directory ; \
1874         fi
1875
1876 check-all::
1877         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1878           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1879             $(EchoCmd) Running test suite ; \
1880             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1881           else \
1882             $(EchoCmd) No Makefile in test directory ; \
1883           fi ; \
1884         else \
1885           $(EchoCmd) No test directory ; \
1886         fi
1887
1888 ###############################################################################
1889 # UNITTESTS: Running the unittests test suite
1890 ###############################################################################
1891
1892 unittests::
1893         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1894           if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1895             $(EchoCmd) Running unittests test suite ; \
1896             $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
1897           else \
1898             $(EchoCmd) No Makefile in unittests directory ; \
1899           fi ; \
1900         else \
1901           $(EchoCmd) No unittests directory ; \
1902         fi
1903
1904 ###############################################################################
1905 # DISTRIBUTION: Handle construction of a distribution tarball
1906 ###############################################################################
1907
1908 #------------------------------------------------------------------------
1909 # Define distribution related variables
1910 #------------------------------------------------------------------------
1911 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1912 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1913 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1914 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1915 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1916 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1917 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1918                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1919                Makefile.config.in configure autoconf
1920 DistOther   := $(notdir $(wildcard \
1921                $(PROJ_SRC_DIR)/*.h \
1922                $(PROJ_SRC_DIR)/*.td \
1923                $(PROJ_SRC_DIR)/*.def \
1924                $(PROJ_SRC_DIR)/*.ll \
1925                $(PROJ_SRC_DIR)/*.in))
1926 DistSubDirs := $(SubDirs)
1927 DistSources  = $(Sources) $(EXTRA_DIST)
1928 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1929
1930 #------------------------------------------------------------------------
1931 # We MUST build distribution with OBJ_DIR != SRC_DIR
1932 #------------------------------------------------------------------------
1933 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1934 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1935         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1936
1937 else
1938
1939 #------------------------------------------------------------------------
1940 # Prevent attempt to run dist targets from anywhere but the top level
1941 #------------------------------------------------------------------------
1942 ifneq ($(LEVEL),.)
1943 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1944         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1945 else
1946
1947 #------------------------------------------------------------------------
1948 # Provide the top level targets
1949 #------------------------------------------------------------------------
1950
1951 dist-gzip:: $(DistTarGZip)
1952
1953 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1954         $(Echo) Packing gzipped distribution tar file.
1955         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1956           $(GZIP) -c > "$(DistTarGZip)"
1957
1958 dist-bzip2:: $(DistTarBZ2)
1959
1960 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1961         $(Echo) Packing bzipped distribution tar file.
1962         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1963           $(BZIP2) -c >$(DistTarBZ2)
1964
1965 dist-zip:: $(DistZip)
1966
1967 $(DistZip) : $(TopDistDir)/.makedistdir
1968         $(Echo) Packing zipped distribution file.
1969         $(Verb) rm -f $(DistZip)
1970         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1971
1972 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1973         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1974
1975 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1976
1977 dist-check:: $(DistTarGZip)
1978         $(Echo) Checking distribution tar file.
1979         $(Verb) if test -d $(DistCheckDir) ; then \
1980           $(RM) -rf $(DistCheckDir) ; \
1981         fi
1982         $(Verb) $(MKDIR) $(DistCheckDir)
1983         $(Verb) cd $(DistCheckDir) && \
1984           $(MKDIR) $(DistCheckDir)/build && \
1985           $(MKDIR) $(DistCheckDir)/install && \
1986           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1987           cd build && \
1988           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1989             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1990           $(MAKE) all && \
1991           $(MAKE) check && \
1992           $(MAKE) unittests && \
1993           $(MAKE) install && \
1994           $(MAKE) uninstall && \
1995           $(MAKE) dist-clean && \
1996           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1997
1998 dist-clean::
1999         $(Echo) Cleaning distribution files
2000         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
2001           $(DistCheckDir)
2002
2003 endif
2004
2005 #------------------------------------------------------------------------
2006 # Provide the recursive distdir target for building the distribution directory
2007 #------------------------------------------------------------------------
2008 distdir: $(DistDir)/.makedistdir
2009 $(DistDir)/.makedistdir: $(DistSources)
2010         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2011           if test -d "$(DistDir)" ; then \
2012             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
2013               exit 1 ; \
2014           fi ; \
2015           $(EchoCmd) Removing old $(DistDir) ; \
2016           $(RM) -rf $(DistDir); \
2017           $(EchoCmd) Making 'all' to verify build ; \
2018           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
2019         fi
2020         $(Echo) Building Distribution Directory $(DistDir)
2021         $(Verb) $(MKDIR) $(DistDir)
2022         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2023         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
2024         for file in $(DistFiles) ; do \
2025           case "$$file" in \
2026             $(PROJ_SRC_DIR)/*) \
2027               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2028               ;; \
2029             $(PROJ_SRC_ROOT)/*) \
2030               file=`echo "$$file" | \
2031                 sed "s#^$$srcrootstrip/##"` \
2032               ;; \
2033           esac; \
2034           if test -f "$(PROJ_SRC_DIR)/$$file" || \
2035              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2036             from_dir="$(PROJ_SRC_DIR)" ; \
2037           elif test -f "$$file" || test -d "$$file" ; then \
2038             from_dir=. ; \
2039           fi ; \
2040           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
2041           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2042             to_dir="$(DistDir)/$$dir"; \
2043             $(MKDIR) "$$to_dir" ; \
2044           else \
2045             to_dir="$(DistDir)"; \
2046           fi; \
2047           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2048           if test -n "$$mid_dir" ; then \
2049             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
2050           fi ; \
2051           if test -d "$$from_dir/$$file"; then \
2052             if test -d "$(PROJ_SRC_DIR)/$$file" && \
2053                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
2054                cd $(PROJ_SRC_DIR) ; \
2055                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2056                  ( cd $$to_dir ; $(TAR) xf - ) ; \
2057                cd $(PROJ_OBJ_DIR) ; \
2058             else \
2059                cd $$from_dir ; \
2060                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2061                  ( cd $$to_dir ; $(TAR) xf - ) ; \
2062                cd $(PROJ_OBJ_DIR) ; \
2063             fi; \
2064           elif test -f "$$from_dir/$$file" ; then \
2065             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
2066           elif test -L "$$from_dir/$$file" ; then \
2067             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
2068           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
2069             $(EchoCmd) "===== WARNING: Distribution Source " \
2070               "$$from_dir/$$file Not Found!" ; \
2071           elif test "$(Verb)" != '@' ; then \
2072             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
2073           fi; \
2074         done
2075         $(Verb) for subdir in $(DistSubDirs) ; do \
2076           if test "$$subdir" \!= "." ; then \
2077             new_distdir="$(DistDir)/$$subdir" ; \
2078             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
2079             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
2080               DistDir="$$new_distdir" distdir ) || exit 1; \
2081           fi; \
2082         done
2083         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2084           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
2085           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2086                                   -name .svn \) -print` ;\
2087           $(MAKE) dist-hook ; \
2088           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2089             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2090             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2091             -o ! -type d ! -perm -444 -exec \
2092               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2093             || chmod -R a+r $(DistDir) ; \
2094         fi
2095
2096 # This is invoked by distdir target, define it as a no-op to avoid errors if not
2097 # defined by user.
2098 dist-hook::
2099
2100 endif
2101
2102 ###############################################################################
2103 # TOP LEVEL - targets only to apply at the top level directory
2104 ###############################################################################
2105
2106 ifeq ($(LEVEL),.)
2107
2108 #------------------------------------------------------------------------
2109 # Install support for the project's include files:
2110 #------------------------------------------------------------------------
2111 ifdef NO_INSTALL
2112 install-local::
2113         $(Echo) Install circumvented with NO_INSTALL
2114 uninstall-local::
2115         $(Echo) Uninstall circumvented with NO_INSTALL
2116 else
2117 install-local::
2118         $(Echo) Installing include files
2119         $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
2120         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2121           cd $(PROJ_SRC_ROOT)/include && \
2122           for  hdr in `find . -type f '!' '(' -name '*~' \
2123               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2124               grep -v .svn` ; do \
2125             instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2126             if test \! -d "$$instdir" ; then \
2127               $(EchoCmd) Making install directory $$instdir ; \
2128               $(MKDIR) $$instdir ;\
2129             fi ; \
2130             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2131           done ; \
2132         fi
2133 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2134         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2135           cd $(PROJ_OBJ_ROOT)/include && \
2136           for hdr in `find . -type f -print | grep -v CVS` ; do \
2137             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2138           done ; \
2139         fi
2140 endif
2141
2142 uninstall-local::
2143         $(Echo) Uninstalling include files
2144         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2145           cd $(PROJ_SRC_ROOT)/include && \
2146             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2147               '!' '(' -name '*~' -o -name '.#*' \
2148         -o -name '*.in' ')' -print ')' | \
2149         grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2150           cd $(PROJ_SRC_ROOT)/include && \
2151             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
2152       -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2153         fi
2154 endif
2155 endif
2156
2157 check-line-length:
2158         @echo searching for overlength lines in files: $(Sources)
2159         @echo
2160         @echo
2161         egrep -n '.{81}' $(Sources) /dev/null
2162
2163 check-for-tabs:
2164         @echo searching for tabs in files: $(Sources)
2165         @echo
2166         @echo
2167         egrep -n '      ' $(Sources) /dev/null
2168
2169 check-footprint:
2170         @ls -l $(LibDir) | awk '\
2171           BEGIN { sum = 0; } \
2172                 { sum += $$5; } \
2173           END   { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2174         @ls -l $(ToolDir) | awk '\
2175           BEGIN { sum = 0; } \
2176                 { sum += $$5; } \
2177           END   { printf("Programs:  %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2178 #------------------------------------------------------------------------
2179 # Print out the directories used for building
2180 #------------------------------------------------------------------------
2181 printvars::
2182         $(Echo) "BuildMode    : " '$(BuildMode)'
2183         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2184         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2185         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2186         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2187         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2188         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2189         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
2190         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
2191         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
2192         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
2193         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
2194         $(Echo) "UserTargets  : " '$(UserTargets)'
2195         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2196         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2197         $(Echo) "ObjDir       : " '$(ObjDir)'
2198         $(Echo) "LibDir       : " '$(LibDir)'
2199         $(Echo) "ToolDir      : " '$(ToolDir)'
2200         $(Echo) "ExmplDir     : " '$(ExmplDir)'
2201         $(Echo) "Sources      : " '$(Sources)'
2202         $(Echo) "TDFiles      : " '$(TDFiles)'
2203         $(Echo) "INCFiles     : " '$(INCFiles)'
2204         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
2205         $(Echo) "PreConditions: " '$(PreConditions)'
2206         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
2207         $(Echo) "Compile.C    : " '$(Compile.C)'
2208         $(Echo) "Archive      : " '$(Archive)'
2209         $(Echo) "YaccFiles    : " '$(YaccFiles)'
2210         $(Echo) "LexFiles     : " '$(LexFiles)'
2211         $(Echo) "Module       : " '$(Module)'
2212         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2213         $(Echo) "SubDirs      : " '$(SubDirs)'
2214         $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2215         $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2216
2217 ###
2218 # Debugging
2219
2220 # General debugging rule, use 'make dbg-print-XXX' to print the
2221 # definition, value and origin of XXX.
2222 make-print-%:
2223         $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))