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