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