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