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