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