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