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