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