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