Remove extraneous building in target dist-check. There is no reason that
[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)
694
695 ifdef EXPORTED_SYMBOL_FILE
696 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
697 endif
698
699 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
700         $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
701         $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
702
703 all-local:: $(Module)
704
705 clean-local::
706 ifneq ($(strip $(Module)),)
707         -$(Verb) $(RM) -f $(Module)
708 endif
709
710 ifdef BYTECODE_DESTINATION
711 ModuleDestDir := $(BYTECODE_DESTINATION)
712 else
713 ModuleDestDir := $(PROJ_libdir)
714 endif
715
716 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
717
718 install-module:: $(DestModule)
719 install-local:: $(DestModule)
720
721 $(DestModule): $(ModuleDestDir) $(Module) 
722         $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
723         $(Verb) $(DataInstall) $(Module) $(DestModule)
724
725 uninstall-local::
726         $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
727         -$(Verb) $(RM) -f $(DestModule)
728
729 endif
730 endif
731
732 # if we're building a library ...
733 ifdef LIBRARYNAME
734
735 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
736 LIBRARYNAME := $(strip $(LIBRARYNAME))
737 ifdef LOADABLE_MODULE
738 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
739 else
740 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
741 endif
742 LibName.A  := $(LibDir)/lib$(LIBRARYNAME).a
743 LibName.O  := $(LibDir)/$(LIBRARYNAME).o
744 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
745
746 #---------------------------------------------------------
747 # Shared Library Targets:
748 #   If the user asked for a shared library to be built
749 #   with the SHARED_LIBRARY variable, then we provide
750 #   targets for building them.
751 #---------------------------------------------------------
752 ifdef SHARED_LIBRARY
753
754 all-local:: $(LibName.LA)
755
756 ifdef LINK_LIBS_IN_SHARED
757 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
758         $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
759         $(Verb) $(Link) -o $@ $(ObjectsLO) \
760          $(ProjLibsOptions) $(LLVMLibsOptions)
761         $(Verb) $(LTInstall) $@ $(LibDir)
762 else
763 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
764         $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
765         $(Verb) $(Link) -o $@ $(ObjectsLO)
766         $(Verb) $(LTInstall) $@ $(LibDir)
767 endif
768
769 clean-local::
770 ifneq ($(strip $(LibName.LA)),)
771         -$(Verb) $(RM) -f $(LibName.LA)
772 endif
773
774 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
775
776 install-local:: $(DestSharedLib)
777
778 $(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
779         $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
780         $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
781         $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
782
783 uninstall-local:: 
784         $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
785         -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
786
787 endif
788
789 #---------------------------------------------------------
790 # Bytecode Library Targets:
791 #   If the user asked for a bytecode library to be built
792 #   with the BYTECODE_LIBRARY variable, then we provide 
793 #   targets for building them.
794 #---------------------------------------------------------
795 ifdef BYTECODE_LIBRARY
796 ifeq ($(strip $(LLVMGCC)),)
797 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
798 else
799
800 all-local:: $(LibName.BCA)
801
802 ifdef EXPORTED_SYMBOL_FILE
803 BCLinkLib = $(GCCLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
804
805 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(GCCLD) \
806                 $(LLVMToolDir)/llvm-ar
807         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
808           "(internalize)"
809         $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
810         $(Verb) $(RM) -f $@
811         $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
812 else
813 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
814                 $(LLVMToolDir)/llvm-ar
815         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
816         $(Verb) $(RM) -f $@
817         $(Verb) $(LArchive) $@ $(ObjectsBC)
818
819 endif
820
821 clean-local::
822 ifneq ($(strip $(LibName.BCA)),)
823         -$(Verb) $(RM) -f $(LibName.BCA)
824 endif
825
826 ifdef BYTECODE_DESTINATION
827 BytecodeDestDir := $(BYTECODE_DESTINATION)
828 else
829 BytecodeDestDir := $(PROJ_libdir)
830 endif
831
832 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
833
834 install-bytecode-local:: $(DestBytecodeLib)
835
836 install-local:: $(DestBytecodeLib)
837
838 $(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA) 
839         $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
840         $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
841
842 uninstall-local::
843         $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
844         -$(Verb) $(RM) -f $(DestBytecodeLib)
845
846 endif
847 endif
848
849 #---------------------------------------------------------
850 # ReLinked Library Targets:
851 #   If the user explicitly requests a relinked library with
852 #   BUILD_RELINKED, provide it.  Otherwise, if they specify
853 #   neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
854 #   them one.
855 #---------------------------------------------------------
856 ifndef BUILD_ARCHIVE
857 ifndef DONT_BUILD_RELINKED
858 BUILD_RELINKED = 1
859 endif
860 endif
861
862 ifdef BUILD_RELINKED
863
864 all-local:: $(LibName.O)
865
866 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
867         $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
868         $(Verb) $(Relink) -o $@ $(ObjectsO)
869
870 clean-local::
871 ifneq ($(strip $(LibName.O)),)
872         -$(Verb) $(RM) -f $(LibName.O)
873 endif
874
875 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
876
877 install-local:: $(DestRelinkedLib)
878
879 $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
880         $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
881         $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
882
883 uninstall-local::
884         $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
885         -$(Verb) $(RM) -f $(DestRelinkedLib)
886
887 endif
888
889 #---------------------------------------------------------
890 # Archive Library Targets:
891 #   If the user wanted a regular archive library built, 
892 #   then we provide targets for building them.
893 #---------------------------------------------------------
894 ifdef BUILD_ARCHIVE
895
896 all-local:: $(LibName.A)
897
898 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
899         $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
900         -$(Verb) $(RM) -f $@
901         $(Verb) $(Archive) $@ $(ObjectsO)
902         $(Verb) $(Ranlib) $@
903
904 clean-local::
905 ifneq ($(strip $(LibName.A)),)
906         -$(Verb) $(RM) -f $(LibName.A)
907 endif
908
909 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
910
911 install-local:: $(DestArchiveLib)
912
913 $(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
914         $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
915         $(Verb) $(MKDIR) $(PROJ_libdir)
916         $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
917
918 uninstall-local::
919         $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
920         -$(Verb) $(RM) -f $(DestArchiveLib)
921
922 endif
923
924 # endif LIBRARYNAME
925 endif 
926
927 ###############################################################################
928 # Tool Build Rules: Build executable tool based on TOOLNAME option
929 ###############################################################################
930
931 ifdef TOOLNAME
932
933 #---------------------------------------------------------
934 # Set up variables for building a tool.
935 #---------------------------------------------------------
936 ifdef EXAMPLE_TOOL
937 ToolBuildPath   := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
938 else
939 ToolBuildPath   := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
940 endif
941
942 #---------------------------------------------------------
943 # Tell make that we need to rebuild subdirectories before 
944 # we can link the tool. This affects things like LLI which 
945 # has library subdirectories.
946 #---------------------------------------------------------
947 $(ToolBuildPath): $(addsuffix /.makeall, $(PARALLEL_DIRS))
948
949 #---------------------------------------------------------
950 # Provide targets for building the tools
951 #---------------------------------------------------------
952 all-local:: $(ToolBuildPath)
953
954 clean-local::
955 ifneq ($(strip $(ToolBuildPath)),)
956         -$(Verb) $(RM) -f $(ToolBuildPath)
957 endif
958
959 ifdef EXAMPLE_TOOL
960 $(ToolBuildPath): $(ExmplDir)/.dir
961 else
962 $(ToolBuildPath): $(ToolDir)/.dir
963 endif
964
965 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
966         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
967         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(LLVMLibsOptions) \
968         $(ProjLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
969         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
970           $(StripWarnMsg) 
971
972 DestTool = $(PROJ_bindir)/$(TOOLNAME)
973
974 install-local:: $(DestTool)
975
976 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
977         $(Echo) Installing $(BuildMode) $(DestTool)
978         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
979
980 uninstall-local::
981         $(Echo) Uninstalling $(BuildMode) $(DestTool)
982         -$(Verb) $(RM) -f $(DestTool)
983
984 endif
985
986 ###############################################################################
987 # Object Build Rules: Build object files based on sources 
988 ###############################################################################
989
990 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
991 ifeq ($(OS),HP-UX)
992   DISABLE_AUTO_DEPENDENCIES=1
993 endif
994
995 # Provide rule sets for when dependency generation is enabled
996 ifndef DISABLE_AUTO_DEPENDENCIES
997
998 #---------------------------------------------------------
999 # Create .lo files in the ObjDir directory from the .cpp and .c files...
1000 #---------------------------------------------------------
1001 ifdef SHARED_LIBRARY
1002
1003 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1004         $(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
1005         $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1006         then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1007         else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1008
1009 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1010         $(Echo) "Compiling $*.cc for $(BuildMode) build (PIC)"
1011         $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1012         then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1013         else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1014
1015 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1016         $(Echo) "Compiling $*.c for $(BuildMode) build (PIC)"
1017         $(Verb) if $(LTCompile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
1018         then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
1019         else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
1020
1021 #---------------------------------------------------------
1022 # Create .o files in the ObjDir directory from the .cpp and .c files...
1023 #---------------------------------------------------------
1024 else
1025
1026 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1027         $(Echo) "Compiling $*.cpp for $(BuildMode) build"
1028         $(Verb) if $(Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.CXXd $< -o $@ ; \
1029         then $(MV) -f "$(ObjDir)/$*.CXXd" "$(ObjDir)/$*.d"; \
1030         else $(RM) -f "$(ObjDir)/$*.CXXd"; exit 1; fi
1031
1032 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1033         $(Echo) "Compiling $*.cc for $(BuildMode) build"
1034         $(Verb) if $(Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.CXXd $< -o $@ ; \
1035         then $(MV) -f "$(ObjDir)/$*.CXXd" "$(ObjDir)/$*.d"; \
1036         else $(RM) -f "$(ObjDir)/$*.CXXd"; exit 1; fi
1037
1038 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1039         $(Echo) "Compiling $*.c for $(BuildMode) build"
1040         $(Verb) if $(Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.Cd $< -o $@ ; \
1041         then $(MV) -f "$(ObjDir)/$*.Cd" "$(ObjDir)/$*.d"; \
1042         else $(RM) -f "$(ObjDir)/$*.Cd"; exit 1; fi
1043
1044 endif
1045
1046 ## Rules for building preprocessed (.i/.ii) outputs.
1047 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1048         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1049         $(Verb) $(Preprocess.CXX) $< -o $@
1050
1051 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1052         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1053         $(Verb) $(Preprocess.CXX) $< -o $@
1054
1055  $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1056         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1057         $(Verb) $(Preprocess.C) $< -o $@
1058
1059
1060 #---------------------------------------------------------
1061 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1062 #---------------------------------------------------------
1063
1064 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1065         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1066         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1067                               $< -o $@ -S -emit-llvm ; \
1068         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1069         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1070
1071 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1072         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1073         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1074                               $< -o $@ -S -emit-llvm ; \
1075         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1076         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1077
1078 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1079         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1080         $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1081                             $< -o $@ -S -emit-llvm ; \
1082         then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1083         else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1084
1085 # Provide alternate rule sets if dependencies are disabled
1086 else
1087
1088 ifdef SHARED_LIBRARY
1089
1090 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1091         $(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
1092         $(LTCompile.CXX) $< -o $@ 
1093
1094 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1095         $(Echo) "Compiling $*.cc for $(BuildMode) build (PIC)"
1096         $(LTCompile.CXX) $< -o $@ 
1097
1098 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1099         $(Echo) "Compiling $*.c for $(BuildMode) build (PIC)"
1100         $(LTCompile.C) $< -o $@ 
1101
1102 else
1103
1104 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1105         $(Echo) "Compiling $*.cpp for $(BuildMode) build"
1106         $(Compile.CXX) $< -o $@ 
1107
1108 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1109         $(Echo) "Compiling $*.cc for $(BuildMode) build"
1110         $(Compile.CXX) $< -o $@ 
1111
1112 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1113         $(Echo) "Compiling $*.c for $(BuildMode) build"
1114         $(Compile.C) $< -o $@ 
1115 endif
1116
1117 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1118         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1119         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1120
1121 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1122         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1123         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1124
1125 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1126         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1127         $(BCCompile.C) $< -o $@ -S -emit-llvm
1128
1129 endif
1130
1131 # make the C and C++ compilers strip debug info out of bytecode libraries.
1132 ifdef DEBUG_RUNTIME
1133 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1134         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1135         $(Verb) $(GCCAS) $< -o $@
1136 else
1137 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1138         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1139         $(Verb) $(GCCAS) -strip-debug $< -o $@
1140 endif
1141
1142
1143 #---------------------------------------------------------
1144 # Provide rule to build .bc files from .ll sources,
1145 # regardless of dependencies
1146 #---------------------------------------------------------
1147 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1148         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1149         $(Verb) $(LLVMAS) $< -f -o $@
1150
1151 ###############################################################################
1152 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1153 ###############################################################################
1154
1155 ifdef TARGET
1156
1157 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1158            $(LLVM_SRC_ROOT)/lib/Target/Target.td \
1159            $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td \
1160            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td)
1161 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1162 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1163 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1164
1165 # All of these files depend on tblgen and the .td files.
1166 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1167
1168 # INCFiles rule: All of the tblgen generated files are emitted to 
1169 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1170 # us to only "touch" the real file if the contents of it change.  IOW, if
1171 # tblgen is modified, all of the .inc.tmp files are regereated, but no
1172 # dependencies of the .inc files are, unless the contents of the .inc file
1173 # changes.
1174 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1175         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1176
1177 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1178 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1179         $(Echo) "Building $(<F) register names with tblgen"
1180         $(Verb) $(TableGen) -gen-register-enums -o $@ $<
1181
1182 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1183 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1184         $(Echo) "Building $(<F) register information header with tblgen"
1185         $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
1186
1187 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1188 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1189         $(Echo) "Building $(<F) register info implementation with tblgen"
1190         $(Verb) $(TableGen) -gen-register-desc -o $@ $<
1191
1192 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1193 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1194         $(Echo) "Building $(<F) instruction names with tblgen"
1195         $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
1196
1197 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1198 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1199         $(Echo) "Building $(<F) instruction information with tblgen"
1200         $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
1201
1202 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1203 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1204         $(Echo) "Building $(<F) assembly writer with tblgen"
1205         $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
1206
1207 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1208 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1209         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1210         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $< 
1211
1212 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1213 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1214         $(Echo) "Building $(<F) code emitter with tblgen"
1215         $(Verb) $(TableGen) -gen-emitter -o $@ $<
1216
1217 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1218 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1219         $(Echo) "Building $(<F) instruction selector implementation with tblgen"
1220         $(Verb) $(TableGen) -gen-dag-isel -o $@ $<
1221
1222 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1223 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1224         $(Echo) "Building $(<F) subtarget information with tblgen"
1225         $(Verb) $(TableGen) -gen-subtarget -o $@ $<
1226
1227 clean-local::
1228         -$(Verb) $(RM) -f $(INCFiles)
1229
1230 endif
1231
1232 ###############################################################################
1233 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1234 ###############################################################################
1235
1236 #---------------------------------------------------------
1237 # Provide rules for generating a .cpp source file from 
1238 # (f)lex input sources. 
1239 #---------------------------------------------------------
1240
1241 LexFiles  := $(filter %.l,$(Sources))
1242
1243 ifneq ($(LexFiles),)
1244
1245 # Cancel built-in rules for lex
1246 %.c: %.l
1247 %.cpp: %.l
1248
1249 all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1250
1251 # Note the extra sed filtering here, used to cut down on the warnings emited 
1252 # by GCC.  The last line is a gross hack to work around flex aparently not 
1253 # being able to resize the buffer on a large token input.  Currently, for 
1254 # uninitialized string buffers in LLVM we can generate very long tokens, so 
1255 # this is a hack around it.
1256 # FIXME.  (f.e. char Buffer[10000] )
1257 $(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1258         $(Echo) Flexing $*.l
1259         $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1260         $(SED) 's/void yyunput/inline void yyunput/' | \
1261         $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1262         $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1263           > $(PROJ_SRC_DIR)/$*.cpp
1264     
1265 # IFF the .l file has changed since it was last checked into CVS, copy the .l
1266 # file to .l.cvs and the generated .cpp file to .cpp.cvs.  We use this mechanism
1267 # so that people without flex can build LLVM by copying the .cvs files to the 
1268 # source location and building them.
1269 $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1270 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1271         $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
1272       ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
1273
1274 $(LexFiles:%.l=$(ObjDir)/%.o) : \
1275 $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1276
1277 clean-local::
1278         -$(Verb) $(RM) -f $(LexOutput)
1279
1280 endif
1281
1282 #---------------------------------------------------------
1283 # Provide rules for generating a .cpp and .h source files 
1284 # from yacc (bison) input sources.
1285 #---------------------------------------------------------
1286
1287 YaccFiles  := $(filter %.y,$(Sources))
1288 ifneq ($(YaccFiles),)
1289
1290 .PRECIOUS: $(YaccOutput)
1291
1292 all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
1293
1294 # Cancel built-in rules for yacc
1295 %.c: %.y 
1296 %.cpp: %.y
1297 %.h: %.y
1298
1299 # Rule for building the bison based parsers...
1300 $(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1301         $(Echo) "Bisoning $*.y"
1302         $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1303         $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1304         $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1305
1306 # IFF the .y file has changed since it was last checked into CVS, copy the .y
1307 # file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs.  We use this
1308 # mechanism so that people without flex can build LLVM by copying the .cvs files
1309 # to the source location and building them.
1310 $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1311 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1312         $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
1313       ($(CP) $< $@; \
1314        $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
1315        $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
1316
1317
1318 $(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1319
1320 YaccOutput := $(YaccFiles:%.y=%.output)
1321
1322 clean-local::
1323         -$(Verb) $(RM) -f $(YaccOutput)
1324 endif
1325
1326 ###############################################################################
1327 # OTHER RULES: Other rules needed
1328 ###############################################################################
1329
1330 # To create postscript files from dot files...
1331 ifneq ($(DOT),false)
1332 %.ps: %.dot
1333         $(DOT) -Tps < $< > $@
1334 else
1335 %.ps: %.dot
1336         $(Echo) "Cannot build $@: The program dot is not installed"
1337 endif
1338
1339 # This rules ensures that header files that are removed still have a rule for
1340 # which they can be "generated."  This allows make to ignore them and
1341 # reproduce the dependency lists.
1342 %.h:: ;
1343 %.hpp:: ;
1344
1345 # Define clean-local to clean the current directory. Note that this uses a
1346 # very conservative approach ensuring that empty variables do not cause 
1347 # errors or disastrous removal.
1348 clean-local::
1349 ifneq ($(strip $(ObjDir)),)
1350         -$(Verb) $(RM) -rf $(ObjDir)
1351 endif
1352         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1353 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1354         -$(Verb) $(RM) -f *$(SHLIBEXT)
1355 endif
1356
1357 clean-all-local::
1358         -$(Verb) $(RM) -rf Debug Release Profile
1359
1360 # Build tags database for Emacs/Xemacs:
1361 tags:: TAGS CTAGS
1362
1363 TAGS: 
1364         find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1365           $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1366           $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1367           $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1368         -name '*.cpp' -o -name '*.h' | \
1369         $(ETAGS) $(ETAGSFLAGS) -
1370
1371 CTAGS:
1372         find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1373           $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1374           $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1375           $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1376           \( -name '*.cpp' -o -name '*.h' \) -print | \
1377           ctags -ImtT -o $(PROJ_OBJ_ROOT)/CTAGS -L -
1378
1379
1380 ###############################################################################
1381 # DEPENDENCIES: Include the dependency files if we should
1382 ###############################################################################
1383 ifndef DISABLE_AUTO_DEPENDENCIES
1384
1385 # If its not one of the cleaning targets
1386 ifneq ($strip($(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
1387
1388 # Get the list of dependency files
1389 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1390 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1391
1392 -include /dev/null $(DependFiles)
1393
1394 endif
1395
1396 endif 
1397
1398 ###############################################################################
1399 # CHECK: Running the test suite
1400 ###############################################################################
1401
1402 check::
1403         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1404           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1405             $(EchoCmd) Running test suite ; \
1406             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1407               TESTSUITE=$(TESTSUITE) ; \
1408           else \
1409             $(EchoCmd) No Makefile in test directory ; \
1410           fi ; \
1411         else \
1412           $(EchoCmd) No test directory ; \
1413         fi
1414
1415 ###############################################################################
1416 # DISTRIBUTION: Handle construction of a distribution tarball
1417 ###############################################################################
1418
1419 #------------------------------------------------------------------------
1420 # Define distribution related variables
1421 #------------------------------------------------------------------------
1422 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1423 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1424 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1425 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1426 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1427 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1428 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1429                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1430                Makefile.config.in configure autoconf
1431 DistOther   := $(notdir $(wildcard \
1432                $(PROJ_SRC_DIR)/*.h \
1433                $(PROJ_SRC_DIR)/*.td \
1434                $(PROJ_SRC_DIR)/*.def \
1435                $(PROJ_SRC_DIR)/*.ll \
1436                $(PROJ_SRC_DIR)/*.in))
1437 DistSubDirs := $(SubDirs)
1438 DistSources  = $(Sources) $(EXTRA_DIST)
1439 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1440
1441 #------------------------------------------------------------------------
1442 # We MUST build distribution with OBJ_DIR != SRC_DIR
1443 #------------------------------------------------------------------------
1444 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1445 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1446         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1447
1448 else
1449
1450 #------------------------------------------------------------------------
1451 # Prevent attempt to run dist targets from anywhere but the top level
1452 #------------------------------------------------------------------------
1453 ifneq ($(LEVEL),.)
1454 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1455         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1456 else
1457
1458 #------------------------------------------------------------------------
1459 # Provide the top level targets
1460 #------------------------------------------------------------------------
1461
1462 dist-gzip:: $(DistTarGZip)
1463
1464 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1465         $(Echo) Packing gzipped distribution tar file.
1466         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1467           $(GZIP) -c > "$(DistTarGZip)"
1468
1469 dist-bzip2:: $(DistTarBZ2)
1470
1471 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1472         $(Echo) Packing bzipped distribution tar file.
1473         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1474           $(BZIP2) -c >$(DistTarBZ2)
1475
1476 dist-zip:: $(DistZip)
1477
1478 $(DistZip) : $(TopDistDir)/.makedistdir
1479         $(Echo) Packing zipped distribution file.
1480         $(Verb) rm -f $(DistZip)
1481         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1482
1483 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip) 
1484         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1485
1486 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1487
1488 dist-check:: $(DistTarGZip)
1489         $(Echo) Checking distribution tar file.
1490         $(Verb) if test -d $(DistCheckDir) ; then \
1491           $(RM) -rf $(DistCheckDir) ; \
1492         fi
1493         $(Verb) $(MKDIR) $(DistCheckDir)
1494         $(Verb) cd $(DistCheckDir) && \
1495           $(MKDIR) $(DistCheckDir)/build && \
1496           $(MKDIR) $(DistCheckDir)/install && \
1497           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1498           cd build && \
1499           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1500             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1501           $(MAKE) all && \
1502           $(MAKE) check && \
1503           $(MAKE) install && \
1504           $(MAKE) uninstall && \
1505           $(MAKE) dist-clean && \
1506           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1507
1508 dist-clean::
1509         $(Echo) Cleaning distribution files
1510         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1511           $(DistCheckDir)
1512
1513 endif
1514
1515 #------------------------------------------------------------------------
1516 # Provide the recursive distdir target for building the distribution directory
1517 #------------------------------------------------------------------------
1518 distdir: $(DistDir)/.makedistdir
1519 $(DistDir)/.makedistdir: $(DistSources)
1520         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1521           if test -d "$(DistDir)" ; then \
1522             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
1523               exit 1 ; \
1524           fi ; \
1525           $(EchoCmd) Removing old $(DistDir) ; \
1526           $(RM) -rf $(DistDir); \
1527           $(EchoCmd) Making 'all' to verify build ; \
1528           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1529         fi
1530         $(Echo) Building Distribution Directory $(DistDir)
1531         $(Verb) $(MKDIR) $(DistDir) 
1532         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1533         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1534         for file in $(DistFiles) ; do \
1535           case "$$file" in \
1536             $(PROJ_SRC_DIR)/*) \
1537               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1538               ;; \
1539             $(PROJ_SRC_ROOT)/*) \
1540               file=`echo "$$file" | \
1541                 sed "s#^$$srcrootstrip/##"` \
1542               ;; \
1543           esac; \
1544           if test -f "$(PROJ_SRC_DIR)/$$file" || \
1545              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1546             from_dir="$(PROJ_SRC_DIR)" ; \
1547           elif test -f "$$file" || test -d "$$file" ; then \
1548             from_dir=. ; \
1549           fi ; \
1550           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1551           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1552             to_dir="$(DistDir)/$$dir"; \
1553             $(MKDIR) "$$to_dir" ; \
1554           else \
1555             to_dir="$(DistDir)"; \
1556           fi; \
1557           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1558           if test -n "$$mid_dir" ; then \
1559             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1560           fi ; \
1561           if test -d "$$from_dir/$$file"; then \
1562             if test -d "$(PROJ_SRC_DIR)/$$file" && \
1563                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1564                cd $(PROJ_SRC_DIR) ; \
1565                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1566                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1567                cd $(PROJ_OBJ_DIR) ; \
1568             else \
1569                cd $$from_dir ; \
1570                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1571                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1572                cd $(PROJ_OBJ_DIR) ; \
1573             fi; \
1574           elif test -f "$$from_dir/$$file" ; then \
1575             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1576           elif test -L "$$from_dir/$$file" ; then \
1577             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1578           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1579             $(EchoCmd) "===== WARNING: Distribution Source " \
1580               "$$from_dir/$$file Not Found!" ; \
1581           elif test "$(Verb)" != '@' ; then \
1582             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1583           fi; \
1584         done
1585         $(Verb) for subdir in $(DistSubDirs) ; do \
1586           if test "$$subdir" \!= "." ; then \
1587             new_distdir="$(DistDir)/$$subdir" ; \
1588             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1589             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1590               DistDir="$$new_distdir" distdir ) || exit 1; \
1591           fi; \
1592         done
1593         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1594           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1595           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1596                                   -name .svn \) -print` ;\
1597           $(MAKE) dist-hook ; \
1598           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1599             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1600             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1601             -o ! -type d ! -perm -444 -exec \
1602               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1603             || chmod -R a+r $(DistDir) ; \
1604         fi
1605
1606 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1607 # defined by user.
1608 dist-hook::
1609
1610 endif
1611
1612 ###############################################################################
1613 # TOP LEVEL - targets only to apply at the top level directory
1614 ###############################################################################
1615
1616 ifeq ($(LEVEL),.)
1617
1618 #------------------------------------------------------------------------
1619 # Install support for the project's include files:
1620 #------------------------------------------------------------------------
1621 install-local::
1622         $(Echo) Installing include files
1623         $(Verb) $(MKDIR) $(PROJ_includedir)
1624         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1625           cd $(PROJ_SRC_ROOT)/include && \
1626           for  hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1627               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
1628             instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1629             if test \! -d "$$instdir" ; then \
1630               $(EchoCmd) Making install directory $$instdir ; \
1631               $(MKDIR) $$instdir ;\
1632             fi ; \
1633             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1634           done ; \
1635         fi
1636 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1637         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1638           cd $(PROJ_OBJ_ROOT)/include && \
1639           for hdr in `find . -type f -print | grep -v CVS` ; do \
1640             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1641           done ; \
1642         fi
1643 endif
1644
1645 uninstall-local::
1646         $(Echo) Uninstalling include files
1647         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1648           cd $(PROJ_SRC_ROOT)/include && \
1649             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1650               '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1651         -o -name '*.in' ')' -print ')' | \
1652         grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1653           cd $(PROJ_SRC_ROOT)/include && \
1654             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1655       -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1656         fi
1657
1658 endif
1659
1660 #------------------------------------------------------------------------
1661 # Print out the directories used for building
1662 #------------------------------------------------------------------------
1663 printvars::
1664         $(Echo) "BuildMode    : " '$(BuildMode)'
1665         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1666         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1667         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1668         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1669         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1670         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1671         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
1672         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
1673         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
1674         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
1675         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
1676         $(Echo) "UserTargets  : " '$(UserTargets)'
1677         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1678         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1679         $(Echo) "ObjDir       : " '$(ObjDir)'
1680         $(Echo) "LibDir       : " '$(LibDir)'
1681         $(Echo) "ToolDir      : " '$(ToolDir)'
1682         $(Echo) "ExmplDir     : " '$(ExmplDir)'
1683         $(Echo) "Sources      : " '$(Sources)'
1684         $(Echo) "TDFiles      : " '$(TDFiles)'
1685         $(Echo) "INCFiles     : " '$(INCFiles)'
1686         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
1687         $(Echo) "PreConditions: " '$(PreConditions)'
1688         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
1689         $(Echo) "Compile.C    : " '$(Compile.C)'
1690         $(Echo) "Archive      : " '$(Archive)'
1691         $(Echo) "YaccFiles    : " '$(YaccFiles)'
1692         $(Echo) "LexFiles     : " '$(LexFiles)'
1693         $(Echo) "Module       : " '$(Module)'
1694         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1695         $(Echo) "SubDirs      : " '$(SubDirs)'