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