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