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