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