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