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