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