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