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