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