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