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