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