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