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