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