Remove libtool.
[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 ifndef ($(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   SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress -bundle
448 else
449   SharedLinkOptions=-shared
450 endif
451
452 #----------------------------------------------------------
453 # Options To Invoke Tools
454 #----------------------------------------------------------
455
456 CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \
457                      -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS)
458
459 ifeq ($(OS),HP-UX)
460   CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
461 endif
462
463 # If we are building a universal binary on Mac OS/X, pass extra options.  This
464 # is useful to people that want to link the LLVM libraries into their universal
465 # apps.
466 #
467 # The following can be optionally specified:
468 #   UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
469 #      For Mac OS/X 10.4 Intel machines, the traditional one is:
470 #      UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
471 #   UNIVERSAL_ARCH can be optionally specified to be a list of architectures
472 #      to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64".  This defaults to
473 #      i386/ppc only.
474 ifdef UNIVERSAL
475   ifndef UNIVERSAL_ARCH
476     UNIVERSAL_ARCH := i386 ppc
477   endif
478   UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
479   CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
480   Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %)
481   ifdef UNIVERSAL_SDK_PATH
482     CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
483     Relink.Flags      += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH)
484   endif
485
486   # Building universal cannot compute dependencies automatically.
487   DISABLE_AUTO_DEPENDENCIES=1
488 endif
489
490 ifeq ($(OS),SunOS)
491 CPP.BaseFlags += -include llvm/System/Solaris.h
492 endif
493
494 LD.Flags      += -L$(LibDir) -L$(LLVMLibDir)
495 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
496 # All -I flags should go here, so that they don't confuse llvm-config.
497 CPP.Flags     += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
498                  $(patsubst %,-I%/include,\
499                  $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
500                  $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
501                  $(CPP.BaseFlags)
502
503  ifeq ($(BUILD_COMPONENT), 1)
504   Compile.C     = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
505   Compile.CXX   = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
506   Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
507   Link          = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
508                   $(LD.Flags) $(Strip)
509   Relink        = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
510                   $(Relink.Flags)
511 else
512   Compile.C     = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c
513   Compile.CXX   = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c
514   Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
515   Link          = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
516                   $(LD.Flags) $(Strip)
517   Relink        = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \
518                   $(Relink.Flags)
519 endif
520
521 BCCompile.C   = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts)
522 Preprocess.C  = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E
523
524 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \
525                 $(CompileCommonOpts)
526
527 ProgInstall   = $(INSTALL) $(Install.StripFlag) -m 0755
528 ScriptInstall = $(INSTALL) -m 0755
529 DataInstall   = $(INSTALL) -m 0644
530
531 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
532 # paths. In this case, the SYSPATH function (defined in
533 # Makefile.config) transforms Unix paths into Windows paths.
534 TableGen      = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
535                 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
536                 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
537                 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
538
539 Archive       = $(AR) $(AR.Flags)
540 LArchive      = $(LLVMToolDir)/llvm-ar rcsf
541 ifdef RANLIB
542 Ranlib        = $(RANLIB)
543 else
544 Ranlib        = ranlib
545 endif
546
547 #----------------------------------------------------------
548 # Get the list of source files and compute object file
549 # names from them.
550 #----------------------------------------------------------
551
552 ifndef SOURCES
553   Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
554              $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
555 else
556   Sources := $(SOURCES)
557 endif
558
559 ifdef BUILT_SOURCES
560 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
561 endif
562
563 BaseNameSources := $(sort $(basename $(Sources)))
564
565 ObjectsO  := $(BaseNameSources:%=$(ObjDir)/%.o)
566 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
567
568 ###############################################################################
569 # DIRECTORIES: Handle recursive descent of directory structure
570 ###############################################################################
571
572 #---------------------------------------------------------
573 # Provide rules to make install dirs. This must be early
574 # in the file so they get built before dependencies
575 #---------------------------------------------------------
576
577 $(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
578         $(Verb) $(MKDIR) $@
579
580 # To create other directories, as needed, and timestamp their creation
581 %/.dir:
582         $(Verb) $(MKDIR) $* > /dev/null
583         $(Verb) $(DATE) > $@
584
585 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
586 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
587
588 #---------------------------------------------------------
589 # Handle the DIRS options for sequential construction
590 #---------------------------------------------------------
591
592 SubDirs :=
593 ifdef DIRS
594 SubDirs += $(DIRS)
595
596 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
597 $(RecursiveTargets)::
598         $(Verb) for dir in $(DIRS); do \
599           if [ ! -f $$dir/Makefile ]; then \
600             $(MKDIR) $$dir; \
601             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
602           fi; \
603           ($(MAKE) -C $$dir $@ ) || exit 1; \
604         done
605 else
606 $(RecursiveTargets)::
607         $(Verb) for dir in $(DIRS); do \
608           ($(MAKE) -C $$dir $@ ) || exit 1; \
609         done
610 endif
611
612 endif
613
614 #---------------------------------------------------------
615 # Handle the EXPERIMENTAL_DIRS options ensuring success
616 # after each directory is built.
617 #---------------------------------------------------------
618 ifdef EXPERIMENTAL_DIRS
619 $(RecursiveTargets)::
620         $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
621           if [ ! -f $$dir/Makefile ]; then \
622             $(MKDIR) $$dir; \
623             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
624           fi; \
625           ($(MAKE) -C $$dir $@ ) || exit 0; \
626         done
627 endif
628
629 #-----------------------------------------------------------
630 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
631 #-----------------------------------------------------------
632 ifdef OPTIONAL_PARALLEL_DIRS
633   PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
634 endif
635
636 #-----------------------------------------------------------
637 # Handle the PARALLEL_DIRS options for parallel construction
638 #-----------------------------------------------------------
639 ifdef PARALLEL_DIRS
640
641 SubDirs += $(PARALLEL_DIRS)
642
643 # Unfortunately, this list must be maintained if new recursive targets are added
644 all      :: $(addsuffix /.makeall      ,$(PARALLEL_DIRS))
645 clean    :: $(addsuffix /.makeclean    ,$(PARALLEL_DIRS))
646 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
647 install  :: $(addsuffix /.makeinstall  ,$(PARALLEL_DIRS))
648 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
649 install-bytecode  :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
650
651 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
652
653 $(ParallelTargets) :
654         $(Verb) if [ ! -f $(@D)/Makefile ]; then \
655           $(MKDIR) $(@D); \
656           $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
657         fi; \
658         $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
659 endif
660
661 #---------------------------------------------------------
662 # Handle the OPTIONAL_DIRS options for directores that may
663 # or may not exist.
664 #---------------------------------------------------------
665 ifdef OPTIONAL_DIRS
666
667 SubDirs += $(OPTIONAL_DIRS)
668
669 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
670 $(RecursiveTargets)::
671         $(Verb) for dir in $(OPTIONAL_DIRS); do \
672           if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
673             if [ ! -f $$dir/Makefile ]; then \
674               $(MKDIR) $$dir; \
675               $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
676             fi; \
677             ($(MAKE) -C$$dir $@ ) || exit 1; \
678           fi \
679         done
680 else
681 $(RecursiveTargets)::
682         $(Verb) for dir in $(OPTIONAL_DIRS); do \
683           ($(MAKE) -C$$dir $@ ) || exit 1; \
684         done
685 endif
686 endif
687
688 #---------------------------------------------------------
689 # Handle the CONFIG_FILES options
690 #---------------------------------------------------------
691 ifdef CONFIG_FILES
692
693 ifdef NO_INSTALL
694 install-local::
695         $(Echo) Install circumvented with NO_INSTALL
696 uninstall-local::
697         $(Echo) UnInstall circumvented with NO_INSTALL
698 else
699 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
700         $(Echo) Installing Configuration Files To $(PROJ_etcdir)
701         $(Verb)for file in $(CONFIG_FILES); do \
702           if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
703             $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
704           elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
705             $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
706           else \
707             $(ECHO) Error: cannot find config file $${file}. ; \
708           fi \
709         done
710
711 uninstall-local::
712         $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
713         $(Verb)for file in $(CONFIG_FILES); do \
714           $(RM) -f $(PROJ_etcdir)/$${file} ; \
715         done
716 endif
717
718 endif
719
720 ###############################################################################
721 # Set up variables for building libararies
722 ###############################################################################
723
724 #---------------------------------------------------------
725 # Define various command line options pertaining to the
726 # libraries needed when linking. There are "Proj" libs
727 # (defined by the user's project) and "LLVM" libs (defined
728 # by the LLVM project).
729 #---------------------------------------------------------
730
731 ifdef USEDLIBS
732 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
733 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o,  $(ProjLibsOptions))
734 ProjUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
735 ProjLibsPaths   := $(addprefix $(LibDir)/,$(ProjUsedLibs))
736 endif
737
738 ifdef LLVMLIBS
739 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
740 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
741 LLVMUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
742 LLVMLibsPaths   := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
743 endif
744
745 ifndef IS_CLEANING_TARGET
746 ifdef LINK_COMPONENTS
747
748 # If LLVM_CONFIG doesn't exist, build it.  This can happen if you do a make
749 # clean in tools, then do a make in tools (instead of at the top level).
750 $(LLVM_CONFIG):
751         @echo "*** llvm-config doesn't exist - rebuilding it."
752         @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
753
754 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
755
756 ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs     $(LINK_COMPONENTS))
757 ProjLibsPaths   += $(LLVM_CONFIG) \
758                   $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
759 endif
760 endif
761
762 ###############################################################################
763 # Library Build Rules: Four ways to build a library
764 ###############################################################################
765
766 #---------------------------------------------------------
767 # Bytecode Module Targets:
768 #   If the user set MODULE_NAME then they want to build a
769 #   bytecode module from the sources. We compile all the
770 #   sources and link it together into a single bytecode
771 #   module.
772 #---------------------------------------------------------
773
774 ifdef MODULE_NAME
775 ifeq ($(strip $(LLVMGCC)),)
776 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
777 else
778
779 Module     := $(LibDir)/$(MODULE_NAME).bc
780 LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
781
782
783 ifdef EXPORTED_SYMBOL_FILE
784 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
785 endif
786
787 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
788         $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
789         $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
790
791 all-local:: $(Module)
792
793 clean-local::
794 ifneq ($(strip $(Module)),)
795         -$(Verb) $(RM) -f $(Module)
796 endif
797
798 ifdef BYTECODE_DESTINATION
799 ModuleDestDir := $(BYTECODE_DESTINATION)
800 else
801 ModuleDestDir := $(PROJ_libdir)
802 endif
803
804 ifdef NO_INSTALL
805 install-local::
806         $(Echo) Install circumvented with NO_INSTALL
807 uninstall-local::
808         $(Echo) Uninstall circumvented with NO_INSTALL
809 else
810 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
811
812 install-module:: $(DestModule)
813 install-local:: $(DestModule)
814
815 $(DestModule): $(ModuleDestDir) $(Module)
816         $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
817         $(Verb) $(DataInstall) $(Module) $(DestModule)
818
819 uninstall-local::
820         $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
821         -$(Verb) $(RM) -f $(DestModule)
822 endif
823
824 endif
825 endif
826
827 # if we're building a library ...
828 ifdef LIBRARYNAME
829
830 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
831 LIBRARYNAME := $(strip $(LIBRARYNAME))
832 ifdef LOADABLE_MODULE
833 LibName.A  := $(LibDir)/$(LIBRARYNAME).a
834 LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
835 else
836 LibName.A  := $(LibDir)/lib$(LIBRARYNAME).a
837 LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
838 endif
839 LibName.O  := $(LibDir)/$(LIBRARYNAME).o
840 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
841
842 #---------------------------------------------------------
843 # Shared Library Targets:
844 #   If the user asked for a shared library to be built
845 #   with the SHARED_LIBRARY variable, then we provide
846 #   targets for building them.
847 #---------------------------------------------------------
848 ifdef SHARED_LIBRARY
849
850 all-local:: $(LibName.SO)
851
852 ifdef LINK_LIBS_IN_SHARED
853 ifdef LOADABLE_MODULE
854 SharedLibKindMessage := "Loadable Module"
855 else
856 SharedLibKindMessage := "Shared Library"
857 endif
858 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
859         $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
860           $(LIBRARYNAME)$(SHLIBEXT)
861         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
862           $(ProjLibsOptions) $(LLVMLibsOptions)
863 else
864 $(LibName.SO): $(ObjectsO) $(LibDir)/.dir
865         $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
866         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
867 endif
868
869 clean-local::
870 ifneq ($(strip $(LibName.SO)),)
871         -$(Verb) $(RM) -f $(LibName.SO)
872 endif
873
874 ifdef NO_INSTALL
875 install-local::
876         $(Echo) Install circumvented with NO_INSTALL
877 uninstall-local::
878         $(Echo) Uninstall circumvented with NO_INSTALL
879 else
880 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
881
882 install-local:: $(DestSharedLib)
883
884 $(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
885         $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
886         $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
887
888 uninstall-local::
889         $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
890         -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
891 endif
892 endif
893
894 #---------------------------------------------------------
895 # Bytecode Library Targets:
896 #   If the user asked for a bytecode library to be built
897 #   with the BYTECODE_LIBRARY variable, then we provide
898 #   targets for building them.
899 #---------------------------------------------------------
900 ifdef BYTECODE_LIBRARY
901 ifeq ($(strip $(LLVMGCC)),)
902 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
903 else
904
905 all-local:: $(LibName.BCA)
906
907 ifdef EXPORTED_SYMBOL_FILE
908 BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
909                      -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
910
911 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
912                 $(LLVMToolDir)/llvm-ar
913         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
914           "(internalize)"
915         $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
916         $(Verb) $(RM) -f $@
917         $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
918 else
919 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
920                 $(LLVMToolDir)/llvm-ar
921         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
922         $(Verb) $(RM) -f $@
923         $(Verb) $(LArchive) $@ $(ObjectsBC)
924
925 endif
926
927 clean-local::
928 ifneq ($(strip $(LibName.BCA)),)
929         -$(Verb) $(RM) -f $(LibName.BCA)
930 endif
931
932 ifdef BYTECODE_DESTINATION
933 BytecodeDestDir := $(BYTECODE_DESTINATION)
934 else
935 BytecodeDestDir := $(PROJ_libdir)
936 endif
937
938 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
939
940 install-bytecode-local:: $(DestBytecodeLib)
941
942 ifdef NO_INSTALL
943 install-local::
944         $(Echo) Install circumvented with NO_INSTALL
945 uninstall-local::
946         $(Echo) Uninstall circumvented with NO_INSTALL
947 else
948 install-local:: $(DestBytecodeLib)
949
950 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
951         $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
952         $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
953
954 uninstall-local::
955         $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
956         -$(Verb) $(RM) -f $(DestBytecodeLib)
957 endif
958 endif
959 endif
960
961 #---------------------------------------------------------
962 # ReLinked Library Targets:
963 #   If the user explicitly requests a relinked library with
964 #   BUILD_RELINKED, provide it.  Otherwise, if they specify
965 #   neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
966 #   them one.
967 #---------------------------------------------------------
968 ifndef BUILD_ARCHIVE
969 ifndef DONT_BUILD_RELINKED
970 BUILD_RELINKED = 1
971 endif
972 endif
973
974 ifdef BUILD_RELINKED
975
976 all-local:: $(LibName.O)
977
978 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
979         $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
980         $(Verb) $(Relink) -Wl,-r -nodefaultlibs -nostdlibs -nostartfiles -o $@ $(ObjectsO)
981
982 clean-local::
983 ifneq ($(strip $(LibName.O)),)
984         -$(Verb) $(RM) -f $(LibName.O)
985 endif
986
987 ifdef NO_INSTALL
988 install-local::
989         $(Echo) Install circumvented with NO_INSTALL
990 uninstall-local::
991         $(Echo) Uninstall circumvented with NO_INSTALL
992 else
993 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
994
995 install-local:: $(DestRelinkedLib)
996
997 $(DestRelinkedLib): $(LibName.O) $(PROJ_libdir)
998         $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
999         $(Verb) $(INSTALL) $(LibName.O) $(DestRelinkedLib)
1000
1001 uninstall-local::
1002         $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
1003         -$(Verb) $(RM) -f $(DestRelinkedLib)
1004 endif
1005 endif
1006
1007 #---------------------------------------------------------
1008 # Archive Library Targets:
1009 #   If the user wanted a regular archive library built,
1010 #   then we provide targets for building them.
1011 #---------------------------------------------------------
1012 ifdef BUILD_ARCHIVE
1013
1014 all-local:: $(LibName.A)
1015
1016 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1017         $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1018         -$(Verb) $(RM) -f $@
1019         $(Verb) $(Archive) $@ $(ObjectsO)
1020         $(Verb) $(Ranlib) $@
1021
1022 clean-local::
1023 ifneq ($(strip $(LibName.A)),)
1024         -$(Verb) $(RM) -f $(LibName.A)
1025 endif
1026
1027 ifdef NO_INSTALL
1028 install-local::
1029         $(Echo) Install circumvented with NO_INSTALL
1030 uninstall-local::
1031         $(Echo) Uninstall circumvented with NO_INSTALL
1032 else
1033 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
1034
1035 install-local:: $(DestArchiveLib)
1036
1037 $(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
1038         $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1039         $(Verb) $(MKDIR) $(PROJ_libdir)
1040         $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1041
1042 uninstall-local::
1043         $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1044         -$(Verb) $(RM) -f $(DestArchiveLib)
1045 endif
1046 endif
1047
1048 # endif LIBRARYNAME
1049 endif
1050
1051 ###############################################################################
1052 # Tool Build Rules: Build executable tool based on TOOLNAME option
1053 ###############################################################################
1054
1055 ifdef TOOLNAME
1056
1057 #---------------------------------------------------------
1058 # Set up variables for building a tool.
1059 #---------------------------------------------------------
1060 ifdef EXAMPLE_TOOL
1061 ToolBuildPath   := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
1062 else
1063 ToolBuildPath   := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
1064 endif
1065
1066 #---------------------------------------------------------
1067 # Provide targets for building the tools
1068 #---------------------------------------------------------
1069 all-local:: $(ToolBuildPath)
1070
1071 clean-local::
1072 ifneq ($(strip $(ToolBuildPath)),)
1073         -$(Verb) $(RM) -f $(ToolBuildPath)
1074 endif
1075
1076 ifdef EXAMPLE_TOOL
1077 $(ToolBuildPath): $(ExmplDir)/.dir
1078 else
1079 $(ToolBuildPath): $(ToolDir)/.dir
1080 endif
1081
1082 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1083         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1084         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1085         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1086         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1087           $(StripWarnMsg)
1088
1089 ifdef NO_INSTALL
1090 install-local::
1091         $(Echo) Install circumvented with NO_INSTALL
1092 uninstall-local::
1093         $(Echo) Uninstall circumvented with NO_INSTALL
1094 else
1095 DestTool = $(PROJ_bindir)/$(TOOLNAME)
1096
1097 install-local:: $(DestTool)
1098
1099 $(DestTool): $(ToolBuildPath) $(PROJ_bindir)
1100         $(Echo) Installing $(BuildMode) $(DestTool)
1101         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1102
1103 uninstall-local::
1104         $(Echo) Uninstalling $(BuildMode) $(DestTool)
1105         -$(Verb) $(RM) -f $(DestTool)
1106 endif
1107 endif
1108
1109 ###############################################################################
1110 # Object Build Rules: Build object files based on sources
1111 ###############################################################################
1112
1113 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1114 ifeq ($(OS),HP-UX)
1115   DISABLE_AUTO_DEPENDENCIES=1
1116 endif
1117
1118 # Provide rule sets for when dependency generation is enabled
1119 ifndef DISABLE_AUTO_DEPENDENCIES
1120
1121 #---------------------------------------------------------
1122 # Create .o files in the ObjDir directory from the .cpp and .c files...
1123 #---------------------------------------------------------
1124
1125 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1126          -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1127
1128 # If the build succeeded, move the dependency file over.  If it failed, put an
1129 # empty file there.
1130 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1131                   else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1132
1133 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1134         $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1135         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1136                 $(DEPEND_MOVEFILE)
1137
1138 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1139         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1140         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1141                 $(DEPEND_MOVEFILE)
1142
1143 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1144         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1145         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1146                 $(DEPEND_MOVEFILE)
1147
1148 #---------------------------------------------------------
1149 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1150 #---------------------------------------------------------
1151
1152 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1153         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1154         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1155                               $< -o $@ -S -emit-llvm ; \
1156         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1157         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1158         $(call UPGRADE_MSG,$@)
1159         $(call UPGRADE_LL,$@)
1160
1161 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1162         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1163         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1164                               $< -o $@ -S -emit-llvm ; \
1165         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1166         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1167         $(call UPGRADE_MSG,$@)
1168         $(call UPGRADE_LL,$@)
1169
1170 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1171         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1172         $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1173                             $< -o $@ -S -emit-llvm ; \
1174         then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1175         else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1176         $(call UPGRADE_MSG,$@)
1177         $(call UPGRADE_LL,$@)
1178
1179 # Provide alternate rule sets if dependencies are disabled
1180 else
1181
1182 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1183         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1184         $(Compile.CXX) $< -o $@
1185
1186 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1187         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1188         $(Compile.CXX) $< -o $@
1189
1190 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1191         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1192         $(Compile.C) $< -o $@
1193
1194 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1195         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1196         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1197         $(call UPGRADE_MSG,$@)
1198         $(call UPGRADE_LL,$@)
1199
1200 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
1201         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1202         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1203         $(call UPGRADE_MSG,$@)
1204         $(call UPGRADE_LL,$@)
1205
1206 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
1207         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1208         $(BCCompile.C) $< -o $@ -S -emit-llvm
1209         $(call UPGRADE_MSG,@)
1210         $(call UPGRADE_LL,@)
1211
1212 endif
1213
1214
1215 ## Rules for building preprocessed (.i/.ii) outputs.
1216 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1217         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1218         $(Verb) $(Preprocess.CXX) $< -o $@
1219
1220 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1221         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1222         $(Verb) $(Preprocess.CXX) $< -o $@
1223
1224 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1225         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1226         $(Verb) $(Preprocess.C) $< -o $@
1227
1228
1229 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1230         $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1231         $(Compile.CXX) $< -o $@ -S
1232
1233 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1234         $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1235         $(Compile.CXX) $< -o $@ -S
1236
1237 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1238         $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1239         $(Compile.C) $< -o $@ -S
1240
1241
1242 # make the C and C++ compilers strip debug info out of bytecode libraries.
1243 ifdef DEBUG_RUNTIME
1244 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1245         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1246         $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
1247 else
1248 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
1249         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1250         $(Verb) $(LLVMAS) $< -o - | \
1251            $(LOPT) -std-compile-opts -strip-debug -o $@ -f
1252 endif
1253
1254
1255 #---------------------------------------------------------
1256 # Provide rule to build .bc files from .ll sources,
1257 # regardless of dependencies
1258 #---------------------------------------------------------
1259 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1260         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1261         $(Verb) $(LLVMAS) $< -f -o $@
1262
1263 ###############################################################################
1264 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1265 ###############################################################################
1266
1267 ifdef TARGET
1268
1269 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1270            $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1271            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1272            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1273            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1274            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1275            $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1276 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1277 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1278 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1279
1280 # All of these files depend on tblgen and the .td files.
1281 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1282
1283 # INCFiles rule: All of the tblgen generated files are emitted to
1284 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1285 # us to only "touch" the real file if the contents of it change.  IOW, if
1286 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1287 # dependencies of the .inc files are, unless the contents of the .inc file
1288 # changes.
1289 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1290         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1291
1292 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1293 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1294         $(Echo) "Building $(<F) register names with tblgen"
1295         $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1296
1297 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1298 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1299         $(Echo) "Building $(<F) register information header with tblgen"
1300         $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1301
1302 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1303 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1304         $(Echo) "Building $(<F) register info implementation with tblgen"
1305         $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1306
1307 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1308 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1309         $(Echo) "Building $(<F) instruction names with tblgen"
1310         $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1311
1312 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1313 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1314         $(Echo) "Building $(<F) instruction information with tblgen"
1315         $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1316
1317 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1318 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1319         $(Echo) "Building $(<F) assembly writer with tblgen"
1320         $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1321
1322 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1323 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1324         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1325         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1326
1327 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1328 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1329         $(Echo) "Building $(<F) code emitter with tblgen"
1330         $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1331
1332 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1333 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1334         $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1335         $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1336
1337 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1338 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1339         $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1340         $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1341
1342 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1343 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1344         $(Echo) "Building $(<F) subtarget information with tblgen"
1345         $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1346
1347 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1348 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1349         $(Echo) "Building $(<F) calling convention information with tblgen"
1350         $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1351
1352 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1353 $(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1354         $(Echo) "Building $(<F) calling convention information with tblgen"
1355         $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1356
1357 clean-local::
1358         -$(Verb) $(RM) -f $(INCFiles)
1359
1360 endif
1361
1362 ###############################################################################
1363 # OTHER RULES: Other rules needed
1364 ###############################################################################
1365
1366 # To create postscript files from dot files...
1367 ifneq ($(DOT),false)
1368 %.ps: %.dot
1369         $(DOT) -Tps < $< > $@
1370 else
1371 %.ps: %.dot
1372         $(Echo) "Cannot build $@: The program dot is not installed"
1373 endif
1374
1375 # This rules ensures that header files that are removed still have a rule for
1376 # which they can be "generated."  This allows make to ignore them and
1377 # reproduce the dependency lists.
1378 %.h:: ;
1379 %.hpp:: ;
1380
1381 # Define clean-local to clean the current directory. Note that this uses a
1382 # very conservative approach ensuring that empty variables do not cause
1383 # errors or disastrous removal.
1384 clean-local::
1385 ifneq ($(strip $(ObjRootDir)),)
1386         -$(Verb) $(RM) -rf $(ObjRootDir)
1387 endif
1388         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1389 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1390         -$(Verb) $(RM) -f *$(SHLIBEXT)
1391 endif
1392
1393 clean-all-local::
1394         -$(Verb) $(RM) -rf Debug Release Profile
1395
1396
1397 ###############################################################################
1398 # DEPENDENCIES: Include the dependency files if we should
1399 ###############################################################################
1400 ifndef DISABLE_AUTO_DEPENDENCIES
1401
1402 # If its not one of the cleaning targets
1403 ifndef IS_CLEANING_TARGET
1404
1405 # Get the list of dependency files
1406 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1407 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1408
1409 -include $(DependFiles) ""
1410
1411 endif
1412
1413 endif
1414
1415 ###############################################################################
1416 # CHECK: Running the test suite
1417 ###############################################################################
1418
1419 check::
1420         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1421           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1422             $(EchoCmd) Running test suite ; \
1423             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1424               TESTSUITE=$(TESTSUITE) ; \
1425           else \
1426             $(EchoCmd) No Makefile in test directory ; \
1427           fi ; \
1428         else \
1429           $(EchoCmd) No test directory ; \
1430         fi
1431
1432 ###############################################################################
1433 # UNITTESTS: Running the unittests test suite
1434 ###############################################################################
1435
1436 unittests::
1437         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1438           if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1439             $(EchoCmd) Running unittests test suite ; \
1440             $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1441           else \
1442             $(EchoCmd) No Makefile in unittests directory ; \
1443           fi ; \
1444         else \
1445           $(EchoCmd) No unittests directory ; \
1446         fi
1447
1448 ###############################################################################
1449 # DISTRIBUTION: Handle construction of a distribution tarball
1450 ###############################################################################
1451
1452 #------------------------------------------------------------------------
1453 # Define distribution related variables
1454 #------------------------------------------------------------------------
1455 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1456 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1457 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1458 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1459 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1460 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1461 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1462                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1463                Makefile.config.in configure autoconf
1464 DistOther   := $(notdir $(wildcard \
1465                $(PROJ_SRC_DIR)/*.h \
1466                $(PROJ_SRC_DIR)/*.td \
1467                $(PROJ_SRC_DIR)/*.def \
1468                $(PROJ_SRC_DIR)/*.ll \
1469                $(PROJ_SRC_DIR)/*.in))
1470 DistSubDirs := $(SubDirs)
1471 DistSources  = $(Sources) $(EXTRA_DIST)
1472 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1473
1474 #------------------------------------------------------------------------
1475 # We MUST build distribution with OBJ_DIR != SRC_DIR
1476 #------------------------------------------------------------------------
1477 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1478 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1479         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1480
1481 else
1482
1483 #------------------------------------------------------------------------
1484 # Prevent attempt to run dist targets from anywhere but the top level
1485 #------------------------------------------------------------------------
1486 ifneq ($(LEVEL),.)
1487 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1488         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1489 else
1490
1491 #------------------------------------------------------------------------
1492 # Provide the top level targets
1493 #------------------------------------------------------------------------
1494
1495 dist-gzip:: $(DistTarGZip)
1496
1497 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1498         $(Echo) Packing gzipped distribution tar file.
1499         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1500           $(GZIP) -c > "$(DistTarGZip)"
1501
1502 dist-bzip2:: $(DistTarBZ2)
1503
1504 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1505         $(Echo) Packing bzipped distribution tar file.
1506         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1507           $(BZIP2) -c >$(DistTarBZ2)
1508
1509 dist-zip:: $(DistZip)
1510
1511 $(DistZip) : $(TopDistDir)/.makedistdir
1512         $(Echo) Packing zipped distribution file.
1513         $(Verb) rm -f $(DistZip)
1514         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1515
1516 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1517         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1518
1519 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1520
1521 dist-check:: $(DistTarGZip)
1522         $(Echo) Checking distribution tar file.
1523         $(Verb) if test -d $(DistCheckDir) ; then \
1524           $(RM) -rf $(DistCheckDir) ; \
1525         fi
1526         $(Verb) $(MKDIR) $(DistCheckDir)
1527         $(Verb) cd $(DistCheckDir) && \
1528           $(MKDIR) $(DistCheckDir)/build && \
1529           $(MKDIR) $(DistCheckDir)/install && \
1530           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1531           cd build && \
1532           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1533             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1534           $(MAKE) all && \
1535           $(MAKE) check && \
1536           $(MAKE) unittests && \
1537           $(MAKE) install && \
1538           $(MAKE) uninstall && \
1539           $(MAKE) dist-clean && \
1540           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1541
1542 dist-clean::
1543         $(Echo) Cleaning distribution files
1544         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1545           $(DistCheckDir)
1546
1547 endif
1548
1549 #------------------------------------------------------------------------
1550 # Provide the recursive distdir target for building the distribution directory
1551 #------------------------------------------------------------------------
1552 distdir: $(DistDir)/.makedistdir
1553 $(DistDir)/.makedistdir: $(DistSources)
1554         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1555           if test -d "$(DistDir)" ; then \
1556             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
1557               exit 1 ; \
1558           fi ; \
1559           $(EchoCmd) Removing old $(DistDir) ; \
1560           $(RM) -rf $(DistDir); \
1561           $(EchoCmd) Making 'all' to verify build ; \
1562           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1563         fi
1564         $(Echo) Building Distribution Directory $(DistDir)
1565         $(Verb) $(MKDIR) $(DistDir)
1566         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1567         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1568         for file in $(DistFiles) ; do \
1569           case "$$file" in \
1570             $(PROJ_SRC_DIR)/*) \
1571               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1572               ;; \
1573             $(PROJ_SRC_ROOT)/*) \
1574               file=`echo "$$file" | \
1575                 sed "s#^$$srcrootstrip/##"` \
1576               ;; \
1577           esac; \
1578           if test -f "$(PROJ_SRC_DIR)/$$file" || \
1579              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1580             from_dir="$(PROJ_SRC_DIR)" ; \
1581           elif test -f "$$file" || test -d "$$file" ; then \
1582             from_dir=. ; \
1583           fi ; \
1584           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1585           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1586             to_dir="$(DistDir)/$$dir"; \
1587             $(MKDIR) "$$to_dir" ; \
1588           else \
1589             to_dir="$(DistDir)"; \
1590           fi; \
1591           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1592           if test -n "$$mid_dir" ; then \
1593             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1594           fi ; \
1595           if test -d "$$from_dir/$$file"; then \
1596             if test -d "$(PROJ_SRC_DIR)/$$file" && \
1597                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1598                cd $(PROJ_SRC_DIR) ; \
1599                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1600                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1601                cd $(PROJ_OBJ_DIR) ; \
1602             else \
1603                cd $$from_dir ; \
1604                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1605                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1606                cd $(PROJ_OBJ_DIR) ; \
1607             fi; \
1608           elif test -f "$$from_dir/$$file" ; then \
1609             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1610           elif test -L "$$from_dir/$$file" ; then \
1611             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1612           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1613             $(EchoCmd) "===== WARNING: Distribution Source " \
1614               "$$from_dir/$$file Not Found!" ; \
1615           elif test "$(Verb)" != '@' ; then \
1616             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1617           fi; \
1618         done
1619         $(Verb) for subdir in $(DistSubDirs) ; do \
1620           if test "$$subdir" \!= "." ; then \
1621             new_distdir="$(DistDir)/$$subdir" ; \
1622             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1623             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1624               DistDir="$$new_distdir" distdir ) || exit 1; \
1625           fi; \
1626         done
1627         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1628           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1629           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1630                                   -name .svn \) -print` ;\
1631           $(MAKE) dist-hook ; \
1632           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1633             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1634             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1635             -o ! -type d ! -perm -444 -exec \
1636               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1637             || chmod -R a+r $(DistDir) ; \
1638         fi
1639
1640 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1641 # defined by user.
1642 dist-hook::
1643
1644 endif
1645
1646 ###############################################################################
1647 # TOP LEVEL - targets only to apply at the top level directory
1648 ###############################################################################
1649
1650 ifeq ($(LEVEL),.)
1651
1652 #------------------------------------------------------------------------
1653 # Install support for the project's include files:
1654 #------------------------------------------------------------------------
1655 ifdef NO_INSTALL
1656 install-local::
1657         $(Echo) Install circumvented with NO_INSTALL
1658 uninstall-local::
1659         $(Echo) Uninstall circumvented with NO_INSTALL
1660 else
1661 install-local::
1662         $(Echo) Installing include files
1663         $(Verb) $(MKDIR) $(PROJ_includedir)
1664         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1665           cd $(PROJ_SRC_ROOT)/include && \
1666           for  hdr in `find . -type f '!' '(' -name '*~' \
1667               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1668               grep -v .svn` ; do \
1669             instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1670             if test \! -d "$$instdir" ; then \
1671               $(EchoCmd) Making install directory $$instdir ; \
1672               $(MKDIR) $$instdir ;\
1673             fi ; \
1674             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1675           done ; \
1676         fi
1677 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1678         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1679           cd $(PROJ_OBJ_ROOT)/include && \
1680           for hdr in `find . -type f -print | grep -v CVS` ; do \
1681             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1682           done ; \
1683         fi
1684 endif
1685
1686 uninstall-local::
1687         $(Echo) Uninstalling include files
1688         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1689           cd $(PROJ_SRC_ROOT)/include && \
1690             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1691               '!' '(' -name '*~' -o -name '.#*' \
1692         -o -name '*.in' ')' -print ')' | \
1693         grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1694           cd $(PROJ_SRC_ROOT)/include && \
1695             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1696       -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1697         fi
1698 endif
1699 endif
1700
1701 check-line-length:
1702         @echo searching for overlength lines in files: $(Sources)
1703         @echo
1704         @echo
1705         egrep -n '.{81}' $(Sources) /dev/null
1706
1707 check-for-tabs:
1708         @echo searching for tabs in files: $(Sources)
1709         @echo
1710         @echo
1711         egrep -n '      ' $(Sources) /dev/null
1712
1713 check-footprint:
1714         @ls -l $(LibDir) | awk '\
1715           BEGIN { sum = 0; } \
1716                 { sum += $$5; } \
1717           END   { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1718         @ls -l $(ToolDir) | awk '\
1719           BEGIN { sum = 0; } \
1720                 { sum += $$5; } \
1721           END   { printf("Programs:  %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1722 #------------------------------------------------------------------------
1723 # Print out the directories used for building
1724 #------------------------------------------------------------------------
1725 printvars::
1726         $(Echo) "BuildMode    : " '$(BuildMode)'
1727         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1728         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1729         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1730         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1731         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1732         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1733         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
1734         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
1735         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
1736         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
1737         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
1738         $(Echo) "UserTargets  : " '$(UserTargets)'
1739         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1740         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1741         $(Echo) "ObjDir       : " '$(ObjDir)'
1742         $(Echo) "LibDir       : " '$(LibDir)'
1743         $(Echo) "ToolDir      : " '$(ToolDir)'
1744         $(Echo) "ExmplDir     : " '$(ExmplDir)'
1745         $(Echo) "Sources      : " '$(Sources)'
1746         $(Echo) "TDFiles      : " '$(TDFiles)'
1747         $(Echo) "INCFiles     : " '$(INCFiles)'
1748         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
1749         $(Echo) "PreConditions: " '$(PreConditions)'
1750         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
1751         $(Echo) "Compile.C    : " '$(Compile.C)'
1752         $(Echo) "Archive      : " '$(Archive)'
1753         $(Echo) "YaccFiles    : " '$(YaccFiles)'
1754         $(Echo) "LexFiles     : " '$(LexFiles)'
1755         $(Echo) "Module       : " '$(Module)'
1756         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1757         $(Echo) "SubDirs      : " '$(SubDirs)'
1758         $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1759         $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
1760
1761 ###
1762 # Debugging
1763
1764 # General debugging rule, use 'make print-XXX' to print the
1765 # definition, value and origin of XXX.
1766 print-%: 
1767         $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))