Workaround no longer needed.
[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 LD.Flags      += -L$(LibDir) -L$(LLVMLibDir) 
399 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
400 # All -I flags should go here, so that they don't confuse llvm-config.
401 CPP.Flags     += -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
402                  -I$(PROJ_OBJ_ROOT)/include \
403                  -I$(PROJ_SRC_ROOT)/include \
404                  -I$(LLVM_OBJ_ROOT)/include \
405                  -I$(LLVM_SRC_ROOT)/include \
406                  $(CPP.BaseFlags)
407
408 Compile.C     = $(CC) $(CPP.Flags) $(CompileCommonOpts) -c $(C.Flags)
409 LTCompile.C   = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C)
410 BCCompile.C   = $(LLVMGCCWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
411                 $(C.Flags)
412 Preprocess.C  = $(CC) $(CPP.Flags) $(CompileCommonOpts) -E $(C.Flags)
413
414 Compile.CXX   = $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -c
415 LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX)
416 BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CompileCommonOpts) \
417                 $(CXX.Flags)
418 Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E
419 Link          = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
420                 $(CXX.Flags) $(CompileCommonOpts) $(LD.Flags) $(Strip)
421 Relink        = $(LIBTOOL) $(LibTool.Flags) --mode=link $(CXX) $(CPP.Flags) \
422                 $(CXX.Flags) $(CompileCommonOpts) $(Relink.Flags)
423 LTInstall     = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \
424                 $(Install.Flags)
425 ProgInstall   = $(INSTALL) $(Install.StripFlag) -m 0755 
426 ScriptInstall = $(INSTALL) -m 0755 
427 DataInstall   = $(INSTALL) -m 0644
428 TableGen      = $(TBLGEN) -I $(PROJ_SRC_DIR) -I$(PROJ_SRC_ROOT)/include \
429                 -I $(PROJ_SRC_ROOT)/lib/Target      
430 Archive       = $(AR) $(AR.Flags)
431 LArchive      = $(LLVMToolDir)/llvm-ar rcsf
432 ifdef RANLIB
433 Ranlib        = $(RANLIB)
434 else
435 Ranlib        = ranlib
436 endif
437
438 #----------------------------------------------------------
439 # Get the list of source files and compute object file 
440 # names from them. 
441 #----------------------------------------------------------
442
443 ifndef SOURCES
444   Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
445              $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c $(PROJ_SRC_DIR)/*.y \
446              $(PROJ_SRC_DIR)/*.l))
447 else
448   Sources := $(SOURCES)
449 endif 
450
451 ifdef BUILT_SOURCES
452 Sources += $(filter %.cpp %.c %.cc %.y %.l,$(BUILT_SOURCES))
453 endif
454
455 BaseNameSources := $(sort $(basename $(Sources)))
456
457 ObjectsO  := $(BaseNameSources:%=$(ObjDir)/%.o)
458 ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo)
459 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
460
461 ###############################################################################
462 # DIRECTORIES: Handle recursive descent of directory structure
463 ###############################################################################
464
465 #---------------------------------------------------------
466 # Provide rules to make install dirs. This must be early
467 # in the file so they get built before dependencies
468 #---------------------------------------------------------
469
470 $(PROJ_bindir): $(PROJ_bindir)/.dir
471 $(PROJ_libdir): $(PROJ_libdir)/.dir
472 $(PROJ_includedir): $(PROJ_includedir)/.dir
473 $(PROJ_etcdir): $(PROJ_etcdir)/.dir
474
475 # To create other directories, as needed, and timestamp their creation
476 %/.dir:
477         $(Verb) $(MKDIR) $* > /dev/null
478         $(Verb) $(DATE) > $@
479
480 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
481 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
482
483 #---------------------------------------------------------
484 # Handle the DIRS options for sequential construction
485 #---------------------------------------------------------
486
487 SubDirs := 
488 ifdef DIRS
489 SubDirs += $(DIRS)
490 $(RecursiveTargets)::
491         $(Verb) for dir in $(DIRS); do \
492           if [ ! -f $$dir/Makefile ]; then \
493             $(MKDIR) $$dir; \
494             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
495           fi; \
496           ($(MAKE) -C $$dir $@ ) || exit 1; \
497         done
498 endif
499
500 #---------------------------------------------------------
501 # Handle the EXPERIMENTAL_DIRS options ensuring success
502 # after each directory is built.
503 #---------------------------------------------------------
504 ifdef EXPERIMENTAL_DIRS
505 $(RecursiveTargets)::
506         $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
507           if [ ! -f $$dir/Makefile ]; then \
508             $(MKDIR) $$dir; \
509             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
510           fi; \
511           ($(MAKE) -C $$dir $@ ) || exit 0; \
512         done
513 endif
514
515 #-----------------------------------------------------------
516 # Handle the PARALLEL_DIRS options for parallel construction
517 #-----------------------------------------------------------
518 ifdef PARALLEL_DIRS
519
520 SubDirs += $(PARALLEL_DIRS)
521
522 # Unfortunately, this list must be maintained if new recursive targets are added
523 all      :: $(addsuffix /.makeall      ,$(PARALLEL_DIRS))
524 clean    :: $(addsuffix /.makeclean    ,$(PARALLEL_DIRS))
525 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
526 install  :: $(addsuffix /.makeinstall  ,$(PARALLEL_DIRS))
527 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
528 install-bytecode  :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
529
530 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
531
532 $(ParallelTargets) :
533         $(Verb) if [ ! -f $(@D)/Makefile ]; then \
534           $(MKDIR) $(@D); \
535           $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
536         fi; \
537         $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) ;
538 endif
539
540 #---------------------------------------------------------
541 # Handle the OPTIONAL_DIRS options for directores that may
542 # or may not exist.
543 #---------------------------------------------------------
544 ifdef OPTIONAL_DIRS
545
546 SubDirs += $(OPTIONAL_DIRS)
547
548 $(RecursiveTargets)::
549         $(Verb) for dir in $(OPTIONAL_DIRS); do \
550           if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
551             if [ ! -f $$dir/Makefile ]; then \
552               $(MKDIR) $$dir; \
553               $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
554             fi; \
555             ($(MAKE) -C$$dir $@ ) || exit 1; \
556           fi \
557         done
558 endif
559
560 #---------------------------------------------------------
561 # Handle the CONFIG_FILES options
562 #---------------------------------------------------------
563 ifdef CONFIG_FILES
564
565 install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
566         $(Echo) Installing Configuration Files To $(PROJ_etcdir)
567         $(Verb)for file in $(CONFIG_FILES); do \
568           if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
569             $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
570           elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
571             $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
572           else \
573             $(ECHO) Error: cannot find config file $${file}. ; \
574           fi \
575         done
576
577 uninstall-local::
578         $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
579         $(Verb)for file in $(CONFIG_FILES); do \
580           $(RM) -f $(PROJ_etcdir)/$${file} ; \
581         done
582
583 endif
584
585 ###############################################################################
586 # Set up variables for building libararies
587 ###############################################################################
588
589 #---------------------------------------------------------
590 # Handle the special "JIT" value for LLVM_LIBS which is a
591 # shorthand for a bunch of libraries that get the correct
592 # JIT support for a library or a tool that runs JIT.
593 #---------------------------------------------------------
594 ifeq ($(firstword $(LLVMLIBS)),config)
595 LLVM_CONFIG := $(LLVM_SRC_ROOT)/utils/llvm-config/llvm-config 
596 LLVMLIBS := $(shell $(LLVM_CONFIG) --libnames $(wordlist 2,9999,$(LLVMLIBS)))
597 LLVMLIBS := $(patsubst lib%.a,%.a,$(LLVMLIBS))
598 LLVMLIBS := $(patsubst %.o,%,$(LLVMLIBS))
599 endif
600
601 ifeq ($(LLVMLIBS),JIT)
602
603 # Make sure we can get our own symbols in the tool
604 Link += -dlopen self
605
606 # Generic JIT libraries
607 JIT_LIBS := LLVMInterpreter LLVMJIT LLVMSelectionDAG.a LLVMCodeGen.a \
608             LLVMExecutionEngine
609
610 # You can enable the X86 JIT on a non-X86 host by setting the flag
611 # ENABLE_X86_JIT on the make command line. If not, it will still be
612 # enabled automagically on an X86 host.
613 ifeq ($(ARCH), x86)
614   ENABLE_X86_JIT = 1
615 endif
616
617 # What the X86 JIT requires
618 ifdef ENABLE_X86_JIT
619   JIT_LIBS += LLVMX86 
620 endif
621
622 # You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
623 # ENABLE_PPC_JIT on the make command line. If not, it will still be
624 # enabled automagically on an PowerPC host.
625 ifeq ($(ARCH), PowerPC)
626   ENABLE_PPC_JIT = 1
627 endif
628
629 # What the PowerPC JIT requires
630 ifdef ENABLE_PPC_JIT
631   JIT_LIBS += LLVMPowerPC 
632 endif
633
634 # You can enable the Alpha JIT on a non-Alpha host by setting the flag
635 # ENABLE_ALPHA_JIT on the make command line. If not, it will still be
636 # enabled automagically on an Alpha host.
637 ifeq ($(ARCH), Alpha)
638   ENABLE_ALPHA_JIT = 1
639 endif
640
641 # What the Alpha JIT requires
642 ifdef ENABLE_ALPHA_JIT
643   JIT_LIBS += LLVMAlpha 
644 endif
645
646 LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts.a LLVMTransformUtils.a LLVMAnalysis.a \
647             LLVMBCReader.a LLVMTarget.a LLVMCore.a LLVMSupport.a LLVMbzip2.a \
648             LLVMSystem.a $(PLATFORMLIBDL)
649 endif
650
651 #---------------------------------------------------------
652 # Define various command line options pertaining to the
653 # libraries needed when linking. There are "Proj" libs 
654 # (defined by the user's project) and "LLVM" libs (defined 
655 # by the # LLVM project).
656 #---------------------------------------------------------
657
658 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
659 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o,  $(ProjLibsOptions))
660 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
661 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
662 ProjUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
663 LLVMUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
664 ProjLibsPaths   := $(addprefix $(LibDir)/,$(ProjUsedLibs))
665 LLVMLibsPaths   := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
666
667 ###############################################################################
668 # Library Build Rules: Four ways to build a library
669 ###############################################################################
670
671 #---------------------------------------------------------
672 # Bytecode Module Targets:
673 #   If the user set MODULE_NAME then they want to build a
674 #   bytecode module from the sources. We compile all the
675 #   sources and link it together into a single bytecode
676 #   module.
677 #---------------------------------------------------------
678
679 ifdef MODULE_NAME
680 ifeq ($(strip $(LLVMGCC)),)
681 $(warning Modules require llvm-gcc but no llvm-gcc is available ****)
682 else
683
684 Module     := $(LibDir)/$(MODULE_NAME).bc
685 LinkModule := $(GCCLD) -L$(CFERuntimeLibDir)
686
687
688 ifdef EXPORTED_SYMBOL_FILE
689 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
690 endif
691
692 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
693         $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
694         $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
695
696 all-local:: $(Module)
697
698 clean-local::
699 ifneq ($(strip $(Module)),)
700         -$(Verb) $(RM) -f $(Module)
701 endif
702
703 ifdef BYTECODE_DESTINATION
704 ModuleDestDir := $(BYTECODE_DESTINATION)
705 else
706 ModuleDestDir := $(PROJ_libdir)
707 endif
708
709 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
710
711 install-module:: $(DestModule)
712 install-local:: $(DestModule)
713
714 $(DestModule): $(ModuleDestDir) $(Module) 
715         $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
716         $(Verb) $(DataInstall) $(Module) $(DestModule)
717
718 uninstall-local::
719         $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
720         -$(Verb) $(RM) -f $(DestModule)
721
722 endif
723 endif
724
725 # if we're building a library ...
726 ifdef LIBRARYNAME
727
728 # Make sure there isn't any extranous whitespace on the LIBRARYNAME option
729 LIBRARYNAME := $(strip $(LIBRARYNAME))
730 ifdef LOADABLE_MODULE
731 LibName.LA := $(LibDir)/$(LIBRARYNAME).la
732 else
733 LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la
734 endif
735 LibName.A  := $(LibDir)/lib$(LIBRARYNAME).a
736 LibName.O  := $(LibDir)/$(LIBRARYNAME).o
737 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
738
739 #---------------------------------------------------------
740 # Shared Library Targets:
741 #   If the user asked for a shared library to be built
742 #   with the SHARED_LIBRARY variable, then we provide
743 #   targets for building them.
744 #---------------------------------------------------------
745 ifdef SHARED_LIBRARY
746
747 all-local:: $(LibName.LA)
748
749 ifdef LINK_LIBS_IN_SHARED
750 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
751         $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
752         $(Verb) $(Link) -o $@ $(ObjectsLO) \
753          $(ProjLibsOptions) $(LLVMLibsOptions)
754         $(Verb) $(LTInstall) $@ $(LibDir)
755 else
756 $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir
757         $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
758         $(Verb) $(Link) -o $@ $(ObjectsLO)
759         $(Verb) $(LTInstall) $@ $(LibDir)
760 endif
761
762 clean-local::
763 ifneq ($(strip $(LibName.LA)),)
764         -$(Verb) $(RM) -f $(LibName.LA)
765 endif
766
767 DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
768
769 install-local:: $(DestSharedLib)
770
771 $(DestSharedLib): $(PROJ_libdir) $(LibName.LA)
772         $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
773         $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib)
774         $(Verb) $(LIBTOOL) --finish $(PROJ_libdir)
775
776 uninstall-local:: 
777         $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
778         -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
779
780 endif
781
782 #---------------------------------------------------------
783 # Bytecode Library Targets:
784 #   If the user asked for a bytecode library to be built
785 #   with the BYTECODE_LIBRARY variable, then we provide 
786 #   targets for building them.
787 #---------------------------------------------------------
788 ifdef BYTECODE_LIBRARY
789 ifeq ($(strip $(LLVMGCC)),)
790 $(warning Bytecode libraries require llvm-gcc which could not be found ****)
791 else
792
793 all-local:: $(LibName.BCA)
794
795 ifdef EXPORTED_SYMBOL_FILE
796 BCLinkLib = $(GCCLD) -L$(CFERuntimeLibDir) \
797                      -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
798
799 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(GCCLD) \
800                 $(LLVMToolDir)/llvm-ar
801         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
802           "(internalize)"
803         $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC)
804         $(Verb) $(RM) -f $@
805         $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o
806 else
807 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
808                 $(LLVMToolDir)/llvm-ar
809         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
810         $(Verb) $(RM) -f $@
811         $(Verb) $(LArchive) $@ $(ObjectsBC)
812
813 endif
814
815 clean-local::
816 ifneq ($(strip $(LibName.BCA)),)
817         -$(Verb) $(RM) -f $(LibName.BCA)
818 endif
819
820 ifdef BYTECODE_DESTINATION
821 BytecodeDestDir := $(BYTECODE_DESTINATION)
822 else
823 BytecodeDestDir := $(PROJ_libdir)
824 endif
825
826 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
827
828 install-bytecode-local:: $(DestBytecodeLib)
829
830 install-local:: $(DestBytecodeLib)
831
832 $(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA) 
833         $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
834         $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
835
836 uninstall-local::
837         $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
838         -$(Verb) $(RM) -f $(DestBytecodeLib)
839
840 endif
841 endif
842
843 #---------------------------------------------------------
844 # ReLinked Library Targets:
845 #   If the user explicitly requests a relinked library with
846 #   BUILD_RELINKED, provide it.  Otherwise, if they specify
847 #   neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give
848 #   them one.
849 #---------------------------------------------------------
850 ifndef BUILD_ARCHIVE
851 ifndef DONT_BUILD_RELINKED
852 BUILD_RELINKED = 1
853 endif
854 endif
855
856 ifdef BUILD_RELINKED
857
858 all-local:: $(LibName.O)
859
860 $(LibName.O): $(ObjectsO) $(LibDir)/.dir
861         $(Echo) Linking $(BuildMode) Object Library $(notdir $@)
862         $(Verb) $(Relink) -o $@ $(ObjectsO)
863
864 clean-local::
865 ifneq ($(strip $(LibName.O)),)
866         -$(Verb) $(RM) -f $(LibName.O)
867 endif
868
869 DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o
870
871 install-local:: $(DestRelinkedLib)
872
873 $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O)
874         $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib)
875         $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib)
876
877 uninstall-local::
878         $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib)
879         -$(Verb) $(RM) -f $(DestRelinkedLib)
880
881 endif
882
883 #---------------------------------------------------------
884 # Archive Library Targets:
885 #   If the user wanted a regular archive library built, 
886 #   then we provide targets for building them.
887 #---------------------------------------------------------
888 ifdef BUILD_ARCHIVE
889
890 all-local:: $(LibName.A)
891
892 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
893         $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
894         -$(Verb) $(RM) -f $@
895         $(Verb) $(Archive) $@ $(ObjectsO)
896         $(Verb) $(Ranlib) $@
897
898 clean-local::
899 ifneq ($(strip $(LibName.A)),)
900         -$(Verb) $(RM) -f $(LibName.A)
901 endif
902
903 DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
904
905 install-local:: $(DestArchiveLib)
906
907 $(DestArchiveLib): $(PROJ_libdir) $(LibName.A)
908         $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
909         $(Verb) $(MKDIR) $(PROJ_libdir)
910         $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib)
911
912 uninstall-local::
913         $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
914         -$(Verb) $(RM) -f $(DestArchiveLib)
915
916 endif
917
918 # endif LIBRARYNAME
919 endif 
920
921 ###############################################################################
922 # Tool Build Rules: Build executable tool based on TOOLNAME option
923 ###############################################################################
924
925 ifdef TOOLNAME
926
927 #---------------------------------------------------------
928 # Set up variables for building a tool.
929 #---------------------------------------------------------
930 ifdef EXAMPLE_TOOL
931 ToolBuildPath   := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
932 else
933 ToolBuildPath   := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
934 endif
935
936 #---------------------------------------------------------
937 # Tell make that we need to rebuild subdirectories before 
938 # we can link the tool. This affects things like LLI which 
939 # has library subdirectories.
940 #---------------------------------------------------------
941 $(ToolBuildPath): $(addsuffix /.makeall, $(PARALLEL_DIRS))
942
943 #---------------------------------------------------------
944 # Provide targets for building the tools
945 #---------------------------------------------------------
946 all-local:: $(ToolBuildPath)
947
948 clean-local::
949 ifneq ($(strip $(ToolBuildPath)),)
950         -$(Verb) $(RM) -f $(ToolBuildPath)
951 endif
952
953 ifdef EXAMPLE_TOOL
954 $(ToolBuildPath): $(ExmplDir)/.dir
955 else
956 $(ToolBuildPath): $(ToolDir)/.dir
957 endif
958
959 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
960         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
961         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
962         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
963         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
964           $(StripWarnMsg) 
965
966 DestTool = $(PROJ_bindir)/$(TOOLNAME)
967
968 install-local:: $(DestTool)
969
970 $(DestTool): $(PROJ_bindir) $(ToolBuildPath)
971         $(Echo) Installing $(BuildMode) $(DestTool)
972         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
973
974 uninstall-local::
975         $(Echo) Uninstalling $(BuildMode) $(DestTool)
976         -$(Verb) $(RM) -f $(DestTool)
977
978 endif
979
980 ###############################################################################
981 # Object Build Rules: Build object files based on sources 
982 ###############################################################################
983
984 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
985 ifeq ($(OS),HP-UX)
986   DISABLE_AUTO_DEPENDENCIES=1
987 endif
988
989 ifdef SHARED_LIBRARY
990 PIC_FLAG = "(PIC)"
991 MAYBE_PIC_Compile.CXX = $(LTCompile.CXX)
992 MAYBE_PIC_Compile.C = $(LTCompile.C)
993 else
994 MAYBE_PIC_Compile.CXX = $(Compile.CXX)
995 MAYBE_PIC_Compile.C = $(Compile.C)
996 endif
997
998 # Provide rule sets for when dependency generation is enabled
999 ifndef DISABLE_AUTO_DEPENDENCIES
1000
1001 #---------------------------------------------------------
1002 # Create .lo files in the ObjDir directory from the .cpp and .c files...
1003 #---------------------------------------------------------
1004
1005 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1006         $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
1007         $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1008           then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1009           else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1010
1011 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1012         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1013         $(Verb) if $(MAYBE_PIC_Compile.CXX) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACXXd $< -o $@ ;\
1014         then $(MV) -f "$(ObjDir)/$*.LACXXd" "$(ObjDir)/$*.d"; \
1015         else $(RM) -f "$(ObjDir)/$*.LACXXd"; exit 1; fi
1016
1017 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1018         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1019         $(Verb) if $(MAYBE_PIC_Compile.C) -MD -MT $@ -MP -MF $(ObjDir)/$*.LACd $< -o $@ ; \
1020         then $(MV) -f "$(ObjDir)/$*.LACd" "$(ObjDir)/$*.d"; \
1021         else $(RM) -f "$(ObjDir)/$*.LACd"; exit 1; fi
1022
1023 #---------------------------------------------------------
1024 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1025 #---------------------------------------------------------
1026
1027 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1028         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1029         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1030                               $< -o $@ -S -emit-llvm ; \
1031         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1032         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1033
1034 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1035         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1036         $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \
1037                               $< -o $@ -S -emit-llvm ; \
1038         then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \
1039         else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi
1040
1041 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1042         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1043         $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \
1044                             $< -o $@ -S -emit-llvm ; \
1045         then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \
1046         else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi
1047
1048 # Provide alternate rule sets if dependencies are disabled
1049 else
1050
1051 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1052         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1053         $(MAYBE_PIC_Compile.CXX) $< -o $@ 
1054
1055 $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1056         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1057         $(MAYBE_PIC_Compile.CXX) $< -o $@ 
1058
1059 $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1060         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1061         $(MAYBE_PIC_Compile.C) $< -o $@ 
1062
1063 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1064         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1065         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1066
1067 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1068         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1069         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1070
1071 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1072         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1073         $(BCCompile.C) $< -o $@ -S -emit-llvm
1074
1075 endif
1076
1077
1078 ## Rules for building preprocessed (.i/.ii) outputs.
1079 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1080         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1081         $(Verb) $(Preprocess.CXX) $< -o $@
1082
1083 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1084         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1085         $(Verb) $(Preprocess.CXX) $< -o $@
1086
1087  $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1088         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1089         $(Verb) $(Preprocess.C) $< -o $@
1090
1091
1092 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1093         $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1094         $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1095
1096 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1097         $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1098         $(MAYBE_PIC_Compile.CXX) $< -o $@ -S
1099
1100 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1101         $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1102         $(MAYBE_PIC_Compile.C) $< -o $@ -S
1103
1104
1105 # make the C and C++ compilers strip debug info out of bytecode libraries.
1106 ifdef DEBUG_RUNTIME
1107 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1108         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1109         $(Verb) $(GCCAS) $< -o $@
1110 else
1111 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(GCCAS)
1112         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1113         $(Verb) $(GCCAS) -strip-debug $< -o $@
1114 endif
1115
1116
1117 #---------------------------------------------------------
1118 # Provide rule to build .bc files from .ll sources,
1119 # regardless of dependencies
1120 #---------------------------------------------------------
1121 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1122         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1123         $(Verb) $(LLVMAS) $< -f -o $@
1124
1125 ###############################################################################
1126 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1127 ###############################################################################
1128
1129 ifdef TARGET
1130
1131 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1132            $(LLVM_SRC_ROOT)/lib/Target/Target.td \
1133            $(LLVM_SRC_ROOT)/lib/Target/TargetSelectionDAG.td \
1134            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td)
1135 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1136 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1137 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1138
1139 # All of these files depend on tblgen and the .td files.
1140 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1141
1142 # INCFiles rule: All of the tblgen generated files are emitted to 
1143 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1144 # us to only "touch" the real file if the contents of it change.  IOW, if
1145 # tblgen is modified, all of the .inc.tmp files are regereated, but no
1146 # dependencies of the .inc files are, unless the contents of the .inc file
1147 # changes.
1148 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1149         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1150
1151 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1152 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1153         $(Echo) "Building $(<F) register names with tblgen"
1154         $(Verb) $(TableGen) -gen-register-enums -o $@ $<
1155
1156 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1157 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1158         $(Echo) "Building $(<F) register information header with tblgen"
1159         $(Verb) $(TableGen) -gen-register-desc-header -o $@ $<
1160
1161 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1162 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1163         $(Echo) "Building $(<F) register info implementation with tblgen"
1164         $(Verb) $(TableGen) -gen-register-desc -o $@ $<
1165
1166 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1167 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1168         $(Echo) "Building $(<F) instruction names with tblgen"
1169         $(Verb) $(TableGen) -gen-instr-enums -o $@ $<
1170
1171 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1172 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1173         $(Echo) "Building $(<F) instruction information with tblgen"
1174         $(Verb) $(TableGen) -gen-instr-desc -o $@ $<
1175
1176 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1177 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1178         $(Echo) "Building $(<F) assembly writer with tblgen"
1179         $(Verb) $(TableGen) -gen-asm-writer -o $@ $<
1180
1181 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1182 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1183         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1184         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $@ $< 
1185
1186 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1187 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1188         $(Echo) "Building $(<F) code emitter with tblgen"
1189         $(Verb) $(TableGen) -gen-emitter -o $@ $<
1190
1191 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1192 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1193         $(Echo) "Building $(<F) instruction selector implementation with tblgen"
1194         $(Verb) $(TableGen) -gen-dag-isel -o $@ $<
1195
1196 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1197 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1198         $(Echo) "Building $(<F) subtarget information with tblgen"
1199         $(Verb) $(TableGen) -gen-subtarget -o $@ $<
1200
1201 clean-local::
1202         -$(Verb) $(RM) -f $(INCFiles)
1203
1204 endif
1205
1206 ###############################################################################
1207 # LEX AND YACC: Provide rules for generating sources with lex and yacc
1208 ###############################################################################
1209
1210 #---------------------------------------------------------
1211 # Provide rules for generating a .cpp source file from 
1212 # (f)lex input sources. 
1213 #---------------------------------------------------------
1214
1215 LexFiles  := $(filter %.l,$(Sources))
1216
1217 ifneq ($(LexFiles),)
1218
1219 # Cancel built-in rules for lex
1220 %.c: %.l
1221 %.cpp: %.l
1222
1223 all:: $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs)
1224
1225 # Note the extra sed filtering here, used to cut down on the warnings emited 
1226 # by GCC.  The last line is a gross hack to work around flex aparently not 
1227 # being able to resize the buffer on a large token input.  Currently, for 
1228 # uninitialized string buffers in LLVM we can generate very long tokens, so 
1229 # this is a hack around it.
1230 # FIXME.  (f.e. char Buffer[10000] )
1231 $(PROJ_SRC_DIR)/%.cpp: $(PROJ_SRC_DIR)/%.l
1232         $(Echo) Flexing $*.l
1233         $(Verb) $(FLEX) -t $(PROJ_SRC_DIR)/$*.l | \
1234         $(SED) 's/void yyunput/inline void yyunput/' | \
1235         $(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
1236         $(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
1237           > $(PROJ_SRC_DIR)/$*.cpp
1238     
1239 # IFF the .l file has changed since it was last checked into CVS, copy the .l
1240 # file to .l.cvs and the generated .cpp file to .cpp.cvs.  We use this mechanism
1241 # so that people without flex can build LLVM by copying the .cvs files to the 
1242 # source location and building them.
1243 $(LexFiles:%.l=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1244 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1245         $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs || \
1246       ($(CP) $< $@; $(CP) $(PROJ_SRC_DIR)/$*.l $(PROJ_SRC_DIR)/$*.l.cvs)
1247
1248 $(LexFiles:%.l=$(ObjDir)/%.o) : \
1249 $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1250
1251 clean-local::
1252         -$(Verb) $(RM) -f $(LexOutput)
1253
1254 endif
1255
1256 #---------------------------------------------------------
1257 # Provide rules for generating a .cpp and .h source files 
1258 # from yacc (bison) input sources.
1259 #---------------------------------------------------------
1260
1261 YaccFiles  := $(filter %.y,$(Sources))
1262 ifneq ($(YaccFiles),)
1263
1264 .PRECIOUS: $(YaccOutput)
1265
1266 all:: $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs)
1267
1268 # Cancel built-in rules for yacc
1269 %.c: %.y 
1270 %.cpp: %.y
1271 %.h: %.y
1272
1273 # Rule for building the bison based parsers...
1274 $(PROJ_SRC_DIR)/%.cpp $(PROJ_SRC_DIR)/%.h : $(PROJ_SRC_DIR)/%.y
1275         $(Echo) "Bisoning $*.y"
1276         $(Verb) $(BISON) -v -d -p $(<F:%Parser.y=%) -o $*.tab.c $<
1277         $(Verb) $(MV) -f $*.tab.c $(PROJ_SRC_DIR)/$*.cpp
1278         $(Verb) $(MV) -f $*.tab.h $(PROJ_SRC_DIR)/$*.h
1279
1280 # IFF the .y file has changed since it was last checked into CVS, copy the .y
1281 # file to .y.cvs and the generated .cpp/.h file to .cpp.cvs/.h.cvs.  We use this
1282 # mechanism so that people without flex can build LLVM by copying the .cvs files
1283 # to the source location and building them.
1284 $(YaccFiles:%.y=$(PROJ_SRC_DIR)/%.cpp.cvs): \
1285 $(PROJ_SRC_DIR)/%.cpp.cvs: $(PROJ_SRC_DIR)/%.cpp
1286         $(Verb) $(CMP) -s $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs || \
1287       ($(CP) $< $@; \
1288        $(CP) $(PROJ_SRC_DIR)/$*.y $(PROJ_SRC_DIR)/$*.y.cvs; \
1289        $(CP) $(PROJ_SRC_DIR)/$*.h $(PROJ_SRC_DIR)/$*.h.cvs)
1290
1291
1292 $(YaccFiles:%.y=$(ObjDir)/%.o): $(ObjDir)/%.o : $(PROJ_SRC_DIR)/%.cpp
1293
1294 YaccOutput := $(YaccFiles:%.y=%.output)
1295
1296 clean-local::
1297         -$(Verb) $(RM) -f $(YaccOutput)
1298 endif
1299
1300 ###############################################################################
1301 # OTHER RULES: Other rules needed
1302 ###############################################################################
1303
1304 # To create postscript files from dot files...
1305 ifneq ($(DOT),false)
1306 %.ps: %.dot
1307         $(DOT) -Tps < $< > $@
1308 else
1309 %.ps: %.dot
1310         $(Echo) "Cannot build $@: The program dot is not installed"
1311 endif
1312
1313 # This rules ensures that header files that are removed still have a rule for
1314 # which they can be "generated."  This allows make to ignore them and
1315 # reproduce the dependency lists.
1316 %.h:: ;
1317 %.hpp:: ;
1318
1319 # Define clean-local to clean the current directory. Note that this uses a
1320 # very conservative approach ensuring that empty variables do not cause 
1321 # errors or disastrous removal.
1322 clean-local::
1323 ifneq ($(strip $(ObjDir)),)
1324         -$(Verb) $(RM) -rf $(ObjDir)
1325 endif
1326         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1327 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1328         -$(Verb) $(RM) -f *$(SHLIBEXT)
1329 endif
1330
1331 clean-all-local::
1332         -$(Verb) $(RM) -rf Debug Release Profile
1333
1334 # Build tags database for Emacs/Xemacs:
1335 tags:: TAGS CTAGS
1336
1337 TAGS: 
1338         find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1339           $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1340           $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1341           $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1342         -name '*.cpp' -o -name '*.h' | \
1343         $(ETAGS) $(ETAGSFLAGS) -
1344
1345 CTAGS:
1346         find $(PROJ_SRC_ROOT)/include $(PROJ_SRC_ROOT)/lib \
1347           $(PROJ_SRC_ROOT)/tools $(PROJ_SRC_ROOT)/examples \
1348           $(PROJ_OBJ_ROOT)/include $(PROJ_OBJ_ROOT)/lib \
1349           $(PROJ_OBJ_ROOT)/tools $(PROJ_OBJ_ROOT)/examples \
1350           \( -name '*.cpp' -o -name '*.h' \) -print | \
1351           ctags -ImtT -o $(PROJ_OBJ_ROOT)/CTAGS -L -
1352
1353
1354 ###############################################################################
1355 # DEPENDENCIES: Include the dependency files if we should
1356 ###############################################################################
1357 ifndef DISABLE_AUTO_DEPENDENCIES
1358
1359 # If its not one of the cleaning targets
1360 ifneq ($strip($(filter-out clean clean-local dist-clean,$(MAKECMDGOALS))),)
1361
1362 # Get the list of dependency files
1363 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1364 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1365
1366 -include /dev/null $(DependFiles)
1367
1368 endif
1369
1370 endif 
1371
1372 ###############################################################################
1373 # CHECK: Running the test suite
1374 ###############################################################################
1375
1376 check::
1377         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1378           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1379             $(EchoCmd) Running test suite ; \
1380             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1381               TESTSUITE=$(TESTSUITE) ; \
1382           else \
1383             $(EchoCmd) No Makefile in test directory ; \
1384           fi ; \
1385         else \
1386           $(EchoCmd) No test directory ; \
1387         fi
1388
1389 ###############################################################################
1390 # DISTRIBUTION: Handle construction of a distribution tarball
1391 ###############################################################################
1392
1393 #------------------------------------------------------------------------
1394 # Define distribution related variables
1395 #------------------------------------------------------------------------
1396 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1397 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1398 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1399 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1400 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1401 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1402 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1403                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1404                Makefile.config.in configure autoconf
1405 DistOther   := $(notdir $(wildcard \
1406                $(PROJ_SRC_DIR)/*.h \
1407                $(PROJ_SRC_DIR)/*.td \
1408                $(PROJ_SRC_DIR)/*.def \
1409                $(PROJ_SRC_DIR)/*.ll \
1410                $(PROJ_SRC_DIR)/*.in))
1411 DistSubDirs := $(SubDirs)
1412 DistSources  = $(Sources) $(EXTRA_DIST)
1413 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1414
1415 #------------------------------------------------------------------------
1416 # We MUST build distribution with OBJ_DIR != SRC_DIR
1417 #------------------------------------------------------------------------
1418 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1419 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1420         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1421
1422 else
1423
1424 #------------------------------------------------------------------------
1425 # Prevent attempt to run dist targets from anywhere but the top level
1426 #------------------------------------------------------------------------
1427 ifneq ($(LEVEL),.)
1428 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1429         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1430 else
1431
1432 #------------------------------------------------------------------------
1433 # Provide the top level targets
1434 #------------------------------------------------------------------------
1435
1436 dist-gzip:: $(DistTarGZip)
1437
1438 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1439         $(Echo) Packing gzipped distribution tar file.
1440         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1441           $(GZIP) -c > "$(DistTarGZip)"
1442
1443 dist-bzip2:: $(DistTarBZ2)
1444
1445 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1446         $(Echo) Packing bzipped distribution tar file.
1447         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1448           $(BZIP2) -c >$(DistTarBZ2)
1449
1450 dist-zip:: $(DistZip)
1451
1452 $(DistZip) : $(TopDistDir)/.makedistdir
1453         $(Echo) Packing zipped distribution file.
1454         $(Verb) rm -f $(DistZip)
1455         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1456
1457 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip) 
1458         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1459
1460 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1461
1462 dist-check:: $(DistTarGZip)
1463         $(Echo) Checking distribution tar file.
1464         $(Verb) if test -d $(DistCheckDir) ; then \
1465           $(RM) -rf $(DistCheckDir) ; \
1466         fi
1467         $(Verb) $(MKDIR) $(DistCheckDir)
1468         $(Verb) cd $(DistCheckDir) && \
1469           $(MKDIR) $(DistCheckDir)/build && \
1470           $(MKDIR) $(DistCheckDir)/install && \
1471           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1472           cd build && \
1473           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1474             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1475           $(MAKE) all && \
1476           $(MAKE) check && \
1477           $(MAKE) install && \
1478           $(MAKE) uninstall && \
1479           $(MAKE) dist-clean && \
1480           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1481
1482 dist-clean::
1483         $(Echo) Cleaning distribution files
1484         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1485           $(DistCheckDir)
1486
1487 endif
1488
1489 #------------------------------------------------------------------------
1490 # Provide the recursive distdir target for building the distribution directory
1491 #------------------------------------------------------------------------
1492 distdir: $(DistDir)/.makedistdir
1493 $(DistDir)/.makedistdir: $(DistSources)
1494         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1495           if test -d "$(DistDir)" ; then \
1496             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
1497               exit 1 ; \
1498           fi ; \
1499           $(EchoCmd) Removing old $(DistDir) ; \
1500           $(RM) -rf $(DistDir); \
1501           $(EchoCmd) Making 'all' to verify build ; \
1502           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1503         fi
1504         $(Echo) Building Distribution Directory $(DistDir)
1505         $(Verb) $(MKDIR) $(DistDir) 
1506         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1507         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1508         for file in $(DistFiles) ; do \
1509           case "$$file" in \
1510             $(PROJ_SRC_DIR)/*) \
1511               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1512               ;; \
1513             $(PROJ_SRC_ROOT)/*) \
1514               file=`echo "$$file" | \
1515                 sed "s#^$$srcrootstrip/##"` \
1516               ;; \
1517           esac; \
1518           if test -f "$(PROJ_SRC_DIR)/$$file" || \
1519              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1520             from_dir="$(PROJ_SRC_DIR)" ; \
1521           elif test -f "$$file" || test -d "$$file" ; then \
1522             from_dir=. ; \
1523           fi ; \
1524           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1525           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1526             to_dir="$(DistDir)/$$dir"; \
1527             $(MKDIR) "$$to_dir" ; \
1528           else \
1529             to_dir="$(DistDir)"; \
1530           fi; \
1531           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1532           if test -n "$$mid_dir" ; then \
1533             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1534           fi ; \
1535           if test -d "$$from_dir/$$file"; then \
1536             if test -d "$(PROJ_SRC_DIR)/$$file" && \
1537                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1538                cd $(PROJ_SRC_DIR) ; \
1539                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1540                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1541                cd $(PROJ_OBJ_DIR) ; \
1542             else \
1543                cd $$from_dir ; \
1544                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1545                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1546                cd $(PROJ_OBJ_DIR) ; \
1547             fi; \
1548           elif test -f "$$from_dir/$$file" ; then \
1549             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1550           elif test -L "$$from_dir/$$file" ; then \
1551             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1552           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1553             $(EchoCmd) "===== WARNING: Distribution Source " \
1554               "$$from_dir/$$file Not Found!" ; \
1555           elif test "$(Verb)" != '@' ; then \
1556             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1557           fi; \
1558         done
1559         $(Verb) for subdir in $(DistSubDirs) ; do \
1560           if test "$$subdir" \!= "." ; then \
1561             new_distdir="$(DistDir)/$$subdir" ; \
1562             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1563             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1564               DistDir="$$new_distdir" distdir ) || exit 1; \
1565           fi; \
1566         done
1567         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1568           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1569           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1570                                   -name .svn \) -print` ;\
1571           $(MAKE) dist-hook ; \
1572           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1573             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1574             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1575             -o ! -type d ! -perm -444 -exec \
1576               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1577             || chmod -R a+r $(DistDir) ; \
1578         fi
1579
1580 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1581 # defined by user.
1582 dist-hook::
1583
1584 endif
1585
1586 ###############################################################################
1587 # TOP LEVEL - targets only to apply at the top level directory
1588 ###############################################################################
1589
1590 ifeq ($(LEVEL),.)
1591
1592 #------------------------------------------------------------------------
1593 # Install support for the project's include files:
1594 #------------------------------------------------------------------------
1595 install-local::
1596         $(Echo) Installing include files
1597         $(Verb) $(MKDIR) $(PROJ_includedir)
1598         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1599           cd $(PROJ_SRC_ROOT)/include && \
1600           for  hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
1601               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
1602             instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1603             if test \! -d "$$instdir" ; then \
1604               $(EchoCmd) Making install directory $$instdir ; \
1605               $(MKDIR) $$instdir ;\
1606             fi ; \
1607             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1608           done ; \
1609         fi
1610 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1611         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1612           cd $(PROJ_OBJ_ROOT)/include && \
1613           for hdr in `find . -type f -print | grep -v CVS` ; do \
1614             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1615           done ; \
1616         fi
1617 endif
1618
1619 uninstall-local::
1620         $(Echo) Uninstalling include files
1621         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1622           cd $(PROJ_SRC_ROOT)/include && \
1623             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1624               '!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' \
1625         -o -name '*.in' ')' -print ')' | \
1626         grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1627           cd $(PROJ_SRC_ROOT)/include && \
1628             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1629       -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1630         fi
1631
1632 endif
1633
1634 #------------------------------------------------------------------------
1635 # Print out the directories used for building
1636 #------------------------------------------------------------------------
1637 printvars::
1638         $(Echo) "BuildMode    : " '$(BuildMode)'
1639         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1640         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1641         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1642         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1643         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1644         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1645         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
1646         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
1647         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
1648         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
1649         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
1650         $(Echo) "UserTargets  : " '$(UserTargets)'
1651         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1652         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1653         $(Echo) "ObjDir       : " '$(ObjDir)'
1654         $(Echo) "LibDir       : " '$(LibDir)'
1655         $(Echo) "ToolDir      : " '$(ToolDir)'
1656         $(Echo) "ExmplDir     : " '$(ExmplDir)'
1657         $(Echo) "Sources      : " '$(Sources)'
1658         $(Echo) "TDFiles      : " '$(TDFiles)'
1659         $(Echo) "INCFiles     : " '$(INCFiles)'
1660         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
1661         $(Echo) "PreConditions: " '$(PreConditions)'
1662         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
1663         $(Echo) "Compile.C    : " '$(Compile.C)'
1664         $(Echo) "Archive      : " '$(Archive)'
1665         $(Echo) "YaccFiles    : " '$(YaccFiles)'
1666         $(Echo) "LexFiles     : " '$(LexFiles)'
1667         $(Echo) "Module       : " '$(Module)'
1668         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1669         $(Echo) "SubDirs      : " '$(SubDirs)'