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