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