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