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