2fc5eeb0c7c33ad94566abd655b3697300884e37
[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 DestSharedLib = $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
1132
1133 install-local:: $(DestSharedLib)
1134
1135 $(DestSharedLib): $(LibName.SO) $(DESTDIR)$(PROJ_libdir)
1136         $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1137         $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1138
1139 uninstall-local::
1140         $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1141         -$(Verb) $(RM) -f $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).*
1142 endif
1143 endif
1144
1145 #---------------------------------------------------------
1146 # Bytecode Library Targets:
1147 #   If the user asked for a bytecode library to be built
1148 #   with the BYTECODE_LIBRARY variable, then we provide
1149 #   targets for building them.
1150 #---------------------------------------------------------
1151 ifdef BYTECODE_LIBRARY
1152 ifeq ($(strip $(LLVMCC)),)
1153 $(warning Bytecode libraries require LLVM capable compiler but none is available ****)
1154 else
1155
1156 all-local:: $(LibName.BCA)
1157
1158 ifdef EXPORTED_SYMBOL_FILE
1159 BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1160
1161 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1162                 $(LLVMToolDir)/llvm-ar
1163         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1164           "(internalize)"
1165         $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
1166         $(Verb) $(RM) -f $@
1167         $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
1168 else
1169 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1170                 $(LLVMToolDir)/llvm-ar
1171         $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1172         $(Verb) $(RM) -f $@
1173         $(Verb) $(LArchive) $@ $(ObjectsBC)
1174
1175 endif
1176
1177 clean-local::
1178 ifneq ($(strip $(LibName.BCA)),)
1179         -$(Verb) $(RM) -f $(LibName.BCA)
1180 endif
1181
1182 ifdef BYTECODE_DESTINATION
1183 BytecodeDestDir := $(BYTECODE_DESTINATION)
1184 else
1185 BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
1186 endif
1187
1188 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1189
1190 install-bytecode-local:: $(DestBytecodeLib)
1191
1192 ifdef NO_INSTALL
1193 install-local::
1194         $(Echo) Install circumvented with NO_INSTALL
1195 uninstall-local::
1196         $(Echo) Uninstall circumvented with NO_INSTALL
1197 else
1198 install-local:: $(DestBytecodeLib)
1199
1200 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1201         $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1202         $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1203
1204 uninstall-local::
1205         $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1206         -$(Verb) $(RM) -f $(DestBytecodeLib)
1207 endif
1208 endif
1209 endif
1210
1211 #---------------------------------------------------------
1212 # Library Targets:
1213 #   If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1214 #   building an archive.
1215 #---------------------------------------------------------
1216 ifndef NO_BUILD_ARCHIVE
1217 ifndef BUILD_ARCHIVE
1218 ifndef LOADABLE_MODULE
1219 BUILD_ARCHIVE = 1
1220 endif
1221 endif
1222 endif
1223
1224 #---------------------------------------------------------
1225 # Archive Library Targets:
1226 #   If the user wanted a regular archive library built,
1227 #   then we provide targets for building them.
1228 #---------------------------------------------------------
1229 ifdef BUILD_ARCHIVE
1230
1231 all-local:: $(LibName.A)
1232
1233 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1234         $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1235         -$(Verb) $(RM) -f $@
1236         $(Verb) $(Archive) $@ $(ObjectsO)
1237         $(Verb) $(Ranlib) $@
1238
1239 clean-local::
1240 ifneq ($(strip $(LibName.A)),)
1241         -$(Verb) $(RM) -f $(LibName.A)
1242 endif
1243
1244 ifdef NO_INSTALL
1245 install-local::
1246         $(Echo) Install circumvented with NO_INSTALL
1247 uninstall-local::
1248         $(Echo) Uninstall circumvented with NO_INSTALL
1249 else
1250 ifdef NO_INSTALL_ARCHIVES
1251 install-local::
1252         $(Echo) Install circumvented with NO_INSTALL
1253 uninstall-local::
1254         $(Echo) Uninstall circumvented with NO_INSTALL
1255 else
1256 DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
1257
1258 install-local:: $(DestArchiveLib)
1259
1260 $(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
1261         $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1262         $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
1263         $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1264
1265 uninstall-local::
1266         $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1267         -$(Verb) $(RM) -f $(DestArchiveLib)
1268 endif
1269 endif
1270 endif
1271
1272 # endif LIBRARYNAME
1273 endif
1274
1275 ###############################################################################
1276 # Tool Build Rules: Build executable tool based on TOOLNAME option
1277 ###############################################################################
1278
1279 ifdef TOOLNAME
1280
1281 #---------------------------------------------------------
1282 # Set up variables for building a tool.
1283 #---------------------------------------------------------
1284 TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
1285 ifdef EXAMPLE_TOOL
1286 ToolBuildPath   := $(ExmplDir)/$(TOOLEXENAME)
1287 else
1288 ToolBuildPath   := $(ToolDir)/$(TOOLEXENAME)
1289 endif
1290
1291 # TOOLALIAS is a name to symlink (or copy) the tool to.
1292 ifdef TOOLALIAS
1293 ifdef EXAMPLE_TOOL
1294 ToolAliasBuildPath   := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1295 else
1296 ToolAliasBuildPath   := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1297 endif
1298 endif
1299
1300 #---------------------------------------------------------
1301 # Prune Exports
1302 #---------------------------------------------------------
1303
1304 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1305 # not exporting all of the weak symbols from the binary.  This reduces dyld
1306 # startup time by 4x on darwin in some cases.
1307 ifdef TOOL_NO_EXPORTS
1308 ifeq ($(HOST_OS),Darwin)
1309
1310 # Tiger tools don't support this.
1311 ifneq ($(DARWIN_MAJVERS),4)
1312 LD.Flags += -Wl,-exported_symbol,_main
1313 endif
1314 endif
1315
1316 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
1317   LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1318 endif
1319 endif
1320
1321
1322 #---------------------------------------------------------
1323 # Provide targets for building the tools
1324 #---------------------------------------------------------
1325 all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
1326
1327 clean-local::
1328 ifneq ($(strip $(ToolBuildPath)),)
1329         -$(Verb) $(RM) -f $(ToolBuildPath)
1330 endif
1331 ifneq ($(strip $(ToolAliasBuildPath)),)
1332         -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1333 endif
1334
1335 ifdef EXAMPLE_TOOL
1336 $(ToolBuildPath): $(ExmplDir)/.dir
1337 else
1338 $(ToolBuildPath): $(ToolDir)/.dir
1339 endif
1340
1341 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1342         $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1343         $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1344         $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1345         $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1346           $(StripWarnMsg)
1347
1348 ifneq ($(strip $(ToolAliasBuildPath)),)
1349 $(ToolAliasBuildPath): $(ToolBuildPath)
1350         $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1351         $(Verb) $(RM) -f $(ToolAliasBuildPath)
1352         $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1353         $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLNAME) \
1354           $(StripWarnMsg)
1355 endif
1356
1357 ifdef NO_INSTALL
1358 install-local::
1359         $(Echo) Install circumvented with NO_INSTALL
1360 uninstall-local::
1361         $(Echo) Uninstall circumvented with NO_INSTALL
1362 else
1363 DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
1364
1365 install-local:: $(DestTool)
1366
1367 $(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
1368         $(Echo) Installing $(BuildMode) $(DestTool)
1369         $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1370
1371 uninstall-local::
1372         $(Echo) Uninstalling $(BuildMode) $(DestTool)
1373         -$(Verb) $(RM) -f $(DestTool)
1374
1375 # TOOLALIAS install.
1376 ifdef TOOLALIAS
1377 DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
1378
1379 install-local:: $(DestToolAlias)
1380
1381 $(DestToolAlias): $(DestTool)
1382         $(Echo) Installing $(BuildMode) $(DestToolAlias)
1383         $(Verb) $(RM) -f $(DestToolAlias)
1384         $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1385
1386 uninstall-local::
1387         $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1388         -$(Verb) $(RM) -f $(DestToolAlias)
1389 endif
1390
1391 endif
1392 endif
1393
1394 ###############################################################################
1395 # Object Build Rules: Build object files based on sources
1396 ###############################################################################
1397
1398 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1399 ifeq ($(HOST_OS),HP-UX)
1400   DISABLE_AUTO_DEPENDENCIES=1
1401 endif
1402
1403 # Provide rule sets for when dependency generation is enabled
1404 ifndef DISABLE_AUTO_DEPENDENCIES
1405
1406 #---------------------------------------------------------
1407 # Create .o files in the ObjDir directory from the .cpp and .c files...
1408 #---------------------------------------------------------
1409
1410 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1411          -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1412
1413 # If the build succeeded, move the dependency file over, otherwise
1414 # remove it.
1415 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1416                   else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1417
1418 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1419         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1420         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1421                 $(DEPEND_MOVEFILE)
1422
1423 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1424         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1425         $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1426                 $(DEPEND_MOVEFILE)
1427
1428 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1429         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1430         $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1431                 $(DEPEND_MOVEFILE)
1432
1433 #---------------------------------------------------------
1434 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1435 #---------------------------------------------------------
1436
1437 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1438         -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1439
1440 # If the build succeeded, move the dependency file over, otherwise
1441 # remove it.
1442 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1443                      else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1444
1445 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1446         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1447         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1448                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1449                 $(BC_DEPEND_MOVEFILE)
1450
1451 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1452         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1453         $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1454                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1455                 $(BC_DEPEND_MOVEFILE)
1456
1457 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1458         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1459         $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1460                               $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1461                 $(BC_DEPEND_MOVEFILE)
1462
1463 # Provide alternate rule sets if dependencies are disabled
1464 else
1465
1466 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1467         $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1468         $(Compile.CXX) $< -o $@
1469
1470 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1471         $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1472         $(Compile.CXX) $< -o $@
1473
1474 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1475         $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1476         $(Compile.C) $< -o $@
1477
1478 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1479         $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1480         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1481
1482 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1483         $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1484         $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1485
1486 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1487         $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1488         $(BCCompile.C) $< -o $@ -S -emit-llvm
1489
1490 endif
1491
1492
1493 ## Rules for building preprocessed (.i/.ii) outputs.
1494 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1495         $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1496         $(Verb) $(Preprocess.CXX) $< -o $@
1497
1498 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1499         $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1500         $(Verb) $(Preprocess.CXX) $< -o $@
1501
1502 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1503         $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1504         $(Verb) $(Preprocess.C) $< -o $@
1505
1506
1507 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1508         $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1509         $(Compile.CXX) $< -o $@ -S
1510
1511 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1512         $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1513         $(Compile.CXX) $< -o $@ -S
1514
1515 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1516         $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1517         $(Compile.C) $< -o $@ -S
1518
1519
1520 # make the C and C++ compilers strip debug info out of bytecode libraries.
1521 ifdef DEBUG_RUNTIME
1522 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1523         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1524         $(Verb) $(LOPT) $< -std-compile-opts -o $@
1525 else
1526 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1527         $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1528         $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1529 endif
1530
1531
1532 #---------------------------------------------------------
1533 # Provide rule to build .bc files from .ll sources,
1534 # regardless of dependencies
1535 #---------------------------------------------------------
1536 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1537         $(Echo) "Compiling $*.ll for $(BuildMode) build"
1538         $(Verb) $(LLVMAS) $< -f -o $@
1539
1540 ###############################################################################
1541 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1542 ###############################################################################
1543
1544 ifdef TARGET
1545 TABLEGEN_INC_FILES_COMMON = 1
1546 endif
1547
1548 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1549 TABLEGEN_INC_FILES_COMMON = 1
1550 endif
1551
1552 ifdef TABLEGEN_INC_FILES_COMMON
1553
1554 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1555 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1556 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1557
1558 # INCFiles rule: All of the tblgen generated files are emitted to
1559 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1560 # us to only "touch" the real file if the contents of it change.  IOW, if
1561 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1562 # dependencies of the .inc files are, unless the contents of the .inc file
1563 # changes.
1564 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1565         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1566
1567 endif # TABLEGEN_INC_FILES_COMMON
1568
1569 ifdef TARGET
1570
1571 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1572            $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1573            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1574            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1575            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1576            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1577            $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1578
1579 # All of these files depend on tblgen and the .td files.
1580 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1581
1582 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1583 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1584         $(Echo) "Building $(<F) register names with tblgen"
1585         $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1586
1587 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1588 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1589         $(Echo) "Building $(<F) register information header with tblgen"
1590         $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1591
1592 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1593 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1594         $(Echo) "Building $(<F) register info implementation with tblgen"
1595         $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1596
1597 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1598 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1599         $(Echo) "Building $(<F) instruction names with tblgen"
1600         $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1601
1602 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1603 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1604         $(Echo) "Building $(<F) instruction information with tblgen"
1605         $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1606
1607 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1608 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1609         $(Echo) "Building $(<F) assembly writer with tblgen"
1610         $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1611
1612 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1613 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1614         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1615         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1616
1617 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1618 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1619         $(Echo) "Building $(<F) assembly matcher with tblgen"
1620         $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1621
1622 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1623 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1624         $(Echo) "Building $(<F) code emitter with tblgen"
1625         $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1626
1627 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1628 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1629         $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1630         $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1631
1632 $(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1633 $(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1634         $(Echo) "Building $(<F) disassembly tables with tblgen"
1635         $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1636
1637 $(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1638 $(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1639         $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1640         $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1641
1642 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1643 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1644         $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1645         $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1646
1647 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1648 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1649         $(Echo) "Building $(<F) subtarget information with tblgen"
1650         $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1651
1652 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1653 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1654         $(Echo) "Building $(<F) calling convention information with tblgen"
1655         $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1656
1657 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1658 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1659         $(Echo) "Building $(<F) intrinsics information with tblgen"
1660         $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1661
1662 $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1663         $(Echo) "Building $(<F) decoder tables with tblgen"
1664         $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1665
1666
1667 clean-local::
1668         -$(Verb) $(RM) -f $(INCFiles)
1669
1670 endif # TARGET
1671
1672 ifdef LLVMC_BUILD_AUTOGENERATED_INC
1673
1674 LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1675         $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1676
1677 TDFiles := $(LLVMCPluginSrc) \
1678         $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1679
1680 $(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1681                                 $(TBLGEN) $(TD_COMMON)
1682         $(Echo) "Building LLVMC configuration library with tblgen"
1683         $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1684
1685 endif # LLVMC_BUILD_AUTOGENERATED_INC
1686
1687 ###############################################################################
1688 # OTHER RULES: Other rules needed
1689 ###############################################################################
1690
1691 # To create postscript files from dot files...
1692 ifneq ($(DOT),false)
1693 %.ps: %.dot
1694         $(DOT) -Tps < $< > $@
1695 else
1696 %.ps: %.dot
1697         $(Echo) "Cannot build $@: The program dot is not installed"
1698 endif
1699
1700 # This rules ensures that header files that are removed still have a rule for
1701 # which they can be "generated."  This allows make to ignore them and
1702 # reproduce the dependency lists.
1703 %.h:: ;
1704 %.hpp:: ;
1705
1706 # Define clean-local to clean the current directory. Note that this uses a
1707 # very conservative approach ensuring that empty variables do not cause
1708 # errors or disastrous removal.
1709 clean-local::
1710 ifneq ($(strip $(ObjRootDir)),)
1711         -$(Verb) $(RM) -rf $(ObjRootDir)
1712 endif
1713         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1714 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1715         -$(Verb) $(RM) -f *$(SHLIBEXT)
1716 endif
1717
1718 clean-all-local::
1719         -$(Verb) $(RM) -rf Debug Release Profile
1720
1721
1722 ###############################################################################
1723 # DEPENDENCIES: Include the dependency files if we should
1724 ###############################################################################
1725 ifndef DISABLE_AUTO_DEPENDENCIES
1726
1727 # If its not one of the cleaning targets
1728 ifndef IS_CLEANING_TARGET
1729
1730 # Get the list of dependency files
1731 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1732 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1733
1734 # Include bitcode dependency files if using bitcode libraries
1735 ifdef BYTECODE_LIBRARY
1736 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1737 endif
1738
1739 -include $(DependFiles) ""
1740
1741 endif
1742
1743 endif
1744
1745 ###############################################################################
1746 # CHECK: Running the test suite
1747 ###############################################################################
1748
1749 check::
1750         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1751           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1752             $(EchoCmd) Running test suite ; \
1753             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1754               TESTSUITE=$(TESTSUITE) ; \
1755           else \
1756             $(EchoCmd) No Makefile in test directory ; \
1757           fi ; \
1758         else \
1759           $(EchoCmd) No test directory ; \
1760         fi
1761
1762 check-lit::
1763         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1764           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1765             $(EchoCmd) Running test suite ; \
1766             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \
1767           else \
1768             $(EchoCmd) No Makefile in test directory ; \
1769           fi ; \
1770         else \
1771           $(EchoCmd) No test directory ; \
1772         fi
1773
1774 check-all::
1775         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1776           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1777             $(EchoCmd) Running test suite ; \
1778             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1779           else \
1780             $(EchoCmd) No Makefile in test directory ; \
1781           fi ; \
1782         else \
1783           $(EchoCmd) No test directory ; \
1784         fi
1785
1786 ###############################################################################
1787 # UNITTESTS: Running the unittests test suite
1788 ###############################################################################
1789
1790 unittests::
1791         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1792           if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1793             $(EchoCmd) Running unittests test suite ; \
1794             $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
1795           else \
1796             $(EchoCmd) No Makefile in unittests directory ; \
1797           fi ; \
1798         else \
1799           $(EchoCmd) No unittests directory ; \
1800         fi
1801
1802 ###############################################################################
1803 # DISTRIBUTION: Handle construction of a distribution tarball
1804 ###############################################################################
1805
1806 #------------------------------------------------------------------------
1807 # Define distribution related variables
1808 #------------------------------------------------------------------------
1809 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1810 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1811 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1812 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1813 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1814 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1815 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1816                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1817                Makefile.config.in configure autoconf
1818 DistOther   := $(notdir $(wildcard \
1819                $(PROJ_SRC_DIR)/*.h \
1820                $(PROJ_SRC_DIR)/*.td \
1821                $(PROJ_SRC_DIR)/*.def \
1822                $(PROJ_SRC_DIR)/*.ll \
1823                $(PROJ_SRC_DIR)/*.in))
1824 DistSubDirs := $(SubDirs)
1825 DistSources  = $(Sources) $(EXTRA_DIST)
1826 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1827
1828 #------------------------------------------------------------------------
1829 # We MUST build distribution with OBJ_DIR != SRC_DIR
1830 #------------------------------------------------------------------------
1831 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1832 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1833         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1834
1835 else
1836
1837 #------------------------------------------------------------------------
1838 # Prevent attempt to run dist targets from anywhere but the top level
1839 #------------------------------------------------------------------------
1840 ifneq ($(LEVEL),.)
1841 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1842         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1843 else
1844
1845 #------------------------------------------------------------------------
1846 # Provide the top level targets
1847 #------------------------------------------------------------------------
1848
1849 dist-gzip:: $(DistTarGZip)
1850
1851 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1852         $(Echo) Packing gzipped distribution tar file.
1853         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1854           $(GZIP) -c > "$(DistTarGZip)"
1855
1856 dist-bzip2:: $(DistTarBZ2)
1857
1858 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1859         $(Echo) Packing bzipped distribution tar file.
1860         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1861           $(BZIP2) -c >$(DistTarBZ2)
1862
1863 dist-zip:: $(DistZip)
1864
1865 $(DistZip) : $(TopDistDir)/.makedistdir
1866         $(Echo) Packing zipped distribution file.
1867         $(Verb) rm -f $(DistZip)
1868         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1869
1870 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1871         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1872
1873 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1874
1875 dist-check:: $(DistTarGZip)
1876         $(Echo) Checking distribution tar file.
1877         $(Verb) if test -d $(DistCheckDir) ; then \
1878           $(RM) -rf $(DistCheckDir) ; \
1879         fi
1880         $(Verb) $(MKDIR) $(DistCheckDir)
1881         $(Verb) cd $(DistCheckDir) && \
1882           $(MKDIR) $(DistCheckDir)/build && \
1883           $(MKDIR) $(DistCheckDir)/install && \
1884           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1885           cd build && \
1886           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1887             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1888           $(MAKE) all && \
1889           $(MAKE) check && \
1890           $(MAKE) unittests && \
1891           $(MAKE) install && \
1892           $(MAKE) uninstall && \
1893           $(MAKE) dist-clean && \
1894           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1895
1896 dist-clean::
1897         $(Echo) Cleaning distribution files
1898         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1899           $(DistCheckDir)
1900
1901 endif
1902
1903 #------------------------------------------------------------------------
1904 # Provide the recursive distdir target for building the distribution directory
1905 #------------------------------------------------------------------------
1906 distdir: $(DistDir)/.makedistdir
1907 $(DistDir)/.makedistdir: $(DistSources)
1908         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1909           if test -d "$(DistDir)" ; then \
1910             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
1911               exit 1 ; \
1912           fi ; \
1913           $(EchoCmd) Removing old $(DistDir) ; \
1914           $(RM) -rf $(DistDir); \
1915           $(EchoCmd) Making 'all' to verify build ; \
1916           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1917         fi
1918         $(Echo) Building Distribution Directory $(DistDir)
1919         $(Verb) $(MKDIR) $(DistDir)
1920         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1921         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1922         for file in $(DistFiles) ; do \
1923           case "$$file" in \
1924             $(PROJ_SRC_DIR)/*) \
1925               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1926               ;; \
1927             $(PROJ_SRC_ROOT)/*) \
1928               file=`echo "$$file" | \
1929                 sed "s#^$$srcrootstrip/##"` \
1930               ;; \
1931           esac; \
1932           if test -f "$(PROJ_SRC_DIR)/$$file" || \
1933              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1934             from_dir="$(PROJ_SRC_DIR)" ; \
1935           elif test -f "$$file" || test -d "$$file" ; then \
1936             from_dir=. ; \
1937           fi ; \
1938           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1939           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1940             to_dir="$(DistDir)/$$dir"; \
1941             $(MKDIR) "$$to_dir" ; \
1942           else \
1943             to_dir="$(DistDir)"; \
1944           fi; \
1945           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1946           if test -n "$$mid_dir" ; then \
1947             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1948           fi ; \
1949           if test -d "$$from_dir/$$file"; then \
1950             if test -d "$(PROJ_SRC_DIR)/$$file" && \
1951                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1952                cd $(PROJ_SRC_DIR) ; \
1953                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1954                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1955                cd $(PROJ_OBJ_DIR) ; \
1956             else \
1957                cd $$from_dir ; \
1958                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1959                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1960                cd $(PROJ_OBJ_DIR) ; \
1961             fi; \
1962           elif test -f "$$from_dir/$$file" ; then \
1963             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1964           elif test -L "$$from_dir/$$file" ; then \
1965             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1966           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1967             $(EchoCmd) "===== WARNING: Distribution Source " \
1968               "$$from_dir/$$file Not Found!" ; \
1969           elif test "$(Verb)" != '@' ; then \
1970             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1971           fi; \
1972         done
1973         $(Verb) for subdir in $(DistSubDirs) ; do \
1974           if test "$$subdir" \!= "." ; then \
1975             new_distdir="$(DistDir)/$$subdir" ; \
1976             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1977             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1978               DistDir="$$new_distdir" distdir ) || exit 1; \
1979           fi; \
1980         done
1981         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1982           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1983           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1984                                   -name .svn \) -print` ;\
1985           $(MAKE) dist-hook ; \
1986           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1987             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1988             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1989             -o ! -type d ! -perm -444 -exec \
1990               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1991             || chmod -R a+r $(DistDir) ; \
1992         fi
1993
1994 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1995 # defined by user.
1996 dist-hook::
1997
1998 endif
1999
2000 ###############################################################################
2001 # TOP LEVEL - targets only to apply at the top level directory
2002 ###############################################################################
2003
2004 ifeq ($(LEVEL),.)
2005
2006 #------------------------------------------------------------------------
2007 # Install support for the project's include files:
2008 #------------------------------------------------------------------------
2009 ifdef NO_INSTALL
2010 install-local::
2011         $(Echo) Install circumvented with NO_INSTALL
2012 uninstall-local::
2013         $(Echo) Uninstall circumvented with NO_INSTALL
2014 else
2015 install-local::
2016         $(Echo) Installing include files
2017         $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
2018         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2019           cd $(PROJ_SRC_ROOT)/include && \
2020           for  hdr in `find . -type f '!' '(' -name '*~' \
2021               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2022               grep -v .svn` ; do \
2023             instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2024             if test \! -d "$$instdir" ; then \
2025               $(EchoCmd) Making install directory $$instdir ; \
2026               $(MKDIR) $$instdir ;\
2027             fi ; \
2028             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2029           done ; \
2030         fi
2031 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2032         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2033           cd $(PROJ_OBJ_ROOT)/include && \
2034           for hdr in `find . -type f -print | grep -v CVS` ; do \
2035             $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2036           done ; \
2037         fi
2038 endif
2039
2040 uninstall-local::
2041         $(Echo) Uninstalling include files
2042         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2043           cd $(PROJ_SRC_ROOT)/include && \
2044             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2045               '!' '(' -name '*~' -o -name '.#*' \
2046         -o -name '*.in' ')' -print ')' | \
2047         grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2048           cd $(PROJ_SRC_ROOT)/include && \
2049             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
2050       -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2051         fi
2052 endif
2053 endif
2054
2055 check-line-length:
2056         @echo searching for overlength lines in files: $(Sources)
2057         @echo
2058         @echo
2059         egrep -n '.{81}' $(Sources) /dev/null
2060
2061 check-for-tabs:
2062         @echo searching for tabs in files: $(Sources)
2063         @echo
2064         @echo
2065         egrep -n '      ' $(Sources) /dev/null
2066
2067 check-footprint:
2068         @ls -l $(LibDir) | awk '\
2069           BEGIN { sum = 0; } \
2070                 { sum += $$5; } \
2071           END   { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2072         @ls -l $(ToolDir) | awk '\
2073           BEGIN { sum = 0; } \
2074                 { sum += $$5; } \
2075           END   { printf("Programs:  %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2076 #------------------------------------------------------------------------
2077 # Print out the directories used for building
2078 #------------------------------------------------------------------------
2079 printvars::
2080         $(Echo) "BuildMode    : " '$(BuildMode)'
2081         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2082         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2083         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2084         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2085         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2086         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2087         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
2088         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
2089         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
2090         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
2091         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
2092         $(Echo) "UserTargets  : " '$(UserTargets)'
2093         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2094         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2095         $(Echo) "ObjDir       : " '$(ObjDir)'
2096         $(Echo) "LibDir       : " '$(LibDir)'
2097         $(Echo) "ToolDir      : " '$(ToolDir)'
2098         $(Echo) "ExmplDir     : " '$(ExmplDir)'
2099         $(Echo) "Sources      : " '$(Sources)'
2100         $(Echo) "TDFiles      : " '$(TDFiles)'
2101         $(Echo) "INCFiles     : " '$(INCFiles)'
2102         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
2103         $(Echo) "PreConditions: " '$(PreConditions)'
2104         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
2105         $(Echo) "Compile.C    : " '$(Compile.C)'
2106         $(Echo) "Archive      : " '$(Archive)'
2107         $(Echo) "YaccFiles    : " '$(YaccFiles)'
2108         $(Echo) "LexFiles     : " '$(LexFiles)'
2109         $(Echo) "Module       : " '$(Module)'
2110         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2111         $(Echo) "SubDirs      : " '$(SubDirs)'
2112         $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2113         $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2114
2115 ###
2116 # Debugging
2117
2118 # General debugging rule, use 'make dbg-print-XXX' to print the
2119 # definition, value and origin of XXX.
2120 make-print-%:
2121         $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))