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