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