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