When a function takes a variable number of pointer arguments, with a zero
[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) -Wformat
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 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 didn't explicitly forbid building a 
828 #   relinked then we provide targets for building them.
829 #---------------------------------------------------------
830 ifndef DONT_BUILD_RELINKED
831
832 all-local:: $(LibName.O)
833
834 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
835         $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
836         $(Verb) $(Relink) -o $@ $(ObjectsO)
837
838 clean-local::
839 ifneq ($(strip $(LibName.O)),)
840         -$(Verb) $(RM) -f $(LibName.O)
841 endif
842
843 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
844
845 install-local:: $(DestRelinkedLib)
846
847 $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
848         $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
849         $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
850
851 uninstall-local::
852         $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
853         -$(Verb) $(RM) -f $(DestRelinkedLib)
854
855 endif
856
857 #---------------------------------------------------------
858 # Archive Library Targets:
859 #   If the user wanted a regular archive library built, 
860 #   then we provide targets for building them.
861 #---------------------------------------------------------
862 ifdef BUILD_ARCHIVE
863
864 all-local:: $(LibName.A)
865
866 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
867         $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
868         -$(Verb) $(RM) -f $@
869         $(Verb) $(Archive) $@ $(ObjectsO)
870         $(Verb) $(Ranlib) $@
871
872 clean-local::
873 ifneq ($(strip $(LibName.A)),)
874         -$(Verb) $(RM) -f $(LibName.A)
875 endif
876
877 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
878
879 install-local:: $(DestArchiveLib)
880
881 $(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
882         $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
883         $(Verb) $(MKDIR) $(PROJ_libdir)
884         $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
885
886 uninstall-local::
887         $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
888         -$(Verb) $(RM) -f $(DestArchiveLib)
889
890 endif
891
892 # endif LIBRARYNAME
893 endif 
894
895 ###############################################################################
896 # Tool Build Rules: Build executable tool based on TOOLNAME option
897 ###############################################################################
898
899 ifdef TOOLNAME
900
901 #---------------------------------------------------------
902 # Set up variables for building a tool.
903 #---------------------------------------------------------
904 ifdef EXAMPLE_TOOL
905 ToolBuildPath   := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
906 else
907 ToolBuildPath   := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
908 endif
909
910 #---------------------------------------------------------
911 # Tell make that we need to rebuild subdirectories before 
912 # we can link the tool. This affects things like LLI which 
913 # has library subdirectories.
914 #---------------------------------------------------------
915 $(ToolBuildPath): $(addsuffix /.makeall, $(PARALLEL_DIRS))
916
917 #---------------------------------------------------------
918 # Provide targets for building the tools
919 #---------------------------------------------------------
920 all-local:: $(ToolBuildPath)
921
922 clean-local::
923 ifneq ($(strip $(ToolBuildPath)),)
924         -$(Verb) $(RM) -f $(ToolBuildPath)
925 endif
926
927 ifdef EXAMPLE_TOOL
928 $(ToolBuildPath): $(ExmplDir)/.dir
929 else
930 $(ToolBuildPath): $(ToolDir)/.dir
931 endif
932
933 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
934         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
935         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
936           $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
937         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) $(StripWarnMsg) 
938
939 DestTool = $(PROJ_bindir)/$(TOOLNAME)
940
941 install-local:: $(DestTool)
942
943 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
944         $(Echo) Installing $(BuildMode) $(DestTool)
945         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
946
947 uninstall-local::
948         $(Echo) Uninstalling $(BuildMode) $(DestTool)
949         -$(Verb) $(RM) -f $(DestTool)
950
951 endif
952
953 ###############################################################################
954 # Object Build Rules: Build object files based on sources 
955 ###############################################################################
956
957 # Provide rule sets for when dependency generation is enabled
958 ifndef DISABLE_AUTO_DEPENDENCIES
959
960 #---------------------------------------------------------
961 # Create .lo files in the ObjDir directory from the .cpp and .c files...
962 #---------------------------------------------------------
963 ifdef SHARED_LIBRARY
964
965 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
966         $(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
967         $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ; \
968         then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
969         else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
970
971 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
972         $(Echo) "Compiling $*.cc for $(BuildMode) build (PIC)"
973         $(Verb) if $(LTCompile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ; \
974         then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
975         else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
976
977 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
978         $(Echo) "Compiling $*.c for $(BuildMode) build (PIC)"
979         $(Verb) if $(LTCompile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
980         then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
981         else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
982
983 #---------------------------------------------------------
984 # Create .o files in the ObjDir directory from the .cpp and .c files...
985 #---------------------------------------------------------
986 else
987
988 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
989         $(Echo) "Compiling $*.cpp for $(BuildMode) build"
990         $(Verb) if $(Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.CXXd $< -o $@ ; \
991         then $(MV) -f "$(ObjDir)/$*.CXXd" "$(ObjDir)/$*.d"; \
992         else $(RM) -f "$(ObjDir)/$*.CXXd"; exit 1; fi
993
994 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
995         $(Echo) "Compiling $*.cc for $(BuildMode) build"
996         $(Verb) if $(Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.CXXd $< -o $@ ; \
997         then $(MV) -f "$(ObjDir)/$*.CXXd" "$(ObjDir)/$*.d"; \
998         else $(RM) -f "$(ObjDir)/$*.CXXd"; exit 1; fi
999
1000 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1001         $(Echo) "Compiling $*.c for $(BuildMode) build"
1002         $(Verb) if $(Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.Cd $< -o $@ ; \
1003         then $(MV) -f "$(ObjDir)/$*.Cd" "$(ObjDir)/$*.d"; \
1004         else $(RM) -f "$(ObjDir)/$*.Cd"; exit 1; fi
1005
1006 endif
1007
1008 ## Rules for building preprocessed (.i/.ii) outputs.
1009 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1010         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1011         $(Verb) $(Preprocess.CXX) $< -o $@
1012
1013 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1014         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1015         $(Verb) $(Preprocess.CXX) $< -o $@
1016
1017  $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1018         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1019         $(Verb) $(Preprocess.C) $< -o $@
1020
1021
1022 #---------------------------------------------------------
1023 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1024 #---------------------------------------------------------
1025 $(ObjDir)/%.bc: %.cpp $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1026         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1027         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" $< -o $@ ; \
1028         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1029         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1030
1031 $(ObjDir)/%.bc: %.cc $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1032         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1033         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" $< -o $@ ; \
1034         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1035         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1036
1037 $(ObjDir)/%.bc: %.c $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1038         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1039         $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" $< -o $@ ; \
1040         then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1041         else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1042
1043 # Provide alternate rule sets if dependencies are disabled
1044 else
1045
1046 ifdef SHARED_LIBRARY
1047
1048 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1049         $(Echo) "Compiling $*.cpp for $(BuildMode) build (PIC)"
1050         $(LTCompile.CXX) $< -o $@ 
1051
1052 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1053         $(Echo) "Compiling $*.cc for $(BuildMode) build (PIC)"
1054         $(LTCompile.CXX) $< -o $@ 
1055
1056 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1057         $(Echo) "Compiling $*.c for $(BuildMode) build (PIC)"
1058         $(LTCompile.C) $< -o $@ 
1059
1060 else
1061
1062 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1063         $(Echo) "Compiling $*.cpp for $(BuildMode) build"
1064         $(Compile.CXX) $< -o $@ 
1065
1066 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1067         $(Echo) "Compiling $*.cc for $(BuildMode) build"
1068         $(Compile.CXX) $< -o $@ 
1069
1070 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1071         $(Echo) "Compiling $*.c for $(BuildMode) build"
1072         $(Compile.C) $< -o $@ 
1073 endif
1074
1075 $(ObjDir)/%.bc: %.cpp $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1076         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1077         $(BCCompile.CXX) $< -o $@ 
1078
1079 $(ObjDir)/%.bc: %.cc $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1080         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1081         $(BCCompile.CXX) $< -o $@ 
1082
1083 $(ObjDir)/%.bc: %.c $(ObjDir)/.dir $(GCCAS) $(BUILT_SOURCES)
1084         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1085         $(BCCompile.C) $< -o $@
1086
1087 endif
1088
1089 #---------------------------------------------------------
1090 # Provide rule to build .bc files from .ll sources,
1091 # regardless of dependencies
1092 #---------------------------------------------------------
1093 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1094         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1095         $(Verb) $(LLVMAS) $< -f -o $@
1096
1097 ###############################################################################
1098 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1099 ###############################################################################
1100
1101 ifdef TARGET
1102
1103 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) $(LLVM_SRC_ROOT)/lib/Target/Target.td $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td)
1104 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1105 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1106 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1107
1108 # All of these files depend on tblgen and the .td files.
1109 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1110
1111 # INCFiles rule: All of the tblgen generated files are emitted to 
1112 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1113 # us to only "touch" the real file if the contents of it change.  IOW, if
1114 # tblgen is modified, all of the .inc.tmp files are regereated, but no
1115 # dependencies of the .inc files are, unless the contents of the .inc file
1116 # changes.
1117 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1118         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1119
1120 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1121 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1122         $(Echo) "Building $(<F) register names with tblgen"
1123         $(Verb) $(TableGen) -gen-register-enums -o $@ $<
1124
1125 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1126 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1127         $(Echo) "Building $(<F) register information header with tblgen"
1128         $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
1129
1130 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1131 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1132         $(Echo) "Building $(<F) register info implementation with tblgen"
1133         $(Verb) $(TableGen) -gen-register-desc -o $@ $<
1134
1135 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1136 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1137         $(Echo) "Building $(<F) instruction names with tblgen"
1138         $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
1139
1140 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1141 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1142         $(Echo) "Building $(<F) instruction information with tblgen"
1143         $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
1144
1145 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1146 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1147         $(Echo) "Building $(<F) assembly writer with tblgen"
1148         $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
1149
1150 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1151 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1152         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1153         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $< 
1154
1155 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1156 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1157         $(Echo) "Building $(<F) code emitter with tblgen"
1158         $(Verb) $(TableGen) -gen-emitter -o $@ $<
1159
1160 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1161 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1162         $(Echo) "Building $(<F) instruction selector implementation with tblgen"
1163         $(Verb) $(TableGen) -gen-dag-isel -o $@ $<
1164
1165 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1166 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1167         $(Echo) "Building $(<F) subtarget information with tblgen"
1168         $(Verb) $(TableGen) -gen-subtarget -o $@ $<
1169
1170 clean-local::
1171         -$(Verb) $(RM) -f $(INCFiles)
1172
1173 endif
1174
1175 ###############################################################################
1176 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1177 ###############################################################################
1178
1179 #---------------------------------------------------------
1180 # Provide rules for generating a .cpp source file from 
1181 # (f)lex input sources. 
1182 #---------------------------------------------------------
1183
1184 LexFiles  := $(filter %.l,$(Sources))
1185
1186 ifneq ($(LexFiles),)
1187
1188 # Cancel built-in rules for lex
1189 %.c: %.l
1190 %.cpp: %.l
1191
1192 # Note the extra sed filtering here, used to cut down on the warnings emited 
1193 # by GCC.  The last line is a gross hack to work around flex aparently not 
1194 # being able to resize the buffer on a large token input.  Currently, for 
1195 # uninitialized string buffers in LLVM we can generate very long tokens, so 
1196 # this is a hack around it.
1197 # FIXME.  (f.e. char Buffer[10000] )
1198 $(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1199         $(Echo) Flexing $*.l
1200         $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1201         $(SED) 's/void yyunput/inline void yyunput/' | \
1202         $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1203         $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1204           > $(PROJ_SRC_DIR)/$*.cpp
1205         $(Echo) "*** DON'T FORGET TO CHECK IN $*.cpp (generated file)"
1206
1207 LexObjs := $(patsubst %.l,$(ObjDir)/%.o,$(LexFiles))
1208 $(LexObjs): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1209
1210 clean-local::
1211         -$(Verb) $(RM) -f $(LexOutput)
1212         $(Verb) $(RM) -f $(LexOutput)
1213
1214 endif
1215
1216 #---------------------------------------------------------
1217 # Provide rules for generating a .cpp and .h source files 
1218 # from yacc (bison) input sources.
1219 #---------------------------------------------------------
1220
1221 YaccFiles  := $(filter %.y,$(Sources))
1222 ifneq ($(YaccFiles),)
1223 YaccOutput := $(addprefix $(patsubst %.y,%,$(YaccFiles)),.output)
1224
1225 .PRECIOUS: $(YaccOutput)
1226
1227 # Cancel built-in rules for yacc
1228 %.c: %.y 
1229 %.cpp: %.y
1230 %.h: %.y
1231
1232 # Rule for building the bison parsers...
1233 $(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1234         $(Echo) "Bisoning $*.y"
1235         $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1236         $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1237         $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1238         $(Echo) "*** DON'T FORGET TO CHECK IN $*.cpp and $*.h (generated files)"
1239
1240 clean-local::
1241         $(Verb) $(RM) -f $(YaccOutput)
1242 endif
1243
1244 ###############################################################################
1245 # OTHER RULES: Other rules needed
1246 ###############################################################################
1247
1248 # To create postscript files from dot files...
1249 ifneq ($(DOT),false)
1250 %.ps: %.dot
1251         $(DOT) -Tps < $< > $@
1252 else
1253 %.ps: %.dot
1254         $(Echo) "Cannot build $@: The program dot is not installed"
1255 endif
1256
1257 # This rules ensures that header files that are removed still have a rule for
1258 # which they can be "generated."  This allows make to ignore them and
1259 # reproduce the dependency lists.
1260 %.h:: ;
1261 %.hpp:: ;
1262
1263 # Define clean-local to clean the current directory. Note that this uses a
1264 # very conservative approach ensuring that empty variables do not cause 
1265 # errors or disastrous removal.
1266 clean-local::
1267 ifneq ($(strip $(ObjDir)),)
1268         -$(Verb) $(RM) -rf $(ObjDir)
1269 endif
1270         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1271 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1272         -$(Verb) $(RM) -f *$(SHLIBEXT)
1273 endif
1274
1275 clean-all-local::
1276         -$(Verb) $(RM) -rf Debug Release Profile
1277
1278 # Build tags database for Emacs/Xemacs:
1279 tags:: TAGS CTAGS
1280
1281 TAGS: 
1282         find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1283           $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1284           $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1285           $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1286         -name '*.cpp' -o -name '*.h' | \
1287         $(ETAGS) $(ETAGSFLAGS) -
1288
1289 CTAGS:
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' \) -print | \
1295           ctags -ImtT -o $(PROJ_OBJ_ROOT)/CTAGS -L -
1296
1297
1298 ###############################################################################
1299 # DEPENDENCIES: Include the dependency files if we should
1300 ###############################################################################
1301 ifndef DISABLE_AUTO_DEPENDENCIES
1302
1303 # If its not one of the cleaning targets
1304 ifneq ($strip($(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
1305
1306 # Get the list of dependency files
1307 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1308 DependFiles := $(patsubst %,$(PROJ_OBJ_DIR)/$(BuildMode)/%.d,$(DependFiles))
1309
1310 -include /dev/null $(DependFiles)
1311
1312 endif
1313
1314 endif 
1315
1316 ###############################################################################
1317 # CHECK: Running the test suite
1318 ###############################################################################
1319
1320 check::
1321         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1322           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1323             $(EchoCmd) Running test suite ; \
1324             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1325               TESTSUITE=$(TESTSUITE) ; \
1326           else \
1327             $(EchoCmd) No Makefile in test directory ; \
1328           fi ; \
1329         else \
1330           $(EchoCmd) No test directory ; \
1331         fi
1332
1333 ###############################################################################
1334 # DISTRIBUTION: Handle construction of a distribution tarball
1335 ###############################################################################
1336
1337 #------------------------------------------------------------------------
1338 # Define distribution related variables
1339 #------------------------------------------------------------------------
1340 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1341 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1342 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1343 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1344 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1345 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1346 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1347                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1348                Makefile.config.in configure autoconf
1349 DistOther   := $(notdir $(wildcard \
1350                $(PROJ_SRC_DIR)/*.h \
1351                $(PROJ_SRC_DIR)/*.td \
1352                $(PROJ_SRC_DIR)/*.def \
1353                $(PROJ_SRC_DIR)/*.ll \
1354                $(PROJ_SRC_DIR)/*.in))
1355 DistSubDirs := $(SubDirs)
1356 DistSources  = $(Sources) $(EXTRA_DIST)
1357 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1358
1359 #------------------------------------------------------------------------
1360 # We MUST build distribution with OBJ_DIR != SRC_DIR
1361 #------------------------------------------------------------------------
1362 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1363 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1364         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1365
1366 else
1367
1368 #------------------------------------------------------------------------
1369 # Prevent attempt to run dist targets from anywhere but the top level
1370 #------------------------------------------------------------------------
1371 ifneq ($(LEVEL),.)
1372 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1373         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1374 else
1375
1376 #------------------------------------------------------------------------
1377 # Provide the top level targets
1378 #------------------------------------------------------------------------
1379
1380 dist-gzip:: $(DistTarGZip)
1381
1382 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1383         $(Echo) Packing gzipped distribution tar file.
1384         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1385           $(GZIP) -c > "$(DistTarGZip)"
1386
1387 dist-bzip2:: $(DistTarBZ2)
1388
1389 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1390         $(Echo) Packing bzipped distribution tar file.
1391         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1392           $(BZIP2) -c >$(DistTarBZ2)
1393
1394 dist-zip:: $(DistZip)
1395
1396 $(DistZip) : $(TopDistDir)/.makedistdir
1397         $(Echo) Packing zipped distribution file.
1398         $(Verb) rm -f $(DistZip)
1399         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1400
1401 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip) 
1402         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1403
1404 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1405
1406 dist-check:: $(DistTarGZip)
1407         $(Echo) Checking distribution tar file.
1408         $(Verb) if test -d $(DistCheckDir) ; then \
1409           $(RM) -rf $(DistCheckDir) ; \
1410         fi
1411         $(Verb) $(MKDIR) $(DistCheckDir)
1412         $(Verb) cd $(DistCheckDir) && \
1413           $(MKDIR) $(DistCheckDir)/build && \
1414           $(MKDIR) $(DistCheckDir)/install && \
1415           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1416           cd build && \
1417           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1418             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1419           $(MAKE) all && \
1420           $(MAKE) check && \
1421           $(MAKE) install && \
1422           $(MAKE) uninstall && \
1423           $(MAKE) dist && \
1424           $(MAKE) clean && \
1425           $(MAKE) dist-clean && \
1426           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1427
1428 dist-clean::
1429         $(Echo) Cleaning distribution files
1430         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1431           $(DistCheckDir)
1432
1433 endif
1434
1435 #------------------------------------------------------------------------
1436 # Provide the recursive distdir target for building the distribution directory
1437 #------------------------------------------------------------------------
1438 distdir: $(DistDir)/.makedistdir
1439 $(DistDir)/.makedistdir: $(DistSources)
1440         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1441           if test -d "$(DistDir)" ; then \
1442             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
1443               exit 1 ; \
1444           fi ; \
1445           $(EchoCmd) Removing old $(DistDir) ; \
1446           $(RM) -rf $(DistDir); \
1447           $(EchoCmd) Making 'all' to verify build ; \
1448           $(MAKE) all ; \
1449         fi
1450         $(Echo) Building Distribution Directory $(DistDir)
1451         $(Verb) $(MKDIR) $(DistDir) 
1452         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1453         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1454         for file in $(DistFiles) ; do \
1455           case "$$file" in \
1456             $(PROJ_SRC_DIR)/*) \
1457               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1458               ;; \
1459             $(PROJ_SRC_ROOT)/*) \
1460               file=`echo "$$file" | \
1461                 sed "s#^$$srcrootstrip/##"` \
1462               ;; \
1463           esac; \
1464           if test -f "$(PROJ_SRC_DIR)/$$file" || \
1465              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1466             from_dir="$(PROJ_SRC_DIR)" ; \
1467           elif test -f "$$file" || test -d "$$file" ; then \
1468             from_dir=. ; \
1469           fi ; \
1470           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1471           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1472             to_dir="$(DistDir)/$$dir"; \
1473             $(MKDIR) "$$to_dir" ; \
1474           else \
1475             to_dir="$(DistDir)"; \
1476           fi; \
1477           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1478           if test -n "$$mid_dir" ; then \
1479             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1480           fi ; \
1481           if test -d "$$from_dir/$$file"; then \
1482             if test -d "$(PROJ_SRC_DIR)/$$file" && \
1483                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1484                cd $(PROJ_SRC_DIR) ; \
1485                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1486                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1487                cd $(PROJ_OBJ_DIR) ; \
1488             else \
1489                cd $$from_dir ; \
1490                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1491                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1492                cd $(PROJ_OBJ_DIR) ; \
1493             fi; \
1494           elif test -f "$$from_dir/$$file" ; then \
1495             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1496           elif test -L "$$from_dir/$$file" ; then \
1497             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1498           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1499             $(EchoCmd) "===== WARNING: Distribution Source " \
1500               "$$from_dir/$$file Not Found!" ; \
1501           elif test "$(Verb)" != '@' ; then \
1502             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1503           fi; \
1504         done
1505         $(Verb) for subdir in $(DistSubDirs) ; do \
1506           if test "$$subdir" \!= "." ; then \
1507             new_distdir="$(DistDir)/$$subdir" ; \
1508             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1509             ( cd $$subdir && $(MAKE) DistDir="$$new_distdir" distdir ) || \
1510             exit 1; \
1511           fi; \
1512         done
1513         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1514           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1515           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o -name .svn \) -print` ;\
1516           $(MAKE) dist-hook ; \
1517           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1518             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1519             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1520             -o ! -type d ! -perm -444 -exec \
1521               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1522             || chmod -R a+r $(DistDir) ; \
1523         fi
1524
1525 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1526 # defined by user.
1527 dist-hook::
1528
1529 endif
1530
1531 ###############################################################################
1532 # TOP LEVEL - targets only to apply at the top level directory
1533 ###############################################################################
1534
1535 ifeq ($(LEVEL),.)
1536
1537 #------------------------------------------------------------------------
1538 # Install support for the project's include files:
1539 #------------------------------------------------------------------------
1540 install-local::
1541         $(Echo) Installing include files
1542         $(Verb) $(MKDIR) $(PROJ_includedir)
1543         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1544           cd $(PROJ_SRC_ROOT)/include && \
1545           for  hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1546               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
1547             instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1548             if test \! -d "$$instdir" ; then \
1549               $(EchoCmd) Making install directory $$instdir ; \
1550               $(MKDIR) $$instdir ;\
1551             fi ; \
1552             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1553           done ; \
1554         fi
1555         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1556           cd $(PROJ_OBJ_ROOT)/include && \
1557           for hdr in `find . -type f -print` ; do \
1558             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1559           done ; \
1560         fi
1561
1562 uninstall-local::
1563         $(Echo) Uninstalling include files
1564         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1565           cd $(PROJ_SRC_ROOT)/include && \
1566             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1567               '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' -o -name '*.in' ')' \
1568               -print ')' | grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1569           cd $(PROJ_SRC_ROOT)/include && \
1570             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' -print ')' \
1571             | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1572         fi
1573
1574 endif
1575
1576 #------------------------------------------------------------------------
1577 # Print out the directories used for building
1578 #------------------------------------------------------------------------
1579 printvars::
1580         $(Echo) "BuildMode    : " '$(BuildMode)'
1581         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1582         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1583         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1584         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1585         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1586         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1587         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
1588         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
1589         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
1590         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
1591         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
1592         $(Echo) "UserTargets  : " '$(UserTargets)'
1593         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1594         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1595         $(Echo) "ObjDir       : " '$(ObjDir)'
1596         $(Echo) "LibDir       : " '$(LibDir)'
1597         $(Echo) "ToolDir      : " '$(ToolDir)'
1598         $(Echo) "ExmplDir     : " '$(ExmplDir)'
1599         $(Echo) "Sources      : " '$(Sources)'
1600         $(Echo) "TDFiles      : " '$(TDFiles)'
1601         $(Echo) "INCFiles     : " '$(INCFiles)'
1602         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
1603         $(Echo) "PreConditions: " '$(PreConditions)'
1604         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
1605         $(Echo) "Compile.C    : " '$(Compile.C)'
1606         $(Echo) "Archive      : " '$(Archive)'
1607         $(Echo) "YaccFiles    : " '$(YaccFiles)'
1608         $(Echo) "LexFiles     : " '$(LexFiles)'
1609         $(Echo) "Module       : " '$(Module)'
1610         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'