5148bc217da7f2d85f4e1b3f9c50fd614bf337c3
[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                     unitcheck
24 LocalTargets     := all-local clean-local clean-all-local check-local \
25                     install-local printvars uninstall-local \
26                     install-bytecode-local
27 TopLevelTargets  := check dist dist-check dist-clean dist-gzip dist-bzip2 \
28                     dist-zip unittests
29 UserTargets      := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30 InternalTargets  := preconditions distdir dist-hook
31
32 ################################################################################
33 # INITIALIZATION: Basic things the makefile needs
34 ################################################################################
35
36 #--------------------------------------------------------------------
37 # Set the VPATH so that we can find source files.
38 #--------------------------------------------------------------------
39 VPATH=$(PROJ_SRC_DIR)
40
41 #--------------------------------------------------------------------
42 # Reset the list of suffixes we know how to build.
43 #--------------------------------------------------------------------
44 .SUFFIXES:
45 .SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll .m .mm
46 .SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
47
48 #--------------------------------------------------------------------
49 # Mark all of these targets as phony to avoid implicit rule search
50 #--------------------------------------------------------------------
51 .PHONY: $(UserTargets) $(InternalTargets)
52
53 #--------------------------------------------------------------------
54 # Make sure all the user-target rules are double colon rules and
55 # they are defined first.
56 #--------------------------------------------------------------------
57
58 $(UserTargets)::
59
60 ################################################################################
61 # PRECONDITIONS: that which must be built/checked first
62 ################################################################################
63
64 SrcMakefiles       := $(filter %Makefile %Makefile.tests,\
65                       $(wildcard $(PROJ_SRC_DIR)/Makefile*))
66 ObjMakefiles       := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
67 ConfigureScript    := $(PROJ_SRC_ROOT)/configure
68 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
69 MakefileConfigIn   := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
70 MakefileCommonIn   := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
71 MakefileConfig     := $(PROJ_OBJ_ROOT)/Makefile.config
72 MakefileCommon     := $(PROJ_OBJ_ROOT)/Makefile.common
73 PreConditions      := $(ConfigStatusScript) $(ObjMakefiles)
74 ifneq ($(MakefileCommonIn),)
75 PreConditions      += $(MakefileCommon)
76 endif
77
78 ifneq ($(MakefileConfigIn),)
79 PreConditions      += $(MakefileConfig)
80 endif
81
82 preconditions: $(PreConditions)
83
84 #------------------------------------------------------------------------
85 # Make sure the BUILT_SOURCES are built first
86 #------------------------------------------------------------------------
87 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
88
89 clean-all-local::
90 ifneq ($(strip $(BUILT_SOURCES)),)
91         -$(Verb) $(RM) -f $(BUILT_SOURCES)
92 endif
93
94 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
95 spotless:
96         $(Verb) if test -x config.status ; then \
97           $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
98           $(MKDIR) .spotless.save ; \
99           $(MV) config.status .spotless.save ; \
100           $(MV) mklib  .spotless.save ; \
101           $(MV) projects  .spotless.save ; \
102           $(RM) -rf * ; \
103           $(MV) .spotless.save/config.status . ; \
104           $(MV) .spotless.save/mklib . ; \
105           $(MV) .spotless.save/projects . ; \
106           $(RM) -rf .spotless.save ; \
107           $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
108           $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109           $(ConfigStatusScript) ; \
110         else \
111           $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
112         fi
113 else
114 spotless:
115         $(EchoCmd) "spotless target not supported for objdir == srcdir"
116 endif
117
118 $(BUILT_SOURCES) : $(ObjMakefiles)
119
120 #------------------------------------------------------------------------
121 # Make sure we're not using a stale configuration
122 #------------------------------------------------------------------------
123 reconfigure:
124         $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
125         $(Verb) cd $(PROJ_OBJ_ROOT) && \
126           if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
127             $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
128           fi ; \
129           $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130           $(ConfigStatusScript)
131
132 .PRECIOUS: $(ConfigStatusScript)
133 $(ConfigStatusScript): $(ConfigureScript)
134         $(Echo) Reconfiguring with $<
135         $(Verb) cd $(PROJ_OBJ_ROOT) && \
136           if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
137             $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
138           fi ; \
139           $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
140           $(ConfigStatusScript)
141
142 #------------------------------------------------------------------------
143 # Make sure the configuration makefile is up to date
144 #------------------------------------------------------------------------
145 ifneq ($(MakefileConfigIn),)
146 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
147         $(Echo) Regenerating $@
148         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
149 endif
150
151 ifneq ($(MakefileCommonIn),)
152 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
153         $(Echo) Regenerating $@
154         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
155 endif
156
157 #------------------------------------------------------------------------
158 # If the Makefile in the source tree has been updated, copy it over into the
159 # build tree. But, only do this if the source and object makefiles differ
160 #------------------------------------------------------------------------
161 ifndef PROJ_MAKEFILE
162 PROJ_MAKEFILE := $(PROJ_SRC_DIR)/Makefile
163 endif
164
165 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
166
167 Makefile: $(PROJ_MAKEFILE) $(ExtraMakefiles)
168         $(Echo) "Updating Makefile"
169         $(Verb) $(MKDIR) $(@D)
170         $(Verb) $(CP) -f $< $@
171
172 # Copy the Makefile.* files unless we're in the root directory which avoids
173 # the copying of Makefile.config.in or other things that should be explicitly
174 # taken care of.
175 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_MAKEFILE)%
176         @case '$?' in \
177           *Makefile.rules) ;; \
178           *.in) ;; \
179           *) $(EchoCmd) "Updating $(@F)" ; \
180              $(MKDIR) $(@D) ; \
181              $(CP) -f $< $@ ;; \
182         esac
183
184 endif
185
186 #------------------------------------------------------------------------
187 # Set up the basic dependencies
188 #------------------------------------------------------------------------
189 $(UserTargets):: $(PreConditions)
190
191 all:: all-local
192 clean:: clean-local
193 clean-all:: clean-local clean-all-local
194 install:: install-local
195 uninstall:: uninstall-local
196 install-local:: all-local
197 install-bytecode:: install-bytecode-local
198
199 ###############################################################################
200 # LLVMC: Provide rules for compiling llvmc-based driver
201 ###############################################################################
202
203 ifdef LLVMC_BASED_DRIVER
204
205 TOOLNAME = $(LLVMC_BASED_DRIVER)
206
207 LLVMLIBS = CompilerDriver.a
208 LINK_COMPONENTS = support system
209
210 endif # LLVMC_BASED_DRIVER
211
212 ###############################################################################
213 # VARIABLES: Set up various variables based on configuration data
214 ###############################################################################
215
216 # Variable for if this make is for a "cleaning" target
217 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
218   IS_CLEANING_TARGET=1
219 endif
220
221 #--------------------------------------------------------------------
222 # Variables derived from configuration we are building
223 #--------------------------------------------------------------------
224
225 CPP.Defines :=
226 ifeq ($(ENABLE_OPTIMIZED),1)
227   BuildMode := Release
228   # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
229   ifneq ($(HOST_OS),FreeBSD)
230   ifneq ($(HOST_OS),Darwin)
231     OmitFramePointer := -fomit-frame-pointer
232   endif
233   endif
234
235   # Darwin requires -fstrict-aliasing to be explicitly enabled.
236   # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
237   # with -fstrict-aliasing and ipa-type-escape radr://6756684
238   #ifeq ($(HOST_OS),Darwin)
239   #  EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
240   #endif
241   CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
242   C.Flags   += $(OPTIMIZE_OPTION) $(OmitFramePointer)
243   LD.Flags  += $(OPTIMIZE_OPTION)
244   ifdef DEBUG_SYMBOLS
245     BuildMode := $(BuildMode)+Debug
246     CXX.Flags += -g
247     C.Flags   += -g
248     LD.Flags  += -g
249     KEEP_SYMBOLS := 1
250   endif
251 else
252   ifdef NO_DEBUG_SYMBOLS
253     BuildMode := Unoptimized
254     CXX.Flags +=
255     C.Flags   +=
256     LD.Flags  +=
257     KEEP_SYMBOLS := 1
258   else
259     BuildMode := Debug
260     CXX.Flags += -g
261     C.Flags   += -g
262     LD.Flags  += -g
263     KEEP_SYMBOLS := 1
264   endif
265 endif
266
267 ifeq ($(ENABLE_PROFILING),1)
268   BuildMode := $(BuildMode)+Profile
269   CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
270   C.Flags   := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
271   LD.Flags  := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
272   KEEP_SYMBOLS := 1
273 endif
274
275 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
276 #    CXX.Flags += -fvisibility-inlines-hidden
277 #endif
278
279 ifdef ENABLE_EXPENSIVE_CHECKS
280   # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
281   # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
282   REQUIRES_RTTI := 1
283 endif
284
285 # IF REQUIRES_EH=1 is specified then don't disable exceptions
286 ifndef REQUIRES_EH
287   CXX.Flags += -fno-exceptions
288 else
289   # If the library requires EH, it also requires RTTI.
290   REQUIRES_RTTI := 1
291 endif
292
293 ifdef REQUIRES_FRAME_POINTER
294   CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
295   C.Flags   := $(filter-out -fomit-frame-pointer,$(C.Flags))
296   LD.Flags  := $(filter-out -fomit-frame-pointer,$(LD.Flags))
297 endif
298
299 # If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
300 ifneq ($(REQUIRES_RTTI), 1)
301   CXX.Flags += -fno-rtti
302 endif
303
304 ifdef ENABLE_COVERAGE
305   BuildMode := $(BuildMode)+Coverage
306   CXX.Flags += -ftest-coverage -fprofile-arcs
307   C.Flags   += -ftest-coverage -fprofile-arcs
308 endif
309
310 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
311 # then disable assertions by defining the appropriate preprocessor symbols.
312 ifndef DISABLE_ASSERTIONS
313   BuildMode := $(BuildMode)+Asserts
314   CPP.Defines += -D_DEBUG
315 else
316   CPP.Defines += -DNDEBUG
317 endif
318
319 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
320 # configured), then enable expensive checks by defining the
321 # appropriate preprocessor symbols.
322 ifdef ENABLE_EXPENSIVE_CHECKS
323   BuildMode := $(BuildMode)+Checks
324   CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
325 endif
326
327 # LOADABLE_MODULE implies several other things so we force them to be
328 # defined/on.
329 ifdef LOADABLE_MODULE
330   SHARED_LIBRARY := 1
331   LINK_LIBS_IN_SHARED := 1
332 endif
333
334 ifdef SHARED_LIBRARY
335   ENABLE_PIC := 1
336   PIC_FLAG = "(PIC)"
337 endif
338
339 ifeq ($(ENABLE_PIC),1)
340   ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
341     # Nothing. Win32 defaults to PIC and warns when given -fPIC
342   else
343     ifeq ($(HOST_OS),Darwin)
344       # Common symbols not allowed in dylib files
345       CXX.Flags += -fno-common
346       C.Flags   += -fno-common
347     else
348       # Linux and others; pass -fPIC
349       CXX.Flags += -fPIC
350       C.Flags   += -fPIC
351     endif
352   endif
353 else
354   ifeq ($(HOST_OS),Darwin)
355       CXX.Flags += -mdynamic-no-pic
356       C.Flags   += -mdynamic-no-pic
357   endif
358 endif
359
360 # Support makefile variable to disable any kind of timestamp/non-deterministic
361 # info from being used in the build.
362 ifeq ($(ENABLE_TIMESTAMPS),1)
363   DOTDIR_TIMESTAMP_COMMAND := $(DATE)
364 else
365   DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
366 endif
367
368 ifeq ($(HOST_OS),MingW)
369   # Work around PR4957
370   CPP.Defines += -D__NO_CTYPE_INLINE
371   ifeq ($(LLVM_CROSS_COMPILING),1)
372     # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
373     ifdef TOOLNAME
374       LD.Flags += -Wl,--allow-multiple-definition
375     endif
376   endif
377 endif
378
379 CXX.Flags     += -Woverloaded-virtual
380 CPP.BaseFlags += $(CPP.Defines)
381 AR.Flags      := cru
382
383 # Make Floating point IEEE compliant on Alpha.
384 ifeq ($(ARCH),Alpha)
385   CXX.Flags     += -mieee
386   CPP.BaseFlags += -mieee
387 ifeq ($(ENABLE_PIC),0)
388   CXX.Flags     += -fPIC
389   CPP.BaseFlags += -fPIC
390 endif
391 endif
392
393 ifeq ($(ARCH),Alpha)
394   LD.Flags += -Wl,--no-relax
395 endif
396
397 #--------------------------------------------------------------------
398 # Directory locations
399 #--------------------------------------------------------------------
400 TargetMode :=
401 ifeq ($(LLVM_CROSS_COMPILING),1)
402   BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
403 endif
404
405 ObjRootDir  := $(PROJ_OBJ_DIR)/$(BuildMode)
406 ObjDir      := $(ObjRootDir)
407 LibDir      := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
408 ToolDir     := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
409 ExmplDir    := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
410 LLVMLibDir  := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
411 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
412 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
413
414 #--------------------------------------------------------------------
415 # Locations of shared libraries
416 #--------------------------------------------------------------------
417
418 SharedPrefix     := lib
419 SharedLibDir     := $(LibDir)
420 LLVMSharedLibDir := $(LLVMLibDir)
421
422 # Win32.DLL prefers to be located on the "PATH" of binaries.
423 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
424   SharedLibDir     := $(ToolDir)
425   LLVMSharedLibDir := $(LLVMToolDir)
426
427   ifeq ($(HOST_OS),Cygwin)
428     SharedPrefix  := cyg
429   else
430     SharedPrefix  :=
431   endif
432 endif
433
434 #--------------------------------------------------------------------
435 # LLVM Capable Compiler
436 #--------------------------------------------------------------------
437
438 ifeq ($(LLVMCC_OPTION),llvm-gcc)
439   LLVMCC := $(LLVMGCC)
440   LLVMCXX := $(LLVMGXX)
441 else
442   ifeq ($(LLVMCC_OPTION),clang)
443     ifneq ($(CLANGPATH),)
444       LLVMCC := $(CLANGPATH)
445       LLVMCXX := $(CLANGXXPATH)
446     else
447       ifeq ($(ENABLE_BUILT_CLANG),1)
448         LLVMCC := $(LLVMToolDir)/clang
449         LLVMCXX := $(LLVMToolDir)/clang++
450       endif
451     endif
452   endif
453 endif
454
455 #--------------------------------------------------------------------
456 # Full Paths To Compiled Tools and Utilities
457 #--------------------------------------------------------------------
458 EchoCmd  = $(ECHO) llvm[$(MAKELEVEL)]:
459 Echo     = @$(EchoCmd)
460 ifndef LLVMAS
461 LLVMAS   := $(LLVMToolDir)/llvm-as$(EXEEXT)
462 endif
463 ifndef TBLGEN
464   ifeq ($(LLVM_CROSS_COMPILING),1)
465     TBLGEN   := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
466   else
467     TBLGEN   := $(LLVMToolDir)/tblgen$(EXEEXT)
468   endif
469 endif
470 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
471 ifndef LLVMLD
472 LLVMLD    := $(LLVMToolDir)/llvm-ld$(EXEEXT)
473 endif
474 ifndef LLVMDIS
475 LLVMDIS  := $(LLVMToolDir)/llvm-dis$(EXEEXT)
476 endif
477 ifndef LLI
478 LLI      := $(LLVMToolDir)/lli$(EXEEXT)
479 endif
480 ifndef LLC
481 LLC      := $(LLVMToolDir)/llc$(EXEEXT)
482 endif
483 ifndef LOPT
484 LOPT     := $(LLVMToolDir)/opt$(EXEEXT)
485 endif
486 ifndef LBUGPOINT
487 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
488 endif
489
490 #--------------------------------------------------------------------
491 # Adjust to user's request
492 #--------------------------------------------------------------------
493
494 ifeq ($(HOST_OS),Darwin)
495   DARWIN_VERSION := `sw_vers -productVersion`
496   # Strip a number like 10.4.7 to 10.4
497   DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
498   # Get "4" out of 10.4 for later pieces in the makefile.
499   DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
500
501   SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined,suppress \
502                     -dynamiclib
503   ifneq ($(ARCH),ARM)
504     SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
505   endif
506 else
507   SharedLinkOptions=-shared
508 endif
509
510 ifeq ($(TARGET_OS),Darwin)
511   ifneq ($(ARCH),ARM)
512     TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
513   endif
514 endif
515
516 ifdef SHARED_LIBRARY
517 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
518 ifneq ($(HOST_OS),Darwin)
519   LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
520 else
521 ifneq ($(DARWIN_MAJVERS),4)
522   LD.Flags += $(RPATH) -Wl,$(SharedLibDir)
523 endif
524 endif
525 endif
526 endif
527
528 ifdef TOOL_VERBOSE
529   C.Flags += -v
530   CXX.Flags += -v
531   LD.Flags += -v
532   VERBOSE := 1
533 endif
534
535 # Adjust settings for verbose mode
536 ifndef VERBOSE
537   Verb := @
538   AR.Flags += >/dev/null 2>/dev/null
539   ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
540 else
541   ConfigureScriptFLAGS :=
542 endif
543
544 # By default, strip symbol information from executable
545 ifndef KEEP_SYMBOLS
546   Strip := $(PLATFORMSTRIPOPTS)
547   StripWarnMsg := "(without symbols)"
548   Install.StripFlag += -s
549 endif
550
551 # Adjust linker flags for building an executable
552 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
553 ifneq ($(HOST_OS), Darwin)
554 ifdef TOOLNAME
555   LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
556   ifdef EXAMPLE_TOOL
557     LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
558   else
559     LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
560   endif
561 endif
562 else
563 ifneq ($(DARWIN_MAJVERS),4)
564   LD.Flags += $(RPATH) -Wl,@executable_path/../lib
565 endif
566 endif
567 endif
568
569
570 #----------------------------------------------------------
571 # Options To Invoke Tools
572 #----------------------------------------------------------
573
574 ifndef NO_PEDANTIC
575 CompileCommonOpts += -pedantic -Wno-long-long
576 endif
577 CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
578                      $(EXTRA_OPTIONS)
579 # Enable cast-qual for C++; the workaround is to use const_cast.
580 CXX.Flags += -Wcast-qual
581
582 ifeq ($(HOST_OS),HP-UX)
583   CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
584 endif
585
586 # If we are building a universal binary on Mac OS/X, pass extra options.  This
587 # is useful to people that want to link the LLVM libraries into their universal
588 # apps.
589 #
590 # The following can be optionally specified:
591 #   UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
592 #      For Mac OS/X 10.4 Intel machines, the traditional one is:
593 #      UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
594 #   UNIVERSAL_ARCH can be optionally specified to be a list of architectures
595 #      to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64".  This defaults to
596 #      i386/ppc only.
597 ifdef UNIVERSAL
598   ifndef UNIVERSAL_ARCH
599     UNIVERSAL_ARCH := i386 ppc
600   endif
601   UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
602   CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
603   ifdef UNIVERSAL_SDK_PATH
604     CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
605   endif
606
607   # Building universal cannot compute dependencies automatically.
608   DISABLE_AUTO_DEPENDENCIES=1
609 else
610   ifeq ($(TARGET_OS),Darwin)
611     ifeq ($(ARCH),x86_64)
612       TargetCommonOpts = -m64
613     else
614       ifeq ($(ARCH),x86)
615         TargetCommonOpts = -m32
616       endif
617     endif
618   endif
619 endif
620
621 ifeq ($(HOST_OS),SunOS)
622 CPP.BaseFlags += -include llvm/System/Solaris.h
623 endif
624
625 ifeq ($(HOST_OS),AuroraUX)
626 CPP.BaseFlags += -include llvm/System/Solaris.h
627 endif # !HOST_OS - AuroraUX.
628
629 LD.Flags      += -L$(LibDir) -L$(LLVMLibDir)
630 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
631 # All -I flags should go here, so that they don't confuse llvm-config.
632 CPP.Flags     += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
633                  $(patsubst %,-I%/include,\
634                  $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
635                  $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
636                  $(CPP.BaseFlags)
637
638 ifeq ($(BUILD_COMPONENT), 1)
639   Compile.C     = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
640                   $(TargetCommonOpts) $(CompileCommonOpts) -c
641   Compile.CXX   = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
642                   $(CPPFLAGS) \
643                   $(TargetCommonOpts) $(CompileCommonOpts) -c
644   Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
645                   $(CompileCommonOpts) $(CXX.Flags) -E
646   Link          = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
647                   $(LDFLAGS) \
648                   $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
649 else
650   Compile.C     = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
651                   $(TargetCommonOpts) $(CompileCommonOpts) -c
652   Compile.CXX   = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
653                   $(TargetCommonOpts) $(CompileCommonOpts) -c
654   Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
655                   $(CompileCommonOpts) $(CXX.Flags) -E
656   Link          = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
657                   $(TargetCommonOpts)  $(CompileCommonOpts) $(LD.Flags) $(Strip)
658 endif
659
660 BCCompile.C   = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
661                 $(TargetCommonOpts) $(CompileCommonOpts)
662 Preprocess.C  = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
663                 $(TargetCommonOpts) $(CompileCommonOpts) -E
664
665 BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
666                 $(TargetCommonOpts) $(CompileCommonOpts)
667
668 ProgInstall   = $(INSTALL) $(Install.StripFlag) -m 0755
669 ScriptInstall = $(INSTALL) -m 0755
670 DataInstall   = $(INSTALL) -m 0644
671
672 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
673 # paths. In this case, the SYSPATH function (defined in
674 # Makefile.config) transforms Unix paths into Windows paths.
675 TableGen      = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
676                 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
677                 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
678                 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
679
680 Archive       = $(AR) $(AR.Flags)
681 LArchive      = $(LLVMToolDir)/llvm-ar rcsf
682 ifdef RANLIB
683 Ranlib        = $(RANLIB)
684 else
685 Ranlib        = ranlib
686 endif
687
688 AliasTool     = ln -s
689
690 #----------------------------------------------------------
691 # Get the list of source files and compute object file
692 # names from them.
693 #----------------------------------------------------------
694
695 ifndef SOURCES
696   Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
697              $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
698 else
699   Sources := $(SOURCES)
700 endif
701
702 ifdef BUILT_SOURCES
703 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
704 endif
705
706 BaseNameSources := $(sort $(basename $(Sources)))
707
708 ObjectsO  := $(BaseNameSources:%=$(ObjDir)/%.o)
709 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
710
711 ###############################################################################
712 # DIRECTORIES: Handle recursive descent of directory structure
713 ###############################################################################
714
715 #---------------------------------------------------------
716 # Provide rules to make install dirs. This must be early
717 # in the file so they get built before dependencies
718 #---------------------------------------------------------
719
720 $(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
721         $(Verb) $(MKDIR) $@
722
723 # To create other directories, as needed, and timestamp their creation
724 %/.dir:
725         $(Verb) $(MKDIR) $* > /dev/null
726         $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
727
728 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
729 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
730
731 #---------------------------------------------------------
732 # Handle the DIRS options for sequential construction
733 #---------------------------------------------------------
734
735 SubDirs :=
736 ifdef DIRS
737 SubDirs += $(DIRS)
738
739 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
740 $(RecursiveTargets)::
741         $(Verb) for dir in $(DIRS); do \
742           if ([ ! -f $$dir/Makefile ] || \
743               command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
744             $(MKDIR) $$dir; \
745             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
746           fi; \
747           ($(MAKE) -C $$dir $@ ) || exit 1; \
748         done
749 else
750 $(RecursiveTargets)::
751         $(Verb) for dir in $(DIRS); do \
752           ($(MAKE) -C $$dir $@ ) || exit 1; \
753         done
754 endif
755
756 endif
757
758 #---------------------------------------------------------
759 # Handle the EXPERIMENTAL_DIRS options ensuring success
760 # after each directory is built.
761 #---------------------------------------------------------
762 ifdef EXPERIMENTAL_DIRS
763 $(RecursiveTargets)::
764         $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
765           if ([ ! -f $$dir/Makefile ] || \
766               command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
767             $(MKDIR) $$dir; \
768             $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
769           fi; \
770           ($(MAKE) -C $$dir $@ ) || exit 0; \
771         done
772 endif
773
774 #-----------------------------------------------------------
775 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
776 #-----------------------------------------------------------
777 ifdef OPTIONAL_PARALLEL_DIRS
778   PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
779 endif
780
781 #-----------------------------------------------------------
782 # Handle the PARALLEL_DIRS options for parallel construction
783 #-----------------------------------------------------------
784 ifdef PARALLEL_DIRS
785
786 SubDirs += $(PARALLEL_DIRS)
787
788 # Unfortunately, this list must be maintained if new recursive targets are added
789 all      :: $(addsuffix /.makeall      ,$(PARALLEL_DIRS))
790 clean    :: $(addsuffix /.makeclean    ,$(PARALLEL_DIRS))
791 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
792 install  :: $(addsuffix /.makeinstall  ,$(PARALLEL_DIRS))
793 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
794 install-bytecode  :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
795 unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
796
797 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
798
799 $(ParallelTargets) :
800         $(Verb) if ([ ! -f $(@D)/Makefile ] || \
801                     command test $(@D)/Makefile -ot \
802                       $(PROJ_SRC_DIR)/$(@D)/Makefile ); then \
803           $(MKDIR) $(@D); \
804           $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
805         fi; \
806         $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
807 endif
808
809 #---------------------------------------------------------
810 # Handle the OPTIONAL_DIRS options for directores that may
811 # or may not exist.
812 #---------------------------------------------------------
813 ifdef OPTIONAL_DIRS
814
815 SubDirs += $(OPTIONAL_DIRS)
816
817 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
818 $(RecursiveTargets)::
819         $(Verb) for dir in $(OPTIONAL_DIRS); do \
820           if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
821             if ([ ! -f $$dir/Makefile ] || \
822                 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
823               $(MKDIR) $$dir; \
824               $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
825             fi; \
826             ($(MAKE) -C$$dir $@ ) || exit 1; \
827           fi \
828         done
829 else
830 $(RecursiveTargets)::
831         $(Verb) for dir in $(OPTIONAL_DIRS); do \
832           ($(MAKE) -C$$dir $@ ) || exit 1; \
833         done
834 endif
835 endif
836
837 #---------------------------------------------------------
838 # Handle the CONFIG_FILES options
839 #---------------------------------------------------------
840 ifdef CONFIG_FILES
841
842 ifdef NO_INSTALL
843 install-local::
844         $(Echo) Install circumvented with NO_INSTALL
845 uninstall-local::
846         $(Echo) UnInstall circumvented with NO_INSTALL
847 else
848 install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
849         $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
850         $(Verb)for file in $(CONFIG_FILES); do \
851           if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
852             $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
853           elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
854             $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
855           else \
856             $(ECHO) Error: cannot find config file $${file}. ; \
857           fi \
858         done
859
860 uninstall-local::
861         $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
862         $(Verb)for file in $(CONFIG_FILES); do \
863           $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
864         done
865 endif
866
867 endif
868
869 ###############################################################################
870 # Set up variables for building libraries
871 ###############################################################################
872
873 #---------------------------------------------------------
874 # Define various command line options pertaining to the
875 # libraries needed when linking. There are "Proj" libs
876 # (defined by the user's project) and "LLVM" libs (defined
877 # by the LLVM project).
878 #---------------------------------------------------------
879
880 ifdef USEDLIBS
881 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
882 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o,  $(ProjLibsOptions))
883 ProjUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
884 ProjLibsPaths   := $(addprefix $(LibDir)/,$(ProjUsedLibs))
885 endif
886
887 ifdef LLVMLIBS
888 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
889 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
890 LLVMUsedLibs    := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
891 LLVMLibsPaths   := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
892 endif
893
894 # Loadable module for Win32 requires all symbols resolved for linking.
895 # Then all symbols in LLVM.dll will be available.
896 ifeq ($(ENABLE_SHARED),1)
897   ifdef LOADABLE_MODULE
898     ifneq (,$(filter $(HOST_OS),Cygwin MingW))
899       LINK_COMPONENTS += all
900     endif
901   endif
902 endif
903
904 ifndef IS_CLEANING_TARGET
905 ifdef LINK_COMPONENTS
906
907 # If LLVM_CONFIG doesn't exist, build it.  This can happen if you do a make
908 # clean in tools, then do a make in tools (instead of at the top level).
909 $(LLVM_CONFIG):
910         @echo "*** llvm-config doesn't exist - rebuilding it."
911         @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
912
913 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
914
915 ifeq ($(ENABLE_SHARED), 1)
916 # We can take the "auto-import" feature to get rid of using dllimport.
917 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
918 LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
919                    -L $(SharedLibDir)
920 endif
921 LLVMLibsOptions += -lLLVM-$(LLVMVersion)
922 LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
923 else
924
925 ifndef NO_LLVM_CONFIG
926 LLVMConfigLibs := $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS) || echo Error)
927 ifeq ($(LLVMConfigLibs),Error)
928 $(error llvm-config --libs failed)
929 endif
930 LLVMLibsOptions += $(LLVMConfigLibs)
931 LLVMConfigLibfiles := $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS) || echo Error)
932 ifeq ($(LLVMConfigLibfiles),Error)
933 $(error llvm-config --libfiles failed)
934 endif
935 LLVMLibsPaths += $(LLVM_CONFIG) $(LLVMConfigLibfiles)
936 endif
937
938 endif
939 endif
940 endif
941
942 # Set up the library exports file.
943 ifdef EXPORTED_SYMBOL_FILE
944
945 # First, set up the native export file, which may differ from the source
946 # export file.
947
948 ifeq ($(HOST_OS),Darwin)
949 # Darwin convention prefixes symbols with underscores.
950 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
951 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
952         $(Verb) sed -e 's/^/_/' < $< > $@
953 clean-local::
954         -$(Verb) $(RM) -f $(NativeExportsFile)
955 else
956 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
957 # Gold and BFD ld require a version script rather than a plain list.
958 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
959 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
960         $(Verb) echo "{" > $@
961         $(Verb) grep -q "\<" $< && echo "  global:" >> $@ || :
962         $(Verb) sed -e 's/$$/;/' -e 's/^/    /' < $< >> $@
963         $(Verb) echo "  local: *;" >> $@
964         $(Verb) echo "};" >> $@
965 clean-local::
966         -$(Verb) $(RM) -f $(NativeExportsFile)
967 else
968 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
969 # GNU ld Win32 accepts .DEF files that contain "DATA" entries.
970 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
971 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
972         $(Echo) Generating $(notdir $@)
973         $(Verb) $(ECHO) "EXPORTS" > $@
974         $(Verb) $(CAT) $< >> $@
975 clean-local::
976         -$(Verb) $(RM) -f $(NativeExportsFile)
977 else
978 # Default behavior: just use the exports file verbatim.
979 NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
980 endif
981 endif
982 endif
983
984 # Now add the linker command-line options to use the native export file.
985
986 # Darwin
987 ifeq ($(HOST_OS),Darwin)
988 LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
989 endif
990
991 # gold, bfd ld, etc.
992 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
993 LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
994 endif
995
996 # Windows
997 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
998 # LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
999 SharedLinkOptions += $(NativeExportsFile)
1000 endif
1001
1002 endif
1003
1004 ###############################################################################
1005 # Library Build Rules: Four ways to build a library
1006 ###############################################################################
1007
1008 #---------------------------------------------------------
1009 # Bytecode Module Targets:
1010 #   If the user set MODULE_NAME then they want to build a
1011 #   bytecode module from the sources. We compile all the
1012 #   sources and link it together into a single bytecode
1013 #   module.
1014 #---------------------------------------------------------
1015
1016 ifdef MODULE_NAME
1017 ifeq ($(strip $(LLVMCC)),)
1018 $(warning Modules require LLVM capable compiler but none is available ****)
1019 else
1020
1021 Module     := $(LibDir)/$(MODULE_NAME).bc
1022 LinkModule := $(LLVMLD) -r
1023
1024
1025 ifdef EXPORTED_SYMBOL_FILE
1026 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1027 endif
1028
1029 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
1030         $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
1031         $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1032
1033 all-local:: $(Module)
1034
1035 clean-local::
1036 ifneq ($(strip $(Module)),)
1037         -$(Verb) $(RM) -f $(Module)
1038 endif
1039
1040 ifdef BYTECODE_DESTINATION
1041 ModuleDestDir := $(BYTECODE_DESTINATION)
1042 else
1043 ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
1044 endif
1045
1046 ifdef NO_INSTALL
1047 install-local::
1048         $(Echo) Install circumvented with NO_INSTALL
1049 uninstall-local::
1050         $(Echo) Uninstall circumvented with NO_INSTALL
1051 else
1052 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1053
1054 install-module:: $(DestModule)
1055 install-local:: $(DestModule)
1056
1057 $(DestModule): $(ModuleDestDir) $(Module)
1058         $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
1059         $(Verb) $(DataInstall) $(Module) $(DestModule)
1060
1061 uninstall-local::
1062         $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1063         -$(Verb) $(RM) -f $(DestModule)
1064 endif
1065
1066 endif
1067 endif
1068
1069 # if we're building a library ...
1070 ifdef LIBRARYNAME
1071
1072 # Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
1073 LIBRARYNAME := $(strip $(LIBRARYNAME))
1074 ifdef LOADABLE_MODULE
1075 LibName.A  := $(LibDir)/$(LIBRARYNAME).a
1076 LibName.SO := $(SharedLibDir)/$(LIBRARYNAME)$(SHLIBEXT)
1077 else
1078 LibName.A  := $(LibDir)/lib$(LIBRARYNAME).a
1079 LibName.SO := $(SharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1080 endif
1081 LibName.O  := $(LibDir)/$(LIBRARYNAME).o
1082 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
1083
1084 #---------------------------------------------------------
1085 # Shared Library Targets:
1086 #   If the user asked for a shared library to be built
1087 #   with the SHARED_LIBRARY variable, then we provide
1088 #   targets for building them.
1089 #---------------------------------------------------------
1090 ifdef SHARED_LIBRARY
1091
1092 all-local:: $(LibName.SO)
1093
1094 ifdef EXPORTED_SYMBOL_FILE
1095 $(LibName.SO): $(NativeExportsFile)
1096 endif
1097
1098 ifdef LINK_LIBS_IN_SHARED
1099 ifdef LOADABLE_MODULE
1100 SharedLibKindMessage := "Loadable Module"
1101 else
1102 SharedLibKindMessage := "Shared Library"
1103 endif
1104 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
1105         $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1106           $(notdir $@)
1107         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
1108           $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
1109 else
1110 $(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
1111         $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
1112         $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
1113 endif
1114
1115 clean-local::
1116 ifneq ($(strip $(LibName.SO)),)
1117         -$(Verb) $(RM) -f $(LibName.SO)
1118 endif
1119
1120 ifdef NO_INSTALL
1121 install-local::
1122         $(Echo) Install circumvented with NO_INSTALL
1123 uninstall-local::
1124         $(Echo) Uninstall circumvented with NO_INSTALL
1125 else
1126
1127 # Win32.DLL prefers to be located on the "PATH" of binaries.
1128 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1129 DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
1130 else
1131 DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
1132 endif
1133 DestSharedLib := $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1134
1135 install-local:: $(DestSharedLib)
1136
1137 $(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
1138         $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1139         $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1140
1141 uninstall-local::
1142         $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1143         -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
1144 endif
1145 endif
1146
1147 #---------------------------------------------------------
1148 # Bytecode Library Targets:
1149 #   If the user asked for a bytecode library to be built
1150 #   with the BYTECODE_LIBRARY variable, then we provide
1151 #   targets for building them.
1152 #---------------------------------------------------------
1153 ifdef BYTECODE_LIBRARY
1154 ifeq ($(strip $(LLVMCC)),)
1155 $(warning Bytecode libraries require LLVM capable compiler but none is available ****)
1156 else
1157
1158 all-local:: $(LibName.BCA)
1159
1160 ifdef EXPORTED_SYMBOL_FILE
1161 BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1162
1163 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1164                 $(LLVMToolDir)/llvm-ar
1165         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1166           "(internalize)"
1167         $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
1168         $(Verb) $(RM) -f $@
1169         $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
1170 else
1171 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1172                 $(LLVMToolDir)/llvm-ar
1173         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1174         $(Verb) $(RM) -f $@
1175         $(Verb) $(LArchive) $@ $(ObjectsBC)
1176
1177 endif
1178
1179 clean-local::
1180 ifneq ($(strip $(LibName.BCA)),)
1181         -$(Verb) $(RM) -f $(LibName.BCA)
1182 endif
1183
1184 ifdef BYTECODE_DESTINATION
1185 BytecodeDestDir := $(BYTECODE_DESTINATION)
1186 else
1187 BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
1188 endif
1189
1190 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1191
1192 install-bytecode-local:: $(DestBytecodeLib)
1193
1194 ifdef NO_INSTALL
1195 install-local::
1196         $(Echo) Install circumvented with NO_INSTALL
1197 uninstall-local::
1198         $(Echo) Uninstall circumvented with NO_INSTALL
1199 else
1200 install-local:: $(DestBytecodeLib)
1201
1202 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1203         $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1204         $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1205
1206 uninstall-local::
1207         $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1208         -$(Verb) $(RM) -f $(DestBytecodeLib)
1209 endif
1210 endif
1211 endif
1212
1213 #---------------------------------------------------------
1214 # Library Targets:
1215 #   If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1216 #   building an archive.
1217 #---------------------------------------------------------
1218 ifndef NO_BUILD_ARCHIVE
1219 ifndef BUILD_ARCHIVE
1220 ifndef LOADABLE_MODULE
1221 BUILD_ARCHIVE = 1
1222 endif
1223 endif
1224 endif
1225
1226 #---------------------------------------------------------
1227 # Archive Library Targets:
1228 #   If the user wanted a regular archive library built,
1229 #   then we provide targets for building them.
1230 #---------------------------------------------------------
1231 ifdef BUILD_ARCHIVE
1232
1233 all-local:: $(LibName.A)
1234
1235 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1236         $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1237         -$(Verb) $(RM) -f $@
1238         $(Verb) $(Archive) $@ $(ObjectsO)
1239         $(Verb) $(Ranlib) $@
1240
1241 clean-local::
1242 ifneq ($(strip $(LibName.A)),)
1243         -$(Verb) $(RM) -f $(LibName.A)
1244 endif
1245
1246 ifdef NO_INSTALL
1247 install-local::
1248         $(Echo) Install circumvented with NO_INSTALL
1249 uninstall-local::
1250         $(Echo) Uninstall circumvented with NO_INSTALL
1251 else
1252 ifdef NO_INSTALL_ARCHIVES
1253 install-local::
1254         $(Echo) Install circumvented with NO_INSTALL
1255 uninstall-local::
1256         $(Echo) Uninstall circumvented with NO_INSTALL
1257 else
1258 DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
1259
1260 install-local:: $(DestArchiveLib)
1261
1262 $(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
1263         $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1264         $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
1265         $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1266
1267 uninstall-local::
1268         $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1269         -$(Verb) $(RM) -f $(DestArchiveLib)
1270 endif
1271 endif
1272 endif
1273
1274 # endif LIBRARYNAME
1275 endif
1276
1277 ###############################################################################
1278 # Tool Build Rules: Build executable tool based on TOOLNAME option
1279 ###############################################################################
1280
1281 ifdef TOOLNAME
1282
1283 #---------------------------------------------------------
1284 # Set up variables for building a tool.
1285 #---------------------------------------------------------
1286 TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
1287 ifdef EXAMPLE_TOOL
1288 ToolBuildPath   := $(ExmplDir)/$(TOOLEXENAME)
1289 else
1290 ToolBuildPath   := $(ToolDir)/$(TOOLEXENAME)
1291 endif
1292
1293 # TOOLALIAS is a name to symlink (or copy) the tool to.
1294 ifdef TOOLALIAS
1295 ifdef EXAMPLE_TOOL
1296 ToolAliasBuildPath   := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1297 else
1298 ToolAliasBuildPath   := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1299 endif
1300 endif
1301
1302 #---------------------------------------------------------
1303 # Prune Exports
1304 #---------------------------------------------------------
1305
1306 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1307 # not exporting all of the weak symbols from the binary.  This reduces dyld
1308 # startup time by 4x on darwin in some cases.
1309 ifdef TOOL_NO_EXPORTS
1310 ifeq ($(HOST_OS),Darwin)
1311
1312 # Tiger tools don't support this.
1313 ifneq ($(DARWIN_MAJVERS),4)
1314 LD.Flags += -Wl,-exported_symbol,_main
1315 endif
1316 endif
1317
1318 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
1319 ifneq ($(ARCH), Mips)
1320   LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1321 endif
1322 endif
1323 endif
1324
1325 #---------------------------------------------------------
1326 # Tool Order File Support
1327 #---------------------------------------------------------
1328
1329 ifeq ($(HOST_OS),Darwin)
1330 ifdef TOOL_ORDER_FINE
1331
1332 LD.Flags += -Wl,-order_file,$(TOOL_ORDER_FILE)
1333
1334 endif
1335 endif
1336
1337 #---------------------------------------------------------
1338 # Tool Version Info Support
1339 #---------------------------------------------------------
1340
1341 ifeq ($(HOST_OS),Darwin)
1342 ifdef TOOL_INFO_PLIST
1343
1344 LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1345
1346 $(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1347
1348 $(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
1349         $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1350         $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1351                    -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1352                    -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1353                  -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1354                    $< > $@
1355
1356 endif
1357 endif
1358
1359 #---------------------------------------------------------
1360 # Provide targets for building the tools
1361 #---------------------------------------------------------
1362 all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
1363
1364 clean-local::
1365 ifneq ($(strip $(ToolBuildPath)),)
1366         -$(Verb) $(RM) -f $(ToolBuildPath)
1367 endif
1368 ifneq ($(strip $(ToolAliasBuildPath)),)
1369         -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1370 endif
1371
1372 ifdef EXAMPLE_TOOL
1373 $(ToolBuildPath): $(ExmplDir)/.dir
1374 else
1375 $(ToolBuildPath): $(ToolDir)/.dir
1376 endif
1377
1378 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1379         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1380         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1381         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1382         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1383           $(StripWarnMsg)
1384
1385 ifneq ($(strip $(ToolAliasBuildPath)),)
1386 $(ToolAliasBuildPath): $(ToolBuildPath)
1387         $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1388         $(Verb) $(RM) -f $(ToolAliasBuildPath)
1389         $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1390         $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
1391           $(StripWarnMsg)
1392 endif
1393
1394 ifdef NO_INSTALL
1395 install-local::
1396         $(Echo) Install circumvented with NO_INSTALL
1397 uninstall-local::
1398         $(Echo) Uninstall circumvented with NO_INSTALL
1399 else
1400 DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
1401
1402 install-local:: $(DestTool)
1403
1404 $(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
1405         $(Echo) Installing $(BuildMode) $(DestTool)
1406         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1407
1408 uninstall-local::
1409         $(Echo) Uninstalling $(BuildMode) $(DestTool)
1410         -$(Verb) $(RM) -f $(DestTool)
1411
1412 # TOOLALIAS install.
1413 ifdef TOOLALIAS
1414 DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
1415
1416 install-local:: $(DestToolAlias)
1417
1418 $(DestToolAlias): $(DestTool)
1419         $(Echo) Installing $(BuildMode) $(DestToolAlias)
1420         $(Verb) $(RM) -f $(DestToolAlias)
1421         $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1422
1423 uninstall-local::
1424         $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1425         -$(Verb) $(RM) -f $(DestToolAlias)
1426 endif
1427
1428 endif
1429 endif
1430
1431 ###############################################################################
1432 # Object Build Rules: Build object files based on sources
1433 ###############################################################################
1434
1435 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1436 ifeq ($(HOST_OS),HP-UX)
1437   DISABLE_AUTO_DEPENDENCIES=1
1438 endif
1439
1440 # Provide rule sets for when dependency generation is enabled
1441 ifndef DISABLE_AUTO_DEPENDENCIES
1442
1443 #---------------------------------------------------------
1444 # Create .o files in the ObjDir directory from the .cpp and .c files...
1445 #---------------------------------------------------------
1446
1447 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1448          -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1449
1450 # If the build succeeded, move the dependency file over, otherwise
1451 # remove it.
1452 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1453                   else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1454
1455 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1456         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1457         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1458                 $(DEPEND_MOVEFILE)
1459
1460 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1461         $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1462         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1463                 $(DEPEND_MOVEFILE)
1464
1465 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1466         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1467         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1468                 $(DEPEND_MOVEFILE)
1469
1470 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1471         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1472         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1473                 $(DEPEND_MOVEFILE)
1474
1475 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_MAKEFILE)
1476         $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1477         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1478                 $(DEPEND_MOVEFILE)
1479
1480 #---------------------------------------------------------
1481 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1482 #---------------------------------------------------------
1483
1484 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1485         -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1486
1487 # If the build succeeded, move the dependency file over, otherwise
1488 # remove it.
1489 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1490                      else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1491
1492 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1493         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1494         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1495                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1496                 $(BC_DEPEND_MOVEFILE)
1497
1498 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1499         $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1500         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1501                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1502                 $(BC_DEPEND_MOVEFILE)
1503
1504 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1505         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1506         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1507                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1508                 $(BC_DEPEND_MOVEFILE)
1509
1510 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1511         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1512         $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1513                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1514                 $(BC_DEPEND_MOVEFILE)
1515
1516 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1517         $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1518         $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1519                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1520                 $(BC_DEPEND_MOVEFILE)
1521
1522 # Provide alternate rule sets if dependencies are disabled
1523 else
1524
1525 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1526         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1527         $(Compile.CXX) $< -o $@
1528
1529 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1530         $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1531         $(Compile.CXX) $< -o $@
1532
1533 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1534         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1535         $(Compile.CXX) $< -o $@
1536
1537 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1538         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1539         $(Compile.C) $< -o $@
1540
1541 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1542         $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1543         $(Compile.C) $< -o $@
1544
1545 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1546         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1547         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1548
1549 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1550         $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1551         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1552
1553 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1554         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1555         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1556
1557 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1558         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1559         $(BCCompile.C) $< -o $@ -S -emit-llvm
1560
1561 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1562         $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1563         $(BCCompile.C) $< -o $@ -S -emit-llvm
1564
1565 endif
1566
1567
1568 ## Rules for building preprocessed (.i/.ii) outputs.
1569 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1570         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1571         $(Verb) $(Preprocess.CXX) $< -o $@
1572
1573 $(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1574         $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1575         $(Verb) $(Preprocess.CXX) $< -o $@
1576
1577 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1578         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1579         $(Verb) $(Preprocess.CXX) $< -o $@
1580
1581 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1582         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1583         $(Verb) $(Preprocess.C) $< -o $@
1584
1585 $(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1586         $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1587         $(Verb) $(Preprocess.C) $< -o $@
1588
1589
1590 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1591         $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1592         $(Compile.CXX) $< -o $@ -S
1593
1594 $(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1595         $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1596         $(Compile.CXX) $< -o $@ -S
1597
1598 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1599         $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1600         $(Compile.CXX) $< -o $@ -S
1601
1602 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1603         $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1604         $(Compile.C) $< -o $@ -S
1605
1606 $(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1607         $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1608         $(Compile.C) $< -o $@ -S
1609
1610
1611 # make the C and C++ compilers strip debug info out of bytecode libraries.
1612 ifdef DEBUG_RUNTIME
1613 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1614         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1615         $(Verb) $(LOPT) $< -std-compile-opts -o $@
1616 else
1617 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1618         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1619         $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1620 endif
1621
1622
1623 #---------------------------------------------------------
1624 # Provide rule to build .bc files from .ll sources,
1625 # regardless of dependencies
1626 #---------------------------------------------------------
1627 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1628         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1629         $(Verb) $(LLVMAS) $< -f -o $@
1630
1631 ###############################################################################
1632 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1633 ###############################################################################
1634
1635 ifdef TARGET
1636 TABLEGEN_INC_FILES_COMMON = 1
1637 endif
1638
1639 ifdef LLVMC_BASED_DRIVER
1640 TABLEGEN_INC_FILES_COMMON = 1
1641 endif
1642
1643 ifdef TABLEGEN_INC_FILES_COMMON
1644
1645 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1646 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1647 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1648
1649 # INCFiles rule: All of the tblgen generated files are emitted to
1650 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1651 # us to only "touch" the real file if the contents of it change.  IOW, if
1652 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1653 # dependencies of the .inc files are, unless the contents of the .inc file
1654 # changes.
1655 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1656         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1657
1658 endif # TABLEGEN_INC_FILES_COMMON
1659
1660 ifdef TARGET
1661
1662 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1663            $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1664            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1665            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1666            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1667            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1668            $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1669
1670 # All of these files depend on tblgen and the .td files.
1671 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1672
1673 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1674 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1675         $(Echo) "Building $(<F) register names with tblgen"
1676         $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1677
1678 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1679 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1680         $(Echo) "Building $(<F) register information header with tblgen"
1681         $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1682
1683 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1684 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1685         $(Echo) "Building $(<F) register info implementation with tblgen"
1686         $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1687
1688 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1689 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1690         $(Echo) "Building $(<F) instruction names with tblgen"
1691         $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1692
1693 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1694 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1695         $(Echo) "Building $(<F) instruction information with tblgen"
1696         $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1697
1698 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1699 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1700         $(Echo) "Building $(<F) assembly writer with tblgen"
1701         $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1702
1703 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1704 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1705         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1706         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1707
1708 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1709 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1710         $(Echo) "Building $(<F) assembly matcher with tblgen"
1711         $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1712
1713 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1714 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1715         $(Echo) "Building $(<F) code emitter with tblgen"
1716         $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1717
1718 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1719 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1720         $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1721         $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1722
1723 $(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1724 $(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1725         $(Echo) "Building $(<F) disassembly tables with tblgen"
1726         $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1727
1728 $(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1729 $(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1730         $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1731         $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1732
1733 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1734 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1735         $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1736         $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1737
1738 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1739 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1740         $(Echo) "Building $(<F) subtarget information with tblgen"
1741         $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1742
1743 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1744 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1745         $(Echo) "Building $(<F) calling convention information with tblgen"
1746         $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1747
1748 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1749 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1750         $(Echo) "Building $(<F) intrinsics information with tblgen"
1751         $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1752
1753 $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1754         $(Echo) "Building $(<F) decoder tables with tblgen"
1755         $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1756
1757
1758 clean-local::
1759         -$(Verb) $(RM) -f $(INCFiles)
1760
1761 endif # TARGET
1762
1763 ifdef LLVMC_BASED_DRIVER
1764
1765 TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1766                 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1767
1768 TDCommon := $(strip $(wildcard \
1769                 $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1770
1771 TDFiles := $(TDSrc) $(TDCommon)
1772
1773 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1774
1775 $(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
1776         $(Echo) "Building LLVMC compilation graph description with tblgen"
1777         $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1778
1779 clean-local::
1780         -$(Verb) $(RM) -f $(INCFiles)
1781
1782 endif # LLVMC_BASED_DRIVER
1783
1784 ###############################################################################
1785 # OTHER RULES: Other rules needed
1786 ###############################################################################
1787
1788 # To create postscript files from dot files...
1789 ifneq ($(DOT),false)
1790 %.ps: %.dot
1791         $(DOT) -Tps < $< > $@
1792 else
1793 %.ps: %.dot
1794         $(Echo) "Cannot build $@: The program dot is not installed"
1795 endif
1796
1797 # This rules ensures that header files that are removed still have a rule for
1798 # which they can be "generated."  This allows make to ignore them and
1799 # reproduce the dependency lists.
1800 %.h:: ;
1801 %.hpp:: ;
1802
1803 # Define clean-local to clean the current directory. Note that this uses a
1804 # very conservative approach ensuring that empty variables do not cause
1805 # errors or disastrous removal.
1806 clean-local::
1807 ifneq ($(strip $(ObjRootDir)),)
1808         -$(Verb) $(RM) -rf $(ObjRootDir)
1809 endif
1810         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1811 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1812         -$(Verb) $(RM) -f *$(SHLIBEXT)
1813 endif
1814
1815 clean-all-local::
1816         -$(Verb) $(RM) -rf Debug Release Profile
1817
1818
1819 ###############################################################################
1820 # DEPENDENCIES: Include the dependency files if we should
1821 ###############################################################################
1822 ifndef DISABLE_AUTO_DEPENDENCIES
1823
1824 # If its not one of the cleaning targets
1825 ifndef IS_CLEANING_TARGET
1826
1827 # Get the list of dependency files
1828 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
1829 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1830
1831 # Include bitcode dependency files if using bitcode libraries
1832 ifdef BYTECODE_LIBRARY
1833 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1834 endif
1835
1836 -include $(DependFiles) ""
1837
1838 endif
1839
1840 endif
1841
1842 ###############################################################################
1843 # CHECK: Running the test suite
1844 ###############################################################################
1845
1846 check::
1847         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1848           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1849             $(EchoCmd) Running test suite ; \
1850             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1851               TESTSUITE=$(TESTSUITE) ; \
1852           else \
1853             $(EchoCmd) No Makefile in test directory ; \
1854           fi ; \
1855         else \
1856           $(EchoCmd) No test directory ; \
1857         fi
1858
1859 check-lit:: check
1860
1861 check-dg::
1862         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1863           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1864             $(EchoCmd) Running test suite ; \
1865             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
1866           else \
1867             $(EchoCmd) No Makefile in test directory ; \
1868           fi ; \
1869         else \
1870           $(EchoCmd) No test directory ; \
1871         fi
1872
1873 check-all::
1874         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1875           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1876             $(EchoCmd) Running test suite ; \
1877             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1878           else \
1879             $(EchoCmd) No Makefile in test directory ; \
1880           fi ; \
1881         else \
1882           $(EchoCmd) No test directory ; \
1883         fi
1884
1885 ###############################################################################
1886 # UNITTESTS: Running the unittests test suite
1887 ###############################################################################
1888
1889 unittests::
1890         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1891           if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1892             $(EchoCmd) Running unittests test suite ; \
1893             $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
1894           else \
1895             $(EchoCmd) No Makefile in unittests directory ; \
1896           fi ; \
1897         else \
1898           $(EchoCmd) No unittests directory ; \
1899         fi
1900
1901 ###############################################################################
1902 # DISTRIBUTION: Handle construction of a distribution tarball
1903 ###############################################################################
1904
1905 #------------------------------------------------------------------------
1906 # Define distribution related variables
1907 #------------------------------------------------------------------------
1908 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1909 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1910 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1911 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1912 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1913 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1914 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1915                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1916                Makefile.config.in configure autoconf
1917 DistOther   := $(notdir $(wildcard \
1918                $(PROJ_SRC_DIR)/*.h \
1919                $(PROJ_SRC_DIR)/*.td \
1920                $(PROJ_SRC_DIR)/*.def \
1921                $(PROJ_SRC_DIR)/*.ll \
1922                $(PROJ_SRC_DIR)/*.in))
1923 DistSubDirs := $(SubDirs)
1924 DistSources  = $(Sources) $(EXTRA_DIST)
1925 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1926
1927 #------------------------------------------------------------------------
1928 # We MUST build distribution with OBJ_DIR != SRC_DIR
1929 #------------------------------------------------------------------------
1930 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1931 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1932         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1933
1934 else
1935
1936 #------------------------------------------------------------------------
1937 # Prevent attempt to run dist targets from anywhere but the top level
1938 #------------------------------------------------------------------------
1939 ifneq ($(LEVEL),.)
1940 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1941         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1942 else
1943
1944 #------------------------------------------------------------------------
1945 # Provide the top level targets
1946 #------------------------------------------------------------------------
1947
1948 dist-gzip:: $(DistTarGZip)
1949
1950 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1951         $(Echo) Packing gzipped distribution tar file.
1952         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1953           $(GZIP) -c > "$(DistTarGZip)"
1954
1955 dist-bzip2:: $(DistTarBZ2)
1956
1957 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1958         $(Echo) Packing bzipped distribution tar file.
1959         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1960           $(BZIP2) -c >$(DistTarBZ2)
1961
1962 dist-zip:: $(DistZip)
1963
1964 $(DistZip) : $(TopDistDir)/.makedistdir
1965         $(Echo) Packing zipped distribution file.
1966         $(Verb) rm -f $(DistZip)
1967         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1968
1969 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1970         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1971
1972 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1973
1974 dist-check:: $(DistTarGZip)
1975         $(Echo) Checking distribution tar file.
1976         $(Verb) if test -d $(DistCheckDir) ; then \
1977           $(RM) -rf $(DistCheckDir) ; \
1978         fi
1979         $(Verb) $(MKDIR) $(DistCheckDir)
1980         $(Verb) cd $(DistCheckDir) && \
1981           $(MKDIR) $(DistCheckDir)/build && \
1982           $(MKDIR) $(DistCheckDir)/install && \
1983           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1984           cd build && \
1985           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1986             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1987           $(MAKE) all && \
1988           $(MAKE) check && \
1989           $(MAKE) unittests && \
1990           $(MAKE) install && \
1991           $(MAKE) uninstall && \
1992           $(MAKE) dist-clean && \
1993           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1994
1995 dist-clean::
1996         $(Echo) Cleaning distribution files
1997         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1998           $(DistCheckDir)
1999
2000 endif
2001
2002 #------------------------------------------------------------------------
2003 # Provide the recursive distdir target for building the distribution directory
2004 #------------------------------------------------------------------------
2005 distdir: $(DistDir)/.makedistdir
2006 $(DistDir)/.makedistdir: $(DistSources)
2007         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2008           if test -d "$(DistDir)" ; then \
2009             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
2010               exit 1 ; \
2011           fi ; \
2012           $(EchoCmd) Removing old $(DistDir) ; \
2013           $(RM) -rf $(DistDir); \
2014           $(EchoCmd) Making 'all' to verify build ; \
2015           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
2016         fi
2017         $(Echo) Building Distribution Directory $(DistDir)
2018         $(Verb) $(MKDIR) $(DistDir)
2019         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
2020         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
2021         for file in $(DistFiles) ; do \
2022           case "$$file" in \
2023             $(PROJ_SRC_DIR)/*) \
2024               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
2025               ;; \
2026             $(PROJ_SRC_ROOT)/*) \
2027               file=`echo "$$file" | \
2028                 sed "s#^$$srcrootstrip/##"` \
2029               ;; \
2030           esac; \
2031           if test -f "$(PROJ_SRC_DIR)/$$file" || \
2032              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2033             from_dir="$(PROJ_SRC_DIR)" ; \
2034           elif test -f "$$file" || test -d "$$file" ; then \
2035             from_dir=. ; \
2036           fi ; \
2037           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
2038           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2039             to_dir="$(DistDir)/$$dir"; \
2040             $(MKDIR) "$$to_dir" ; \
2041           else \
2042             to_dir="$(DistDir)"; \
2043           fi; \
2044           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2045           if test -n "$$mid_dir" ; then \
2046             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
2047           fi ; \
2048           if test -d "$$from_dir/$$file"; then \
2049             if test -d "$(PROJ_SRC_DIR)/$$file" && \
2050                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
2051                cd $(PROJ_SRC_DIR) ; \
2052                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2053                  ( cd $$to_dir ; $(TAR) xf - ) ; \
2054                cd $(PROJ_OBJ_DIR) ; \
2055             else \
2056                cd $$from_dir ; \
2057                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2058                  ( cd $$to_dir ; $(TAR) xf - ) ; \
2059                cd $(PROJ_OBJ_DIR) ; \
2060             fi; \
2061           elif test -f "$$from_dir/$$file" ; then \
2062             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
2063           elif test -L "$$from_dir/$$file" ; then \
2064             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
2065           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
2066             $(EchoCmd) "===== WARNING: Distribution Source " \
2067               "$$from_dir/$$file Not Found!" ; \
2068           elif test "$(Verb)" != '@' ; then \
2069             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
2070           fi; \
2071         done
2072         $(Verb) for subdir in $(DistSubDirs) ; do \
2073           if test "$$subdir" \!= "." ; then \
2074             new_distdir="$(DistDir)/$$subdir" ; \
2075             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
2076             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
2077               DistDir="$$new_distdir" distdir ) || exit 1; \
2078           fi; \
2079         done
2080         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2081           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
2082           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2083                                   -name .svn \) -print` ;\
2084           $(MAKE) dist-hook ; \
2085           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2086             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2087             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2088             -o ! -type d ! -perm -444 -exec \
2089               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2090             || chmod -R a+r $(DistDir) ; \
2091         fi
2092
2093 # This is invoked by distdir target, define it as a no-op to avoid errors if not
2094 # defined by user.
2095 dist-hook::
2096
2097 endif
2098
2099 ###############################################################################
2100 # TOP LEVEL - targets only to apply at the top level directory
2101 ###############################################################################
2102
2103 ifeq ($(LEVEL),.)
2104
2105 #------------------------------------------------------------------------
2106 # Install support for the project's include files:
2107 #------------------------------------------------------------------------
2108 ifdef NO_INSTALL
2109 install-local::
2110         $(Echo) Install circumvented with NO_INSTALL
2111 uninstall-local::
2112         $(Echo) Uninstall circumvented with NO_INSTALL
2113 else
2114 install-local::
2115         $(Echo) Installing include files
2116         $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
2117         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2118           cd $(PROJ_SRC_ROOT)/include && \
2119           for  hdr in `find . -type f '!' '(' -name '*~' \
2120               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2121               grep -v .svn` ; do \
2122             instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2123             if test \! -d "$$instdir" ; then \
2124               $(EchoCmd) Making install directory $$instdir ; \
2125               $(MKDIR) $$instdir ;\
2126             fi ; \
2127             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2128           done ; \
2129         fi
2130 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2131         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2132           cd $(PROJ_OBJ_ROOT)/include && \
2133           for hdr in `find . -type f -print | grep -v CVS` ; do \
2134             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2135           done ; \
2136         fi
2137 endif
2138
2139 uninstall-local::
2140         $(Echo) Uninstalling include files
2141         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2142           cd $(PROJ_SRC_ROOT)/include && \
2143             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2144               '!' '(' -name '*~' -o -name '.#*' \
2145         -o -name '*.in' ')' -print ')' | \
2146         grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2147           cd $(PROJ_SRC_ROOT)/include && \
2148             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
2149       -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2150         fi
2151 endif
2152 endif
2153
2154 check-line-length:
2155         @echo searching for overlength lines in files: $(Sources)
2156         @echo
2157         @echo
2158         egrep -n '.{81}' $(Sources) /dev/null
2159
2160 check-for-tabs:
2161         @echo searching for tabs in files: $(Sources)
2162         @echo
2163         @echo
2164         egrep -n '      ' $(Sources) /dev/null
2165
2166 check-footprint:
2167         @ls -l $(LibDir) | awk '\
2168           BEGIN { sum = 0; } \
2169                 { sum += $$5; } \
2170           END   { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2171         @ls -l $(ToolDir) | awk '\
2172           BEGIN { sum = 0; } \
2173                 { sum += $$5; } \
2174           END   { printf("Programs:  %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2175 #------------------------------------------------------------------------
2176 # Print out the directories used for building
2177 #------------------------------------------------------------------------
2178 printvars::
2179         $(Echo) "BuildMode    : " '$(BuildMode)'
2180         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2181         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2182         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2183         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2184         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2185         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2186         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
2187         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
2188         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
2189         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
2190         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
2191         $(Echo) "UserTargets  : " '$(UserTargets)'
2192         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2193         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2194         $(Echo) "ObjDir       : " '$(ObjDir)'
2195         $(Echo) "LibDir       : " '$(LibDir)'
2196         $(Echo) "ToolDir      : " '$(ToolDir)'
2197         $(Echo) "ExmplDir     : " '$(ExmplDir)'
2198         $(Echo) "Sources      : " '$(Sources)'
2199         $(Echo) "TDFiles      : " '$(TDFiles)'
2200         $(Echo) "INCFiles     : " '$(INCFiles)'
2201         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
2202         $(Echo) "PreConditions: " '$(PreConditions)'
2203         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
2204         $(Echo) "Compile.C    : " '$(Compile.C)'
2205         $(Echo) "Archive      : " '$(Archive)'
2206         $(Echo) "YaccFiles    : " '$(YaccFiles)'
2207         $(Echo) "LexFiles     : " '$(LexFiles)'
2208         $(Echo) "Module       : " '$(Module)'
2209         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2210         $(Echo) "SubDirs      : " '$(SubDirs)'
2211         $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2212         $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2213
2214 ###
2215 # Debugging
2216
2217 # General debugging rule, use 'make dbg-print-XXX' to print the
2218 # definition, value and origin of XXX.
2219 make-print-%:
2220         $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))