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