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