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