Move the rules for building plugins to 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 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 # LLVMC: Provide rules for compiling llvmc plugins, pt. 2
1308 ###############################################################################
1309
1310 ifdef BUILD_AUTOGENERATED_INC
1311
1312 # This needs to be in a separate section, otherwise we get an infinite loop:)
1313
1314 # This stuff is mostly copied from the TABLEGEN section below
1315 # TODO: merge
1316
1317 LLVMCPluginSrc := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td))
1318 TDFiles := $(LLVMCPluginSrc) \
1319         $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
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) : %.inc : $(ObjDir)/%.inc.tmp
1328         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1329
1330 $(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
1331                                 $(TBLGEN) $(TD_COMMON)
1332         $(Echo) "Building LLVMC configuration library with tblgen"
1333         $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1334
1335 endif # BUILD_AUTOGENERATED_INC
1336
1337 ###############################################################################
1338 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1339 ###############################################################################
1340
1341 ifdef TARGET
1342
1343 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1344            $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1345            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1346            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1347            $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1348            $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1349            $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1350 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1351 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1352 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1353
1354 # All of these files depend on tblgen and the .td files.
1355 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1356
1357 # INCFiles rule: All of the tblgen generated files are emitted to
1358 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc.  This allows
1359 # us to only "touch" the real file if the contents of it change.  IOW, if
1360 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1361 # dependencies of the .inc files are, unless the contents of the .inc file
1362 # changes.
1363 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1364         $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1365
1366 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1367 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1368         $(Echo) "Building $(<F) register names with tblgen"
1369         $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1370
1371 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1372 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1373         $(Echo) "Building $(<F) register information header with tblgen"
1374         $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1375
1376 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1377 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1378         $(Echo) "Building $(<F) register info implementation with tblgen"
1379         $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1380
1381 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1382 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1383         $(Echo) "Building $(<F) instruction names with tblgen"
1384         $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1385
1386 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1387 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1388         $(Echo) "Building $(<F) instruction information with tblgen"
1389         $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1390
1391 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1392 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1393         $(Echo) "Building $(<F) assembly writer with tblgen"
1394         $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1395
1396 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1397 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1398         $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1399         $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1400
1401 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1402 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1403         $(Echo) "Building $(<F) code emitter with tblgen"
1404         $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1405
1406 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1407 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1408         $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1409         $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1410
1411 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1412 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1413         $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1414         $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1415
1416 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1417 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1418         $(Echo) "Building $(<F) subtarget information with tblgen"
1419         $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1420
1421 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1422 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1423         $(Echo) "Building $(<F) calling convention information with tblgen"
1424         $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1425
1426 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1427 $(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
1428         $(Echo) "Building $(<F) calling convention information with tblgen"
1429         $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1430
1431 clean-local::
1432         -$(Verb) $(RM) -f $(INCFiles)
1433
1434 endif
1435
1436 ###############################################################################
1437 # OTHER RULES: Other rules needed
1438 ###############################################################################
1439
1440 # To create postscript files from dot files...
1441 ifneq ($(DOT),false)
1442 %.ps: %.dot
1443         $(DOT) -Tps < $< > $@
1444 else
1445 %.ps: %.dot
1446         $(Echo) "Cannot build $@: The program dot is not installed"
1447 endif
1448
1449 # This rules ensures that header files that are removed still have a rule for
1450 # which they can be "generated."  This allows make to ignore them and
1451 # reproduce the dependency lists.
1452 %.h:: ;
1453 %.hpp:: ;
1454
1455 # Define clean-local to clean the current directory. Note that this uses a
1456 # very conservative approach ensuring that empty variables do not cause
1457 # errors or disastrous removal.
1458 clean-local::
1459 ifneq ($(strip $(ObjRootDir)),)
1460         -$(Verb) $(RM) -rf $(ObjRootDir)
1461 endif
1462         -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1463 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1464         -$(Verb) $(RM) -f *$(SHLIBEXT)
1465 endif
1466
1467 clean-all-local::
1468         -$(Verb) $(RM) -rf Debug Release Profile
1469
1470
1471 ###############################################################################
1472 # DEPENDENCIES: Include the dependency files if we should
1473 ###############################################################################
1474 ifndef DISABLE_AUTO_DEPENDENCIES
1475
1476 # If its not one of the cleaning targets
1477 ifndef IS_CLEANING_TARGET
1478
1479 # Get the list of dependency files
1480 DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
1481 DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1482
1483 -include $(DependFiles) ""
1484
1485 endif
1486
1487 endif
1488
1489 ###############################################################################
1490 # CHECK: Running the test suite
1491 ###############################################################################
1492
1493 check::
1494         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1495           if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1496             $(EchoCmd) Running test suite ; \
1497             $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1498               TESTSUITE=$(TESTSUITE) ; \
1499           else \
1500             $(EchoCmd) No Makefile in test directory ; \
1501           fi ; \
1502         else \
1503           $(EchoCmd) No test directory ; \
1504         fi
1505
1506 ###############################################################################
1507 # UNITTESTS: Running the unittests test suite
1508 ###############################################################################
1509
1510 unittests::
1511         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1512           if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1513             $(EchoCmd) Running unittests test suite ; \
1514             $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
1515           else \
1516             $(EchoCmd) No Makefile in unittests directory ; \
1517           fi ; \
1518         else \
1519           $(EchoCmd) No unittests directory ; \
1520         fi
1521
1522 ###############################################################################
1523 # DISTRIBUTION: Handle construction of a distribution tarball
1524 ###############################################################################
1525
1526 #------------------------------------------------------------------------
1527 # Define distribution related variables
1528 #------------------------------------------------------------------------
1529 DistName    := $(PROJECT_NAME)-$(PROJ_VERSION)
1530 DistDir     := $(PROJ_OBJ_ROOT)/$(DistName)
1531 TopDistDir  := $(PROJ_OBJ_ROOT)/$(DistName)
1532 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1533 DistZip     := $(PROJ_OBJ_ROOT)/$(DistName).zip
1534 DistTarBZ2  := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1535 DistAlways  := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1536                ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1537                Makefile.config.in configure autoconf
1538 DistOther   := $(notdir $(wildcard \
1539                $(PROJ_SRC_DIR)/*.h \
1540                $(PROJ_SRC_DIR)/*.td \
1541                $(PROJ_SRC_DIR)/*.def \
1542                $(PROJ_SRC_DIR)/*.ll \
1543                $(PROJ_SRC_DIR)/*.in))
1544 DistSubDirs := $(SubDirs)
1545 DistSources  = $(Sources) $(EXTRA_DIST)
1546 DistFiles    = $(DistAlways) $(DistSources) $(DistOther)
1547
1548 #------------------------------------------------------------------------
1549 # We MUST build distribution with OBJ_DIR != SRC_DIR
1550 #------------------------------------------------------------------------
1551 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1552 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1553         $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1554
1555 else
1556
1557 #------------------------------------------------------------------------
1558 # Prevent attempt to run dist targets from anywhere but the top level
1559 #------------------------------------------------------------------------
1560 ifneq ($(LEVEL),.)
1561 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1562         $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1563 else
1564
1565 #------------------------------------------------------------------------
1566 # Provide the top level targets
1567 #------------------------------------------------------------------------
1568
1569 dist-gzip:: $(DistTarGZip)
1570
1571 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1572         $(Echo) Packing gzipped distribution tar file.
1573         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1574           $(GZIP) -c > "$(DistTarGZip)"
1575
1576 dist-bzip2:: $(DistTarBZ2)
1577
1578 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1579         $(Echo) Packing bzipped distribution tar file.
1580         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1581           $(BZIP2) -c >$(DistTarBZ2)
1582
1583 dist-zip:: $(DistZip)
1584
1585 $(DistZip) : $(TopDistDir)/.makedistdir
1586         $(Echo) Packing zipped distribution file.
1587         $(Verb) rm -f $(DistZip)
1588         $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1589
1590 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1591         $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1592
1593 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1594
1595 dist-check:: $(DistTarGZip)
1596         $(Echo) Checking distribution tar file.
1597         $(Verb) if test -d $(DistCheckDir) ; then \
1598           $(RM) -rf $(DistCheckDir) ; \
1599         fi
1600         $(Verb) $(MKDIR) $(DistCheckDir)
1601         $(Verb) cd $(DistCheckDir) && \
1602           $(MKDIR) $(DistCheckDir)/build && \
1603           $(MKDIR) $(DistCheckDir)/install && \
1604           gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1605           cd build && \
1606           ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1607             --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1608           $(MAKE) all && \
1609           $(MAKE) check && \
1610           $(MAKE) unittests && \
1611           $(MAKE) install && \
1612           $(MAKE) uninstall && \
1613           $(MAKE) dist-clean && \
1614           $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1615
1616 dist-clean::
1617         $(Echo) Cleaning distribution files
1618         -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1619           $(DistCheckDir)
1620
1621 endif
1622
1623 #------------------------------------------------------------------------
1624 # Provide the recursive distdir target for building the distribution directory
1625 #------------------------------------------------------------------------
1626 distdir: $(DistDir)/.makedistdir
1627 $(DistDir)/.makedistdir: $(DistSources)
1628         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1629           if test -d "$(DistDir)" ; then \
1630             find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';'  || \
1631               exit 1 ; \
1632           fi ; \
1633           $(EchoCmd) Removing old $(DistDir) ; \
1634           $(RM) -rf $(DistDir); \
1635           $(EchoCmd) Making 'all' to verify build ; \
1636           $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1637         fi
1638         $(Echo) Building Distribution Directory $(DistDir)
1639         $(Verb) $(MKDIR) $(DistDir)
1640         $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1641         srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1642         for file in $(DistFiles) ; do \
1643           case "$$file" in \
1644             $(PROJ_SRC_DIR)/*) \
1645               file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1646               ;; \
1647             $(PROJ_SRC_ROOT)/*) \
1648               file=`echo "$$file" | \
1649                 sed "s#^$$srcrootstrip/##"` \
1650               ;; \
1651           esac; \
1652           if test -f "$(PROJ_SRC_DIR)/$$file" || \
1653              test -d "$(PROJ_SRC_DIR)/$$file" ; then \
1654             from_dir="$(PROJ_SRC_DIR)" ; \
1655           elif test -f "$$file" || test -d "$$file" ; then \
1656             from_dir=. ; \
1657           fi ; \
1658           to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
1659           if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
1660             to_dir="$(DistDir)/$$dir"; \
1661             $(MKDIR) "$$to_dir" ; \
1662           else \
1663             to_dir="$(DistDir)"; \
1664           fi; \
1665           mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
1666           if test -n "$$mid_dir" ; then \
1667             $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
1668           fi ; \
1669           if test -d "$$from_dir/$$file"; then \
1670             if test -d "$(PROJ_SRC_DIR)/$$file" && \
1671                test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
1672                cd $(PROJ_SRC_DIR) ; \
1673                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1674                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1675                cd $(PROJ_OBJ_DIR) ; \
1676             else \
1677                cd $$from_dir ; \
1678                $(TAR) cf - $$file --exclude .svn --exclude CVS | \
1679                  ( cd $$to_dir ; $(TAR) xf - ) ; \
1680                cd $(PROJ_OBJ_DIR) ; \
1681             fi; \
1682           elif test -f "$$from_dir/$$file" ; then \
1683             $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
1684           elif test -L "$$from_dir/$$file" ; then \
1685             $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
1686           elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
1687             $(EchoCmd) "===== WARNING: Distribution Source " \
1688               "$$from_dir/$$file Not Found!" ; \
1689           elif test "$(Verb)" != '@' ; then \
1690             $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
1691           fi; \
1692         done
1693         $(Verb) for subdir in $(DistSubDirs) ; do \
1694           if test "$$subdir" \!= "." ; then \
1695             new_distdir="$(DistDir)/$$subdir" ; \
1696             test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
1697             ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
1698               DistDir="$$new_distdir" distdir ) || exit 1; \
1699           fi; \
1700         done
1701         $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1702           $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
1703           $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
1704                                   -name .svn \) -print` ;\
1705           $(MAKE) dist-hook ; \
1706           $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
1707             -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
1708             -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
1709             -o ! -type d ! -perm -444 -exec \
1710               $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
1711             || chmod -R a+r $(DistDir) ; \
1712         fi
1713
1714 # This is invoked by distdir target, define it as a no-op to avoid errors if not
1715 # defined by user.
1716 dist-hook::
1717
1718 endif
1719
1720 ###############################################################################
1721 # TOP LEVEL - targets only to apply at the top level directory
1722 ###############################################################################
1723
1724 ifeq ($(LEVEL),.)
1725
1726 #------------------------------------------------------------------------
1727 # Install support for the project's include files:
1728 #------------------------------------------------------------------------
1729 ifdef NO_INSTALL
1730 install-local::
1731         $(Echo) Install circumvented with NO_INSTALL
1732 uninstall-local::
1733         $(Echo) Uninstall circumvented with NO_INSTALL
1734 else
1735 install-local::
1736         $(Echo) Installing include files
1737         $(Verb) $(MKDIR) $(PROJ_includedir)
1738         $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
1739           cd $(PROJ_SRC_ROOT)/include && \
1740           for  hdr in `find . -type f '!' '(' -name '*~' \
1741               -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
1742               grep -v .svn` ; do \
1743             instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
1744             if test \! -d "$$instdir" ; then \
1745               $(EchoCmd) Making install directory $$instdir ; \
1746               $(MKDIR) $$instdir ;\
1747             fi ; \
1748             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1749           done ; \
1750         fi
1751 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
1752         $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
1753           cd $(PROJ_OBJ_ROOT)/include && \
1754           for hdr in `find . -type f -print | grep -v CVS` ; do \
1755             $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
1756           done ; \
1757         fi
1758 endif
1759
1760 uninstall-local::
1761         $(Echo) Uninstalling include files
1762         $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
1763           cd $(PROJ_SRC_ROOT)/include && \
1764             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
1765               '!' '(' -name '*~' -o -name '.#*' \
1766         -o -name '*.in' ')' -print ')' | \
1767         grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
1768           cd $(PROJ_SRC_ROOT)/include && \
1769             $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
1770       -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
1771         fi
1772 endif
1773 endif
1774
1775 check-line-length:
1776         @echo searching for overlength lines in files: $(Sources)
1777         @echo
1778         @echo
1779         egrep -n '.{81}' $(Sources) /dev/null
1780
1781 check-for-tabs:
1782         @echo searching for tabs in files: $(Sources)
1783         @echo
1784         @echo
1785         egrep -n '      ' $(Sources) /dev/null
1786
1787 check-footprint:
1788         @ls -l $(LibDir) | awk '\
1789           BEGIN { sum = 0; } \
1790                 { sum += $$5; } \
1791           END   { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1792         @ls -l $(ToolDir) | awk '\
1793           BEGIN { sum = 0; } \
1794                 { sum += $$5; } \
1795           END   { printf("Programs:  %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
1796 #------------------------------------------------------------------------
1797 # Print out the directories used for building
1798 #------------------------------------------------------------------------
1799 printvars::
1800         $(Echo) "BuildMode    : " '$(BuildMode)'
1801         $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
1802         $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
1803         $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
1804         $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
1805         $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
1806         $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
1807         $(Echo) "PROJ_prefix  : " '$(PROJ_prefix)'
1808         $(Echo) "PROJ_bindir  : " '$(PROJ_bindir)'
1809         $(Echo) "PROJ_libdir  : " '$(PROJ_libdir)'
1810         $(Echo) "PROJ_etcdir  : " '$(PROJ_etcdir)'
1811         $(Echo) "PROJ_includedir  : " '$(PROJ_includedir)'
1812         $(Echo) "UserTargets  : " '$(UserTargets)'
1813         $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
1814         $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
1815         $(Echo) "ObjDir       : " '$(ObjDir)'
1816         $(Echo) "LibDir       : " '$(LibDir)'
1817         $(Echo) "ToolDir      : " '$(ToolDir)'
1818         $(Echo) "ExmplDir     : " '$(ExmplDir)'
1819         $(Echo) "Sources      : " '$(Sources)'
1820         $(Echo) "TDFiles      : " '$(TDFiles)'
1821         $(Echo) "INCFiles     : " '$(INCFiles)'
1822         $(Echo) "INCTMPFiles  : " '$(INCTMPFiles)'
1823         $(Echo) "PreConditions: " '$(PreConditions)'
1824         $(Echo) "Compile.CXX  : " '$(Compile.CXX)'
1825         $(Echo) "Compile.C    : " '$(Compile.C)'
1826         $(Echo) "Archive      : " '$(Archive)'
1827         $(Echo) "YaccFiles    : " '$(YaccFiles)'
1828         $(Echo) "LexFiles     : " '$(LexFiles)'
1829         $(Echo) "Module       : " '$(Module)'
1830         $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
1831         $(Echo) "SubDirs      : " '$(SubDirs)'
1832         $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
1833         $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
1834
1835 ###
1836 # Debugging
1837
1838 # General debugging rule, use 'make print-XXX' to print the
1839 # definition, value and origin of XXX.
1840 print-%:
1841         $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))