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