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