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