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