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