Search for the export map in a place that it can be found.
[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 LocalTargets     := all-local clean-local clean-all-local check-local \
24                     install-local printvars uninstall-local \
25                     install-bytecode-local unittests
26 TopLevelTargets  := check dist dist-check dist-clean dist-gzip dist-bzip2 \
27                     dist-zip unittests
28 UserTargets      := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
29 InternalTargets  := preconditions distdir dist-hook
30
31 ################################################################################
32 # INITIALIZATION: Basic things the makefile needs
33 ################################################################################
34
35 #--------------------------------------------------------------------
36 # Set the VPATH so that we can find source files.
37 #--------------------------------------------------------------------
38 VPATH=$(PROJ_SRC_DIR)
39
40 #--------------------------------------------------------------------
41 # Reset the list of suffixes we know how to build.
42 #--------------------------------------------------------------------
43 .SUFFIXES:
44 .SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
45 .SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
46
47 #--------------------------------------------------------------------
48 # Mark all of these targets as phony to avoid implicit rule search
49 #--------------------------------------------------------------------
50 .PHONY: $(UserTargets) $(InternalTargets)
51
52 #--------------------------------------------------------------------
53 # Make sure all the user-target rules are double colon rules and
54 # they are defined first.
55 #--------------------------------------------------------------------
56
57 $(UserTargets)::
58
59 ################################################################################
60 # PRECONDITIONS: that which must be built/checked first
61 ################################################################################
62
63 SrcMakefiles       := $(filter %Makefile %Makefile.tests,\
64                       $(wildcard $(PROJ_SRC_DIR)/Makefile*))
65 ObjMakefiles       := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
66 ConfigureScript    := $(PROJ_SRC_ROOT)/configure
67 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
68 MakefileConfigIn   := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
69 MakefileCommonIn   := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
70 MakefileConfig     := $(PROJ_OBJ_ROOT)/Makefile.config
71 MakefileCommon     := $(PROJ_OBJ_ROOT)/Makefile.common
72 PreConditions      := $(ConfigStatusScript) $(ObjMakefiles)
73 ifneq ($(MakefileCommonIn),)
74 PreConditions      += $(MakefileCommon)
75 endif
76
77 ifneq ($(MakefileConfigIn),)
78 PreConditions      += $(MakefileConfig)
79 endif
80
81 preconditions: $(PreConditions)
82
83 #------------------------------------------------------------------------
84 # Make sure the BUILT_SOURCES are built first
85 #------------------------------------------------------------------------
86 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
87
88 clean-all-local::
89 ifneq ($(strip $(BUILT_SOURCES)),)
90         -$(Verb) $(RM) -f $(BUILT_SOURCES)
91 endif
92
93 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
94 spotless:
95         $(Verb) if test -x config.status ; then \
96           $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
97           $(MKDIR) .spotless.save ; \
98           $(MV) config.status .spotless.save ; \
99           $(MV) mklib  .spotless.save ; \
100           $(MV) projects  .spotless.save ; \
101           $(RM) -rf * ; \
102           $(MV) .spotless.save/config.status . ; \
103           $(MV) .spotless.save/mklib . ; \
104           $(MV) .spotless.save/projects . ; \
105           $(RM) -rf .spotless.save ; \
106           $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
107           $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
108           $(ConfigStatusScript) ; \
109         else \
110           $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
111         fi
112 else
113 spotless:
114         $(EchoCmd) "spotless target not supported for objdir == srcdir"
115 endif
116
117 $(BUILT_SOURCES) : $(ObjMakefiles)
118
119 #------------------------------------------------------------------------
120 # Make sure we're not using a stale configuration
121 #------------------------------------------------------------------------
122 reconfigure:
123         $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
124         $(Verb) cd $(PROJ_OBJ_ROOT) && \
125           if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
126             $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
127           fi ; \
128           $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
129           $(ConfigStatusScript)
130
131 .PRECIOUS: $(ConfigStatusScript)
132 $(ConfigStatusScript): $(ConfigureScript)
133         $(Echo) Reconfiguring with $<
134         $(Verb) cd $(PROJ_OBJ_ROOT) && \
135           if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
136             $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
137           fi ; \
138           $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
139           $(ConfigStatusScript)
140
141 #------------------------------------------------------------------------
142 # Make sure the configuration makefile is up to date
143 #------------------------------------------------------------------------
144 ifneq ($(MakefileConfigIn),)
145 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
146         $(Echo) Regenerating $@
147         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
148 endif
149
150 ifneq ($(MakefileCommonIn),)
151 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
152         $(Echo) Regenerating $@
153         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
154 endif
155
156 #------------------------------------------------------------------------
157 # If the Makefile in the source tree has been updated, copy it over into the
158 # build tree. But, only do this if the source and object makefiles differ
159 #------------------------------------------------------------------------
160 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
161
162 Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
163         $(Echo) "Updating Makefile"
164         $(Verb) $(MKDIR) $(@D)
165         $(Verb) $(CP) -f $< $@
166
167 # Copy the Makefile.* files unless we're in the root directory which avoids
168 # the copying of Makefile.config.in or other things that should be explicitly
169 # taken care of.
170 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
171         @case '$?' in \
172           *Makefile.rules) ;; \
173           *.in) ;; \
174           *) $(EchoCmd) "Updating $(@F)" ; \
175              $(MKDIR) $(@D) ; \
176              $(CP) -f $< $@ ;; \
177         esac
178
179 endif
180
181 #------------------------------------------------------------------------
182 # Set up the basic dependencies
183 #------------------------------------------------------------------------
184 $(UserTargets):: $(PreConditions)
185
186 all:: all-local
187 clean:: clean-local
188 clean-all:: clean-local clean-all-local
189 install:: install-local
190 uninstall:: uninstall-local
191 install-local:: all-local
192 install-bytecode:: install-bytecode-local
193
194 ###############################################################################
195 # VARIABLES: Set up various variables based on configuration data
196 ###############################################################################
197
198 # Variable for if this make is for a "cleaning" target
199 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
200   IS_CLEANING_TARGET=1
201 endif
202
203 #--------------------------------------------------------------------
204 # Variables derived from configuration we are building
205 #--------------------------------------------------------------------
206
207 CPP.Defines :=
208 # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
209 # this can be overridden on the make command line.
210 ifneq ($(OS),MingW)
211   OPTIMIZE_OPTION := -O3
212 else
213   OPTIMIZE_OPTION := -O2
214 endif
215
216 ifdef ENABLE_PROFILING
217   BuildMode := Profile
218   CXX.Flags += $(OPTIMIZE_OPTION) -pg -g
219   C.Flags   += $(OPTIMIZE_OPTION) -pg -g
220   LD.Flags  += $(OPTIMIZE_OPTION) -pg -g
221   KEEP_SYMBOLS := 1
222 else
223   ifeq ($(ENABLE_OPTIMIZED),1)
224     BuildMode := Release
225     # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
226     ifneq ($(OS),FreeBSD)
227     ifneq ($(OS),Darwin)
228       OmitFramePointer := -fomit-frame-pointer
229     endif
230     endif
231
232     # Darwin requires -fstrict-aliasing to be explicitly enabled.
233     ifeq ($(OS),Darwin)
234       EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
235     endif
236
237     CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
238     C.Flags   += $(OPTIMIZE_OPTION) $(OmitFramePointer)
239     LD.Flags  += $(OPTIMIZE_OPTION)
240   else
241     BuildMode := Debug
242     CXX.Flags += -g
243     C.Flags   += -g
244     LD.Flags  += -g
245     KEEP_SYMBOLS := 1
246   endif
247 endif
248
249 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
250 #    CXX.Flags += -fvisibility-inlines-hidden
251 #endif
252
253 # IF REQUIRES_EH=1 is specified then don't disable exceptions
254 ifndef REQUIRES_EH
255   CXX.Flags += -fno-exceptions
256 endif
257
258 # IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
259 ifndef REQUIRES_RTTI
260 #  CXX.Flags += -fno-rtti
261 endif
262
263 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
264 # then disable assertions by defining the appropriate preprocessor symbols.
265 ifdef DISABLE_ASSERTIONS
266   BuildMode := $(BuildMode)-Asserts
267   CPP.Defines += -DNDEBUG
268 else
269   CPP.Defines += -D_DEBUG
270 endif
271
272 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
273 # configured), then enable expensive checks by defining the
274 # appropriate preprocessor symbols.
275 ifdef ENABLE_EXPENSIVE_CHECKS
276   BuildMode := $(BuildMode)+Checks
277   CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
278 endif
279
280 # LOADABLE_MODULE implies several other things so we force them to be
281 # defined/on.
282 ifdef LOADABLE_MODULE
283   SHARED_LIBRARY := 1
284   DONT_BUILD_RELINKED := 1
285   LINK_LIBS_IN_SHARED := 1
286 endif
287
288 ifdef SHARED_LIBRARY
289   ENABLE_PIC := 1
290   PIC_FLAG = "(PIC)"
291 endif
292
293 ifeq ($(ENABLE_PIC),1)
294   ifeq ($(LLVM_ON_WIN32),1)
295     # Nothing. Win32 defaults to PIC and warns when given -fPIC
296   else
297     ifeq ($(OS),Darwin)
298       # Common symbols not allowed in dylib files
299       CXX.Flags += -fno-common
300       C.Flags   += -fno-common
301     else
302       # Linux and others; pass -fPIC
303       CXX.Flags += -fPIC
304       C.Flags   += -fPIC
305     endif
306   endif
307 endif
308
309 CXX.Flags     += $(CXXFLAGS) -Woverloaded-virtual
310 C.Flags       += $(CFLAGS)
311 CPP.Defines   += $(CPPFLAGS)
312 CPP.BaseFlags += $(CPP.Defines)
313 LD.Flags      += $(LDFLAGS)
314 AR.Flags      := cru
315
316 # Make Floating point IEEE compliant on Alpha.
317 ifeq ($(ARCH),Alpha)
318   CXX.Flags     += -mieee
319   CPP.BaseFlags += -mieee
320 ifeq ($(ENABLE_PIC),0)
321   CXX.Flags     += -fPIC
322   CPP.BaseFlags += -fPIC
323 endif
324 endif
325
326 ifeq ($(ARCH),Alpha)
327   LD.Flags += -Wl,--no-relax
328 endif
329
330 #--------------------------------------------------------------------
331 # Directory locations
332 #--------------------------------------------------------------------
333 TargetMode :=
334 ifeq ($(LLVM_CROSS_COMPILING),1)
335   BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
336 endif
337
338 ObjRootDir  := $(PROJ_OBJ_DIR)/$(BuildMode)
339 ObjDir      := $(ObjRootDir)
340 LibDir      := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
341 ToolDir     := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
342 ExmplDir    := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
343 LLVMLibDir  := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
344 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
345 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
346 CFERuntimeLibDir := $(LLVMGCCDIR)/lib
347
348 #--------------------------------------------------------------------
349 # Full Paths To Compiled Tools and Utilities
350 #--------------------------------------------------------------------
351 EchoCmd  = $(ECHO) llvm[$(MAKELEVEL)]:
352 Echo     = @$(EchoCmd)
353 ifndef LLVMAS
354 LLVMAS   := $(LLVMToolDir)/llvm-as$(EXEEXT)
355 endif
356 ifndef TBLGEN
357   ifeq ($(LLVM_CROSS_COMPILING),1)
358     TBLGEN   := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
359   else
360     TBLGEN   := $(LLVMToolDir)/tblgen$(EXEEXT)
361   endif
362 endif
363 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
364 ifndef LLVMLD
365 LLVMLD    := $(LLVMToolDir)/llvm-ld$(EXEEXT)
366 endif
367 ifndef LLVMDIS
368 LLVMDIS  := $(LLVMToolDir)/llvm-dis$(EXEEXT)
369 endif
370 ifndef LLI
371 LLI      := $(LLVMToolDir)/lli$(EXEEXT)
372 endif
373 ifndef LLC
374 LLC      := $(LLVMToolDir)/llc$(EXEEXT)
375 endif
376 ifndef LOPT
377 LOPT     := $(LLVMToolDir)/opt$(EXEEXT)
378 endif
379 ifndef LBUGPOINT
380 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
381 endif
382 ifndef LUPGRADE
383 LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
384 endif
385 ifeq ($(LLVMGCC_MAJVERS),3)
386 UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest."
387 UPGRADE_LL  = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1)
388 LLVMGCCWITHPATH  := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
389 LLVMGXXWITHPATH  := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
390 else
391 UPGRADE_MSG =
392 UPGRADE_LL  =
393 LLVMGCCWITHPATH  := $(LLVMGCC)
394 LLVMGXXWITHPATH  := $(LLVMGXX)
395 endif
396
397 #--------------------------------------------------------------------
398 # Adjust to user's request
399 #--------------------------------------------------------------------
400
401 # Adjust LD.Flags depending on the kind of library that is to be built. Note
402 # that if LOADABLE_MODULE is specified then the resulting shared library can
403 # be opened with dlopen.
404 ifdef LOADABLE_MODULE
405   LD.Flags += -module
406 endif
407
408 ifdef SHARED_LIBRARY
409   LD.Flags += -Wl,-rpath -Wl,$(LibDir)
410 endif
411
412 ifdef TOOL_VERBOSE
413   C.Flags += -v
414   CXX.Flags += -v
415   LD.Flags += -v
416   VERBOSE := 1
417 endif
418
419 # Adjust settings for verbose mode
420 ifndef VERBOSE
421   Verb := @
422   AR.Flags += >/dev/null 2>/dev/null
423   ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
424 else
425   ConfigureScriptFLAGS :=
426 endif
427
428 # By default, strip symbol information from executable
429 ifndef KEEP_SYMBOLS
430   Strip := $(PLATFORMSTRIPOPTS)
431   StripWarnMsg := "(without symbols)"
432   Install.StripFlag += -s
433 endif
434
435 # Adjust linker flags for building an executable
436 ifneq ($(OS),Darwin)
437 ifdef TOOLNAME
438 ifdef EXAMPLE_TOOL
439   LD.Flags += -Wl,-rpath -Wl,$(ExmplDir) -export-dynamic
440 else
441   LD.Flags += -Wl,-rpath -Wl,$(ToolDir) -export-dynamic
442 endif
443 endif
444 endif
445
446 ifeq ($(OS),Darwin)
447   DARWIN_VERSION := `sw_vers -productVersion`
448   SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress -bundle \
449                     -mmacosx-version-min=$(DARWIN_VERSION)
450   CompileCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
451 else
452   SharedLinkOptions=-shared
453 endif
454
455 #----------------------------------------------------------
456 # Options To Invoke Tools
457 #----------------------------------------------------------
458
459 CompileCommonOpts += -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
460                      -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
461
462 ifeq ($(OS),HP-UX)
463   CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
464 endif
465
466 # If we are building a universal binary on Mac OS/X, pass extra options.  This
467 # is useful to people that want to link the LLVM libraries into their universal
468 # apps.
469 #
470 # The following can be optionally specified:
471 #   UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
472 #      For Mac OS/X 10.4 Intel machines, the traditional one is:
473 #      UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
474 #   UNIVERSAL_ARCH can be optionally specified to be a list of architectures
475 #      to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64".  This defaults to
476 #      i386/ppc only.
477 ifdef UNIVERSAL
478   ifndef UNIVERSAL_ARCH
479     UNIVERSAL_ARCH := i386 ppc
480   endif
481   UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
482   CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
483   Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
484   ifdef UNIVERSAL_SDK_PATH
485     CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
486     Relink.Flags      += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
487   endif
488
489   # Building universal cannot compute dependencies automatically.
490   DISABLE_AUTO_DEPENDENCIES=1
491 endif
492
493 ifeq ($(OS),SunOS)
494 CPP.BaseFlags += -include llvm/System/Solaris.h
495 endif
496
497 LD.Flags      += -L$(LibDir) -L$(LLVMLibDir)
498 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
499 # All -I flags should go here, so that they don't confuse llvm-config.
500 CPP.Flags     += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
501                  $(patsubst %,-I%/include,\
502                  $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
503                  $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
504                  $(CPP.BaseFlags)
505
506  ifeq ($(BUILD_COMPONENT), 1)
507   Compile.C     = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
508   Compile.CXX   = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
509   Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
510   Link          = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
511                   $(LD.Flags) $(Strip)
512   Relink        = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
513                   $(Relink.Flags)
514 else
515   Compile.C     = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
516   Compile.CXX   = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
517   Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
518   Link          = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
519                   $(LD.Flags) $(Strip)
520   Relink        = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
521                   $(Relink.Flags)
522 endif
523
524 BCCompile.C   = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
525 Preprocess.C  = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
526
527 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
528                 $(CompileCommonOpts)
529
530 ProgInstall   = $(INSTALL) $(Install.StripFlag) -m 0755
531 ScriptInstall = $(INSTALL) -m 0755
532 DataInstall   = $(INSTALL) -m 0644
533
534 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
535 # paths. In this case, the SYSPATH function (defined in
536 # Makefile.config) transforms Unix paths into Windows paths.
537 TableGen      = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
538                 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
539                 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
540                 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
541
542 Archive       = $(AR) $(AR.Flags)
543 LArchive      = $(LLVMToolDir)/llvm-ar rcsf
544 ifdef RANLIB
545 Ranlib        = $(RANLIB)
546 else
547 Ranlib        = ranlib
548 endif
549
550 #----------------------------------------------------------
551 # Get the list of source files and compute object file
552 # names from them.
553 #----------------------------------------------------------
554
555 ifndef SOURCES
556   Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
557              $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
558 else
559   Sources := $(SOURCES)
560 endif
561
562 ifdef BUILT_SOURCES
563 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
564 endif
565
566 BaseNameSources := $(sort $(basename $(Sources)))
567
568 ObjectsO  := $(BaseNameSources:%=$(ObjDir)/%.o)
569 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
570
571 ###############################################################################
572 # DIRECTORIES: Handle recursive descent of directory structure
573 ###############################################################################
574
575 #---------------------------------------------------------
576 # Provide rules to make install dirs. This must be early
577 # in the file so they get built before dependencies
578 #---------------------------------------------------------
579
580 $(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
581         $(Verb) $(MKDIR) $@
582
583 # To create other directories, as needed, and timestamp their creation
584 %/.dir:
585         $(Verb) $(MKDIR) $* > /dev/null
586         $(Verb) $(DATE) > $@
587
588 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
589 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
590
591 #---------------------------------------------------------
592 # Handle the DIRS options for sequential construction
593 #---------------------------------------------------------
594
595 SubDirs :=
596 ifdef DIRS
597 SubDirs += $(DIRS)
598
599 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
600 $(RecursiveTargets)::
601         $(Verb) for dir in $(DIRS); do \
602           if [ ! -f $$dir/Makefile ]; then \
603             $(MKDIR) $$dir; \
604             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
605           fi; \
606           ($(MAKE) -C $$dir $@ ) || exit 1; \
607         done
608 else
609 $(RecursiveTargets)::
610         $(Verb) for dir in $(DIRS); do \
611           ($(MAKE) -C $$dir $@ ) || exit 1; \
612         done
613 endif
614
615 endif
616
617 #---------------------------------------------------------
618 # Handle the EXPERIMENTAL_DIRS options ensuring success
619 # after each directory is built.
620 #---------------------------------------------------------
621 ifdef EXPERIMENTAL_DIRS
622 $(RecursiveTargets)::
623         $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
624           if [ ! -f $$dir/Makefile ]; then \
625             $(MKDIR) $$dir; \
626             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
627           fi; \
628           ($(MAKE) -C $$dir $@ ) || exit 0; \
629         done
630 endif
631
632 #-----------------------------------------------------------
633 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
634 #-----------------------------------------------------------
635 ifdef OPTIONAL_PARALLEL_DIRS
636   PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
637 endif
638
639 #-----------------------------------------------------------
640 # Handle the PARALLEL_DIRS options for parallel construction
641 #-----------------------------------------------------------
642 ifdef PARALLEL_DIRS
643
644 SubDirs += $(PARALLEL_DIRS)
645
646 # Unfortunately, this list must be maintained if new recursive targets are added
647 all      :: $(addsuffix /.makeall      ,$(PARALLEL_DIRS))
648 clean    :: $(addsuffix /.makeclean    ,$(PARALLEL_DIRS))
649 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
650 install  :: $(addsuffix /.makeinstall  ,$(PARALLEL_DIRS))
651 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
652 install-bytecode  :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
653
654 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
655
656 $(ParallelTargets) :
657         $(Verb) if [ ! -f $(@D)/Makefile ]; then \
658           $(MKDIR) $(@D); \
659           $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
660         fi; \
661         $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
662 endif
663
664 #---------------------------------------------------------
665 # Handle the OPTIONAL_DIRS options for directores that may
666 # or may not exist.
667 #---------------------------------------------------------
668 ifdef OPTIONAL_DIRS
669
670 SubDirs += $(OPTIONAL_DIRS)
671
672 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
673 $(RecursiveTargets)::
674         $(Verb) for dir in $(OPTIONAL_DIRS); do \
675           if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
676             if [ ! -f $$dir/Makefile ]; then \
677               $(MKDIR) $$dir; \
678               $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
679             fi; \
680             ($(MAKE) -C$$dir $@ ) || exit 1; \
681           fi \
682         done
683 else
684 $(RecursiveTargets)::
685         $(Verb) for dir in $(OPTIONAL_DIRS); do \
686           ($(MAKE) -C$$dir $@ ) || exit 1; \
687         done
688 endif
689 endif
690
691 #---------------------------------------------------------
692 # Handle the CONFIG_FILES options
693 #---------------------------------------------------------
694 ifdef CONFIG_FILES
695
696 ifdef NO_INSTALL
697 install-local::
698         $(Echo) Install circumvented with NO_INSTALL
699 uninstall-local::
700         $(Echo) UnInstall circumvented with NO_INSTALL
701 else
702 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
703         $(Echo) Installing Configuration Files To $(PROJ_etcdir)
704         $(Verb)for file in $(CONFIG_FILES); do \
705           if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
706             $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
707           elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
708             $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
709           else \
710             $(ECHO) Error: cannot find config file $${file}. ; \
711           fi \
712         done
713
714 uninstall-local::
715         $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
716         $(Verb)for file in $(CONFIG_FILES); do \
717           $(RM) -f $(PROJ_etcdir)/$${file} ; \
718         done
719 endif
720
721 endif
722
723 ###############################################################################
724 # Set up variables for building libararies
725 ###############################################################################
726
727 #---------------------------------------------------------
728 # Define various command line options pertaining to the
729 # libraries needed when linking. There are "Proj" libs
730 # (defined by the user's project) and "LLVM" libs (defined
731 # by the LLVM project).
732 #---------------------------------------------------------
733
734 ifdef USEDLIBS
735 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
736 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o,  $(ProjLibsOptions))
737 ProjUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
738 ProjLibsPaths   := $(addprefix $(LibDir)/,$(ProjUsedLibs))
739 endif
740
741 ifdef LLVMLIBS
742 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
743 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
744 LLVMUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
745 LLVMLibsPaths   := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
746 endif
747
748 ifndef IS_CLEANING_TARGET
749 ifdef LINK_COMPONENTS
750
751 # If LLVM_CONFIG doesn't exist, build it.  This can happen if you do a make
752 # clean in tools, then do a make in tools (instead of at the top level).
753 $(LLVM_CONFIG):
754         @echo "*** llvm-config doesn't exist - rebuilding it."
755         @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
756
757 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
758
759 ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs     $(LINK_COMPONENTS))
760 ProjLibsPaths   += $(LLVM_CONFIG) \
761                   $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
762 endif
763 endif
764
765 ###############################################################################
766 # Library Build Rules: Four ways to build a library
767 ###############################################################################
768
769 #---------------------------------------------------------
770 # Bytecode Module Targets:
771 #   If the user set MODULE_NAME then they want to build a
772 #   bytecode module from the sources. We compile all the
773 #   sources and link it together into a single bytecode
774 #   module.
775 #---------------------------------------------------------
776
777 ifdef MODULE_NAME
778 ifeq ($(strip $(LLVMGCC)),)
779 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
780 else
781
782 Module     := $(LibDir)/$(MODULE_NAME).bc
783 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
784
785
786 ifdef EXPORTED_SYMBOL_FILE
787 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
788 endif
789
790 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
791         $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
792         $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
793
794 all-local:: $(Module)
795
796 clean-local::
797 ifneq ($(strip $(Module)),)
798         -$(Verb) $(RM) -f $(Module)
799 endif
800
801 ifdef BYTECODE_DESTINATION
802 ModuleDestDir := $(BYTECODE_DESTINATION)
803 else
804 ModuleDestDir := $(PROJ_libdir)
805 endif
806
807 ifdef NO_INSTALL
808 install-local::
809         $(Echo) Install circumvented with NO_INSTALL
810 uninstall-local::
811         $(Echo) Uninstall circumvented with NO_INSTALL
812 else
813 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
814
815 install-module:: $(DestModule)
816 install-local:: $(DestModule)
817
818 $(DestModule): $(ModuleDestDir) $(Module)
819         $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
820         $(Verb) $(DataInstall) $(Module) $(DestModule)
821
822 uninstall-local::
823         $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
824         -$(Verb) $(RM) -f $(DestModule)
825 endif
826
827 endif
828 endif
829
830 # if we're building a library ...
831 ifdef LIBRARYNAME
832
833 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
834 LIBRARYNAME := $(strip $(LIBRARYNAME))
835 ifdef LOADABLE_MODULE
836 LibName.A  := $(LibDir)/$(LIBRARYNAME).a
837 LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
838 else
839 LibName.A  := $(LibDir)/lib$(LIBRARYNAME).a
840 LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
841 endif
842 LibName.O  := $(LibDir)/$(LIBRARYNAME).o
843 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
844
845 #---------------------------------------------------------
846 # Shared Library Targets:
847 #   If the user asked for a shared library to be built
848 #   with the SHARED_LIBRARY variable, then we provide
849 #   targets for building them.
850 #---------------------------------------------------------
851 ifdef SHARED_LIBRARY
852
853 all-local:: $(LibName.SO)
854
855 ifdef LINK_LIBS_IN_SHARED
856 ifdef LOADABLE_MODULE
857 SharedLibKindMessage := "Loadable Module"
858 else
859 SharedLibKindMessage := "Shared Library"
860 endif
861 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
862         $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
863           $(LIBRARYNAME)$(SHLIBEXT)
864         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
865           $(ProjLibsOptions) $(LLVMLibsOptions)
866 else
867 $(LibName.SO): $(ObjectsO) $(LibDir)/.dir
868         $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
869         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
870 endif
871
872 clean-local::
873 ifneq ($(strip $(LibName.SO)),)
874         -$(Verb) $(RM) -f $(LibName.SO)
875 endif
876
877 ifdef NO_INSTALL
878 install-local::
879         $(Echo) Install circumvented with NO_INSTALL
880 uninstall-local::
881         $(Echo) Uninstall circumvented with NO_INSTALL
882 else
883 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
884
885 install-local:: $(DestSharedLib)
886
887 $(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
888         $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
889         $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
890
891 uninstall-local::
892         $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
893         -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
894 endif
895 endif
896
897 #---------------------------------------------------------
898 # Bytecode Library Targets:
899 #   If the user asked for a bytecode library to be built
900 #   with the BYTECODE_LIBRARY variable, then we provide
901 #   targets for building them.
902 #---------------------------------------------------------
903 ifdef BYTECODE_LIBRARY
904 ifeq ($(strip $(LLVMGCC)),)
905 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
906 else
907
908 all-local:: $(LibName.BCA)
909
910 ifdef EXPORTED_SYMBOL_FILE
911 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
912                      -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
913
914 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
915                 $(LLVMToolDir)/llvm-ar
916         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
917           "(internalize)"
918         $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
919         $(Verb) $(RM) -f $@
920         $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
921 else
922 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
923                 $(LLVMToolDir)/llvm-ar
924         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
925         $(Verb) $(RM) -f $@
926         $(Verb) $(LArchive) $@ $(ObjectsBC)
927
928 endif
929
930 clean-local::
931 ifneq ($(strip $(LibName.BCA)),)
932         -$(Verb) $(RM) -f $(LibName.BCA)
933 endif
934
935 ifdef BYTECODE_DESTINATION
936 BytecodeDestDir := $(BYTECODE_DESTINATION)
937 else
938 BytecodeDestDir := $(PROJ_libdir)
939 endif
940
941 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
942
943 install-bytecode-local:: $(DestBytecodeLib)
944
945 ifdef NO_INSTALL
946 install-local::
947         $(Echo) Install circumvented with NO_INSTALL
948 uninstall-local::
949         $(Echo) Uninstall circumvented with NO_INSTALL
950 else
951 install-local:: $(DestBytecodeLib)
952
953 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
954         $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
955         $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
956
957 uninstall-local::
958         $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
959         -$(Verb) $(RM) -f $(DestBytecodeLib)
960 endif
961 endif
962 endif
963
964 #---------------------------------------------------------
965 # ReLinked Library Targets:
966 #   If the user explicitly requests a relinked library with
967 #   BUILD_RELINKED, provide it.  Otherwise, if they specify
968 #   neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
969 #   them one.
970 #---------------------------------------------------------
971 ifndef BUILD_ARCHIVE
972 ifndef DONT_BUILD_RELINKED
973 BUILD_RELINKED = 1
974 endif
975 endif
976
977 ifdef BUILD_RELINKED
978
979 all-local:: $(LibName.O)
980
981 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
982         $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
983         $(Verb) $(Relink) -Wl,-r -nodefaultlibs -nostdlib -nostartfiles -o $@ $(ObjectsO)
984
985 clean-local::
986 ifneq ($(strip $(LibName.O)),)
987         -$(Verb) $(RM) -f $(LibName.O)
988 endif
989
990 ifdef NO_INSTALL
991 install-local::
992         $(Echo) Install circumvented with NO_INSTALL
993 uninstall-local::
994         $(Echo) Uninstall circumvented with NO_INSTALL
995 else
996 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
997
998 install-local:: $(DestRelinkedLib)
999
1000 $(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
1001         $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
1002         $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
1003
1004 uninstall-local::
1005         $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1006         -$(Verb) $(RM) -f $(DestRelinkedLib)
1007 endif
1008 endif
1009
1010 #---------------------------------------------------------
1011 # Archive Library Targets:
1012 #   If the user wanted a regular archive library built,
1013 #   then we provide targets for building them.
1014 #---------------------------------------------------------
1015 ifdef BUILD_ARCHIVE
1016
1017 all-local:: $(LibName.A)
1018
1019 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1020         $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1021         -$(Verb) $(RM) -f $@
1022         $(Verb) $(Archive) $@ $(ObjectsO)
1023         $(Verb) $(Ranlib) $@
1024
1025 clean-local::
1026 ifneq ($(strip $(LibName.A)),)
1027         -$(Verb) $(RM) -f $(LibName.A)
1028 endif
1029
1030 ifdef NO_INSTALL
1031 install-local::
1032         $(Echo) Install circumvented with NO_INSTALL
1033 uninstall-local::
1034         $(Echo) Uninstall circumvented with NO_INSTALL
1035 else
1036 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1037
1038 install-local:: $(DestArchiveLib)
1039
1040 $(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
1041         $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1042         $(Verb) $(MKDIR) $(PROJ_libdir)
1043         $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1044
1045 uninstall-local::
1046         $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1047         -$(Verb) $(RM) -f $(DestArchiveLib)
1048 endif
1049 endif
1050
1051 # endif LIBRARYNAME
1052 endif
1053
1054 ###############################################################################
1055 # Tool Build Rules: Build executable tool based on TOOLNAME option
1056 ###############################################################################
1057
1058 ifdef TOOLNAME
1059
1060 #---------------------------------------------------------
1061 # Set up variables for building a tool.
1062 #---------------------------------------------------------
1063 ifdef EXAMPLE_TOOL
1064 ToolBuildPath   := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1065 else
1066 ToolBuildPath   := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1067 endif
1068
1069 #---------------------------------------------------------
1070 # Prune Exports
1071 #---------------------------------------------------------
1072
1073 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1074 # not exporting all of the weak symbols from the binary.  This reduces dyld
1075 # startup time by 4x on darwin in some cases.
1076 ifdef TOOL_NO_EXPORTS
1077 ifeq ($(OS),Darwin)
1078 LD.Flags += -Wl,-exported_symbol -Wl,_main
1079 endif
1080
1081 ifeq ($(OS), $(filter $(OS), Linux NetBSD FreeBSD))
1082 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/ExportMap.map
1083 endif
1084 endif
1085
1086
1087 #---------------------------------------------------------
1088 # Provide targets for building the tools
1089 #---------------------------------------------------------
1090 all-local:: $(ToolBuildPath)
1091
1092 clean-local::
1093 ifneq ($(strip $(ToolBuildPath)),)
1094         -$(Verb) $(RM) -f $(ToolBuildPath)
1095 endif
1096
1097 ifdef EXAMPLE_TOOL
1098 $(ToolBuildPath): $(ExmplDir)/.dir
1099 else
1100 $(ToolBuildPath): $(ToolDir)/.dir
1101 endif
1102
1103 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1104         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1105         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1106         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1107         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1108           $(StripWarnMsg)
1109
1110 ifdef NO_INSTALL
1111 install-local::
1112         $(Echo) Install circumvented with NO_INSTALL
1113 uninstall-local::
1114         $(Echo) Uninstall circumvented with NO_INSTALL
1115 else
1116 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1117
1118 install-local:: $(DestTool)
1119
1120 $(DestTool): $(ToolBuildPath) $(PROJ_bindir)
1121         $(Echo) Installing $(BuildMode) $(DestTool)
1122         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1123
1124 uninstall-local::
1125         $(Echo) Uninstalling $(BuildMode) $(DestTool)
1126         -$(Verb) $(RM) -f $(DestTool)
1127 endif
1128 endif
1129
1130 ###############################################################################
1131 # Object Build Rules: Build object files based on sources
1132 ###############################################################################
1133
1134 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1135 ifeq ($(OS),HP-UX)
1136   DISABLE_AUTO_DEPENDENCIES=1
1137 endif
1138
1139 # Provide rule sets for when dependency generation is enabled
1140 ifndef DISABLE_AUTO_DEPENDENCIES
1141
1142 #---------------------------------------------------------
1143 # Create .o files in the ObjDir directory from the .cpp and .c files...
1144 #---------------------------------------------------------
1145
1146 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1147          -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1148
1149 # If the build succeeded, move the dependency file over.  If it failed, put an
1150 # empty file there.
1151 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1152                   else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1153
1154 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1155         $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1156         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1157                 $(DEPEND_MOVEFILE)
1158
1159 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1160         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1161         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1162                 $(DEPEND_MOVEFILE)
1163
1164 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1165         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1166         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1167                 $(DEPEND_MOVEFILE)
1168
1169 #---------------------------------------------------------
1170 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1171 #---------------------------------------------------------
1172
1173 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1174         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1175         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1176                               $< -o $@ -S -emit-llvm ; \
1177         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1178         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1179         $(call UPGRADE_MSG,$@)
1180         $(call UPGRADE_LL,$@)
1181
1182 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1183         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1184         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1185                               $< -o $@ -S -emit-llvm ; \
1186         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1187         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1188         $(call UPGRADE_MSG,$@)
1189         $(call UPGRADE_LL,$@)
1190
1191 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1192         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1193         $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1194                             $< -o $@ -S -emit-llvm ; \
1195         then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1196         else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1197         $(call UPGRADE_MSG,$@)
1198         $(call UPGRADE_LL,$@)
1199
1200 # Provide alternate rule sets if dependencies are disabled
1201 else
1202
1203 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1204         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1205         $(Compile.CXX) $< -o $@
1206
1207 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1208         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1209         $(Compile.CXX) $< -o $@
1210
1211 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1212         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1213         $(Compile.C) $< -o $@
1214
1215 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1216         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1217         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1218         $(call UPGRADE_MSG,$@)
1219         $(call UPGRADE_LL,$@)
1220
1221 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1222         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1223         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1224         $(call UPGRADE_MSG,$@)
1225         $(call UPGRADE_LL,$@)
1226
1227 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1228         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1229         $(BCCompile.C) $< -o $@ -S -emit-llvm
1230         $(call UPGRADE_MSG,@)
1231         $(call UPGRADE_LL,@)
1232
1233 endif
1234
1235
1236 ## Rules for building preprocessed (.i/.ii) outputs.
1237 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1238         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1239         $(Verb) $(Preprocess.CXX) $< -o $@
1240
1241 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1242         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1243         $(Verb) $(Preprocess.CXX) $< -o $@
1244
1245 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1246         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1247         $(Verb) $(Preprocess.C) $< -o $@
1248
1249
1250 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1251         $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1252         $(Compile.CXX) $< -o $@ -S
1253
1254 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1255         $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1256         $(Compile.CXX) $< -o $@ -S
1257
1258 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1259         $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1260         $(Compile.C) $< -o $@ -S
1261
1262
1263 # make the C and C++ compilers strip debug info out of bytecode libraries.
1264 ifdef DEBUG_RUNTIME
1265 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1266         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1267         $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1268 else
1269 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1270         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1271         $(Verb) $(LLVMAS) $< -o - | \
1272            $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1273 endif
1274
1275
1276 #---------------------------------------------------------
1277 # Provide rule to build .bc files from .ll sources,
1278 # regardless of dependencies
1279 #---------------------------------------------------------
1280 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1281         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1282         $(Verb) $(LLVMAS) $< -f -o $@
1283
1284 ###############################################################################
1285 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1286 ###############################################################################
1287
1288 ifdef TARGET
1289
1290 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1291            $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1292            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1293            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1294            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1295            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1296            $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1297 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1298 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1299 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1300
1301 # All of these files depend on tblgen and the .td files.
1302 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1303
1304 # INCFiles rule: All of the tblgen generated files are emitted to
1305 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1306 # us to only "touch" the real file if the contents of it change.  IOW, if
1307 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1308 # dependencies of the .inc files are, unless the contents of the .inc file
1309 # changes.
1310 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1311         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1312
1313 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1314 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1315         $(Echo) "Building $(<F) register names with tblgen"
1316         $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1317
1318 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1319 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1320         $(Echo) "Building $(<F) register information header with tblgen"
1321         $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1322
1323 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1324 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1325         $(Echo) "Building $(<F) register info implementation with tblgen"
1326         $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1327
1328 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1329 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1330         $(Echo) "Building $(<F) instruction names with tblgen"
1331         $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1332
1333 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1334 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1335         $(Echo) "Building $(<F) instruction information with tblgen"
1336         $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1337
1338 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1339 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1340         $(Echo) "Building $(<F) assembly writer with tblgen"
1341         $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1342
1343 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1344 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1345         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1346         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1347
1348 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1349 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1350         $(Echo) "Building $(<F) code emitter with tblgen"
1351         $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1352
1353 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1354 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1355         $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1356         $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1357
1358 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1359 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1360         $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1361         $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1362
1363 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1364 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1365         $(Echo) "Building $(<F) subtarget information with tblgen"
1366         $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1367
1368 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1369 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1370         $(Echo) "Building $(<F) calling convention information with tblgen"
1371         $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1372
1373 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1374 $(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1375         $(Echo) "Building $(<F) calling convention information with tblgen"
1376         $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1377
1378 clean-local::
1379         -$(Verb) $(RM) -f $(INCFiles)
1380
1381 endif
1382
1383 ###############################################################################
1384 # OTHER RULES: Other rules needed
1385 ###############################################################################
1386
1387 # To create postscript files from dot files...
1388 ifneq ($(DOT),false)
1389 %.ps: %.dot
1390         $(DOT) -Tps < $< > $@
1391 else
1392 %.ps: %.dot
1393         $(Echo) "Cannot build $@: The program dot is not installed"
1394 endif
1395
1396 # This rules ensures that header files that are removed still have a rule for
1397 # which they can be "generated."  This allows make to ignore them and
1398 # reproduce the dependency lists.
1399 %.h:: ;
1400 %.hpp:: ;
1401
1402 # Define clean-local to clean the current directory. Note that this uses a
1403 # very conservative approach ensuring that empty variables do not cause
1404 # errors or disastrous removal.
1405 clean-local::
1406 ifneq ($(strip $(ObjRootDir)),)
1407         -$(Verb) $(RM) -rf $(ObjRootDir)
1408 endif
1409         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1410 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1411         -$(Verb) $(RM) -f *$(SHLIBEXT)
1412 endif
1413
1414 clean-all-local::
1415         -$(Verb) $(RM) -rf Debug Release Profile
1416
1417
1418 ###############################################################################
1419 # DEPENDENCIES: Include the dependency files if we should
1420 ###############################################################################
1421 ifndef DISABLE_AUTO_DEPENDENCIES
1422
1423 # If its not one of the cleaning targets
1424 ifndef IS_CLEANING_TARGET
1425
1426 # Get the list of dependency files
1427 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1428 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1429
1430 -include $(DependFiles) ""
1431
1432 endif
1433
1434 endif
1435
1436 ###############################################################################
1437 # CHECK: Running the test suite
1438 ###############################################################################
1439
1440 check::
1441         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1442           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1443             $(EchoCmd) Running test suite ; \
1444             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1445               TESTSUITE=$(TESTSUITE) ; \
1446           else \
1447             $(EchoCmd) No Makefile in test directory ; \
1448           fi ; \
1449         else \
1450           $(EchoCmd) No test directory ; \
1451         fi
1452
1453 ###############################################################################
1454 # UNITTESTS: Running the unittests test suite
1455 ###############################################################################
1456
1457 unittests::
1458         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1459           if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1460             $(EchoCmd) Running unittests test suite ; \
1461             $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1462           else \
1463             $(EchoCmd) No Makefile in unittests directory ; \
1464           fi ; \
1465         else \
1466           $(EchoCmd) No unittests directory ; \
1467         fi
1468
1469 ###############################################################################
1470 # DISTRIBUTION: Handle construction of a distribution tarball
1471 ###############################################################################
1472
1473 #------------------------------------------------------------------------
1474 # Define distribution related variables
1475 #------------------------------------------------------------------------
1476 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1477 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1478 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1479 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1480 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1481 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1482 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1483                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1484                Makefile.config.in configure autoconf
1485 DistOther   := $(notdir $(wildcard \
1486                $(PROJ_SRC_DIR)/*.h \
1487                $(PROJ_SRC_DIR)/*.td \
1488                $(PROJ_SRC_DIR)/*.def \
1489                $(PROJ_SRC_DIR)/*.ll \
1490                $(PROJ_SRC_DIR)/*.in))
1491 DistSubDirs := $(SubDirs)
1492 DistSources  = $(Sources) $(EXTRA_DIST)
1493 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1494
1495 #------------------------------------------------------------------------
1496 # We MUST build distribution with OBJ_DIR != SRC_DIR
1497 #------------------------------------------------------------------------
1498 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1499 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1500         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1501
1502 else
1503
1504 #------------------------------------------------------------------------
1505 # Prevent attempt to run dist targets from anywhere but the top level
1506 #------------------------------------------------------------------------
1507 ifneq ($(LEVEL),.)
1508 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1509         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1510 else
1511
1512 #------------------------------------------------------------------------
1513 # Provide the top level targets
1514 #------------------------------------------------------------------------
1515
1516 dist-gzip:: $(DistTarGZip)
1517
1518 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1519         $(Echo) Packing gzipped distribution tar file.
1520         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1521           $(GZIP) -c > "$(DistTarGZip)"
1522
1523 dist-bzip2:: $(DistTarBZ2)
1524
1525 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1526         $(Echo) Packing bzipped distribution tar file.
1527         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1528           $(BZIP2) -c >$(DistTarBZ2)
1529
1530 dist-zip:: $(DistZip)
1531
1532 $(DistZip) : $(TopDistDir)/.makedistdir
1533         $(Echo) Packing zipped distribution file.
1534         $(Verb) rm -f $(DistZip)
1535         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1536
1537 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1538         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1539
1540 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1541
1542 dist-check:: $(DistTarGZip)
1543         $(Echo) Checking distribution tar file.
1544         $(Verb) if test -d $(DistCheckDir) ; then \
1545           $(RM) -rf $(DistCheckDir) ; \
1546         fi
1547         $(Verb) $(MKDIR) $(DistCheckDir)
1548         $(Verb) cd $(DistCheckDir) && \
1549           $(MKDIR) $(DistCheckDir)/build && \
1550           $(MKDIR) $(DistCheckDir)/install && \
1551           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1552           cd build && \
1553           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1554             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1555           $(MAKE) all && \
1556           $(MAKE) check && \
1557           $(MAKE) unittests && \
1558           $(MAKE) install && \
1559           $(MAKE) uninstall && \
1560           $(MAKE) dist-clean && \
1561           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1562
1563 dist-clean::
1564         $(Echo) Cleaning distribution files
1565         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1566           $(DistCheckDir)
1567
1568 endif
1569
1570 #------------------------------------------------------------------------
1571 # Provide the recursive distdir target for building the distribution directory
1572 #------------------------------------------------------------------------
1573 distdir: $(DistDir)/.makedistdir
1574 $(DistDir)/.makedistdir: $(DistSources)
1575         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1576           if test -d "$(DistDir)" ; then \
1577             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
1578               exit 1 ; \
1579           fi ; \
1580           $(EchoCmd) Removing old $(DistDir) ; \
1581           $(RM) -rf $(DistDir); \
1582           $(EchoCmd) Making 'all' to verify build ; \
1583           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1584         fi
1585         $(Echo) Building Distribution Directory $(DistDir)
1586         $(Verb) $(MKDIR) $(DistDir)
1587         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1588         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1589         for file in $(DistFiles) ; do \
1590           case "$$file" in \
1591             $(PROJ_SRC_DIR)/*) \
1592               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1593               ;; \
1594             $(PROJ_SRC_ROOT)/*) \
1595               file=`echo "$$file" | \
1596                 sed "s#^$$srcrootstrip/##"` \
1597               ;; \
1598           esac; \
1599           if test -f "$(PROJ_SRC_DIR)/$$file" || \
1600              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1601             from_dir="$(PROJ_SRC_DIR)" ; \
1602           elif test -f "$$file" || test -d "$$file" ; then \
1603             from_dir=. ; \
1604           fi ; \
1605           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1606           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1607             to_dir="$(DistDir)/$$dir"; \
1608             $(MKDIR) "$$to_dir" ; \
1609           else \
1610             to_dir="$(DistDir)"; \
1611           fi; \
1612           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1613           if test -n "$$mid_dir" ; then \
1614             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1615           fi ; \
1616           if test -d "$$from_dir/$$file"; then \
1617             if test -d "$(PROJ_SRC_DIR)/$$file" && \
1618                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1619                cd $(PROJ_SRC_DIR) ; \
1620                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1621                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1622                cd $(PROJ_OBJ_DIR) ; \
1623             else \
1624                cd $$from_dir ; \
1625                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1626                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1627                cd $(PROJ_OBJ_DIR) ; \
1628             fi; \
1629           elif test -f "$$from_dir/$$file" ; then \
1630             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1631           elif test -L "$$from_dir/$$file" ; then \
1632             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1633           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1634             $(EchoCmd) "===== WARNING: Distribution Source " \
1635               "$$from_dir/$$file Not Found!" ; \
1636           elif test "$(Verb)" != '@' ; then \
1637             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1638           fi; \
1639         done
1640         $(Verb) for subdir in $(DistSubDirs) ; do \
1641           if test "$$subdir" \!= "." ; then \
1642             new_distdir="$(DistDir)/$$subdir" ; \
1643             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1644             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1645               DistDir="$$new_distdir" distdir ) || exit 1; \
1646           fi; \
1647         done
1648         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1649           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1650           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1651                                   -name .svn \) -print` ;\
1652           $(MAKE) dist-hook ; \
1653           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1654             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1655             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1656             -o ! -type d ! -perm -444 -exec \
1657               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1658             || chmod -R a+r $(DistDir) ; \
1659         fi
1660
1661 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1662 # defined by user.
1663 dist-hook::
1664
1665 endif
1666
1667 ###############################################################################
1668 # TOP LEVEL - targets only to apply at the top level directory
1669 ###############################################################################
1670
1671 ifeq ($(LEVEL),.)
1672
1673 #------------------------------------------------------------------------
1674 # Install support for the project's include files:
1675 #------------------------------------------------------------------------
1676 ifdef NO_INSTALL
1677 install-local::
1678         $(Echo) Install circumvented with NO_INSTALL
1679 uninstall-local::
1680         $(Echo) Uninstall circumvented with NO_INSTALL
1681 else
1682 install-local::
1683         $(Echo) Installing include files
1684         $(Verb) $(MKDIR) $(PROJ_includedir)
1685         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1686           cd $(PROJ_SRC_ROOT)/include && \
1687           for  hdr in `find . -type f '!' '(' -name '*~' \
1688               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1689               grep -v .svn` ; do \
1690             instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1691             if test \! -d "$$instdir" ; then \
1692               $(EchoCmd) Making install directory $$instdir ; \
1693               $(MKDIR) $$instdir ;\
1694             fi ; \
1695             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1696           done ; \
1697         fi
1698 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1699         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1700           cd $(PROJ_OBJ_ROOT)/include && \
1701           for hdr in `find . -type f -print | grep -v CVS` ; do \
1702             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1703           done ; \
1704         fi
1705 endif
1706
1707 uninstall-local::
1708         $(Echo) Uninstalling include files
1709         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1710           cd $(PROJ_SRC_ROOT)/include && \
1711             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1712               '!' '(' -name '*~' -o -name '.#*' \
1713         -o -name '*.in' ')' -print ')' | \
1714         grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1715           cd $(PROJ_SRC_ROOT)/include && \
1716             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1717       -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1718         fi
1719 endif
1720 endif
1721
1722 check-line-length:
1723         @echo searching for overlength lines in files: $(Sources)
1724         @echo
1725         @echo
1726         egrep -n '.{81}' $(Sources) /dev/null
1727
1728 check-for-tabs:
1729         @echo searching for tabs in files: $(Sources)
1730         @echo
1731         @echo
1732         egrep -n '      ' $(Sources) /dev/null
1733
1734 check-footprint:
1735         @ls -l $(LibDir) | awk '\
1736           BEGIN { sum = 0; } \
1737                 { sum += $$5; } \
1738           END   { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1739         @ls -l $(ToolDir) | awk '\
1740           BEGIN { sum = 0; } \
1741                 { sum += $$5; } \
1742           END   { printf("Programs:  %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1743 #------------------------------------------------------------------------
1744 # Print out the directories used for building
1745 #------------------------------------------------------------------------
1746 printvars::
1747         $(Echo) "BuildMode    : " '$(BuildMode)'
1748         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1749         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1750         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1751         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1752         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1753         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1754         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
1755         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
1756         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
1757         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
1758         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
1759         $(Echo) "UserTargets  : " '$(UserTargets)'
1760         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1761         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1762         $(Echo) "ObjDir       : " '$(ObjDir)'
1763         $(Echo) "LibDir       : " '$(LibDir)'
1764         $(Echo) "ToolDir      : " '$(ToolDir)'
1765         $(Echo) "ExmplDir     : " '$(ExmplDir)'
1766         $(Echo) "Sources      : " '$(Sources)'
1767         $(Echo) "TDFiles      : " '$(TDFiles)'
1768         $(Echo) "INCFiles     : " '$(INCFiles)'
1769         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
1770         $(Echo) "PreConditions: " '$(PreConditions)'
1771         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
1772         $(Echo) "Compile.C    : " '$(Compile.C)'
1773         $(Echo) "Archive      : " '$(Archive)'
1774         $(Echo) "YaccFiles    : " '$(YaccFiles)'
1775         $(Echo) "LexFiles     : " '$(LexFiles)'
1776         $(Echo) "Module       : " '$(Module)'
1777         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1778         $(Echo) "SubDirs      : " '$(SubDirs)'
1779         $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1780         $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
1781
1782 ###
1783 # Debugging
1784
1785 # General debugging rule, use 'make print-XXX' to print the
1786 # definition, value and origin of XXX.
1787 print-%: 
1788         $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))