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