Replace "../whatever.td" with "whatever.td", so that out-of-tree backends
[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 TBLGEN
273 TBLGEN   := $(LLVMToolDir)/tblgen$(EXEEXT)
274 endif
275 ifndef GCCAS
276 GCCAS    := $(LLVMToolDir)/gccas$(EXEEXT)
277 endif
278 ifndef GCCLD
279 GCCLD    := $(LLVMToolDir)/gccld$(EXEEXT)
280 endif
281 ifndef LDIS
282 LLVMDIS  := $(LLVMToolDir)/llvm-dis$(EXEEXT)
283 endif
284 ifndef LLI
285 LLI      := $(LLVMToolDir)/lli$(EXEEXT)
286 endif
287 ifndef LLC
288 LLC      := $(LLVMToolDir)/llc$(EXEEXT)
289 endif
290 ifndef LOPT
291 LOPT     := $(LLVMToolDir)/opt$(EXEEXT)
292 endif
293 ifndef LBUGPOINT
294 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
295 endif
296
297 LLVMGCCWITHPATH  := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
298 LLVMGXXWITHPATH  := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
299
300 #--------------------------------------------------------------------
301 # Adjust to user's request
302 #--------------------------------------------------------------------
303
304 # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is
305 # to be built. Note that if LOADABLE_MODULE is specified then the resulting
306 # shared library can be opened with dlopen
307 ifdef SHARED_LIBRARY
308   LD.Flags += -rpath $(LibDir)
309   ifdef LOADABLE_MODULE
310     LD.Flags += -module
311   endif
312 else
313   LibTool.Flags += --tag=disable-shared
314 endif
315
316 ifdef TOOL_VERBOSE
317   C.Flags += -v
318   CXX.Flags += -v
319   LD.Flags += -v
320   VERBOSE := 1
321 endif
322
323 # Adjust settings for verbose mode
324 ifndef VERBOSE
325   Verb := @
326   LibTool.Flags += --silent
327   AR.Flags += >/dev/null 2>/dev/null
328   ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
329 else
330   ConfigureScriptFLAGS := 
331 endif
332
333 # By default, strip symbol information from executable
334 ifndef KEEP_SYMBOLS
335   Strip := $(PLATFORMSTRIPOPTS)
336   StripWarnMsg := "(without symbols)"
337   Install.StripFlag += -s
338 endif
339
340 # Adjust linker flags for building an executable
341 ifdef TOOLNAME
342 ifdef EXAMPLE_TOOL
343   LD.Flags += -rpath $(ExmplDir) -export-dynamic
344 else
345   LD.Flags += -rpath $(ToolDir) -export-dynamic
346 endif
347 endif
348
349 #----------------------------------------------------------
350 # Options To Invoke Tools
351 #----------------------------------------------------------
352
353 CompileCommonOpts := -Wall -W -Wwrite-strings -Wno-unused
354
355 ifeq ($(OS),HP-UX)
356   CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
357 endif
358
359 # If we are building a universal binary on Mac OS/X, pass extra options.  This is
360 # useful to people that want to link the LLVM libraries into their universal apps.
361 ifdef UNIVERSAL
362   CompileCommonOpts += \
363       -arch i386 -arch ppc -isysroot /Developer/SDKs/MACOSX10.4u.sdk/
364   Relink.Flags := -XCClinker -arch -XCClinker i386 -XCClinker -arch \
365       -XCClinker ppc -XCClinker \
366       -isysroot -XCClinker /Developer/SDKs/MACOSX10.4u.sdk/
367   DISABLE_AUTO_DEPENDENCIES=1
368 endif
369
370 # Temporary workaround for a Mac OSX / x86 compatibility issue.
371 ifeq ($(OS),Darwin)
372 ifeq ($(ARCH),x86)
373   CXX.Flags += -fno-use-cxa-atexit
374 endif
375 endif
376
377 LD.Flags      += -L$(LibDir) -L$(LLVMLibDir) 
378 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
379 # All -I flags should go here, so that they don't confuse llvm-config.
380 CPP.Flags     += -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
381                  -I$(PROJ_OBJ_ROOT)/include \
382                  -I$(PROJ_SRC_ROOT)/include \
383                  -I$(LLVM_OBJ_ROOT)/include \
384                  -I$(LLVM_SRC_ROOT)/include \
385                  $(CPP.BaseFlags)
386
387 Compile.C     = $(CC) $(CPP.Flags) $(CompileCommonOpts) -c $(C.Flags)
388 LTCompile.C   = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
389 BCCompile.C   = $(LLVMGCCWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
390                 $(C.Flags)
391 Preprocess.C  = $(CC) $(CPP.Flags) $(CompileCommonOpts) -E $(C.Flags)
392
393 Compile.CXX   = $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -c
394 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
395 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
396                 $(CXX.Flags)
397 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
398 Link          = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
399                 $(CompileCommonOpts) $(LD.Flags) $(Strip)
400 Relink        = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
401                 $(CompileCommonOpts) $(Relink.Flags)
402 LTInstall     = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
403                 $(Install.Flags)
404 ProgInstall   = $(INSTALL) $(Install.StripFlag) -m 0755 
405 ScriptInstall = $(INSTALL) -m 0755 
406 DataInstall   = $(INSTALL) -m 0644
407 TableGen      = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include \
408                 -I $(PROJ_SRC_ROOT)/lib/Target      
409 Archive       = $(AR) $(AR.Flags)
410 LArchive      = $(LLVMToolDir)/llvm-ar rcsf
411 ifdef RANLIB
412 Ranlib        = $(RANLIB)
413 else
414 Ranlib        = ranlib
415 endif
416
417 #----------------------------------------------------------
418 # Get the list of source files and compute object file 
419 # names from them. 
420 #----------------------------------------------------------
421
422 ifndef SOURCES
423   Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
424              $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
425              $(PROJ_SRC_DIR)/*.l))
426 else
427   Sources := $(SOURCES)
428 endif 
429
430 ifdef BUILT_SOURCES
431 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
432 endif
433
434 BaseNameSources := $(sort $(basename $(Sources)))
435
436 ObjectsO  := $(BaseNameSources:%=$(ObjDir)/%.o)
437 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
438 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
439
440 ###############################################################################
441 # DIRECTORIES: Handle recursive descent of directory structure
442 ###############################################################################
443
444 #---------------------------------------------------------
445 # Provide rules to make install dirs. This must be early
446 # in the file so they get built before dependencies
447 #---------------------------------------------------------
448
449 $(PROJ_bindir): $(PROJ_bindir)/.dir
450 $(PROJ_libdir): $(PROJ_libdir)/.dir
451 $(PROJ_includedir): $(PROJ_includedir)/.dir
452 $(PROJ_etcdir): $(PROJ_etcdir)/.dir
453
454 # To create other directories, as needed, and timestamp their creation
455 %/.dir:
456         $(Verb) $(MKDIR) $* > /dev/null
457         $(Verb) $(DATE) > $@
458
459 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
460 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
461
462 #---------------------------------------------------------
463 # Handle the DIRS options for sequential construction
464 #---------------------------------------------------------
465
466 SubDirs := 
467 ifdef DIRS
468 SubDirs += $(DIRS)
469 $(RecursiveTargets)::
470         $(Verb) for dir in $(DIRS); do \
471           if [ ! -f $$dir/Makefile ]; then \
472             $(MKDIR) $$dir; \
473             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
474           fi; \
475           if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
476             ($(MAKE) -C $$dir $@ ) || exit 1; \
477           fi ; \
478         done
479 endif
480
481 #---------------------------------------------------------
482 # Handle the EXPERIMENTAL_DIRS options ensuring success
483 # after each directory is built.
484 #---------------------------------------------------------
485 ifdef EXPERIMENTAL_DIRS
486 $(RecursiveTargets)::
487         $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
488           if [ ! -f $$dir/Makefile ]; then \
489             $(MKDIR) $$dir; \
490             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
491           fi; \
492           if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
493             ($(MAKE) -C $$dir $@ ) || exit 0; \
494           fi ; \
495         done
496 endif
497
498 #-----------------------------------------------------------
499 # Handle the PARALLEL_DIRS options for parallel construction
500 #-----------------------------------------------------------
501 ifdef PARALLEL_DIRS
502
503 SubDirs += $(PARALLEL_DIRS)
504
505 # Unfortunately, this list must be maintained if new recursive targets are added
506 all      :: $(addsuffix /.makeall      ,$(PARALLEL_DIRS))
507 clean    :: $(addsuffix /.makeclean    ,$(PARALLEL_DIRS))
508 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
509 install  :: $(addsuffix /.makeinstall  ,$(PARALLEL_DIRS))
510 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
511 install-bytecode  :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
512
513 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
514
515 $(ParallelTargets) :
516         $(Verb) if [ ! -f $(@D)/Makefile ]; then \
517           $(MKDIR) $(@D); \
518           $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
519         fi; \
520         if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
521           $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) ; \
522         fi
523 endif
524
525 #---------------------------------------------------------
526 # Handle the OPTIONAL_DIRS options for directores that may
527 # or may not exist.
528 #---------------------------------------------------------
529 ifdef OPTIONAL_DIRS
530
531 SubDirs += $(OPTIONAL_DIRS)
532
533 $(RecursiveTargets)::
534         $(Verb) for dir in $(OPTIONAL_DIRS); do \
535           if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
536             if [ ! -f $$dir/Makefile ]; then \
537               $(MKDIR) $$dir; \
538               $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
539             fi; \
540             if [ ! -f $$dir/LLVM_DO_NOT_BUILD ]; then \
541               ($(MAKE) -C$$dir $@ ) || exit 1; \
542             fi ; \
543           fi \
544         done
545 endif
546
547 #---------------------------------------------------------
548 # Handle the CONFIG_FILES options
549 #---------------------------------------------------------
550 ifdef CONFIG_FILES
551
552 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
553         $(Echo) Installing Configuration Files To $(PROJ_etcdir)
554         $(Verb)for file in $(CONFIG_FILES); do \
555           if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
556             $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
557           elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
558             $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
559           else \
560             $(ECHO) Error: cannot find config file $${file}. ; \
561           fi \
562         done
563
564 uninstall-local::
565         $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
566         $(Verb)for file in $(CONFIG_FILES); do \
567           $(RM) -f $(PROJ_etcdir)/$${file} ; \
568         done
569
570 endif
571
572 ###############################################################################
573 # Set up variables for building libararies
574 ###############################################################################
575
576 #---------------------------------------------------------
577 # Handle the special "JIT" value for LLVM_LIBS which is a
578 # shorthand for a bunch of libraries that get the correct
579 # JIT support for a library or a tool that runs JIT.
580 #---------------------------------------------------------
581 ifeq ($(firstword $(LLVMLIBS)),config)
582 LLVM_CONFIG := $(LLVM_SRC_ROOT)/utils/llvm-config/llvm-config 
583 LLVMLIBS := $(shell $(LLVM_CONFIG) --libnames $(wordlist 2,9999,$(LLVMLIBS)))
584 LLVMLIBS := $(patsubst lib%.a,%.a,$(LLVMLIBS))
585 LLVMLIBS := $(patsubst %.o,%,$(LLVMLIBS))
586 endif
587
588 ifeq ($(LLVMLIBS),JIT)
589
590 # Make sure we can get our own symbols in the tool
591 Link += -dlopen self
592
593 # Generic JIT libraries
594 JIT_LIBS := LLVMInterpreter LLVMJIT LLVMCodeGen LLVMExecutionEngine
595
596 # You can enable the X86 JIT on a non-X86 host by setting the flag
597 # ENABLE_X86_JIT on the make command line. If not, it will still be
598 # enabled automagically on an X86 host.
599 ifeq ($(ARCH), x86)
600   ENABLE_X86_JIT = 1
601 endif
602
603 # What the X86 JIT requires
604 ifdef ENABLE_X86_JIT
605   JIT_LIBS += LLVMX86 LLVMSelectionDAG
606 endif
607
608 # You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
609 # ENABLE_PPC_JIT on the make command line. If not, it will still be
610 # enabled automagically on an PowerPC host.
611 ifeq ($(ARCH), PowerPC)
612   ENABLE_PPC_JIT = 1
613 endif
614
615 # What the PowerPC JIT requires
616 ifdef ENABLE_PPC_JIT
617   JIT_LIBS += LLVMPowerPC LLVMSelectionDAG
618 endif
619
620 # You can enable the Alpha JIT on a non-Alpha host by setting the flag
621 # ENABLE_ALPHA_JIT on the make command line. If not, it will still be
622 # enabled automagically on an Alpha host.
623 ifeq ($(ARCH), Alpha)
624   ENABLE_ALPHA_JIT = 1
625 endif
626
627 # What the Alpha JIT requires
628 ifdef ENABLE_ALPHA_JIT
629   JIT_LIBS += LLVMAlpha LLVMSelectionDAG
630 endif
631
632 LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts.a LLVMTransformUtils.a LLVMAnalysis.a \
633             LLVMBCReader LLVMTarget.a LLVMCore LLVMSupport.a LLVMbzip2 \
634             LLVMSystem.a $(PLATFORMLIBDL)
635 endif
636
637 #---------------------------------------------------------
638 # Define various command line options pertaining to the
639 # libraries needed when linking. There are "Proj" libs 
640 # (defined by the user's project) and "LLVM" libs (defined 
641 # by the # LLVM project).
642 #---------------------------------------------------------
643 # Some versions of gcc on Alpha produce too many symbols, so use a .a file
644 ifeq ($(ARCH),Alpha)
645 USEDLIBS := $(subst LLVMCore, LLVMCore.a, $(USEDLIBS))
646 LLVMLIBS := $(subst LLVMCore, LLVMCore.a, $(LLVMLIBS))
647 CORE_IS_ARCHIVE := 1
648 else
649 CORE_IS_ARCHIVE := 0
650 endif
651
652 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
653 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o,  $(ProjLibsOptions))
654 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
655 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
656 ProjUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
657 LLVMUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
658 ProjLibsPaths   := $(addprefix $(LibDir)/,$(ProjUsedLibs))
659 LLVMLibsPaths   := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
660
661 ###############################################################################
662 # Library Build Rules: Four ways to build a library
663 ###############################################################################
664
665 #---------------------------------------------------------
666 # Bytecode Module Targets:
667 #   If the user set MODULE_NAME then they want to build a
668 #   bytecode module from the sources. We compile all the
669 #   sources and link it together into a single bytecode
670 #   module.
671 #---------------------------------------------------------
672
673 ifdef MODULE_NAME
674 ifeq ($(strip $(LLVMGCC)),)
675 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
676 else
677
678 Module     := $(LibDir)/$(MODULE_NAME).bc
679 LinkModule := $(GCCLD) -L$(CFERuntimeLibDir)
680
681
682 ifdef EXPORTED_SYMBOL_FILE
683 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
684 endif
685
686 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
687         $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
688         $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
689
690 all-local:: $(Module)
691
692 clean-local::
693 ifneq ($(strip $(Module)),)
694         -$(Verb) $(RM) -f $(Module)
695 endif
696
697 ifdef BYTECODE_DESTINATION
698 ModuleDestDir := $(BYTECODE_DESTINATION)
699 else
700 ModuleDestDir := $(PROJ_libdir)
701 endif
702
703 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
704
705 install-module:: $(DestModule)
706 install-local:: $(DestModule)
707
708 $(DestModule): $(ModuleDestDir) $(Module) 
709         $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
710         $(Verb) $(DataInstall) $(Module) $(DestModule)
711
712 uninstall-local::
713         $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
714         -$(Verb) $(RM) -f $(DestModule)
715
716 endif
717 endif
718
719 # if we're building a library ...
720 ifdef LIBRARYNAME
721
722 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
723 LIBRARYNAME := $(strip $(LIBRARYNAME))
724 ifdef LOADABLE_MODULE
725 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
726 else
727 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
728 endif
729 LibName.A  := $(LibDir)/lib$(LIBRARYNAME).a
730 LibName.O  := $(LibDir)/$(LIBRARYNAME).o
731 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
732
733 #---------------------------------------------------------
734 # Shared Library Targets:
735 #   If the user asked for a shared library to be built
736 #   with the SHARED_LIBRARY variable, then we provide
737 #   targets for building them.
738 #---------------------------------------------------------
739 ifdef SHARED_LIBRARY
740
741 all-local:: $(LibName.LA)
742
743 ifdef LINK_LIBS_IN_SHARED
744 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
745         $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
746         $(Verb) $(Link) -o $@ $(ObjectsLO) \
747          $(ProjLibsOptions) $(LLVMLibsOptions)
748         $(Verb) $(LTInstall) $@ $(LibDir)
749 else
750 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
751         $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
752         $(Verb) $(Link) -o $@ $(ObjectsLO)
753         $(Verb) $(LTInstall) $@ $(LibDir)
754 endif
755
756 clean-local::
757 ifneq ($(strip $(LibName.LA)),)
758         -$(Verb) $(RM) -f $(LibName.LA)
759 endif
760
761 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
762
763 install-local:: $(DestSharedLib)
764
765 $(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
766         $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
767         $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
768         $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
769
770 uninstall-local:: 
771         $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
772         -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
773
774 endif
775
776 #---------------------------------------------------------
777 # Bytecode Library Targets:
778 #   If the user asked for a bytecode library to be built
779 #   with the BYTECODE_LIBRARY variable, then we provide 
780 #   targets for building them.
781 #---------------------------------------------------------
782 ifdef BYTECODE_LIBRARY
783 ifeq ($(strip $(LLVMGCC)),)
784 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
785 else
786
787 all-local:: $(LibName.BCA)
788
789 ifdef EXPORTED_SYMBOL_FILE
790 BCLinkLib = $(GCCLD) -L$(CFERuntimeLibDir) -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)'