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