* doc/automake.texi (Headers): Revamp.
[automake.git] / doc / automake.texi
blob09e49007b86ecc6528409ef8f93ccac4fba584f9
1 \input texinfo   @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename automake.info
4 @settitle automake
5 @setchapternewpage off
6 @c %**end of header
8 @include version.texi
10 @copying
12 This manual is for @acronym{GNU} Automake (version @value{VERSION},
13 @value{UPDATED}), a program which creates GNU standards-compliant
14 Makefiles from template files.
16 Copyright @copyright{} 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
17 2003, 2004 Free Software Foundation, Inc.
19 @quotation
20 Permission is granted to copy, distribute and/or modify this document
21 under the terms of the @acronym{GNU} Free Documentation License,
22 Version 1.1 or any later version published by the Free Software
23 Foundation; with no Invariant Sections, with the Front-Cover texts
24 being ``A @acronym{GNU} Manual,'' and with the Back-Cover Texts as in
25 (a) below.  A copy of the license is included in the section entitled
26 ``@acronym{GNU} Free Documentation License.''
28 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and
29 modify this @acronym{GNU} Manual, like @acronym{GNU} software.  Copies
30 published by the Free Software Foundation raise funds for
31 @acronym{GNU} development.''
32 @end quotation
33 @end copying
35 @dircategory Software development
36 @direntry
37 * automake: (automake).         Making Makefile.in's.
38 @end direntry
40 @dircategory Individual utilities
41 @direntry
42 * aclocal: (automake)Invoking aclocal.          Generating aclocal.m4.
43 @end direntry
45 @titlepage
46 @title GNU Automake
47 @subtitle For version @value{VERSION}, @value{UPDATED}
48 @author David MacKenzie
49 @author Tom Tromey
50 @author Alexandre Duret-Lutz
51 @page
52 @vskip 0pt plus 1filll
53 @insertcopying
54 @end titlepage
56 @c Define an index of configure output variables.
57 @defcodeindex ov
58 @c Define an index of configure variables.
59 @defcodeindex cv
60 @c Define an index of options.
61 @defcodeindex op
62 @c Define an index of targets.
63 @defcodeindex tr
64 @c Define an index of commands.
65 @defcodeindex cm
67 @c Put the macros and variables into their own index.
68 @c @syncodeindex fn cp
69 @syncodeindex ov vr
70 @syncodeindex cv vr
71 @syncodeindex fn vr
73 @c Put everything else into one index (arbitrarily chosen to be the concept index).
74 @syncodeindex op cp
75 @syncodeindex tr cp
76 @syncodeindex cm cp
78 @ifnottex
79 @node Top
80 @comment  node-name,  next,  previous,  up
81 @top GNU Automake
83 @insertcopying
85 @menu
86 * Introduction::                Automake's purpose
87 * Generalities::                General ideas
88 * Examples::                    Some example packages
89 * Invoking Automake::           Creating a Makefile.in
90 * configure::                   Scanning configure.ac or configure.in
91 * Top level::                   The top-level Makefile.am
92 * Alternative::                 An alternative approach to subdirectories
93 * Programs::                    Building programs and libraries
94 * Other objects::               Other derived objects
95 * Other GNU Tools::             Other GNU Tools
96 * Documentation::               Building documentation
97 * Install::                     What gets installed
98 * Clean::                       What gets cleaned
99 * Dist::                        What goes in a distribution
100 * Tests::                       Support for test suites
101 * Rebuilding::                  Automatic rebuilding of Makefile
102 * Options::                     Changing Automake's behavior
103 * Miscellaneous::               Miscellaneous rules
104 * Include::                     Including extra files in an Automake template.
105 * Conditionals::                Conditionals
106 * Gnits::                       The effect of @code{--gnu} and @code{--gnits}
107 * Cygnus::                      The effect of @code{--cygnus}
108 * Not Enough::                  When Automake is not Enough
109 * Distributing::                Distributing the Makefile.in
110 * API versioning::              About compatibility between Automake versions
111 * Upgrading::                   Upgrading to a Newer Automake Version
112 * FAQ::                         Frequently Asked Questions
113 * Copying This Manual::         How to make copies of this manual
114 * Indices::                     Indices of variables, macros, and concepts
116 @detailmenu
117  --- The Detailed Node Listing ---
119 General ideas
121 * General Operation::           General operation of Automake
122 * Strictness::                  Standards conformance checking
123 * Uniform::                     The Uniform Naming Scheme
124 * Canonicalization::            How derived variables are named
125 * User Variables::              Variables reserved for the user
126 * Auxiliary Programs::          Programs automake might require
128 Some example packages
130 * Complete::                    A simple example, start to finish
131 * Hello::                       A classic program
132 * true::                        Building true and false
134 Scanning @file{configure.ac}
136 * Requirements::                Configuration requirements
137 * Optional::                    Other things Automake recognizes
138 * Invoking aclocal::            Auto-generating aclocal.m4
139 * aclocal options::             aclocal command line arguments
140 * Macro search path::           Modifying aclocal's search path
141 * Macros::                      Autoconf macros supplied with Automake
142 * Extending aclocal::           Writing your own aclocal macros
143 * Local Macros::                Organizing local macros
144 * Future of aclocal::           aclocal's scheduled death
146 Auto-generating aclocal.m4
148 * aclocal options::             Options supported by aclocal
149 * Macro search path::           How aclocal finds .m4 files
151 Autoconf macros supplied with Automake
153 * Public macros::               Macros that you can use.
154 * Private macros::              Macros that you should not use.
156 Building Programs and Libraries
158 * A Program::                   Building a program
159 * A Library::                   Building a library
160 * A Shared Library::            Building a Libtool library
161 * Program and Library Variables::  Variables controlling program and
162                                 library builds
163 * Default _SOURCES::            Default source files
164 * LIBOBJS::                     Special handling for LIBOBJS and ALLOCA
165 * Program variables::           Variables used when building a program
166 * Yacc and Lex::                Yacc and Lex support
167 * C++ Support::                 Compiling C++ sources
168 * Assembly Support::            Compiling assembly sources
169 * Fortran 77 Support::          Compiling Fortran 77 sources
170 * Fortran 9x Support::          Compiling Fortran 9x sources
171 * Java Support::                Compiling Java sources
172 * Support for Other Languages::  Compiling other languages
173 * ANSI::                        Automatic de-ANSI-fication
174 * Dependencies::                Automatic dependency tracking
175 * EXEEXT::                      Support for executable extensions
177 Building a program
179 * Program Sources::             Defining program sources
180 * Linking::                     Linking with libraries or extra objects
181 * Conditional Sources::         Handling conditional sources
182 * Conditional Programs::        Building program conditionally
184 Building a Shared Library
186 * Libtool Concept::             Introducing Libtool
187 * Libtool Libraries::           Declaring Libtool Libraries
188 * Conditional Libtool Libraries::  Building Libtool Libraries Conditionally
189 * Conditional Libtool Sources::  Choosing Library Sources Conditionally
190 * Libtool Convenience Libraries::  Building Convenience Libtool Libraries
191 * Libtool Modules::             Building Libtool Modules
192 * Libtool Flags::               Using _LIBADD and _LDFLAGS
193 * LTLIBOBJ::                    Using $(LTLIBOBJ)
194 * Libtool Issues::              Common Issues Related to Libtool's Use
196 Fortran 77 Support
198 * Preprocessing Fortran 77::    Preprocessing Fortran 77 sources
199 * Compiling Fortran 77 Files::  Compiling Fortran 77 sources
200 * Mixing Fortran 77 With C and C++::  Mixing Fortran 77 With C and C++
202 Mixing Fortran 77 With C and C++
204 * How the Linker is Chosen::    Automatic linker selection
206 Fortran 9x Support
208 * Compiling Fortran 9x Files::  Compiling Fortran 9x sources
210 Other Derived Objects
212 * Scripts::                     Executable scripts
213 * Headers::                     Header files
214 * Data::                        Architecture-independent data files
215 * Sources::                     Derived sources
217 Built sources
219 * Built sources example::       Several ways to handle built sources.
221 Other GNU Tools
223 * Emacs Lisp::                  Emacs Lisp
224 * gettext::                     Gettext
225 * Libtool::                     Libtool
226 * Java::                        Java
227 * Python::                      Python
229 Building documentation
231 * Texinfo::                     Texinfo
232 * Man pages::                   Man pages
234 Miscellaneous Rules
236 * Tags::                        Interfacing to etags and mkid
237 * Suffixes::                    Handling new file extensions
238 * Multilibs::                   Support for multilibs.
240 When Automake Isn't Enough
242 * Extending::                   Adding new rules or overriding existing ones.
243 * Third-Party Makefiles::       Integrating Non-Automake @file{Makefile}s.
245 Frequently Asked Questions about Automake
247 * CVS::                         CVS and generated files
248 * maintainer-mode::             missing and AM_MAINTAINER_MODE
249 * wildcards::                   Why doesn't Automake support wildcards?
250 * distcleancheck::              Files left in build directory after distclean
251 * renamed objects::             Why are object files sometimes renamed?
252 * Multiple Outputs::            Writing rules for tools with many output files
254 Copying This Manual
256 * GNU Free Documentation License::  License for copying this manual
258 Indices
260 * Macro and Variable Index::    Index of Autoconf macros and Automake variables
261 * General Index::               General index
263 @end detailmenu
264 @end menu
266 @end ifnottex
269 @node Introduction
270 @chapter Introduction
272 Automake is a tool for automatically generating @file{Makefile.in}s from
273 files called @file{Makefile.am}.  Each @file{Makefile.am} is basically a
274 series of @code{make} variable definitions@footnote{These variables are
275 also called @dfn{make macros} in Make terminology, however in this
276 manual we reserve the term @dfn{macro} for Autoconf's macros.}, with
277 rules being thrown in occasionally.  The generated @file{Makefile.in}s
278 are compliant with the GNU Makefile standards.
280 @cindex GNU Makefile standards
282 The GNU Makefile Standards Document
283 (@pxref{Makefile Conventions, , , standards, The GNU Coding Standards})
284 is long, complicated, and subject to change.  The goal of Automake is to
285 remove the burden of Makefile maintenance from the back of the
286 individual GNU maintainer (and put it on the back of the Automake
287 maintainer).
289 The typical Automake input file is simply a series of variable definitions.
290 Each such file is processed to create a @file{Makefile.in}.  There
291 should generally be one @file{Makefile.am} per directory of a project.
293 @cindex Constraints of Automake
294 @cindex Automake constraints
296 Automake does constrain a project in certain ways; for instance it
297 assumes that the project uses Autoconf (@pxref{Top, , Introduction,
298 autoconf, The Autoconf Manual}), and enforces certain restrictions on
299 the @file{configure.ac} contents@footnote{Older Autoconf versions used
300 @file{configure.in}.  Autoconf 2.50 and greater promotes
301 @file{configure.ac} over @file{configure.in}.  The rest of this
302 documentation will refer to @file{configure.ac}, but Automake also
303 supports @file{configure.in} for backward compatibility.}.
305 @cindex Automake requirements
306 @cindex Requirements, Automake
308 Automake requires @code{perl} in order to generate the
309 @file{Makefile.in}s.  However, the distributions created by Automake are
310 fully GNU standards-compliant, and do not require @code{perl} in order
311 to be built.
313 @cindex BUGS, reporting
314 @cindex Reporting BUGS
315 @cindex E-mail, bug reports
317 Mail suggestions and bug reports for Automake to
318 @email{bug-automake@@gnu.org}.
321 @node Generalities
322 @chapter General ideas
324 The following sections cover a few basic ideas that will help you
325 understand how Automake works.
327 @menu
328 * General Operation::           General operation of Automake
329 * Strictness::                  Standards conformance checking
330 * Uniform::                     The Uniform Naming Scheme
331 * Canonicalization::            How derived variables are named
332 * User Variables::              Variables reserved for the user
333 * Auxiliary Programs::          Programs automake might require
334 @end menu
337 @node General Operation
338 @section General Operation
340 Automake works by reading a @file{Makefile.am} and generating a
341 @file{Makefile.in}.  Certain variables and rules defined in the
342 @file{Makefile.am} instruct Automake to generate more specialized code;
343 for instance, a @samp{bin_PROGRAMS} variable definition will cause rules
344 for compiling and linking programs to be generated.
346 @cindex Non-standard targets
347 @cindex cvs-dist, non-standard example
348 @trindex cvs-dist
350 The variable definitions and rules in the @file{Makefile.am} are
351 copied verbatim into the generated file.  This allows you to add
352 arbitrary code into the generated @file{Makefile.in}.  For instance
353 the Automake distribution includes a non-standard rule for the
354 @code{cvs-dist} target, which the Automake maintainer uses to make
355 distributions from his source control system.
357 @cindex GNU make extensions
359 Note that most GNU make extensions are not recognized by Automake.  Using
360 such extensions in a @file{Makefile.am} will lead to errors or confusing
361 behavior.
363 @cindex Append operator
364 A special exception is that the GNU make append operator, @samp{+=}, is
365 supported.  This operator appends its right hand argument to the variable
366 specified on the left.  Automake will translate the operator into
367 an ordinary @samp{=} operator; @samp{+=} will thus work with any make program.
369 Automake tries to keep comments grouped with any adjoining rules or
370 variable definitions.
372 @cindex Make targets, overriding
373 @cindex Make rules, overriding
374 @cindex Overriding make rules
375 @cindex Overriding make targets
377 A rule defined in @file{Makefile.am} generally overrides any such
378 rule of a similar name that would be automatically generated by
379 @code{automake}.  Although this is a supported feature, it is generally
380 best to avoid making use of it, as sometimes the generated rules are
381 very particular.
383 @cindex Variables, overriding
384 @cindex Overriding make variables
386 Similarly, a variable defined in @file{Makefile.am} or
387 @code{AC_SUBST}'ed from @file{configure.ac} will override any
388 definition of the variable that @code{automake} would ordinarily
389 create.  This feature is more often useful than the ability to
390 override a rule.  Be warned that many of the variables generated by
391 @code{automake} are considered to be for internal use only, and their
392 names might change in future releases.
394 @cindex Recursive operation of Automake
395 @cindex Automake, recursive operation
396 @cindex Example of recursive operation
398 When examining a variable definition, Automake will recursively examine
399 variables referenced in the definition.  For example, if Automake is
400 looking at the content of @code{foo_SOURCES} in this snippet
402 @example
403 xs = a.c b.c
404 foo_SOURCES = c.c $(xs)
405 @end example
407 it would use the files @file{a.c}, @file{b.c}, and @file{c.c} as the
408 contents of @code{foo_SOURCES}.
410 @cindex ## (special Automake comment)
411 @cindex Special Automake comment
412 @cindex Comment, special to Automake
414 Automake also allows a form of comment which is @emph{not} copied into
415 the output; all lines beginning with @samp{##} (leading spaces allowed)
416 are completely ignored by Automake.
418 It is customary to make the first line of @file{Makefile.am} read:
420 @cindex Makefile.am, first line
421 @cindex First line of Makefile.am
423 @example
424 ## Process this file with automake to produce Makefile.in
425 @end example
427 @c FIXME discuss putting a copyright into Makefile.am here?  I would but
428 @c I don't know quite what to say.
430 @c FIXME document customary ordering of Makefile.am here!
433 @node Strictness
434 @section Strictness
436 @cindex Non-GNU packages
438 While Automake is intended to be used by maintainers of GNU packages, it
439 does make some effort to accommodate those who wish to use it, but do
440 not want to use all the GNU conventions.
442 @cindex Strictness, defined
443 @cindex Strictness, foreign
444 @cindex foreign strictness
445 @cindex Strictness, gnu
446 @cindex gnu strictness
447 @cindex Strictness, gnits
448 @cindex gnits strictness
450 To this end, Automake supports three levels of @dfn{strictness}---the
451 strictness indicating how stringently Automake should check standards
452 conformance.
454 The valid strictness levels are:
456 @table @samp
457 @item foreign
458 Automake will check for only those things which are absolutely
459 required for proper operations.  For instance, whereas GNU standards
460 dictate the existence of a @file{NEWS} file, it will not be required in
461 this mode.  The name comes from the fact that Automake is intended to be
462 used for GNU programs; these relaxed rules are not the standard mode of
463 operation.
465 @item gnu
466 Automake will check---as much as possible---for compliance to the GNU
467 standards for packages.  This is the default.
469 @item gnits
470 Automake will check for compliance to the as-yet-unwritten @dfn{Gnits
471 standards}.  These are based on the GNU standards, but are even more
472 detailed.  Unless you are a Gnits standards contributor, it is
473 recommended that you avoid this option until such time as the Gnits
474 standard is actually published (which may never happen).
475 @end table
477 For more information on the precise implications of the strictness
478 level, see @ref{Gnits}.
480 Automake also has a special ``cygnus'' mode which is similar to
481 strictness but handled differently.  This mode is useful for packages
482 which are put into a ``Cygnus'' style tree (e.g., the GCC tree).  For
483 more information on this mode, see @ref{Cygnus}.
486 @node Uniform
487 @section The Uniform Naming Scheme
489 @cindex Uniform naming scheme
491 Automake variables generally follow a @dfn{uniform naming scheme} that
492 makes it easy to decide how programs (and other derived objects) are
493 built, and how they are installed.  This scheme also supports
494 @code{configure} time determination of what should be built.
496 @cindex _PROGRAMS primary variable
497 @cindex PROGRAMS primary variable
498 @cindex Primary variable, PROGRAMS
499 @cindex Primary variable, defined
501 At @code{make} time, certain variables are used to determine which
502 objects are to be built.  The variable names are made of several pieces
503 which are concatenated together.
505 The piece which tells automake what is being built is commonly called
506 the @dfn{primary}.  For instance, the primary @code{PROGRAMS} holds a
507 list of programs which are to be compiled and linked.
508 @vindex PROGRAMS
510 @cindex pkglibdir, defined
511 @cindex pkgincludedir, defined
512 @cindex pkgdatadir, defined
514 @vindex pkglibdir
515 @vindex pkgincludedir
516 @vindex pkgdatadir
518 A different set of names is used to decide where the built objects
519 should be installed.  These names are prefixes to the primary which
520 indicate which standard directory should be used as the installation
521 directory.  The standard directory names are given in the GNU standards
522 (@pxref{Directory Variables, , , standards, The GNU Coding Standards}).
523 Automake extends this list with @code{pkglibdir}, @code{pkgincludedir},
524 and @code{pkgdatadir}; these are the same as the non-@samp{pkg}
525 versions, but with @samp{$(PACKAGE)} appended.  For instance,
526 @code{pkglibdir} is defined as @code{$(libdir)/$(PACKAGE)}.
527 @cvindex PACKAGE, directory
529 @cindex EXTRA_, prepending
531 For each primary, there is one additional variable named by prepending
532 @samp{EXTRA_} to the primary name.  This variable is used to list
533 objects which may or may not be built, depending on what
534 @code{configure} decides.  This variable is required because Automake
535 must statically know the entire list of objects that may be built in
536 order to generate a @file{Makefile.in} that will work in all cases.
538 @cindex EXTRA_PROGRAMS, defined
539 @cindex Example, EXTRA_PROGRAMS
540 @cindex cpio example
542 For instance, @code{cpio} decides at configure time which programs are
543 built.  Some of the programs are installed in @code{bindir}, and some
544 are installed in @code{sbindir}:
546 @example
547 EXTRA_PROGRAMS = mt rmt
548 bin_PROGRAMS = cpio pax
549 sbin_PROGRAMS = $(MORE_PROGRAMS)
550 @end example
552 Defining a primary without a prefix as a variable, e.g.,
553 @code{PROGRAMS}, is an error.
555 Note that the common @samp{dir} suffix is left off when constructing the
556 variable names; thus one writes @samp{bin_PROGRAMS} and not
557 @samp{bindir_PROGRAMS}.
559 Not every sort of object can be installed in every directory.  Automake
560 will flag those attempts it finds in error.
561 Automake will also diagnose obvious misspellings in directory names.
563 @cindex Extending list of installation directories
564 @cindex Installation directories, extending list
566 Sometimes the standard directories---even as augmented by Automake---
567 are not enough.  In particular it is sometimes useful, for clarity, to
568 install objects in a subdirectory of some predefined directory.  To this
569 end, Automake allows you to extend the list of possible installation
570 directories.  A given prefix (e.g. @samp{zar}) is valid if a variable of
571 the same name with @samp{dir} appended is defined (e.g. @code{zardir}).
573 @cindex HTML installation, example
575 For instance, installation of HTML files is part of Automake, you could
576 use this to install raw HTML documentation:
578 @example
579 htmldir = $(prefix)/html
580 html_DATA = automake.html
581 @end example
583 @cindex noinst primary prefix, definition
585 The special prefix @samp{noinst} indicates that the objects in question
586 should be built but not installed at all.  This is usually used for
587 objects required to build the rest of your package, for instance static
588 libraries (@pxref{A Library}), or helper scripts.
590 @cindex check primary prefix, definition
592 The special prefix @samp{check} indicates that the objects in question
593 should not be built until the @code{make check} command is run.  Those
594 objects are not installed either.
596 The current primary names are @samp{PROGRAMS}, @samp{LIBRARIES},
597 @samp{LISP}, @samp{PYTHON}, @samp{JAVA}, @samp{SCRIPTS}, @samp{DATA},
598 @samp{HEADERS}, @samp{MANS}, and @samp{TEXINFOS}.
599 @vindex PROGRAMS
600 @vindex LIBRARIES
601 @vindex LISP
602 @vindex PYTHON
603 @vindex JAVA
604 @vindex SCRIPTS
605 @vindex DATA
606 @vindex HEADERS
607 @vindex MANS
608 @vindex TEXINFOS
610 Some primaries also allow additional prefixes which control other
611 aspects of @code{automake}'s behavior.  The currently defined prefixes
612 are @samp{dist_}, @samp{nodist_}, and @samp{nobase_}.  These prefixes
613 are explained later (@pxref{Program and Library Variables}).
616 @node Canonicalization
617 @section How derived variables are named
619 @cindex canonicalizing Automake variables
621 Sometimes a Makefile variable name is derived from some text the
622 maintainer supplies.  For instance, a program name listed in
623 @samp{_PROGRAMS} is rewritten into the name of a @samp{_SOURCES}
624 variable.  In cases like this, Automake canonicalizes the text, so that
625 program names and the like do not have to follow Makefile variable naming
626 rules.  All characters in the name except for letters, numbers, the
627 strudel (@@), and the underscore are turned into underscores when making
628 variable references.
630 For example, if your program is named @code{sniff-glue}, the derived
631 variable name would be @code{sniff_glue_SOURCES}, not
632 @code{sniff-glue_SOURCES}.  Similarly the sources for a library named
633 @code{libmumble++.a} should be listed in the
634 @code{libmumble___a_SOURCES} variable.
636 The strudel is an addition, to make the use of Autoconf substitutions in
637 variable names less obfuscating.
640 @node User Variables
641 @section Variables reserved for the user
643 @cindex variables, reserved for the user
644 @cindex user variables
646 Some @code{Makefile} variables are reserved by the GNU Coding Standards
647 for the use of the ``user'' -- the person building the package.  For
648 instance, @code{CFLAGS} is one such variable.
650 Sometimes package developers are tempted to set user variables such as
651 @code{CFLAGS} because it appears to make their job easier.  However,
652 the package itself should never set a user variable, particularly not
653 to include switches which are required for proper compilation of the
654 package.  Since these variables are documented as being for the
655 package builder, that person rightfully expects to be able to override
656 any of these variables at build time.
658 To get around this problem, automake introduces an automake-specific
659 shadow variable for each user flag variable.  (Shadow variables are not
660 introduced for variables like @code{CC}, where they would make no
661 sense.)  The shadow variable is named by prepending @samp{AM_} to the
662 user variable's name.  For instance, the shadow variable for
663 @code{YFLAGS} is @code{AM_YFLAGS}.
666 @node Auxiliary Programs
667 @section Programs automake might require
669 @cindex Programs, auxiliary
670 @cindex Auxiliary programs
672 Automake sometimes requires helper programs so that the generated
673 @file{Makefile} can do its work properly.  There are a fairly large
674 number of them, and we list them here.
676 @table @code
677 @item ansi2knr.c
678 @itemx ansi2knr.1
679 These two files are used by the automatic de-ANSI-fication support
680 (@pxref{ANSI}).
682 @item compile
683 This is a wrapper for compilers which don't accept both @samp{-c} and
684 @samp{-o} at the same time.  It is only used when absolutely required.
685 Such compilers are rare.
687 @item config.guess
688 @itemx config.sub
689 These programs compute the canonical triplets for the given build, host,
690 or target architecture.  These programs are updated regularly to support
691 new architectures and fix probes broken by changes in new kernel
692 versions.  You are encouraged to fetch the latest versions of these
693 files from @url{ftp://ftp.gnu.org/gnu/config/} before making a release.
695 @item depcomp
696 This program understands how to run a compiler so that it will generate
697 not only the desired output but also dependency information which is
698 then used by the automatic dependency tracking feature.
700 @item elisp-comp
701 This program is used to byte-compile Emacs Lisp code.
703 @item install-sh
704 This is a replacement for the @code{install} program which works on
705 platforms where @code{install} is unavailable or unusable.
707 @item mdate-sh
708 This script is used to generate a @file{version.texi} file.  It examines
709 a file and prints some date information about it.
711 @item missing
712 This wraps a number of programs which are typically only required by
713 maintainers.  If the program in question doesn't exist, @code{missing}
714 prints an informative warning and attempts to fix things so that the
715 build can continue.
717 @item mkinstalldirs
718 This script used to be a wrapper around @code{mkdir -p}, which is not
719 portable.  Now we use prefer to use @code{install-sh -d} when configure
720 finds that @code{mkdir -p} does not work, this makes one less script to
721 distribute.
723 For backward compatibility @code{mkinstalldirs} is still used and
724 distributed when @code{automake} finds it in a package.  But it is no
725 longer installed automatically, and it should be safe to remove it.
727 @item py-compile
728 This is used to byte-compile Python scripts.
730 @item texinfo.tex
731 Not a program, this file is required for @code{make dvi}, @code{make ps}
732 and @code{make pdf} to work when Texinfo sources are in the package.
734 @item ylwrap
735 This program wraps @code{lex} and @code{yacc} and ensures that, for
736 instance, multiple @code{yacc} instances can be invoked in a single
737 directory in parallel.
739 @end table
742 @node Examples
743 @chapter Some example packages
745 @menu
746 * Complete::                    A simple example, start to finish
747 * Hello::                       A classic program
748 * true::                        Building true and false
749 @end menu
752 @node Complete
753 @section A simple example, start to finish
755 @cindex Complete example
757 Let's suppose you just finished writing @code{zardoz}, a program to make
758 your head float from vortex to vortex.  You've been using Autoconf to
759 provide a portability framework, but your @file{Makefile.in}s have been
760 ad-hoc.  You want to make them bulletproof, so you turn to Automake.
762 @cindex AM_INIT_AUTOMAKE, example use
764 The first step is to update your @file{configure.ac} to include the
765 commands that @code{automake} needs.  The way to do this is to add an
766 @code{AM_INIT_AUTOMAKE} call just after @code{AC_INIT}:
768 @example
769 AC_INIT(zardoz, 1.0)
770 AM_INIT_AUTOMAKE
771 @dots{}
772 @end example
774 Since your program doesn't have any complicating factors (e.g., it
775 doesn't use @code{gettext}, it doesn't want to build a shared library),
776 you're done with this part.  That was easy!
778 @cindex aclocal program, introduction
779 @cindex aclocal.m4, preexisting
780 @cindex acinclude.m4, defined
782 Now you must regenerate @file{configure}.  But to do that, you'll need
783 to tell @code{autoconf} how to find the new macro you've used.  The
784 easiest way to do this is to use the @code{aclocal} program to generate
785 your @file{aclocal.m4} for you.  But wait@dots{} maybe you already have an
786 @file{aclocal.m4}, because you had to write some hairy macros for your
787 program.  The @code{aclocal} program lets you put your own macros into
788 @file{acinclude.m4}, so simply rename and then run:
790 @example
791 mv aclocal.m4 acinclude.m4
792 aclocal
793 autoconf
794 @end example
796 @cindex zardoz example
798 Now it is time to write your @file{Makefile.am} for @code{zardoz}.
799 Since @code{zardoz} is a user program, you want to install it where the
800 rest of the user programs go: @code{bindir}.  Additionally,
801 @code{zardoz} has some Texinfo documentation.  Your @file{configure.ac}
802 script uses @code{AC_REPLACE_FUNCS}, so you need to link against
803 @samp{$(LIBOBJS)}.  So here's what you'd write:
805 @example
806 bin_PROGRAMS = zardoz
807 zardoz_SOURCES = main.c head.c float.c vortex9.c gun.c
808 zardoz_LDADD = $(LIBOBJS)
810 info_TEXINFOS = zardoz.texi
811 @end example
813 Now you can run @code{automake --add-missing} to generate your
814 @file{Makefile.in} and grab any auxiliary files you might need, and
815 you're done!
818 @node Hello
819 @section A classic program
821 @cindex Example, GNU Hello
822 @cindex Hello example
823 @cindex GNU Hello, example
825 @uref{ftp://prep.ai.mit.edu/pub/gnu/hello-1.3.tar.gz, GNU hello} is
826 renowned for its classic simplicity and versatility.  This section shows
827 how Automake could be used with the GNU Hello package.  The examples
828 below are from the latest beta version of GNU Hello, but with all of the
829 maintainer-only code stripped out, as well as all copyright comments.
831 Of course, GNU Hello is somewhat more featureful than your traditional
832 two-liner.  GNU Hello is internationalized, does option processing, and
833 has a manual and a test suite.
835 @cindex configure.ac, from GNU Hello
836 @cindex GNU Hello, configure.ac
837 @cindex Hello, configure.ac
839 Here is the @file{configure.ac} from GNU Hello.
840 @strong{Please note:} The calls to @code{AC_INIT} and @code{AM_INIT_AUTOMAKE}
841 in this example use a deprecated syntax.  For the current approach,
842 see the description of @code{AM_INIT_AUTOMAKE} in @ref{Public macros}.
844 @c FIXME: This definitely requires an update, e.g. to GNU Hello 2.1.1.
846 @example
847 dnl Process this file with autoconf to produce a configure script.
848 AC_INIT(src/hello.c)
849 AM_INIT_AUTOMAKE(hello, 1.3.11)
850 AM_CONFIG_HEADER(config.h)
852 dnl Set of available languages.
853 ALL_LINGUAS="de fr es ko nl no pl pt sl sv"
855 dnl Checks for programs.
856 AC_PROG_CC
857 AC_ISC_POSIX
859 dnl Checks for libraries.
861 dnl Checks for header files.
862 AC_STDC_HEADERS
863 AC_HAVE_HEADERS(string.h fcntl.h sys/file.h sys/param.h)
865 dnl Checks for library functions.
866 AC_FUNC_ALLOCA
868 dnl Check for st_blksize in struct stat
869 AC_ST_BLKSIZE
871 dnl internationalization macros
872 AM_GNU_GETTEXT
873 AC_OUTPUT([Makefile doc/Makefile intl/Makefile po/Makefile.in \
874            src/Makefile tests/Makefile tests/hello],
875    [chmod +x tests/hello])
876 @end example
878 The @samp{AM_} macros are provided by Automake (or the Gettext library);
879 the rest are standard Autoconf macros.
882 The top-level @file{Makefile.am}:
884 @example
885 EXTRA_DIST = BUGS ChangeLog.O
886 SUBDIRS = doc intl po src tests
887 @end example
889 As you can see, all the work here is really done in subdirectories.
891 The @file{po} and @file{intl} directories are automatically generated
892 using @code{gettextize}; they will not be discussed here.
894 @cindex Texinfo file handling example
895 @cindex Example, handling Texinfo files
897 In @file{doc/Makefile.am} we see:
899 @example
900 info_TEXINFOS = hello.texi
901 hello_TEXINFOS = gpl.texi
902 @end example
904 This is sufficient to build, install, and distribute the GNU Hello
905 manual.
907 @cindex Regression test example
908 @cindex Example, regression test
910 Here is @file{tests/Makefile.am}:
912 @example
913 TESTS = hello
914 EXTRA_DIST = hello.in testdata
915 @end example
917 The script @file{hello} is generated by @code{configure}, and is the
918 only test case.  @code{make check} will run this test.
920 @cindex INCLUDES, example usage
922 Last we have @file{src/Makefile.am}, where all the real work is done:
923 @c FIXME: As all the Hello World excerpts in this manual, this
924 @c shows deprecated features (here: $(INCLUDES)).
926 @example
927 bin_PROGRAMS = hello
928 hello_SOURCES = hello.c version.c getopt.c getopt1.c getopt.h system.h
929 hello_LDADD = $(INTLLIBS) $(ALLOCA)
930 localedir = $(datadir)/locale
931 INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\"
932 @end example
935 @node true
936 @section Building true and false
938 @cindex Example, false and true
939 @cindex false Example
940 @cindex true Example
942 Here is another, trickier example.  It shows how to generate two
943 programs (@code{true} and @code{false}) from the same source file
944 (@file{true.c}).  The difficult part is that each compilation of
945 @file{true.c} requires different @code{cpp} flags.
947 @example
948 bin_PROGRAMS = true false
949 false_SOURCES =
950 false_LDADD = false.o
952 true.o: true.c
953         $(COMPILE) -DEXIT_CODE=0 -c true.c
955 false.o: true.c
956         $(COMPILE) -DEXIT_CODE=1 -o false.o -c true.c
957 @end example
959 Note that there is no @code{true_SOURCES} definition.  Automake will
960 implicitly assume that there is a source file named @file{true.c}, and
961 define rules to compile @file{true.o} and link @file{true}.  The
962 @code{true.o: true.c} rule supplied by the above @file{Makefile.am},
963 will override the Automake generated rule to build @file{true.o}.
965 @code{false_SOURCES} is defined to be empty---that way no implicit value
966 is substituted.  Because we have not listed the source of
967 @file{false}, we have to tell Automake how to link the program.  This is
968 the purpose of the @code{false_LDADD} line.  A @code{false_DEPENDENCIES}
969 variable, holding the dependencies of the @file{false} target will be
970 automatically generated by Automake from the content of
971 @code{false_LDADD}.
973 The above rules won't work if your compiler doesn't accept both
974 @samp{-c} and @samp{-o}.  The simplest fix for this is to introduce a
975 bogus dependency (to avoid problems with a parallel @code{make}):
977 @example
978 true.o: true.c false.o
979         $(COMPILE) -DEXIT_CODE=0 -c true.c
981 false.o: true.c
982         $(COMPILE) -DEXIT_CODE=1 -c true.c && mv true.o false.o
983 @end example
985 Also, these explicit rules do not work if the de-ANSI-fication feature
986 is used (@pxref{ANSI}).  Supporting de-ANSI-fication requires a little
987 more work:
989 @example
990 true_.o: true_.c false_.o
991         $(COMPILE) -DEXIT_CODE=0 -c true_.c
993 false_.o: true_.c
994         $(COMPILE) -DEXIT_CODE=1 -c true_.c && mv true_.o false_.o
995 @end example
997 As it turns out, there is also a much easier way to do this same task.
998 Some of the above techniques are useful enough that we've kept the
999 example in the manual.  However if you were to build @code{true} and
1000 @code{false} in real life, you would probably use per-program
1001 compilation flags, like so:
1003 @example
1004 bin_PROGRAMS = false true
1006 false_SOURCES = true.c
1007 false_CPPFLAGS = -DEXIT_CODE=1
1009 true_SOURCES = true.c
1010 true_CPPFLAGS = -DEXIT_CODE=0
1011 @end example
1013 In this case Automake will cause @file{true.c} to be compiled twice,
1014 with different flags.  De-ANSI-fication will work automatically.  In
1015 this instance, the names of the object files would be chosen by
1016 automake; they would be @file{false-true.o} and @file{true-true.o}.
1017 (The name of the object files rarely matters.)
1020 @node Invoking Automake
1021 @chapter Creating a @file{Makefile.in}
1023 @cindex Multiple configure.ac files
1024 @cindex Invoking Automake
1025 @cindex Automake, invoking
1027 To create all the @file{Makefile.in}s for a package, run the
1028 @code{automake} program in the top level directory, with no arguments.
1029 @code{automake} will automatically find each appropriate
1030 @file{Makefile.am} (by scanning @file{configure.ac}; @pxref{configure})
1031 and generate the corresponding @file{Makefile.in}.  Note that
1032 @code{automake} has a rather simplistic view of what constitutes a
1033 package; it assumes that a package has only one @file{configure.ac}, at
1034 the top.  If your package has multiple @file{configure.ac}s, then you
1035 must run @code{automake} in each directory holding a
1036 @file{configure.ac}.  (Alternatively, you may rely on Autoconf's
1037 @code{autoreconf}, which is able to recurse your package tree and run
1038 @code{automake} where appropriate.)
1040 You can optionally give @code{automake} an argument; @file{.am} is
1041 appended to the argument and the result is used as the name of the input
1042 file.  This feature is generally only used to automatically rebuild an
1043 out-of-date @file{Makefile.in}.  Note that @code{automake} must always
1044 be run from the topmost directory of a project, even if being used to
1045 regenerate the @file{Makefile.in} in some subdirectory.  This is
1046 necessary because @code{automake} must scan @file{configure.ac}, and
1047 because @code{automake} uses the knowledge that a @file{Makefile.in} is
1048 in a subdirectory to change its behavior in some cases.
1050 @vindex AUTOCONF
1051 Automake will run @code{autoconf} to scan @file{configure.ac} and its
1052 dependencies (@file{aclocal.m4}), therefore @code{autoconf} must be in
1053 your @code{PATH}.  If there is an @code{AUTOCONF} variable in your
1054 environment it will be used instead of @code{autoconf}, this allows you
1055 to select a particular version of Autoconf.  By the way, don't
1056 misunderstand this paragraph: Automake runs @code{autoconf} to
1057 @strong{scan} your @file{configure.ac}, this won't build
1058 @file{configure} and you still have to run @code{autoconf} yourself for
1059 this purpose.
1061 @cindex Automake options
1062 @cindex Options, Automake
1063 @cindex Strictness, command line
1065 @code{automake} accepts the following options:
1067 @cindex Extra files distributed with Automake
1068 @cindex Files distributed with Automake
1069 @cindex config.guess
1071 @table @samp
1072 @item -a
1073 @itemx --add-missing
1074 @opindex -a
1075 @opindex --add-missing
1076 Automake requires certain common files to exist in certain situations;
1077 for instance @file{config.guess} is required if @file{configure.ac} runs
1078 @code{AC_CANONICAL_HOST}.  Automake is distributed with several of these
1079 files (@pxref{Auxiliary Programs}); this option will cause the missing
1080 ones to be automatically added to the package, whenever possible.  In
1081 general if Automake tells you a file is missing, try using this option.
1082 By default Automake tries to make a symbolic link pointing to its own
1083 copy of the missing file; this can be changed with @code{--copy}.
1085 Many of the potentially-missing files are common scripts whose
1086 location may be specified via the @code{AC_CONFIG_AUX_DIR} macro.
1087 Therefore, @code{AC_CONFIG_AUX_DIR}'s setting affects whether a
1088 file is considered missing, and where the missing file is added
1089 (@pxref{Optional}).
1091 @item --libdir=@var{dir}
1092 @opindex --libdir
1093 Look for Automake data files in directory @var{dir} instead of in the
1094 installation directory.  This is typically used for debugging.
1096 @item -c
1097 @opindex -c
1098 @itemx --copy
1099 @opindex --copy
1100 When used with @code{--add-missing}, causes installed files to be
1101 copied.  The default is to make a symbolic link.
1103 @item --cygnus
1104 @opindex --cygnus
1105 Causes the generated @file{Makefile.in}s to follow Cygnus rules, instead
1106 of GNU or Gnits rules.  For more information, see @ref{Cygnus}.
1108 @item -f
1109 @opindex -f
1110 @itemx --force-missing
1111 @opindex --force-missing
1112 When used with @code{--add-missing}, causes standard files to be reinstalled
1113 even if they already exist in the source tree.  This involves removing
1114 the file from the source tree before creating the new symlink (or, with
1115 @code{--copy}, copying the new file).
1117 @item --foreign
1118 @opindex --foreign
1119 Set the global strictness to @samp{foreign}.  For more information, see
1120 @ref{Strictness}.
1122 @item --gnits
1123 @opindex --gnits
1124 Set the global strictness to @samp{gnits}.  For more information, see
1125 @ref{Gnits}.
1127 @item --gnu
1128 @opindex --gnu
1129 Set the global strictness to @samp{gnu}.  For more information, see
1130 @ref{Gnits}.  This is the default strictness.
1132 @item --help
1133 @opindex --help
1134 Print a summary of the command line options and exit.
1136 @item -i
1137 @itemx --ignore-deps
1138 @opindex -i
1139 This disables the dependency tracking feature in generated
1140 @file{Makefile}s; see @ref{Dependencies}.
1142 @item --include-deps
1143 @opindex --include-deps
1144 This enables the dependency tracking feature.  This feature is enabled
1145 by default.  This option is provided for historical reasons only and
1146 probably should not be used.
1148 @item --no-force
1149 @opindex --no-force
1150 Ordinarily @code{automake} creates all @file{Makefile.in}s mentioned in
1151 @file{configure.ac}.  This option causes it to only update those
1152 @file{Makefile.in}s which are out of date with respect to one of their
1153 dependents.
1155 @item -o @var{dir}
1156 @itemx --output-dir=@var{dir}
1157 @opindex -o
1158 @opindex --output-dir
1159 Put the generated @file{Makefile.in} in the directory @var{dir}.
1160 Ordinarily each @file{Makefile.in} is created in the directory of the
1161 corresponding @file{Makefile.am}.  This option is deprecated and will be
1162 removed in a future release.
1164 @item -v
1165 @itemx --verbose
1166 @opindex -v
1167 @opindex --verbose
1168 Cause Automake to print information about which files are being read or
1169 created.
1171 @item --version
1172 @opindex --version
1173 Print the version number of Automake and exit.
1175 @item -W CATEGORY
1176 @item --warnings=@var{category}
1177 @opindex -W
1178 @opindex --warnings
1179 Output warnings falling in @var{category}.  @var{category} can be
1180 one of:
1181 @table @samp
1182 @item gnu
1183 warnings related to the GNU Coding Standards
1184 (@pxref{Top, , , standards, The GNU Coding Standards}).
1185 @item obsolete
1186 obsolete features or constructions
1187 @item override
1188 user redefinitions of Automake rules or variables
1189 @item portability
1190 portability issues (e.g., use of Make features which are known not portable)
1191 @item syntax
1192 weird syntax, unused variables, typos
1193 @item unsupported
1194 unsupported or incomplete features
1195 @item all
1196 all the warnings
1197 @item none
1198 turn off all the warnings
1199 @item error
1200 treat warnings as errors
1201 @end table
1203 A category can be turned off by prefixing its name with @samp{no-}.  For
1204 instance @samp{-Wno-syntax} will hide the warnings about unused
1205 variables.
1207 The categories output by default are @samp{syntax} and
1208 @samp{unsupported}.  Additionally, @samp{gnu} is enabled in @samp{--gnu} and
1209 @samp{--gnits} strictness.
1211 @samp{portability} warnings are currently disabled by default, but they
1212 will be enabled in @samp{--gnu} and @samp{--gnits} strictness in a
1213 future release.
1215 @vindex WARNINGS
1216 The environment variable @samp{WARNINGS} can contain a comma separated
1217 list of categories to enable.  It will be taken into account before the
1218 command-line switches, this way @samp{-Wnone} will also ignore any
1219 warning category enabled by @samp{WARNINGS}.  This variable is also used
1220 by other tools like @command{autoconf}; unknown categories are ignored
1221 for this reason.
1223 @end table
1226 @node configure
1227 @chapter Scanning @file{configure.ac}
1229 @cindex configure.ac, scanning
1230 @cindex Scanning configure.ac
1232 Automake scans the package's @file{configure.ac} to determine certain
1233 information about the package.  Some @code{autoconf} macros are required
1234 and some variables must be defined in @file{configure.ac}.  Automake
1235 will also use information from @file{configure.ac} to further tailor its
1236 output.
1238 Automake also supplies some Autoconf macros to make the maintenance
1239 easier.  These macros can automatically be put into your
1240 @file{aclocal.m4} using the @code{aclocal} program.
1242 @menu
1243 * Requirements::                Configuration requirements
1244 * Optional::                    Other things Automake recognizes
1245 * Invoking aclocal::            Auto-generating aclocal.m4
1246 * aclocal options::             aclocal command line arguments
1247 * Macro search path::           Modifying aclocal's search path
1248 * Macros::                      Autoconf macros supplied with Automake
1249 * Extending aclocal::           Writing your own aclocal macros
1250 * Local Macros::                Organizing local macros
1251 * Future of aclocal::           aclocal's scheduled death
1252 @end menu
1255 @node Requirements
1256 @section Configuration requirements
1258 @cindex Automake requirements
1259 @cindex Requirements of Automake
1261 The one real requirement of Automake is that your @file{configure.ac}
1262 call @code{AM_INIT_AUTOMAKE}.  This macro does several things which are
1263 required for proper Automake operation (@pxref{Macros}).
1264 @cvindex AM_INIT_AUTOMAKE
1266 Here are the other macros which Automake requires but which are not run
1267 by @code{AM_INIT_AUTOMAKE}:
1269 @table @code
1270 @item AC_CONFIG_FILES
1271 @itemx AC_OUTPUT
1272 Automake uses these to determine which files to create (@pxref{Output, ,
1273 Creating Output Files, autoconf, The Autoconf Manual}).  A listed file
1274 is considered to be an Automake generated @file{Makefile} if there
1275 exists a file with the same name and the @file{.am} extension appended.
1276 Typically, @code{AC_CONFIG_FILES([foo/Makefile])} will cause Automake to
1277 generate @file{foo/Makefile.in} if @file{foo/Makefile.am} exists.
1279 When using @code{AC_CONFIG_FILES} with multiple input files, as in
1280 @code{AC_CONFIG_FILES([Makefile:top.in:Makefile.in:bot.in])}, Automake
1281 will generate the first @file{.in} input file for which a @file{.am}
1282 file exists.  If no such file exists the output file is not considered
1283 to be Automake generated.
1285 Files created by @code{AC_CONFIG_FILES} are removed by @code{make distclean}.
1286 @cvindex AC_CONFIG_FILES
1287 @cvindex AC_OUTPUT
1288 @end table
1291 @node Optional
1292 @section Other things Automake recognizes
1294 @cindex Macros Automake recognizes
1295 @cindex Recognized macros by Automake
1297 Every time Automake is run it calls Autoconf to trace
1298 @file{configure.ac}.  This way it can recognize the use of certain
1299 macros and tailor the generated @file{Makefile.in} appropriately.
1300 Currently recognized macros and their effects are:
1302 @table @code
1303 @item AC_CONFIG_HEADERS
1304 Automake will generate rules to rebuild these headers.  Older versions
1305 of Automake required the use of @code{AM_CONFIG_HEADER}
1306 (@pxref{Macros}); this is no longer the case today.
1307 @cvindex AC_CONFIG_HEADERS
1309 @item AC_CONFIG_LINKS
1310 Automake will generate rules to remove @file{configure} generated links on
1311 @code{make distclean} and to distribute named source files as part of
1312 @code{make dist}.
1313 @cvindex AC_CONFIG_LINKS
1315 @item AC_CONFIG_AUX_DIR
1316 Automake will look for various helper scripts, such as
1317 @file{install-sh}, in the directory named in this macro invocation.
1318 @c This list is accurate relative to version 1.8
1319 (The full list of scripts is: @file{config.guess}, @file{config.sub},
1320 @file{depcomp}, @file{elisp-comp}, @file{compile}, @file{install-sh},
1321 @file{ltmain.sh}, @file{mdate-sh}, @file{missing}, @file{mkinstalldirs},
1322 @file{py-compile}, @file{texinfo.tex}, and @file{ylwrap}.)  Not all
1323 scripts are always searched for; some scripts will only be sought if the
1324 generated @file{Makefile.in} requires them.
1325 @cvindex AC_CONFIG_AUX_DIR
1327 If @code{AC_CONFIG_AUX_DIR} is not given, the scripts are looked for in
1328 their @samp{standard} locations.  For @file{mdate-sh},
1329 @file{texinfo.tex}, and @file{ylwrap}, the standard location is the
1330 source directory corresponding to the current @file{Makefile.am}.  For
1331 the rest, the standard location is the first one of @file{.}, @file{..},
1332 or @file{../..} (relative to the top source directory) that provides any
1333 one of the helper scripts.  @xref{Input, , Finding `configure' Input,
1334 autoconf, The Autoconf Manual}.
1336 Required files from @code{AC_CONFIG_AUX_DIR} are automatically
1337 distributed, even if there is no @file{Makefile.am} in this directory.
1339 @item AC_CANONICAL_HOST
1340 Automake will ensure that @file{config.guess} and @file{config.sub}
1341 exist.  Also, the @file{Makefile} variables @samp{host_alias} and
1342 @samp{host_triplet} are introduced.  See @ref{Canonicalizing, ,
1343 Getting the Canonical System Type, autoconf, The Autoconf Manual}.
1344 @cvindex AC_CANONICAL_HOST
1345 @vindex host_alias
1346 @vindex host_triplet
1348 @item AC_CANONICAL_SYSTEM
1349 This is similar to @code{AC_CANONICAL_HOST}, but also defines the
1350 @file{Makefile} variables @samp{build_alias} and @samp{target_alias}.
1351 @xref{Canonicalizing, , Getting the Canonical System Type, autoconf, The
1352 Autoconf Manual}.
1353 @cvindex AC_CANONICAL_SYSTEM
1354 @vindex build_alias
1355 @vindex target_alias
1357 @item AC_LIBSOURCE
1358 @itemx AC_LIBSOURCES
1359 @itemx AC_LIBOBJ
1360 Automake will automatically distribute any file listed in
1361 @code{AC_LIBSOURCE} or @code{AC_LIBSOURCES}.
1363 Note that the @code{AC_LIBOBJ} macro calls @code{AC_LIBSOURCE}.  So if
1364 an Autoconf macro is documented to call @code{AC_LIBOBJ([file])}, then
1365 @file{file.c} will be distributed automatically by Automake.  This
1366 encompasses many macros like @code{AC_FUNC_ALLOCA},
1367 @code{AC_FUNC_MEMCMP}, @code{AC_REPLACE_FUNCS}, and others.
1368 @cvindex AC_LIBOBJ
1369 @cvindex AC_LIBSOURCE
1370 @cvindex AC_LIBSOURCES
1372 By the way, direct assignments to @code{LIBOBJS} are no longer
1373 supported.  You should always use @code{AC_LIBOBJ} for this purpose.
1374 @xref{AC_LIBOBJ vs LIBOBJS, , @code{AC_LIBOBJ} vs. @code{LIBOBJS},
1375 autoconf, The Autoconf Manual}.
1376 @cvindex LIBOBJS
1378 @item AC_PROG_RANLIB
1379 This is required if any libraries are built in the package.
1380 @xref{Particular Programs, , Particular Program Checks, autoconf, The
1381 Autoconf Manual}.
1382 @cvindex AC_PROG_RANLIB
1384 @item AC_PROG_CXX
1385 This is required if any C++ source is included.  @xref{Particular
1386 Programs, , Particular Program Checks, autoconf, The Autoconf Manual}.
1387 @cvindex AC_PROG_CXX
1389 @item AC_PROG_F77
1390 This is required if any Fortran 77 source is included.  This macro is
1391 distributed with Autoconf version 2.13 and later.  @xref{Particular
1392 Programs, , Particular Program Checks, autoconf, The Autoconf Manual}.
1393 @cvindex AC_PROG_F77
1395 @item AC_F77_LIBRARY_LDFLAGS
1396 This is required for programs and shared libraries that are a mixture of
1397 languages that include Fortran 77 (@pxref{Mixing Fortran 77 With C and
1398 C++}).  @xref{Macros, , Autoconf macros supplied with Automake}.
1399 @cvindex AC_F77_LIBRARY_LDFLAGS
1401 @item AC_PROG_FC
1402 This is required if any Fortran 90/95 source is included.  This macro is
1403 distributed with Autoconf version 2.58 and later.  @xref{Particular
1404 Programs, , Particular Program Checks, autoconf, The Autoconf Manual}.
1405 @cvindex AC_PROG_FC
1407 @item AC_PROG_LIBTOOL
1408 Automake will turn on processing for @code{libtool} (@pxref{Top, ,
1409 Introduction, libtool, The Libtool Manual}).
1410 @cvindex AC_PROG_LIBTOOL
1412 @item AC_PROG_YACC
1413 If a Yacc source file is seen, then you must either use this macro or
1414 define the variable @samp{YACC} in @file{configure.ac}.  The former is
1415 preferred (@pxref{Particular Programs, , Particular Program Checks,
1416 autoconf, The Autoconf Manual}).
1417 @cvindex AC_PROG_YACC
1418 @cvindex YACC
1420 @item AC_PROG_LEX
1421 If a Lex source file is seen, then this macro must be used.
1422 @xref{Particular Programs, , Particular Program Checks, autoconf, The
1423 Autoconf Manual}.
1424 @cvindex AC_PROG_LEX
1426 @item AC_SUBST
1427 @cvindex AC_SUBST
1428 The first argument is automatically defined as a variable in each
1429 generated @file{Makefile.in}.  @xref{Setting Output Variables, , Setting
1430 Output Variables, autoconf, The Autoconf Manual}.
1432 If the Autoconf manual says that a macro calls @code{AC_SUBST} for
1433 @var{var}, or defines the output variable @var{var} then @var{var} will
1434 be defined in each @file{Makefile.in} generated by Automake.
1435 E.g. @code{AC_PATH_XTRA} defines @code{X_CFLAGS} and @code{X_LIBS}, so
1436 you can use these variables in any @file{Makefile.am} if
1437 @code{AC_PATH_XTRA} is called.
1439 @item AM_C_PROTOTYPES
1440 This is required when using automatic de-ANSI-fication; see @ref{ANSI}.
1441 @cvindex AM_C_PROTOTYPES
1443 @item AM_GNU_GETTEXT
1444 This macro is required for packages which use GNU gettext
1445 (@pxref{gettext}).  It is distributed with gettext.  If Automake sees
1446 this macro it ensures that the package meets some of gettext's
1447 requirements.
1448 @cvindex AM_GNU_GETTEXT
1450 @item AM_MAINTAINER_MODE
1451 @opindex --enable-maintainer-mode
1452 This macro adds a @samp{--enable-maintainer-mode} option to
1453 @code{configure}.  If this is used, @code{automake} will cause
1454 @samp{maintainer-only} rules to be turned off by default in the
1455 generated @file{Makefile.in}s. This macro defines the
1456 @samp{MAINTAINER_MODE} conditional, which you can use in your own
1457 @file{Makefile.am}.
1458 @cvindex AM_MAINTAINER_MODE
1460 @item m4_include
1461 @cvindex m4_include
1462 Files included by @file{configure.ac} using this macro will be
1463 detected by Automake and automatically distributed.  They will also
1464 appear as dependencies in @file{Makefile} rules.
1466 @code{m4_include} is seldom used by @file{configure.ac} authors, but
1467 can appear in @file{aclocal.m4} when @command{aclocal} detects that
1468 some required macros come from files local to your package (as
1469 opposed to macros installed in a system-wide directory, see
1470 @ref{Invoking aclocal}).
1472 @end table
1475 @node Invoking aclocal
1476 @section Auto-generating aclocal.m4
1478 @cindex Invoking aclocal
1479 @cindex aclocal, Invoking
1481 Automake includes a number of Autoconf macros which can be used in
1482 your package (@pxref{Macros}); some of them are actually required by
1483 Automake in certain situations.  These macros must be defined in your
1484 @file{aclocal.m4}; otherwise they will not be seen by
1485 @command{autoconf}.
1487 The @command{aclocal} program will automatically generate
1488 @file{aclocal.m4} files based on the contents of @file{configure.ac}.
1489 This provides a convenient way to get Automake-provided macros,
1490 without having to search around.  The @command{aclocal} mechanism
1491 allows other packages to supply their own macros (@pxref{Extending
1492 aclocal}).  You can also use it to maintain your own set of custom
1493 macros (@pxref{Local Macros}).
1495 At startup, @command{aclocal} scans all the @file{.m4} files it can
1496 find, looking for macro definitions (@pxref{Macro search path}).  Then
1497 it scans @file{configure.ac}.  Any mention of one of the macros found
1498 in the first step causes that macro, and any macros it in turn
1499 requires, to be put into @file{aclocal.m4}.
1501 @emph{Putting} the file that contains the macro definition into
1502 @file{aclocal.m4} is usually done by copying the entire text of this
1503 file, including unused macro definitions as well as both @samp{#} and
1504 @samp{dnl} comments.  If you want to make a comment which will be
1505 completely ignored by @command{aclocal}, use @samp{##} as the comment
1506 leader.
1508 When @command{aclocal} detects that the file containing the macro
1509 definition is in a subdirectory of your package, it will use
1510 @code{m4_include} instead of copying it; this makes the package
1511 smaller and eases dependency tracking.  This only works if the
1512 subdirectory containing the macro was specified as a relative search
1513 path with @command{aclocal}'s @code{-I} argument.  (@pxref{Local
1514 Macros} for an example.)  Any macro which is found in a system-wide
1515 directory, or via an absolute search path will be copied.
1517 The contents of @file{acinclude.m4}, if it exists, are also
1518 automatically included in @file{aclocal.m4}.  We recommend against
1519 using @file{acinclude.m4} in new packages (@pxref{Local Macros}).
1521 @vindex AUTOM4TE
1522 While computing @file{aclocal.m4}, @code{aclocal} runs @code{autom4te}
1523 (@pxref{Using autom4te, , Using @code{Autom4te}, autoconf, The
1524 Autoconf Manual}) in order to trace the macros which are really used,
1525 and omit from @file{aclocal.m4} all macros which are mentioned but
1526 otherwise unexpanded (this can happen when a macro is called
1527 conditionally).  @code{autom4te} is expected to be in the @code{PATH},
1528 just as @code{autoconf}.  Its location can be overridden using the
1529 @code{AUTOM4TE} environment variable.
1531 @menu
1532 * aclocal options::             Options supported by aclocal
1533 * Macro search path::           How aclocal finds .m4 files
1534 @end menu
1536 @node aclocal options
1537 @section aclocal options
1539 @cindex aclocal, Options
1540 @cindex Options, aclocal
1542 @code{aclocal} accepts the following options:
1544 @table @code
1545 @item --acdir=@var{dir}
1546 @opindex --acdir
1547 Look for the macro files in @var{dir} instead of the installation
1548 directory.  This is typically used for debugging.
1550 @item --help
1551 @opindex --help
1552 Print a summary of the command line options and exit.
1554 @item -I @var{dir}
1555 @opindex -I
1556 Add the directory @var{dir} to the list of directories searched for
1557 @file{.m4} files.
1559 @item --force
1560 @opindex --force
1561 Always overwrite the output file.  The default is to overwrite the output
1562 file only when really needed, i.e., when its contents changes or if one
1563 of its dependencies is younger.
1565 @item --output=@var{file}
1566 @opindex --output
1567 Cause the output to be put into @var{file} instead of @file{aclocal.m4}.
1569 @item --print-ac-dir
1570 @opindex --print-ac-dir
1571 Prints the name of the directory which @code{aclocal} will search to
1572 find third-party @file{.m4} files.  When this option is given, normal
1573 processing is suppressed.  This option can be used by a package to
1574 determine where to install a macro file.
1576 @item --verbose
1577 @opindex --verbose
1578 Print the names of the files it examines.
1580 @item --version
1581 @opindex --version
1582 Print the version number of Automake and exit.
1583 @end table
1585 @node Macro search path
1586 @section Macro search path
1588 @cindex Macro search path
1589 @cindex aclocal search path
1591 By default, @command{aclocal} searches for @file{.m4} files in the following
1592 directories, in this order:
1594 @table @code
1595 @item @var{acdir-APIVERSION}
1596 This is where the @file{.m4} macros distributed with automake itself
1597 are stored.  @var{APIVERSION} depends on the automake release used;
1598 for automake 1.6.x, @var{APIVERSION} = @code{1.6}.
1600 @item @var{acdir}
1601 This directory is intended for third party @file{.m4} files, and is
1602 configured when @command{automake} itself is built.  This is
1603 @file{@@datadir@@/aclocal/}, which typically
1604 expands to @file{$@{prefix@}/share/aclocal/}.  To find the compiled-in
1605 value of @var{acdir}, use the @code{--print-ac-dir} option
1606 (@pxref{aclocal options}).
1607 @end table
1609 As an example, suppose that automake-1.6.2 was configured with
1610 @code{--prefix=/usr/local}.  Then, the search path would be:
1612 @enumerate
1613 @item @file{/usr/local/share/aclocal-1.6/}
1614 @item @file{/usr/local/share/aclocal/}
1615 @end enumerate
1617 As explained in (@pxref{aclocal options}), there are several options that
1618 can be used to change or extend this search path.
1620 @subsection Modifying the macro search path: @code{--acdir}
1622 The most obvious option to modify the search path is
1623 @code{--acdir=@var{dir}}, which changes default directory and
1624 drops the @var{APIVERSION} directory.  For example, if one specifies
1625 @code{--acdir=/opt/private/}, then the search path becomes:
1627 @enumerate
1628 @item @file{/opt/private/}
1629 @end enumerate
1631 Note that this option, @code{--acdir}, is intended for use
1632 by the internal automake test suite only; it is not ordinarily
1633 needed by end-users.
1635 @subsection Modifying the macro search path: @code{-I @var{dir}}
1637 Any extra directories specified using @code{-I} options
1638 (@pxref{aclocal options}) are @emph{prepended} to this search list.  Thus,
1639 @code{aclocal -I /foo -I /bar} results in the following search path:
1641 @enumerate
1642 @item @file{/foo}
1643 @item @file{/bar}
1644 @item @var{acdir}-@var{APIVERSION}
1645 @item @var{acdir}
1646 @end enumerate
1648 @subsection Modifying the macro search path: @file{dirlist}
1649 @cindex @file{dirlist}
1651 There is a third mechanism for customizing the search path.  If a
1652 @file{dirlist} file exists in @var{acdir}, then that file is assumed to
1653 contain a list of directories, one per line, to be added to the search
1654 list.  These directories are searched @emph{after} all other
1655 directories.
1657 For example, suppose
1658 @file{@var{acdir}/dirlist} contains the following:
1660 @example
1661 /test1
1662 /test2
1663 @end example
1665 @noindent
1666 and that @code{aclocal} was called with the @code{-I /foo -I /bar} options.
1667 Then, the search path would be
1669 @enumerate
1670 @item @file{/foo}
1671 @item @file{/bar}
1672 @item @var{acdir}-@var{APIVERSION}
1673 @item @var{acdir}
1674 @item @file{/test1}
1675 @item @file{/test2}
1676 @end enumerate
1678 If the @code{--acdir=@var{dir}} option is used, then @command{aclocal}
1679 will search for the @file{dirlist} file in @var{dir}.  In the
1680 @code{--acdir=/opt/private/} example above, @command{aclocal} would look
1681 for @file{/opt/private/dirlist}.  Again, however, the @code{--acdir}
1682 option is intended for use by the internal automake test suite only;
1683 @code{--acdir} is not ordinarily needed by end-users.
1685 @file{dirlist} is useful in the following situation: suppose that
1686 @code{automake} version @code{1.6.2} is installed with
1687 $prefix=/usr by the system vendor. Thus, the default search
1688 directories are
1690 @enumerate
1691 @item @file{/usr/share/aclocal-1.6/}
1692 @item @file{/usr/share/aclocal/}
1693 @end enumerate
1695 However, suppose further that many packages have been manually
1696 installed on the system, with $prefix=/usr/local, as is typical.
1697 In that case, many of these ``extra'' @file{.m4} files are in
1698 @file{/usr/local/share/aclocal}.  The only way to force
1699 @file{/usr/bin/aclocal} to find these ``extra'' @file{.m4} files
1700 is to always call @code{aclocal -I /usr/local/share/aclocal}.
1701 This is inconvenient.  With @file{dirlist}, one may create the file
1703 @file{/usr/share/aclocal/dirlist}
1705 @noindent
1706 which contains only the single line
1708 @file{/usr/local/share/aclocal}
1710 Now, the ``default'' search path on the affected system is
1712 @enumerate
1713 @item @file{/usr/share/aclocal-1.6/}
1714 @item @file{/usr/share/aclocal/}
1715 @item @file{/usr/local/share/aclocal/}
1716 @end enumerate
1718 without the need for @code{-I} options; @code{-I} options can be reserved
1719 for project-specific needs (@file{my-source-dir/m4/}), rather than
1720 using it to work around local system-dependent tool installation
1721 directories.
1723 Similarly, @file{dirlist} can be handy if you have installed a local
1724 copy Automake on your account and want @command{aclocal} to look for
1725 macros installed at other places on the system.
1728 @node Macros
1729 @section Autoconf macros supplied with Automake
1731 Automake ships with several Autoconf macros that you can use from your
1732 @file{configure.ac}.  When you use one of them it will be included by
1733 @code{aclocal} in @file{aclocal.m4}.
1735 @menu
1736 * Public macros::               Macros that you can use.
1737 * Private macros::              Macros that you should not use.
1738 @end menu
1740 @c consider generating the following subsections automatically from m4 files.
1742 @node Public macros
1743 @subsection Public macros
1745 @table @code
1746 @item AM_CONFIG_HEADER
1747 Automake will generate rules to automatically regenerate the config
1748 header.  This obsolete macro is a synonym of @code{AC_CONFIG_HEADERS}
1749 today (@pxref{Optional}).
1750 @cvindex AM_CONFIG_HEADER
1752 @item AM_ENABLE_MULTILIB
1753 This is used when a ``multilib'' library is being built.  The first
1754 optional argument is the name of the @file{Makefile} being generated; it
1755 defaults to @samp{Makefile}.  The second option argument is used to find
1756 the top source directory; it defaults to the empty string (generally
1757 this should not be used unless you are familiar with the internals).
1758 @xref{Multilibs}.
1760 @item AM_C_PROTOTYPES
1761 Check to see if function prototypes are understood by the compiler.  If
1762 so, define @samp{PROTOTYPES} and set the output variables @samp{U} and
1763 @samp{ANSI2KNR} to the empty string.  Otherwise, set @samp{U} to
1764 @samp{_} and @samp{ANSI2KNR} to @samp{./ansi2knr}.  Automake uses these
1765 values to implement automatic de-ANSI-fication.
1766 @cvindex AM_C_PROTOTYPES
1768 @item AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
1769 If the use of @code{TIOCGWINSZ} requires @file{<sys/ioctl.h>}, then
1770 define @code{GWINSZ_IN_SYS_IOCTL}.  Otherwise @code{TIOCGWINSZ} can be
1771 found in @file{<termios.h>}.
1772 @cvindex AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
1774 @item AM_INIT_AUTOMAKE([OPTIONS])
1775 @itemx AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
1776 Runs many macros required for proper operation of the generated Makefiles.
1778 This macro has two forms, the first of which is preferred.
1779 In this form, @code{AM_INIT_AUTOMAKE} is called with a
1780 single argument --- a space-separated list of Automake options which should
1781 be applied to every @file{Makefile.am} in the tree.  The effect is as if
1782 each option were listed in @code{AUTOMAKE_OPTIONS}.
1784 The second, deprecated, form of @code{AM_INIT_AUTOMAKE} has two required
1785 arguments: the package and the version number.  This form is
1786 obsolete because the @var{package} and @var{version} can be obtained
1787 from Autoconf's @code{AC_INIT} macro (which itself has an old and a new
1788 form).
1790 If your @file{configure.ac} has:
1791 @example
1792 AC_INIT(src/foo.c)
1793 AM_INIT_AUTOMAKE(mumble, 1.5)
1794 @end example
1795 you can modernize it as follows:
1796 @example
1797 AC_INIT(mumble, 1.5)
1798 AC_CONFIG_SRCDIR(src/foo.c)
1799 AM_INIT_AUTOMAKE
1800 @end example
1802 Note that if you're upgrading your @file{configure.ac} from an earlier
1803 version of Automake, it is not always correct to simply move the package
1804 and version arguments from @code{AM_INIT_AUTOMAKE} directly to
1805 @code{AC_INIT}, as in the example above.  The first argument to
1806 @code{AC_INIT} should be the name of your package (e.g. @samp{GNU Automake}),
1807 not the tarball name (e.g. @samp{automake}) that you used to pass to
1808 @code{AM_INIT_AUTOMAKE}.  Autoconf tries to derive a tarball name from
1809 the package name, which should work for most but not all package names.
1810 (If it doesn't work for yours, you can use the
1811 four-argument form of @code{AC_INIT} --- supported in Autoconf versions
1812 greater than 2.52g --- to provide the tarball name explicitly).
1814 By default this macro @code{AC_DEFINE}'s @samp{PACKAGE} and
1815 @samp{VERSION}.  This can be avoided by passing the @samp{no-define}
1816 option, as in:
1817 @example
1818 AM_INIT_AUTOMAKE([gnits 1.5 no-define dist-bzip2])
1819 @end example
1820 or by passing a third non-empty argument to the obsolete form.
1822 @cvindex PACKAGE, prevent definition
1823 @cvindex VERSION, prevent definition
1826 @item AM_PATH_LISPDIR
1827 Searches for the program @code{emacs}, and, if found, sets the output
1828 variable @code{lispdir} to the full path to Emacs' site-lisp directory.
1830 Note that this test assumes the @code{emacs} found to be a version that
1831 supports Emacs Lisp (such as @sc{gnu} Emacs or XEmacs).  Other emacsen
1832 can cause this test to hang (some, like old versions of MicroEmacs,
1833 start up in interactive mode, requiring @samp{C-x C-c} to exit, which
1834 is hardly obvious for a non-emacs user).  In most cases, however, you
1835 should be able to use @samp{C-c} to kill the test.  In order to avoid
1836 problems, you can set @code{EMACS} to ``no'' in the environment, or
1837 use the @samp{--with-lispdir} option to @command{configure} to
1838 explicitly set the correct path (if you're sure you have an @code{emacs}
1839 that supports Emacs Lisp.
1840 @cvindex AM_PATH_LISPDIR
1842 @item AM_PROG_AS
1843 Use this macro when you have assembly code in your project.  This will
1844 choose the assembler for you (by default the C compiler) and set
1845 @code{CCAS}, and will also set @code{CCASFLAGS} if required.
1847 @item AM_PROG_CC_C_O
1848 This is like @code{AC_PROG_CC_C_O}, but it generates its results in the
1849 manner required by automake.  You must use this instead of
1850 @code{AC_PROG_CC_C_O} when you need this functionality.
1852 @item AM_PROG_LEX
1853 @cindex HP-UX 10, lex problems
1854 @cindex lex problems with HP-UX 10
1855 Like @code{AC_PROG_LEX} (@pxref{Particular Programs, , Particular
1856 Program Checks, autoconf, The Autoconf Manual}), but uses the
1857 @code{missing} script on systems that do not have @code{lex}.
1858 @samp{HP-UX 10} is one such system.
1860 @item AM_PROG_GCJ
1861 This macro finds the @code{gcj} program or causes an error.  It sets
1862 @samp{GCJ} and @samp{GCJFLAGS}.  @code{gcj} is the Java front-end to the
1863 GNU Compiler Collection.
1864 @cvindex AM_PROG_GCJ
1866 @item AM_SYS_POSIX_TERMIOS
1867 @cvindex am_cv_sys_posix_termios
1868 @cindex POSIX termios headers
1869 @cindex termios POSIX headers
1870 Check to see if POSIX termios headers and functions are available on the
1871 system.  If so, set the shell variable @code{am_cv_sys_posix_termios} to
1872 @samp{yes}.  If not, set the variable to @samp{no}.
1874 @item AM_WITH_DMALLOC
1875 @cvindex WITH_DMALLOC
1876 @cindex dmalloc, support for
1877 @opindex --with-dmalloc
1878 Add support for the
1879 @uref{ftp://ftp.letters.com/src/dmalloc/dmalloc.tar.gz, dmalloc}
1880 package.  If the user configures with @samp{--with-dmalloc}, then define
1881 @code{WITH_DMALLOC} and add @samp{-ldmalloc} to @code{LIBS}.
1883 @item AM_WITH_REGEX
1884 @cvindex WITH_REGEX
1885 @opindex --with-regex
1886 @cindex regex package
1887 @cindex rx package
1888 Adds @samp{--with-regex} to the @code{configure} command line.  If
1889 specified (the default), then the @samp{regex} regular expression
1890 library is used, @file{regex.o} is put into @samp{LIBOBJS}, and
1891 @samp{WITH_REGEX} is defined.  If @samp{--without-regex} is given, then
1892 the @samp{rx} regular expression library is used, and @file{rx.o} is put
1893 into @samp{LIBOBJS}.
1895 @end table
1897 @node Private macros
1898 @subsection Private macros
1900 The following macros are private macros you should not call directly.
1901 They are called by the other public macros when appropriate.  Do not
1902 rely on them, as they might be changed in a future version.  Consider
1903 them as implementation details; or better, do not consider them at all:
1904 skip this section!
1906 @table @code
1907 @item _AM_DEPENDENCIES
1908 @itemx AM_SET_DEPDIR
1909 @itemx AM_DEP_TRACK
1910 @itemx AM_OUTPUT_DEPENDENCY_COMMANDS
1911 These macros are used to implement Automake's automatic dependency
1912 tracking scheme.  They are called automatically by automake when
1913 required, and there should be no need to invoke them manually.
1915 @item AM_MAKE_INCLUDE
1916 This macro is used to discover how the user's @code{make} handles
1917 @code{include} statements.  This macro is automatically invoked when
1918 needed; there should be no need to invoke it manually.
1920 @item AM_PROG_INSTALL_STRIP
1921 This is used to find a version of @code{install} which can be used to
1922 @code{strip} a program at installation time.  This macro is
1923 automatically included when required.
1925 @item AM_SANITY_CHECK
1926 This checks to make sure that a file created in the build directory is
1927 newer than a file in the source directory.  This can fail on systems
1928 where the clock is set incorrectly.  This macro is automatically run
1929 from @code{AM_INIT_AUTOMAKE}.
1931 @end table
1934 @node Extending aclocal
1935 @section Writing your own aclocal macros
1937 @cindex aclocal, extending
1938 @cindex Extending aclocal
1940 The @command{aclocal} program doesn't have any built-in knowledge of any
1941 macros, so it is easy to extend it with your own macros.
1943 This can be used by libraries which want to supply their own Autoconf
1944 macros for use by other programs.  For instance the @command{gettext}
1945 library supplies a macro @code{AM_GNU_GETTEXT} which should be used by
1946 any package using @command{gettext}.  When the library is installed, it
1947 installs this macro so that @command{aclocal} will find it.
1949 A macro file's name should end in @file{.m4}.  Such files should be
1950 installed in @file{$(datadir)/aclocal}.  This is as simple as writing:
1952 @example
1953 aclocaldir = $(datadir)/aclocal
1954 aclocal_DATA = mymacro.m4 myothermacro.m4
1955 @end example
1957 A file of macros should be a series of properly quoted
1958 @code{AC_DEFUN}'s (@pxref{Macro Definitions, , , autoconf, The
1959 Autoconf Manual}).  The @command{aclocal} programs also understands
1960 @code{AC_REQUIRE} (@pxref{Prerequisite Macros, , , autoconf, The
1961 Autoconf Manual}), so it is safe to put each macro in a separate file.
1962 Each file should have no side effects but macro definitions.
1963 Especially, any call to @code{AC_PREREQ} should be done inside the
1964 defined macro, not at the beginning of the file.
1966 @cindex underquoted AC_DEFUN
1967 @cvindex AC_DEFUN
1968 @cvindex AC_PREREQ
1970 Starting with Automake 1.8, @command{aclocal} will warn about all
1971 underquoted calls to @code{AC_DEFUN}.  We realize this will annoy a
1972 lot of people, because @command{aclocal} was not so strict in the past
1973 and many third party macros are underquoted; and we have to apologize
1974 for this temporary inconvenience.  The reason we have to be stricter
1975 is that a future implementation of @command{aclocal} (@pxref{Future of
1976 aclocal}) will have to temporary include all these third party
1977 @file{.m4} files, maybe several times, even those which are not
1978 actually needed.  Doing so should alleviate many problem of the
1979 current implementation, however it requires a stricter style from the
1980 macro authors.  Hopefully it is easy to revise the existing macros.
1981 For instance
1982 @example
1983 # bad style
1984 AC_PREREQ(2.57)
1985 AC_DEFUN(AX_FOOBAR,
1986 [AC_REQUIRE([AX_SOMETHING])dnl
1987 AX_FOO
1988 AX_BAR
1990 @end example
1991 @noindent
1992 should be rewritten as
1993 @example
1994 AC_DEFUN([AX_FOOBAR],
1995 [AC_PREREQ(2.57)dnl
1996 AC_REQUIRE([AX_SOMETHING])dnl
1997 AX_FOO
1998 AX_BAR
2000 @end example
2002 Wrapping the @code{AC_PREREQ} call inside the macro ensures that
2003 Autoconf 2.57 will not be required if @code{AX_FOOBAR} is not actually
2004 used.  Most importantly, quoting the first argument of @code{AC_DEFUN}
2005 allows the macro to be redefined or included twice (otherwise this
2006 first argument would be expansed during the second definition).
2008 If you have been directed here by the @command{aclocal} diagnostic but
2009 are not the maintainer of the implicated macro, you will want to
2010 contact the maintainer of that macro.  Please make sure you have the
2011 last version of the macro and that the problem already hasn't been
2012 reported before doing so: people tend to work faster when they aren't
2013 flooded by mails.
2015 Another situation where @command{aclocal} is commonly used is to
2016 manage macros which are used locally by the package, @ref{Local
2017 Macros}.
2019 @node Local Macros
2020 @section Handling Local Macros
2022 Feature tests offered by Autoconf do not cover all needs.  People
2023 often have to supplement existing tests with their own macros, or
2024 with third-party macros.
2026 There are two ways to organize custom macros in a package.
2028 The first possibility (the historical practice) is to list all your
2029 macros in @file{acinclude.m4}.  This file will be included in
2030 @file{aclocal.m4} when you run @command{aclocal}, and its macro(s) will
2031 henceforth be visible to @command{autoconf}.  However if it contains
2032 numerous macros, it will rapidly become difficult to maintain, and it
2033 will be almost impossible to share macros between packages.
2035 @vindex ACLOCAL_AMFLAGS
2036 The second possibility, which we do recommend, is to write each macro
2037 in its own file and gather all these files in a directory.  This
2038 directory is usually called @file{m4/}.  To build @file{aclocal.m4},
2039 one should therefore instruct @command{aclocal} to scan @file{m4/}.
2040 From the command line, this is done with @code{aclocal -I m4}.  The
2041 top-level @file{Makefile.am} should also be updated to define
2043 @example
2044  ACLOCAL_AMFLAGS = -I m4
2045 @end example
2047 @code{ACLOCAL_AMFLAGS} contains options to pass to @command{aclocal}
2048 when @file{aclocal.m4} is to be rebuilt by @code{make}.  This line is
2049 also used by @command{autoreconf} (@pxref{autoreconf Invocation, ,
2050 Using @command{autoreconf} to Update @file{configure} Scripts,
2051 autoconf, The Autoconf Manual}) to run @command{aclocal} with suitable
2052 options, or by @command{autopoint} (@pxref{autopoint Invocation, ,
2053 Invoking the @command{autopoint} Program, gettext, GNU gettext tools})
2054 and @command{gettextize} (@pxref{gettextize Invocation, , Invoking the
2055 @command{gettextize} Program, gettext, GNU gettext tools}) to locate
2056 the place where Gettext's macros should be installed.  So even if you
2057 do not really care about the rebuild rules, you should define
2058 @code{ACLOCAL_AMFLAGS}.
2060 When @code{aclocal -I m4} is run, it will build a @code{aclocal.m4}
2061 that @code{m4_include}s any file from @file{m4/} that defines a
2062 required macro.  Macros not found locally will still be searched in
2063 system-wide directories, as explained in @ref{Macro search path}.
2065 Custom macros should be distributed for the same reason that
2066 @file{configure.ac} is: so that other people have all the sources of
2067 your package if they want to work on it.  Actually, this distribution
2068 happens automatically because all @code{m4_include}d files are
2069 distributed.
2071 However there is no consensus on the distribution of third-party
2072 macros that your package may use.  Many libraries install their own
2073 macro in the system-wide @command{aclocal} directory (@pxref{Extending
2074 aclocal}).  For instance Guile ships with a file called
2075 @file{guile.m4} that contains the macro @code{GUILE_FLAGS} which can
2076 be used to define setup compiler and linker flags appropriate for
2077 using Guile.  Using @code{GUILE_FLAGS} in @file{configure.ac} will
2078 cause @command{aclocal} to copy @file{guile.m4} into
2079 @file{aclocal.m4}, but as @file{guile.m4} is not part of the project,
2080 it will not be distributed.  Technically, that means a user which
2081 needs to rebuild @file{aclocal.m4} will have to install Guile first.
2082 This is probably OK, if Guile already is a requirement to build the
2083 package.  However, if Guile is only an optional feature, or if your
2084 package might run on architectures where Guile cannot be installed,
2085 this requirement will hinder development.  An easy solution is to copy
2086 such third-party macros in your local @file{m4/} directory so they get
2087 distributed.
2089 @node Future of aclocal
2090 @section The Future of @command{aclocal}
2091 @cindex aclocal's scheduled death
2093 @command{aclocal} is expected to disappear.  This feature really
2094 should not be offered by Automake.  Automake should focus on generating
2095 @file{Makefile}s; dealing with M4 macros really is Autoconf's job.
2096 That some people install Automake just to use @command{aclocal}, but
2097 do not use @command{automake} otherwise is an indication of how that
2098 feature is misplaced.
2100 The new implementation will probably be done slightly differently.
2101 For instance it could enforce the @file{m4/}-style layout discussed in
2102 @ref{Local Macros}, and take care of copying (and even updating)
2103 third-party macros from @file{/usr/share/aclocal/} into the local
2104 @file{m4/} directory.
2106 We have no idea when and how this will happen.  This has been
2107 discussed several times in the past, but someone still has to commit
2108 itself to that non-trivial task.
2110 From the user point of view, @command{aclocal}'s removal might turn
2111 out to be painful.  There is a simple precaution that you may take to
2112 make that switch more seamless: never call @command{aclocal} yourself.
2113 Keep this guy under the exclusive control of @command{autoreconf} and
2114 Automake's rebuild rules.  Hopefully you won't need to worry about
2115 things breaking, when @command{aclocal} disappears, because everything
2116 will have been taken care of.  If otherwise you used to call
2117 @command{aclocal} directly yourself or from some script, you will
2118 quickly notice the change.
2120 Many packages come with a script called @file{bootstrap.sh} or
2121 @file{autogen.sh}, that will just call @command{aclocal},
2122 @command{libtoolize}, @command{gettextize} or @command{autopoint},
2123 @command{autoconf}, @command{autoheader}, and @command{automake} in
2124 the right order.  Actually this is precisely what @command{autoreconf}
2125 can do for you.  If your package has such a @file{bootstrap.sh} or
2126 @file{autogen.sh} script, consider using @command{autoreconf}.  That
2127 should simplify its logic a lot (less things to maintain, yum!), it's
2128 even likely you will not need the script anymore, and more to the point
2129 you will not call @command{aclocal} directly anymore.
2131 For the time being, third-party packages should continue to install
2132 public macros into @code{/usr/share/aclocal/}.  If @command{aclocal}
2133 is replaced by another tool it might make sense to rename the
2134 directory, but supporting @code{/usr/share/aclocal/} for backward
2135 compatibility should be really easy provided all macros are properly
2136 written (@pxref{Extending aclocal}).
2139 @node Top level
2140 @chapter The top-level @file{Makefile.am}
2142 @section Recursing subdirectories
2144 @cindex SUBDIRS, explained
2146 In packages with subdirectories, the top level @file{Makefile.am} must
2147 tell Automake which subdirectories are to be built.  This is done via
2148 the @code{SUBDIRS} variable.
2149 @vindex SUBDIRS
2151 The @code{SUBDIRS} variable holds a list of subdirectories in which
2152 building of various sorts can occur.  The rules for many targets
2153 (e.g. @code{all}) in the generated @file{Makefile} will run commands
2154 both locally and in all specified subdirectories.  Note that the
2155 directories listed in @code{SUBDIRS} are not required to contain
2156 @file{Makefile.am}s; only @file{Makefile}s (after configuration).
2157 This allows inclusion of libraries from packages which do not use
2158 Automake (such as @code{gettext}).
2160 In packages that use subdirectories, the top-level @file{Makefile.am} is
2161 often very short.  For instance, here is the @file{Makefile.am} from the
2162 GNU Hello distribution:
2164 @example
2165 EXTRA_DIST = BUGS ChangeLog.O README-alpha
2166 SUBDIRS = doc intl po src tests
2167 @end example
2169 When Automake invokes @code{make} in a subdirectory, it uses the value
2170 of the @code{MAKE} variable.  It passes the value of the variable
2171 @code{AM_MAKEFLAGS} to the @code{make} invocation; this can be set in
2172 @file{Makefile.am} if there are flags you must always pass to
2173 @code{make}.
2174 @vindex MAKE
2175 @vindex MAKEFLAGS
2177 The directories mentioned in @code{SUBDIRS} must be direct children of
2178 the current directory.  For instance, you cannot put @samp{src/subdir}
2179 into @code{SUBDIRS}.  Instead you should put @code{SUBDIRS = subdir}
2180 into @file{src/Makefile.am}.  Automake can be used to construct packages
2181 of arbitrary depth this way.
2183 By default, Automake generates @file{Makefiles} which work depth-first
2184 (@samp{postfix}).  However, it is possible to change this ordering.
2185 You can do this by putting @samp{.} into @code{SUBDIRS}.  For
2186 instance, putting @samp{.}  first will cause a @samp{prefix} ordering
2187 of directories.  All @samp{clean} rules are run in reverse
2188 order of build rules.
2190 @section Conditional subdirectories
2191 @cindex Subdirectories, building conditionally
2192 @cindex Conditional subdirectories
2193 @cindex @code{SUBDIRS}, conditional
2194 @cindex Conditional @code{SUBDIRS}
2196 It is possible to define the @code{SUBDIRS} variable conditionally if,
2197 like in the case of GNU @code{Inetutils}, you want to only build a
2198 subset of the entire package.
2200 To illustrate how this works, let's assume we have two directories
2201 @file{src/} and @file{opt/}.  @file{src/} should always be built, but we
2202 want to decide in @code{./configure} whether @file{opt/} will be built
2203 or not.  (For this example we will assume that @file{opt/} should be
2204 built when the variable @code{$want_opt} was set to @code{yes}.)
2206 Running @code{make} should thus recurse into @file{src/} always, and
2207 then maybe in @file{opt/}.
2209 However @code{make dist} should always recurse into both @file{src/} and
2210 @file{opt/}.  Because @file{opt/} should be distributed even if it is
2211 not needed in the current configuration. This means @file{opt/Makefile}
2212 should be created unconditionally.  @footnote{Don't try seeking a
2213 solution where @file{opt/Makefile} is created conditionally, this is a
2214 lot trickier than the solutions presented here.}
2216 There are two ways to setup a project like this.  You can use Automake
2217 conditionals (@pxref{Conditionals}) or use Autoconf @code{AC_SUBST}
2218 variables (@pxref{Setting Output Variables, , Setting Output Variables,
2219 autoconf, The Autoconf Manual}).  Using Automake conditionals is the
2220 preferred solution.
2222 @subsection Conditional subdirectories with @code{AM_CONDITIONAL}
2223 @cindex @code{SUBDIRS} and @code{AM_CONDITIONAL}
2224 @cindex @code{AM_CONDITIONAL} and @code{SUBDIRS}
2226 @c The test case for the setup described here is
2227 @c     test/subdircond2.test
2228 @c Try to keep it in sync.
2230 @file{configure} should output the @file{Makefile} for each directory
2231 and define a condition into which @file{opt/} should be built.
2233 @example
2234 @dots{}
2235 AM_CONDITIONAL([COND_OPT], [test "$want_opt" = yes])
2236 AC_CONFIG_FILES([Makefile src/Makefile opt/Makefile])
2237 @dots{}
2238 @end example
2240 Then @code{SUBDIRS} can be defined in the top-level @file{Makefile.am}
2241 as follows.
2243 @example
2244 if COND_OPT
2245   MAYBE_OPT = opt
2246 endif
2247 SUBDIRS = src $(MAYBE_OPT)
2248 @end example
2250 As you can see, running @code{make} will rightly recurse into
2251 @file{src/} and maybe @file{opt/}.
2253 @vindex DIST_SUBDIRS
2254 As you can't see, running @code{make dist} will recurse into both
2255 @file{src/} and @file{opt/} directories because @code{make dist}, unlike
2256 @code{make all}, doesn't use the @code{SUBDIRS} variable.  It uses the
2257 @code{DIST_SUBDIRS} variable.
2259 In this case Automake will define @code{DIST_SUBDIRS = src opt}
2260 automatically because it knows that @code{MAYBE_OPT} can contain
2261 @code{opt} in some condition.
2263 @subsection Conditional subdirectories with @code{AC_SUBST}
2264 @cindex @code{SUBDIRS} and @code{AC_SUBST}
2265 @cindex @code{AC_SUBST} and @code{SUBDIRS}
2267 @c The test case for the setup described here is
2268 @c     test/subdircond3.test
2269 @c Try to keep it in sync.
2271 Another idea is to define @code{MAYBE_OPT} from @file{./configure} using
2272 @code{AC_SUBST}:
2274 @example
2275 @dots{}
2276 if test "$want_opt" = yes; then
2277   MAYBE_OPT=opt
2278 else
2279   MAYBE_OPT=
2281 AC_SUBST([MAYBE_OPT])
2282 AC_CONFIG_FILES([Makefile src/Makefile opt/Makefile])
2283 @dots{}
2284 @end example
2286 In this case the top-level @file{Makefile.am} should look as follows.
2288 @example
2289 SUBDIRS = src $(MAYBE_OPT)
2290 DIST_SUBDIRS = src opt
2291 @end example
2293 The drawback is that since Automake cannot guess what the possible
2294 values of @code{MAYBE_OPT} are, it is necessary to define
2295 @code{DIST_SUBDIRS}.
2297 @subsection How @code{DIST_SUBDIRS} is used
2298 @cindex @code{DIST_SUBDIRS}, explained
2300 As shown in the above examples, @code{DIST_SUBDIRS} is used in rules
2301 that need to recurse in all directories, even those which have been
2302 conditionally left out of the build.
2304 Precisely, @code{DIST_SUBDIRS} is used by @code{make dist}, @code{make
2305 distclean}, and @code{make maintainer-clean}.  All other recursive
2306 rules use @code{SUBDIRS}.
2308 Automake will define @code{DIST_SUBDIRS} automatically from the
2309 possibles values of @code{SUBDIRS} in all conditions.
2311 If @code{SUBDIRS} contains @code{AC_SUBST} variables,
2312 @code{DIST_SUBDIRS} will not be defined correctly because Automake
2313 doesn't know the possible values of these variables.  In this case
2314 @code{DIST_SUBDIRS} needs to be defined manually.
2317 @node Alternative
2318 @chapter An Alternative Approach to Subdirectories
2320 If you've ever read Peter Miller's excellent paper,
2321 @uref{http://www.pcug.org.au/~millerp/rmch/recu-make-cons-harm.html,
2322 Recursive Make Considered Harmful}, the preceding section on the use of
2323 subdirectories will probably come as unwelcome advice.  For those who
2324 haven't read the paper, Miller's main thesis is that recursive
2325 @code{make} invocations are both slow and error-prone.
2327 Automake provides sufficient cross-directory support @footnote{We
2328 believe.  This work is new and there are probably warts.
2329 @xref{Introduction}, for information on reporting bugs.} to enable you
2330 to write a single @file{Makefile.am} for a complex multi-directory
2331 package.
2334 By default an installable file specified in a subdirectory will have its
2335 directory name stripped before installation.  For instance, in this
2336 example, the header file will be installed as
2337 @file{$(includedir)/stdio.h}:
2339 @example
2340 include_HEADERS = inc/stdio.h
2341 @end example
2343 @cindex nobase_
2344 @cindex Path stripping, avoiding
2345 @cindex Avoiding path stripping
2347 However, the @samp{nobase_} prefix can be used to circumvent this path
2348 stripping.  In this example, the header file will be installed as
2349 @file{$(includedir)/sys/types.h}:
2351 @example
2352 nobase_include_HEADERS = sys/types.h
2353 @end example
2355 @cindex nobase_ and dist_ or nodist_
2356 @cindex dist_ and nobase_
2357 @cindex nodist_ and nobase_
2359 @samp{nobase_} should be specified first when used in conjunction with
2360 either @samp{dist_} or @samp{nodist_} (@pxref{Dist}).  For instance:
2362 @example
2363 nobase_dist_pkgdata_DATA = images/vortex.pgm
2364 @end example
2366 @node Programs
2367 @chapter Building Programs and Libraries
2369 A large part of Automake's functionality is dedicated to making it easy
2370 to build programs and libraries.
2372 @menu
2373 * A Program::                   Building a program
2374 * A Library::                   Building a library
2375 * A Shared Library::            Building a Libtool library
2376 * Program and Library Variables::  Variables controlling program and
2377                                 library builds
2378 * Default _SOURCES::            Default source files
2379 * LIBOBJS::                     Special handling for LIBOBJS and ALLOCA
2380 * Program variables::           Variables used when building a program
2381 * Yacc and Lex::                Yacc and Lex support
2382 * C++ Support::                 Compiling C++ sources
2383 * Assembly Support::            Compiling assembly sources
2384 * Fortran 77 Support::          Compiling Fortran 77 sources
2385 * Fortran 9x Support::          Compiling Fortran 9x sources
2386 * Java Support::                Compiling Java sources
2387 * Support for Other Languages::  Compiling other languages
2388 * ANSI::                        Automatic de-ANSI-fication
2389 * Dependencies::                Automatic dependency tracking
2390 * EXEEXT::                      Support for executable extensions
2391 @end menu
2394 @node A Program
2395 @section Building a program
2397 In order to build a program, you need to tell Automake which sources
2398 are part of it, and which libraries it should be linked with.
2400 This section also covers conditional compilation of sources or
2401 programs.  Most of the comments about these also apply to libraries
2402 (@pxref{A Library}) and libtool libraries (@pxref{A Shared Library}).
2404 @menu
2405 * Program Sources::             Defining program sources
2406 * Linking::                     Linking with libraries or extra objects
2407 * Conditional Sources::         Handling conditional sources
2408 * Conditional Programs::        Building program conditionally
2409 @end menu
2411 @node Program Sources
2412 @subsection Defining program sources
2414 @cindex PROGRAMS, bindir
2415 @vindex bin_PROGRAMS
2416 @vindex sbin_PROGRAMS
2417 @vindex libexec_PROGRAMS
2418 @vindex pkglib_PROGRAMS
2419 @vindex noinst_PROGRAMS
2420 @vindex check_PROGRAMS
2422 In a directory containing source that gets built into a program (as
2423 opposed to a library or a script), the @samp{PROGRAMS} primary is used.
2424 Programs can be installed in @code{bindir}, @code{sbindir},
2425 @code{libexecdir}, @code{pkglibdir}, or not at all (@samp{noinst}).
2426 They can also be built only for @code{make check}, in which case the
2427 prefix is @samp{check}.
2429 For instance:
2431 @example
2432 bin_PROGRAMS = hello
2433 @end example
2435 In this simple case, the resulting @file{Makefile.in} will contain code
2436 to generate a program named @code{hello}.
2438 Associated with each program are several assisting variables which are
2439 named after the program.  These variables are all optional, and have
2440 reasonable defaults.  Each variable, its use, and default is spelled out
2441 below; we use the ``hello'' example throughout.
2443 The variable @code{hello_SOURCES} is used to specify which source files
2444 get built into an executable:
2446 @example
2447 hello_SOURCES = hello.c version.c getopt.c getopt1.c getopt.h system.h
2448 @end example
2450 This causes each mentioned @samp{.c} file to be compiled into the
2451 corresponding @samp{.o}.  Then all are linked to produce @file{hello}.
2453 @cindex _SOURCES primary, defined
2454 @cindex SOURCES primary, defined
2455 @cindex Primary variable, SOURCES
2457 If @samp{hello_SOURCES} is not specified, then it defaults to the single
2458 file @file{hello.c} (@pxref{Default _SOURCES}).
2459 @vindex _SOURCES
2460 @vindex SOURCES
2462 Multiple programs can be built in a single directory.  Multiple programs
2463 can share a single source file, which must be listed in each
2464 @samp{_SOURCES} definition.
2466 @cindex Header files in _SOURCES
2467 @cindex _SOURCES and header files
2469 Header files listed in a @samp{_SOURCES} definition will be included in
2470 the distribution but otherwise ignored.  In case it isn't obvious, you
2471 should not include the header file generated by @file{configure} in a
2472 @samp{_SOURCES} variable; this file should not be distributed.  Lex
2473 (@samp{.l}) and Yacc (@samp{.y}) files can also be listed; see @ref{Yacc
2474 and Lex}.
2477 @node Linking
2478 @subsection Linking the program
2480 If you need to link against libraries that are not found by
2481 @code{configure}, you can use @code{LDADD} to do so.  This variable is
2482 used to specify additional objects or libraries to link with; it is
2483 inappropriate for specifying specific linker flags, you should use
2484 @code{AM_LDFLAGS} for this purpose.
2485 @vindex LDADD
2486 @vindex AM_LDFLAGS
2488 @cindex prog_LDADD, defined
2490 Sometimes, multiple programs are built in one directory but do not share
2491 the same link-time requirements.  In this case, you can use the
2492 @samp{@var{prog}_LDADD} variable (where @var{prog} is the name of the
2493 program as it appears in some @samp{_PROGRAMS} variable, and usually
2494 written in lowercase) to override the global @code{LDADD}.  If this
2495 variable exists for a given program, then that program is not linked
2496 using @code{LDADD}.
2497 @vindex _LDADD
2499 For instance, in GNU cpio, @code{pax}, @code{cpio} and @code{mt} are
2500 linked against the library @file{libcpio.a}.  However, @code{rmt} is
2501 built in the same directory, and has no such link requirement.  Also,
2502 @code{mt} and @code{rmt} are only built on certain architectures.  Here
2503 is what cpio's @file{src/Makefile.am} looks like (abridged):
2505 @example
2506 bin_PROGRAMS = cpio pax $(MT)
2507 libexec_PROGRAMS = $(RMT)
2508 EXTRA_PROGRAMS = mt rmt
2510 LDADD = ../lib/libcpio.a $(INTLLIBS)
2511 rmt_LDADD =
2513 cpio_SOURCES = @dots{}
2514 pax_SOURCES = @dots{}
2515 mt_SOURCES = @dots{}
2516 rmt_SOURCES = @dots{}
2517 @end example
2519 @cindex _LDFLAGS, defined
2521 @samp{@var{prog}_LDADD} is inappropriate for passing program-specific
2522 linker flags (except for @samp{-l}, @samp{-L}, @samp{-dlopen} and
2523 @samp{-dlpreopen}).  So, use the @samp{@var{prog}_LDFLAGS} variable for
2524 this purpose.
2525 @vindex _LDFLAGS
2527 @cindex _DEPENDENCIES, defined
2529 It is also occasionally useful to have a program depend on some other
2530 target which is not actually part of that program.  This can be done
2531 using the @samp{@var{prog}_DEPENDENCIES} variable.  Each program depends
2532 on the contents of such a variable, but no further interpretation is
2533 done.
2535 If @samp{@var{prog}_DEPENDENCIES} is not supplied, it is computed by
2536 Automake.  The automatically-assigned value is the contents of
2537 @samp{@var{prog}_LDADD}, with most configure substitutions, @samp{-l},
2538 @samp{-L}, @samp{-dlopen} and @samp{-dlpreopen} options removed.  The
2539 configure substitutions that are left in are only @samp{$(LIBOBJS)} and
2540 @samp{$(ALLOCA)}; these are left because it is known that they will not
2541 cause an invalid value for @samp{@var{prog}_DEPENDENCIES} to be
2542 generated.
2545 @node Conditional Sources
2546 @subsection Conditional compilation of sources
2548 You can't put a configure substitution (e.g., @samp{@@FOO@@} or
2549 @samp{$(FOO)} where @code{FOO} is defined via @code{AC_SUBST}) into a
2550 @samp{_SOURCES} variable.  The reason for this is a bit hard to
2551 explain, but suffice to say that it simply won't work.  Automake will
2552 give an error if you try to do this.
2554 Fortunately there are two other ways to achieve the same result.  One is
2555 to use configure substitutions in @code{_LDADD} variables, the other is
2556 to use an Automake conditional.
2558 @subsubsection Conditional compilation using @code{_LDADD} substitutions
2560 @cindex EXTRA_prog_SOURCES, defined
2562 Automake must know all the source files that could possibly go into a
2563 program, even if not all the files are built in every circumstance.  Any
2564 files which are only conditionally built should be listed in the
2565 appropriate @samp{EXTRA_} variable.  For instance, if
2566 @file{hello-linux.c} or @file{hello-generic.c} were conditionally included
2567 in @code{hello}, the @file{Makefile.am} would contain:
2569 @example
2570 bin_PROGRAMS = hello
2571 hello_SOURCES = hello-common.c
2572 EXTRA_hello_SOURCES = hello-linux.c hello-generic.c
2573 hello_LDADD = $(HELLO_SYSTEM)
2574 hello_DEPENDENCIES = $(HELLO_SYSTEM)
2575 @end example
2577 @noindent
2578 You can then setup the @code{$(HELLO_SYSTEM)} substitution from
2579 @file{configure.ac}:
2581 @example
2582 @dots{}
2583 case $host in
2584   *linux*) HELLO_SYSTEM='hello-linux.$(OBJEXT)' ;;
2585   *)       HELLO_SYSTEM='hello-generic.$(OBJEXT)' ;;
2586 esac
2587 AC_SUBST([HELLO_SYSTEM])
2588 @dots{}
2589 @end example
2591 In this case, @code{HELLO_SYSTEM} should be replaced by
2592 @file{hello-linux.o} or @file{hello-generic.o}, and added to
2593 @code{hello_DEPENDENCIES} and @code{hello_LDADD} in order to be built
2594 and linked in.
2596 @subsubsection Conditional compilation using Automake conditionals
2598 An often simpler way to compile source files conditionally is to use
2599 Automake conditionals.  For instance, you could use this
2600 @file{Makefile.am} construct to build the same @file{hello} example:
2602 @example
2603 bin_PROGRAMS = hello
2604 if LINUX
2605 hello_SOURCES = hello-linux.c hello-common.c
2606 else
2607 hello_SOURCES = hello-generic.c hello-common.c
2608 endif
2609 @end example
2611 In this case, your @file{configure.ac} should setup the @code{LINUX}
2612 conditional using @code{AM_CONDITIONAL} (@pxref{Conditionals}).
2614 When using conditionals like this you don't need to use the
2615 @samp{EXTRA_} variable, because Automake will examine the contents of
2616 each variable to construct the complete list of source files.
2618 If your program uses a lot of files, you will probably prefer a
2619 conditional @code{+=}.
2621 @example
2622 bin_PROGRAMS = hello
2623 hello_SOURCES = hello-common.c
2624 if LINUX
2625 hello_SOURCES += hello-linux.c
2626 else
2627 hello_SOURCES += hello-generic.c
2628 endif
2629 @end example
2631 @node Conditional Programs
2632 @subsection Conditional compilation of programs
2633 @cindex Conditional programs
2634 @cindex Programs, conditional
2636 Sometimes it is useful to determine the programs that are to be built
2637 at configure time.  For instance, GNU @code{cpio} only builds
2638 @code{mt} and @code{rmt} under special circumstances.  The means to
2639 achieve conditional compilation of programs are the same you can use
2640 to compile source files conditionally: substitutions or conditionals.
2642 @subsubsection Conditional programs using @code{configure} substitutions
2644 In this case, you must notify Automake of all the programs that can
2645 possibly be built, but at the same time cause the generated
2646 @file{Makefile.in} to use the programs specified by @code{configure}.
2647 This is done by having @code{configure} substitute values into each
2648 @samp{_PROGRAMS} definition, while listing all optionally built programs
2649 in @code{EXTRA_PROGRAMS}.
2650 @vindex EXTRA_PROGRAMS
2651 @cindex EXTRA_PROGRAMS, defined
2653 @example
2654 bin_PROGRAMS = cpio pax $(MT)
2655 libexec_PROGRAMS = $(RMT)
2656 EXTRA_PROGRAMS = mt rmt
2657 @end example
2659 As explained in @ref{EXEEXT}, Automake will rewrite
2660 @code{bin_PROGRAMS}, @code{libexec_PROGRAMS}, and
2661 @code{EXTRA_PROGRAMS}, appending @code{$(EXEEXT)} to each binary.
2662 Obviously it cannot rewrite values obtained at run-time through
2663 @code{configure} substitutions, therefore you should take care of
2664 appending @code{$(EXEEXT)} yourself, as in @code{AC_SUBST([MT],
2665 ['mt$@{EXEEXT@}'])}.
2667 @subsubsection Conditional programs using Automake conditionals
2669 You can also use Automake conditionals (@pxref{Conditionals}) to
2670 select programs to be built.  In this case you don't have to worry
2671 about @code{$(EXEEXT)} or @code{EXTRA_PROGRAMS}.
2673 @example
2674 bin_PROGRAMS = cpio pax
2675 if WANT_MT
2676   bin_PROGRAMS += mt
2677 endif
2678 if WANT_RMT
2679   libexec_PROGRAMS = rmt
2680 endif
2681 @end example
2684 @node A Library
2685 @section Building a library
2687 @cindex _LIBRARIES primary, defined
2688 @cindex LIBRARIES primary, defined
2689 @cindex Primary variable, LIBRARIES
2691 @vindex lib_LIBRARIES
2692 @vindex pkglib_LIBRARIES
2693 @vindex noinst_LIBRARIES
2695 Building a library is much like building a program.  In this case, the
2696 name of the primary is @samp{LIBRARIES}.  Libraries can be installed in
2697 @code{libdir} or @code{pkglibdir}.
2699 @xref{A Shared Library}, for information on how to build shared
2700 libraries using libtool and the @samp{LTLIBRARIES} primary.
2702 Each @samp{_LIBRARIES} variable is a list of the libraries to be built.
2703 For instance to create a library named @file{libcpio.a}, but not install
2704 it, you would write:
2706 @example
2707 noinst_LIBRARIES = libcpio.a
2708 @end example
2710 The sources that go into a library are determined exactly as they are
2711 for programs, via the @samp{_SOURCES} variables.  Note that the library
2712 name is canonicalized (@pxref{Canonicalization}), so the @samp{_SOURCES}
2713 variable corresponding to @file{liblob.a} is @samp{liblob_a_SOURCES},
2714 not @samp{liblob.a_SOURCES}.
2716 @cindex _LIBADD primary, defined
2717 @cindex LIBADD primary, defined
2718 @cindex Primary variable, LIBADD
2720 Extra objects can be added to a library using the
2721 @samp{@var{library}_LIBADD} variable.  This should be used for objects
2722 determined by @code{configure}.  Again from @code{cpio}:
2723 @vindex _LIBADD
2724 @vindex LIBADD
2726 @example
2727 libcpio_a_LIBADD = $(LIBOBJS) $(ALLOCA)
2728 @end example
2730 In addition, sources for extra objects that will not exist until
2731 configure-time must be added to the @code{BUILT_SOURCES} variable
2732 (@pxref{Sources}).
2734 Building a static library is done by compiling all object files, then
2735 by invoking @code{$(AR) $(ARFLAGS)} followed by the name of the
2736 library and the list of objects, and finally by calling
2737 @code{$(RANLIB)} on that library.  You should call
2738 @code{AC_PROG_RANLIB} from your @file{configure.ac} to define
2739 @code{RANLIB} (Automake will complain otherwise).  @code{AR} and
2740 @code{ARFLAGS} default to @code{ar} and @code{cru} respectively; you
2741 can override these two variables my setting them in your
2742 @file{Makefile.am}, by @code{AC_SUBST}ing them from your
2743 @file{configure.ac}, or by defining a per-library @code{maude_AR}
2744 variable (@pxref{Program and Library Variables}).
2746 @node A Shared Library
2747 @section Building a Shared Library
2749 @cindex Shared libraries, support for
2751 Building shared libraries portably is a relatively complex matter.
2752 For this reason, GNU Libtool (@pxref{Top, , Introduction, libtool, The
2753 Libtool Manual}) was created to help build shared libraries in a
2754 platform-independent way.
2756 @menu
2757 * Libtool Concept::             Introducing Libtool
2758 * Libtool Libraries::           Declaring Libtool Libraries
2759 * Conditional Libtool Libraries::  Building Libtool Libraries Conditionally
2760 * Conditional Libtool Sources::  Choosing Library Sources Conditionally
2761 * Libtool Convenience Libraries::  Building Convenience Libtool Libraries
2762 * Libtool Modules::             Building Libtool Modules
2763 * Libtool Flags::               Using _LIBADD and _LDFLAGS
2764 * LTLIBOBJ::                    Using $(LTLIBOBJ)
2765 * Libtool Issues::              Common Issues Related to Libtool's Use
2766 @end menu
2768 @node Libtool Concept
2769 @subsection The Libtool Concept
2771 @cindex libtool, introduction
2772 @cindex libtool library, definition
2773 @cindex suffix .la, defined
2774 @cindex .la suffix, defined
2776 Libtool abstracts shared and static libraries into a unified
2777 concept henceforth called @dfn{libtool libraries}.  Libtool libraries
2778 are files using the @file{.la} suffix, and can designate a static
2779 library, a shared library, or maybe both.  Their exact nature cannot
2780 be determined until @file{./configure} is run: not all platforms
2781 support all kinds of libraries, and users can explicitly select which
2782 libraries should be built.  (However the package's maintainers can
2783 tune the default, @xref{AC_PROG_LIBTOOL, , The @code{AC_PROG_LIBTOOL}
2784 macro, libtool, The Libtool Manual}.)
2786 @cindex suffix .lo, defined
2787 Because object files for shared and static libraries must be compiled
2788 differently, libtool is also used during compilation.  Object files
2789 built by libtool are called @dfn{libtool objects}: these are files
2790 using the @file{.lo} suffix.  Libtool libraries are built from these
2791 libtool objects.
2793 You should not assume anything about the structure of @file{.la} or
2794 @file{.lo} files and how libtool constructs them: this is libtool's
2795 concern, and the last thing one wants is to learn about libtool's
2796 guts.  However the existence of these files matters, because they are
2797 used as targets and dependencies in @file{Makefile}s rules when
2798 building libtool libraries.  There are situations where you may have
2799 to refer to these, for instance when expressing dependencies for
2800 building source files conditionally (@pxref{Conditional Libtool
2801 Sources}).
2803 @cindex libltdl, introduction
2805 People considering writing a plug-in system, with dynamically loaded
2806 modules, should look into @file{libltdl}: libtool's dlopening library
2807 (@pxref{Using libltdl, , Using libltdl, libtool, The Libtool Manual}).
2808 This offers a portable dlopening facility to load libtool libraries
2809 dynamically, and can also achieve static linking where unavoidable.
2811 Before we discuss how to use libtool with Automake in details, it
2812 should be noted that the libtool manual also has a section about how
2813 to use Automake with libtool (@pxref{Using Automake, , Using Automake
2814 with Libtool, libtool, The Libtool Manual}).
2816 @node Libtool Libraries
2817 @subsection Building Libtool Libraries
2819 @cindex _LTLIBRARIES primary, defined
2820 @cindex LTLIBRARIES primary, defined
2821 @cindex Primary variable, LTLIBRARIES
2822 @cindex Example of shared libraries
2823 @vindex lib_LTLIBRARIES
2824 @vindex pkglib_LTLIBRARIES
2826 Automake uses libtool to build libraries declared with the
2827 @samp{LTLIBRARIES} primary.  Each @samp{_LTLIBRARIES} variable is a
2828 list of libtool libraries to build.  For instance, to create a libtool
2829 library named @file{libgettext.la}, and install it in @samp{libdir},
2830 write:
2832 @example
2833 lib_LTLIBRARIES = libgettext.la
2834 libgettext_la_SOURCES = gettext.c gettext.h @dots{}
2835 @end example
2837 Automake predefines the variable @samp{pkglibdir}, so you can use
2838 @code{pkglib_LTLIBRARIES} to install libraries in
2839 @code{$(libdir)/@@PACKAGE@@/}.
2841 @node Conditional Libtool Libraries
2842 @subsection Building Libtool Libraries Conditionally
2843 @cindex libtool libraries, conditional
2844 @cindex conditional libtool libraries
2846 Like conditional programs (@pxref{Conditional Programs}), there are
2847 two main ways to build conditional libraries: using Automake
2848 conditionals or using Autoconf @code{AC_SUBST}itutions.
2850 The important implementation detail you have to be aware of is that
2851 the place where a library will be installed matters to libtool: it
2852 needs to be indicated @emph{at link-time} using the @code{-rpath}
2853 option.
2855 For libraries whose destination directory is known when Automake runs,
2856 Automake will automatically supply the appropriate @samp{-rpath}
2857 option to libtool. This is the case for libraries listed explicitly in
2858 some installable @code{_LTLIBRARIES} variables such as
2859 @code{lib_LTLIBRARIES}.
2861 However, for libraries determined at configure time (and thus
2862 mentioned in @code{EXTRA_LTLIBRARIES}), Automake does not know the
2863 final installation directory.  For such libraries you must add the
2864 @samp{-rpath} option to the appropriate @samp{_LDFLAGS} variable by
2865 hand.
2867 The examples below illustrate the differences between these two methods.
2869 Here is an example where @code{$(WANTEDLIBS)} is an @code{AC_SUBST}ed
2870 variable set at @file{./configure}-time to either @file{libfoo.la},
2871 @file{libbar.la}, both, or none.  Although @code{$(WANTEDLIBS)}
2872 appears in the @code{lib_LTLIBRARIES}, Automake cannot guess it
2873 relates to @file{libfoo.la} or @file{libbar.la} by the time it creates
2874 the link rule for these two libraries.  Therefore the @code{-rpath}
2875 argument must be explicitly supplied.
2877 @example
2878 EXTRA_LTLIBRARIES = libfoo.la libbar.la
2879 lib_LTLIBRARIES = $(WANTEDLIBS)
2880 libfoo_la_SOURCES = foo.c @dots{}
2881 libfoo_la_LDFLAGS = -rpath '$(libdir)'
2882 libbar_la_SOURCES = bar.c @dots{}
2883 libbar_la_LDFLAGS = -rpath '$(libdir)'
2884 @end example
2886 Here is how the same @file{Makefile.am} would look using Automake
2887 conditionals named @code{WANT_LIBFOO} and @code{WANT_LIBBAR}.  Now
2888 Automake is able to compute the @code{-rpath} setting itself, because
2889 it's clear that both libraries will end up in @code{$(libdir)} if they
2890 are installed.
2892 @example
2893 lib_LTLIBRARIES =
2894 if WANT_LIBFOO
2895 lib_LTLIBRARIES += libfoo.la
2896 endif
2897 if WANT_LIBBAR
2898 lib_LTLIBRARIES += libbar.la
2899 endif
2900 libfoo_la_SOURCES = foo.c @dots{}
2901 libbar_la_SOURCES = bar.c @dots{}
2902 @end example
2904 @node Conditional Libtool Sources
2905 @subsection Libtool Libraries with Conditional Sources
2907 Conditional compilation of sources in a library can be achieved in the
2908 same way as conditional compilation of sources in a program
2909 (@pxref{Conditional Sources}).  The only difference is that
2910 @code{_LIBADD} should be used instead of @code{_LDADD} and that it
2911 should mention libtool objects (@file{.lo} files).
2913 So, to mimic the @file{hello} example from @ref{Conditional Sources},
2914 we could build a @file{libhello.la} library using either
2915 @file{hello-linux.c} or @file{hello-generic.c} with the following
2916 @file{Makefile.am}.
2918 @example
2919 lib_LTLIBRARIES = libhello.la
2920 libhello_la_SOURCES = hello-common.c
2921 EXTRA_libhello_la_SOURCES = hello-linux.c hello-generic.c
2922 libhello_la_LIBADD = $(HELLO_SYSTEM)
2923 libhello_la_DEPENDENCIES = $(HELLO_SYSTEM)
2924 @end example
2926 @noindent
2927 And make sure @code{$(HELLO_SYSTEM)} is set to either
2928 @file{hello-linux.lo} or @file{hello-generic.lo} in
2929 @file{./configure}.
2931 Or we could simply use an Automake conditional as follows.
2933 @example
2934 lib_LTLIBRARIES = libhello.la
2935 libhello_la_SOURCES = hello-common.c
2936 if LINUX
2937 libhello_la_SOURCES += hello-linux.c
2938 else
2939 libhello_la_SOURCES += hello-generic.c
2940 endif
2941 @end example
2943 @node Libtool Convenience Libraries
2944 @subsection Libtool Convenience Libraries
2945 @cindex convenience libraries, libtool
2946 @cindex libtool convenience libraries
2947 @vindex noinst_LTLIBRARIES
2948 @vindex check_LTLIBRARIES
2950 Sometimes you want to build libtool libraries which should not be
2951 installed.  These are called @dfn{libtool convenience libraries} and
2952 are typically used to encapsulate many sublibraries, later gathered
2953 into one big installed library.
2955 Libtool convenience libraries are declared by
2956 @code{noinst_LTLIBRARIES}, @code{check_LTLIBRARIES}, or even
2957 @code{EXTRA_LTLIBRARIES}.  Unlike installed libtool libraries they do
2958 not need an @code{-rpath} flag at link time (actually this is the only
2959 difference).
2961 Convenience libraries listed in @code{noinst_LTLIBRARIES} are always
2962 built.  Those listed in @code{check_LTLIBRARIES} are built only upon
2963 @code{make check}.  Finally, libraries listed in
2964 @code{EXTRA_LTLIBRARIES} are never built explicitly: Automake outputs
2965 rules to build them, but if the library does not appear as a Makefile
2966 dependency anywhere it won't be built (this is why
2967 @code{EXTRA_LTLIBRARIES} is used for conditional compilation).
2969 Here is a sample setup merging libtool convenience libraries from
2970 subdirectories into one main @file{libtop.la} library.
2972 @example
2973 # -- Top-level Makefile.am --
2974 SUBDIRS = sub1 sub2 @dots{}
2975 lib_LTLIBRARIES = libtop.la
2976 libtop_la_SOURCES =
2977 libtop_la_LIBADD = \
2978   sub1/libsub1.la \
2979   sub2/libsub2.la \
2980   @dots{}
2982 # -- sub1/Makefile.am --
2983 noinst_LTLIBRARIES = libsub1.la
2984 libsub1_la_SOURCES = @dots{}
2986 # -- sub2/Makefile.am --
2987 # showing nested convenience libraries
2988 SUBDIRS = sub2.1 sub2.2 @dots{}
2989 noinst_LTLIBRARIES = libsub2.la
2990 libsub2_la_SOURCES =
2991 libsub2_la_LIBADD = \
2992   sub21/libsub21.la \
2993   sub22/libsub22.la \
2994   @dots{}
2995 @end example
2997 @node Libtool Modules
2998 @subsection Libtool Modules
2999 @cindex modules, libtool
3000 @cindex libtool modules
3001 @cindex -module, libtool
3003 These are libtool libraries meant to be dlopened.  They are
3004 indicated to libtool by passing @code{-module} at link-time.
3006 @example
3007 pkglib_LTLIBRARIES = mymodule.la
3008 mymodule_la_SOURCES = doit.c
3009 mymodule_LDFLAGS = -module
3010 @end example
3012 Ordinarily, Automake requires that a Library's name starts with
3013 @samp{lib}.  However, when building a dynamically loadable module you
3014 might wish to use a "nonstandard" name.
3016 If @samp{mymodule_la_SOURCES} is not specified, then it defaults to the single
3017 file @file{mymodule.c} (@pxref{Default _SOURCES}).
3019 @node Libtool Flags
3020 @subsection _LIBADD and _LDFLAGS
3021 @cindex _LIBADD, libtool
3022 @cindex _LDFLAGS, libtool
3024 As shown in previous sections, the @samp{@var{library}_LIBADD}
3025 variable should be used to list extra libtool objects (@file{.lo}
3026 files) or libtool libraries (@file{.la}) to add to @var{library}.
3028 The @samp{@var{library}_LDFLAGS} variable is the place to list
3029 additional libtool flags, such as @samp{-version-info},
3030 @samp{-static}, and a lot more.  See @xref{Link mode, , Using libltdl,
3031 libtool, The Libtool Manual}.
3033 @node LTLIBOBJ, Libtool Issues, Libtool Flags, A Shared Library
3034 @subsection @code{LTLIBOBJS}
3035 @cindex @code{LTLIBOBJS}, special handling
3036 @vindex LTLIBOBJS
3037 @vindex LIBOBJS
3038 @cvindex AC_LIBOBJ
3040 Where an ordinary library might include @code{$(LIBOBJS)}, a libtool
3041 library must use @code{$(LTLIBOBJS)}.  This is required because the
3042 object files that libtool operates on do not necessarily end in
3043 @file{.o}.
3045 Nowadays, the computation of @code{LTLIBOBJS} from @code{LIBOBJS} is
3046 performed automatically by Autoconf (@pxref{AC_LIBOBJ vs LIBOBJS, ,
3047 @code{AC_LIBOBJ} vs. @code{LIBOBJS}, autoconf, The Autoconf Manual}).
3049 @node Libtool Issues
3050 @subsection Common Issues Related to Libtool's Use
3052 @subsubsection @code{required file `./ltmain.sh' not found}
3053 @cindex ltmain.sh not found
3054 @cindex libtoolize, no longer run by Automake
3055 @cindex libtoolize and autoreconf
3056 @cindex autoreconf and libtoolize
3057 @cindex bootstrap.sh and autoreconf
3058 @cindex autogen.sh and autoreconf
3060 Libtool comes with a tool called @command{libtoolize} that will
3061 install libtool's supporting files into a package.  Running this
3062 command will install @file{ltmain.sh}.  You should execute it before
3063 @command{aclocal} and @command{automake}.
3065 People upgrading old packages to newer autotools are likely to face
3066 this issue because older Automake versions used to call
3067 @command{libtoolize}.  Therefore old build scripts do not call
3068 @command{libtoolize}.
3070 Since Automake 1.6, it has been decided that running
3071 @command{libtoolize} was none of Automake's business.  Instead, that
3072 functionality has been moved into the @command{autoreconf} command
3073 (@pxref{autoreconf Invocation, , Using @command{autoreconf}, autoconf,
3074 The Autoconf Manual}).  If you do not want to remember what to run and
3075 when, just learn the @command{autoreconf} command.  Hopefully,
3076 replacing existing @file{bootstrap.sh} or @file{autogen.sh} scripts by
3077 a call to @command{autoreconf} should also free you from any similar
3078 incompatible change in the future.
3080 @subsubsection Objects @code{created with both libtool and without}
3082 Sometimes, the same source file is used both to build a libtool
3083 library and to build another non-libtool target (be it a program or
3084 another library).
3086 Let's consider the following @file{Makefile.am}.
3088 @example
3089 bin_PROGRAMS = prog
3090 prog_SOURCES = prog.c foo.c @dots{}
3092 lib_LTLIBRARIES = libfoo.la
3093 libfoo_la_SOURCES = foo.c @dots{}
3094 @end example
3096 @noindent
3097 (In this trivial case the issue could be avoided by linking
3098 @file{libfoo.la} with @file{prog} instead of listing @file{foo.c} in
3099 @code{prog_SOURCES}.  But let's assume we really want to keep
3100 @file{prog} and @file{libfoo.la} separate.)
3102 Technically, it means that we should build @file{foo.$(OBJEXT)} for
3103 @file{prog}, and @file{foo.lo} for @file{libfoo.la}.  The problem is
3104 that in the course of creating @file{foo.lo}, libtool may erase (or
3105 replace) @file{foo.$(OBJEXT)} -- and this cannot be avoided.
3107 Therefore, when Automake detects this situation it will complain
3108 with a message such as
3109 @example
3110 object `foo.$(OBJEXT)' created both with libtool and without
3111 @end example
3113 A workaround for this issue is to ensure that these two objects get
3114 different basenames.  As explained in @ref{renamed objects}, this
3115 happens automatically when per-targets flags are used.
3117 @example
3118 bin_PROGRAMS = prog
3119 prog_SOURCES = prog.c foo.c @dots{}
3120 prog_CFLAGS = $(AM_CFLAGS)
3122 lib_LTLIBRARIES = libfoo.la
3123 libfoo_la_SOURCES = foo.c @dots{}
3124 @end example
3126 @noindent
3127 Adding @code{prog_CFLAGS = $(AM_CFLAGS)} is almost a no-op, because
3128 when the @code{prog_CFLAGS} is defined, it is used instead of
3129 @code{AM_CFLAGS}.  However as a side effect it will cause
3130 @file{prog.c} and @file{foo.c} to be compiled as
3131 @file{prog-prog.$(OBJEXT)} and @file{prog-foo.$(OBJEXT)} which solves
3132 the issue.
3134 @node Program and Library Variables
3135 @section Program and Library Variables
3137 Associated with each program are a collection of variables which can be
3138 used to modify how that program is built.  There is a similar list of
3139 such variables for each library.  The canonical name of the program (or
3140 library) is used as a base for naming these variables.
3142 In the list below, we use the name ``maude'' to refer to the program or
3143 library.  In your @file{Makefile.am} you would replace this with the
3144 canonical name of your program.  This list also refers to ``maude'' as a
3145 program, but in general the same rules apply for both static and dynamic
3146 libraries; the documentation below notes situations where programs and
3147 libraries differ.
3149 @table @samp
3150 @item maude_SOURCES
3151 This variable, if it exists, lists all the source files which are
3152 compiled to build the program.  These files are added to the
3153 distribution by default.  When building the program, Automake will cause
3154 each source file to be compiled to a single @file{.o} file (or
3155 @file{.lo} when using libtool).  Normally these object files are named
3156 after the source file, but other factors can change this.  If a file in
3157 the @samp{_SOURCES} variable has an unrecognized extension, Automake
3158 will do one of two things with it.  If a suffix rule exists for turning
3159 files with the unrecognized extension into @file{.o} files, then
3160 automake will treat this file as it will any other source file
3161 (@pxref{Support for Other Languages}).  Otherwise, the file will be
3162 ignored as though it were a header file.
3164 The prefixes @samp{dist_} and @samp{nodist_} can be used to control
3165 whether files listed in a @samp{_SOURCES} variable are distributed.
3166 @samp{dist_} is redundant, as sources are distributed by default, but it
3167 can be specified for clarity if desired.
3169 It is possible to have both @samp{dist_} and @samp{nodist_} variants of
3170 a given @samp{_SOURCES} variable at once; this lets you easily
3171 distribute some files and not others, for instance:
3173 @example
3174 nodist_maude_SOURCES = nodist.c
3175 dist_maude_SOURCES = dist-me.c
3176 @end example
3178 By default the output file (on Unix systems, the @file{.o} file) will be
3179 put into the current build directory.  However, if the option
3180 @code{subdir-objects} is in effect in the current directory then the
3181 @file{.o} file will be put into the subdirectory named after the source
3182 file.  For instance, with @code{subdir-objects} enabled,
3183 @file{sub/dir/file.c} will be compiled to @file{sub/dir/file.o}.  Some
3184 people prefer this mode of operation.  You can specify
3185 @code{subdir-objects} in @code{AUTOMAKE_OPTIONS} (@pxref{Options}).
3186 @cindex Subdirectory, objects in
3187 @cindex Objects in subdirectory
3190 @item EXTRA_maude_SOURCES
3191 Automake needs to know the list of files you intend to compile
3192 @emph{statically}.  For one thing, this is the only way Automake has of
3193 knowing what sort of language support a given @file{Makefile.in}
3194 requires.  @footnote{There are other, more obscure reasons reasons for
3195 this limitation as well.}  This means that, for example, you can't put a
3196 configure substitution like @samp{@@my_sources@@} into a @samp{_SOURCES}
3197 variable.  If you intend to conditionally compile source files and use
3198 @file{configure} to substitute the appropriate object names into, e.g.,
3199 @samp{_LDADD} (see below), then you should list the corresponding source
3200 files in the @samp{EXTRA_} variable.
3202 This variable also supports @samp{dist_} and @samp{nodist_} prefixes,
3203 e.g., @samp{nodist_EXTRA_maude_SOURCES}.
3205 @item maude_AR
3206 A static library is created by default by invoking @code{$(AR)
3207 $(ARFLAGS)} followed by the name of the library and then the objects
3208 being put into the library.  You can override this by setting the
3209 @samp{_AR} variable.  This is usually used with C++; some C++
3210 compilers require a special invocation in order to instantiate all the
3211 templates which should go into a library.  For instance, the SGI C++
3212 compiler likes this variable set like so:
3213 @example
3214 libmaude_a_AR = $(CXX) -ar -o
3215 @end example
3217 @item maude_LIBADD
3218 Extra objects can be added to a @emph{library} using the @samp{_LIBADD}
3219 variable.  For instance this should be used for objects determined by
3220 @code{configure} (@pxref{A Library}).
3222 @item maude_LDADD
3223 Extra objects can be added to a @emph{program} by listing them in the
3224 @samp{_LDADD} variable.  For instance this should be used for objects
3225 determined by @code{configure} (@pxref{Linking}).
3227 @samp{_LDADD} and @samp{_LIBADD} are inappropriate for passing
3228 program-specific linker flags (except for @samp{-l}, @samp{-L},
3229 @samp{-dlopen} and @samp{-dlpreopen}).  Use the @samp{_LDFLAGS} variable
3230 for this purpose.
3232 For instance, if your @file{configure.ac} uses @code{AC_PATH_XTRA}, you
3233 could link your program against the X libraries like so:
3235 @example
3236 maude_LDADD = $(X_PRE_LIBS) $(X_LIBS) $(X_EXTRA_LIBS)
3237 @end example
3239 @item maude_LDFLAGS
3240 This variable is used to pass extra flags to the link step of a program
3241 or a shared library.
3243 @item maude_DEPENDENCIES
3244 It is also occasionally useful to have a program depend on some other
3245 target which is not actually part of that program.  This can be done
3246 using the @samp{_DEPENDENCIES} variable.  Each program depends on the
3247 contents of such a variable, but no further interpretation is done.
3249 If @samp{_DEPENDENCIES} is not supplied, it is computed by Automake.
3250 The automatically-assigned value is the contents of @samp{_LDADD} or
3251 @samp{_LIBADD}, with most configure substitutions, @samp{-l}, @samp{-L},
3252 @samp{-dlopen} and @samp{-dlpreopen} options removed.  The configure
3253 substitutions that are left in are only @samp{$(LIBOBJS)} and
3254 @samp{$(ALLOCA)}; these are left because it is known that they will not
3255 cause an invalid value for @samp{_DEPENDENCIES} to be generated.
3257 @item maude_LINK
3258 You can override the linker on a per-program basis.  By default the
3259 linker is chosen according to the languages used by the program.  For
3260 instance, a program that includes C++ source code would use the C++
3261 compiler to link.  The @samp{_LINK} variable must hold the name of a
3262 command which can be passed all the @file{.o} file names as arguments.
3263 Note that the name of the underlying program is @emph{not} passed to
3264 @samp{_LINK}; typically one uses @samp{$@@}:
3266 @example
3267 maude_LINK = $(CCLD) -magic -o $@@
3268 @end example
3270 @item maude_CCASFLAGS
3271 @itemx maude_CFLAGS
3272 @itemx maude_CPPFLAGS
3273 @itemx maude_CXXFLAGS
3274 @itemx maude_FFLAGS
3275 @itemx maude_GCJFLAGS
3276 @itemx maude_LFLAGS
3277 @itemx maude_OBJCFLAGS
3278 @itemx maude_RFLAGS
3279 @itemx maude_YFLAGS
3280 @cindex per-target compilation flags, defined
3281 Automake allows you to set compilation flags on a per-program (or
3282 per-library) basis.  A single source file can be included in several
3283 programs, and it will potentially be compiled with different flags for
3284 each program.  This works for any language directly supported by
3285 Automake.  These @dfn{per-target compilation flags} are
3286 @samp{_CCASFLAGS},
3287 @samp{_CFLAGS},
3288 @samp{_CPPFLAGS},
3289 @samp{_CXXFLAGS},
3290 @samp{_FFLAGS},
3291 @samp{_GCJFLAGS},
3292 @samp{_LFLAGS},
3293 @samp{_OBJCFLAGS},
3294 @samp{_RFLAGS}, and
3295 @samp{_YFLAGS}.
3297 When using a per-target compilation flag, Automake will choose a
3298 different name for the intermediate object files.  Ordinarily a file
3299 like @file{sample.c} will be compiled to produce @file{sample.o}.
3300 However, if the program's @samp{_CFLAGS} variable is set, then the
3301 object file will be named, for instance, @file{maude-sample.o}.
3302 (See also @ref{renamed objects}.)
3304 In compilations with per-target flags, the ordinary @samp{AM_} form of
3305 the flags variable is @emph{not} automatically included in the
3306 compilation (however, the user form of the variable @emph{is} included).
3307 So for instance, if you want the hypothetical @file{maude} compilations
3308 to also use the value of @samp{AM_CFLAGS}, you would need to write:
3310 @example
3311 maude_CFLAGS = @dots{} your flags @dots{} $(AM_CFLAGS)
3312 @end example
3315 @item maude_SHORTNAME
3316 On some platforms the allowable file names are very short.  In order to
3317 support these systems and per-target compilation flags at the same
3318 time, Automake allows you to set a ``short name'' which will influence
3319 how intermediate object files are named.  For instance, in the following
3320 example,
3322 @example
3323 bin_PROGRAMS = maude
3324 maude_CPPFLAGS = -DSOMEFLAG
3325 maude_SHORTNAME = m
3326 maude_SOURCES = sample.c @dots{}
3327 @end example
3329 @noindent
3330 the object file would be named @file{m-sample.o} rather than
3331 @file{maude-sample.o}.
3333 This facility is rarely needed in practice,
3334 and we recommend avoiding it until you find it is required.
3335 @end table
3337 @node Default _SOURCES
3338 @section Default @code{_SOURCES}
3340 @vindex _SOURCES
3341 @vindex SOURCES
3342 @cindex @code{_SOURCES}, default
3343 @cindex default @code{_SOURCES}
3345 @code{_SOURCES} variables are used to specify source files of programs
3346 (@pxref{A Program}), libraries (@pxref{A Library}), and Libtool
3347 libraries (@pxref{A Shared Library}).
3349 When no such variable is specified for a target, Automake will define
3350 one itself.  The default is to compile a single C file whose base name
3351 is the name of the target itself, with any extension replaced by
3352 @file{.c}.  (Defaulting to C is terrible but we are stuck with it for
3353 historical reasons.)
3355 For example if you have the following somewhere in your
3356 @file{Makefile.am} with no corresponding @samp{libfoo_a_SOURCES}:
3358 @example
3359 lib_LIBRARIES = libfoo.a sub/libc++.a
3360 @end example
3362 @noindent
3363 @file{libfoo.a} will be built using a default source file named
3364 @file{libfoo.c}, and @file{sub/libc++.a} will be built from
3365 @file{sub/libc++.c}.  (In older versions @file{sub/libc++.a}
3366 would be built from @file{sub_libc___a.c}, i.e., the default source
3367 was the canonized name of the target, with @file{.c} appended.
3368 We believe the new behavior is more sensible, but for backward
3369 compatibility automake will use the old name if a file or a rule
3370 with that name exist.)
3372 @cindex @code{check_PROGRAMS} example
3373 @vindex check_PROGRAMS
3374 Default sources are mainly useful in test suites, when building many
3375 tests programs each from a single source.  For instance in
3377 @example
3378 check_PROGRAMS = test1 test2 test3
3379 @end example
3381 @noindent
3382 @file{test1}, @file{test2}, and @file{test3} will be built
3383 from @file{test1.c}, @file{test2.c}, and @file{test3.c}.
3385 @cindex Libtool modules, default source example
3386 @cindex default source, Libtool modules example
3387 Another case where is this convenient is building many Libtool modules
3388 (@file{moduleN.la}), each defined in its own file (@file{moduleN.c}).
3390 @example
3391 AM_LDFLAGS = -module
3392 lib_LTLIBRARIES = module1.la module2.la module3.la
3393 @end example
3395 @cindex empty @code{_SOURCES}
3396 @cindex @code{_SOURCES}, empty
3397 Finally, there is one situation where this default source computation
3398 needs to be avoided: when a target should not be built from sources.
3399 We already saw such an example in @ref{true}; this happens when all
3400 the constituents of a target have already been compiled and need just
3401 to be combined using a @code{_LDADD} variable.  Then it is necessary
3402 to define an empty @code{_SOURCES} variable, so that automake does not
3403 compute a default.
3405 @example
3406 bin_PROGRAMS = target
3407 target_SOURCES =
3408 target_LDADD = libmain.a libmisc.a
3409 @end example
3411 @node LIBOBJS
3412 @section Special handling for LIBOBJS and ALLOCA
3414 @cindex @code{LIBOBJS}, special handling
3415 @cindex @code{ALLOCA}, special handling
3417 Automake explicitly recognizes the use of @code{$(LIBOBJS)} and
3418 @code{$(ALLOCA)}, and uses this information, plus the list of
3419 @code{LIBOBJS} files derived from @file{configure.ac} to automatically
3420 include the appropriate source files in the distribution (@pxref{Dist}).
3421 These source files are also automatically handled in the
3422 dependency-tracking scheme; see @xref{Dependencies}.
3424 @code{$(LIBOBJS)} and @code{$(ALLOCA)} are specially recognized in any
3425 @samp{_LDADD} or @samp{_LIBADD} variable.
3428 @node Program variables
3429 @section Variables used when building a program
3431 Occasionally it is useful to know which @file{Makefile} variables
3432 Automake uses for compilations; for instance you might need to do your
3433 own compilation in some special cases.
3435 Some variables are inherited from Autoconf; these are @code{CC},
3436 @code{CFLAGS}, @code{CPPFLAGS}, @code{DEFS}, @code{LDFLAGS}, and
3437 @code{LIBS}.
3438 @vindex CC
3439 @vindex CFLAGS
3440 @vindex CPPFLAGS
3441 @vindex DEFS
3442 @vindex LDFLAGS
3443 @vindex LIBS
3445 There are some additional variables which Automake itself defines:
3447 @vtable @code
3448 @item AM_CPPFLAGS
3449 The contents of this variable are passed to every compilation which invokes
3450 the C preprocessor; it is a list of arguments to the preprocessor.  For
3451 instance, @samp{-I} and @samp{-D} options should be listed here.
3453 Automake already provides some @samp{-I} options automatically.  In
3454 particular it generates @samp{-I$(srcdir)}, @samp{-I.}, and a @samp{-I}
3455 pointing to the directory holding @file{config.h} (if you've used
3456 @code{AC_CONFIG_HEADERS} or @code{AM_CONFIG_HEADER}).  You can disable
3457 the default @samp{-I} options using the @samp{nostdinc} option.
3459 @code{AM_CPPFLAGS} is ignored in preference to a per-executable (or
3460 per-library) @code{_CPPFLAGS} variable if it is defined.
3462 @item INCLUDES
3463 This does the same job as @samp{AM_CPPFLAGS} (or any per-target
3464 @samp{_CPPFLAGS} variable if it is used).  It is an older name for the
3465 same functionality.  This variable is deprecated; we suggest using
3466 @samp{AM_CPPFLAGS} and per-target @samp{_CPPFLAGS} instead.
3468 @item AM_CFLAGS
3469 This is the variable which the @file{Makefile.am} author can use to pass
3470 in additional C compiler flags.  It is more fully documented elsewhere.
3471 In some situations, this is not used, in preference to the
3472 per-executable (or per-library) @code{_CFLAGS}.
3474 @item COMPILE
3475 This is the command used to actually compile a C source file.  The
3476 filename is appended to form the complete command line.
3478 @item AM_LDFLAGS
3479 This is the variable which the @file{Makefile.am} author can use to pass
3480 in additional linker flags.  In some situations, this is not used, in
3481 preference to the per-executable (or per-library) @code{_LDFLAGS}.
3483 @item LINK
3484 This is the command used to actually link a C program.  It already
3485 includes @samp{-o $@@} and the usual variable references (for instance,
3486 @code{CFLAGS}); it takes as ``arguments'' the names of the object files
3487 and libraries to link in.
3488 @end vtable
3491 @node Yacc and Lex
3492 @section Yacc and Lex support
3494 Automake has somewhat idiosyncratic support for Yacc and Lex.
3496 Automake assumes that the @file{.c} file generated by @code{yacc} (or
3497 @code{lex}) should be named using the basename of the input file.  That
3498 is, for a yacc source file @file{foo.y}, Automake will cause the
3499 intermediate file to be named @file{foo.c} (as opposed to
3500 @file{y.tab.c}, which is more traditional).
3502 The extension of a yacc source file is used to determine the extension
3503 of the resulting @samp{C} or @samp{C++} file.  Files with the extension
3504 @samp{.y} will be turned into @samp{.c} files; likewise, @samp{.yy} will
3505 become @samp{.cc}; @samp{.y++}, @samp{c++}; and @samp{.yxx},
3506 @samp{.cxx}.
3508 Likewise, lex source files can be used to generate @samp{C} or
3509 @samp{C++}; the extensions @samp{.l}, @samp{.ll}, @samp{.l++}, and
3510 @samp{.lxx} are recognized.
3512 You should never explicitly mention the intermediate (@samp{C} or
3513 @samp{C++}) file in any @samp{SOURCES} variable; only list the source
3514 file.
3516 The intermediate files generated by @code{yacc} (or @code{lex}) will be
3517 included in any distribution that is made.  That way the user doesn't
3518 need to have @code{yacc} or @code{lex}.
3520 If a @code{yacc} source file is seen, then your @file{configure.ac} must
3521 define the variable @samp{YACC}.  This is most easily done by invoking
3522 the macro @samp{AC_PROG_YACC} (@pxref{Particular Programs, , Particular
3523 Program Checks, autoconf, The Autoconf Manual}).
3525 When @code{yacc} is invoked, it is passed @samp{YFLAGS} and
3526 @samp{AM_YFLAGS}.  The former is a user variable and the latter is
3527 intended for the @file{Makefile.am} author.
3529 @samp{AM_YFLAGS} is usually used to pass the @code{-d} option to
3530 @code{yacc}.  Automake knows what this means and will automatically
3531 adjust its rules to update and distribute the header file built by
3532 @code{yacc -d}.  What Automake cannot guess, though, is where this
3533 header will be used: it is up to you to ensure the header gets built
3534 before it is first used.  Typically this is necessary in order for
3535 dependency tracking to work when the header is included by another
3536 file.  The common solution is listing the header file in
3537 @code{BUILT_SOURCES} (@pxref{Sources}) as follows.
3539 @example
3540 BUILT_SOURCES = parser.h
3541 AM_YFLAGS = -d
3542 bin_PROGRAMS = foo
3543 foo_SOURCES = @dots{} parser.y @dots{}
3544 @end example
3546 If a @code{lex} source file is seen, then your @file{configure.ac}
3547 must define the variable @samp{LEX}.  You can use @samp{AC_PROG_LEX}
3548 to do this (@pxref{Particular Programs, , Particular Program Checks,
3549 autoconf, The Autoconf Manual}), but using @code{AM_PROG_LEX} macro
3550 (@pxref{Macros}) is recommended.
3552 When @code{lex} is invoked, it is passed @samp{LFLAGS} and
3553 @samp{AM_LFLAGS}.  The former is a user variable and the latter is
3554 intended for the @file{Makefile.am} author.
3558 @cindex ylwrap
3559 @cindex yacc, multiple parsers
3560 @cindex Multiple yacc parsers
3561 @cindex Multiple lex lexers
3562 @cindex lex, multiple lexers
3565 Automake makes it possible to include multiple @code{yacc} (or
3566 @code{lex}) source files in a single program.  When there is more than
3567 one distinct @code{yacc} (or @code{lex}) source file in a directory,
3568 Automake uses a small program called @code{ylwrap} to run @code{yacc}
3569 (or @code{lex}) in a subdirectory.  This is necessary because yacc's
3570 output filename is fixed, and a parallel make could conceivably invoke
3571 more than one instance of @code{yacc} simultaneously.  The @code{ylwrap}
3572 program is distributed with Automake.  It should appear in the directory
3573 specified by @samp{AC_CONFIG_AUX_DIR} (@pxref{Input, , Finding
3574 `configure' Input, autoconf, The Autoconf Manual}), or the current
3575 directory if that macro is not used in @file{configure.ac}.
3577 For @code{yacc}, simply managing locking is insufficient.  The output of
3578 @code{yacc} always uses the same symbol names internally, so it isn't
3579 possible to link two @code{yacc} parsers into the same executable.
3581 We recommend using the following renaming hack used in @code{gdb}:
3582 @example
3583 #define yymaxdepth c_maxdepth
3584 #define yyparse c_parse
3585 #define yylex   c_lex
3586 #define yyerror c_error
3587 #define yylval  c_lval
3588 #define yychar  c_char
3589 #define yydebug c_debug
3590 #define yypact  c_pact
3591 #define yyr1    c_r1
3592 #define yyr2    c_r2
3593 #define yydef   c_def
3594 #define yychk   c_chk
3595 #define yypgo   c_pgo
3596 #define yyact   c_act
3597 #define yyexca  c_exca
3598 #define yyerrflag c_errflag
3599 #define yynerrs c_nerrs
3600 #define yyps    c_ps
3601 #define yypv    c_pv
3602 #define yys     c_s
3603 #define yy_yys  c_yys
3604 #define yystate c_state
3605 #define yytmp   c_tmp
3606 #define yyv     c_v
3607 #define yy_yyv  c_yyv
3608 #define yyval   c_val
3609 #define yylloc  c_lloc
3610 #define yyreds  c_reds
3611 #define yytoks  c_toks
3612 #define yylhs   c_yylhs
3613 #define yylen   c_yylen
3614 #define yydefred c_yydefred
3615 #define yydgoto c_yydgoto
3616 #define yysindex c_yysindex
3617 #define yyrindex c_yyrindex
3618 #define yygindex c_yygindex
3619 #define yytable  c_yytable
3620 #define yycheck  c_yycheck
3621 #define yyname   c_yyname
3622 #define yyrule   c_yyrule
3623 @end example
3625 For each define, replace the @samp{c_} prefix with whatever you like.
3626 These defines work for @code{bison}, @code{byacc}, and traditional
3627 @code{yacc}s.  If you find a parser generator that uses a symbol not
3628 covered here, please report the new name so it can be added to the list.
3631 @node C++ Support
3632 @section C++ Support
3634 @cindex C++ support
3635 @cindex Support for C++
3637 Automake includes full support for C++.
3639 Any package including C++ code must define the output variable
3640 @samp{CXX} in @file{configure.ac}; the simplest way to do this is to use
3641 the @code{AC_PROG_CXX} macro (@pxref{Particular Programs, , Particular
3642 Program Checks, autoconf, The Autoconf Manual}).
3644 A few additional variables are defined when a C++ source file is seen:
3646 @vtable @code
3647 @item CXX
3648 The name of the C++ compiler.
3650 @item CXXFLAGS
3651 Any flags to pass to the C++ compiler.
3653 @item AM_CXXFLAGS
3654 The maintainer's variant of @code{CXXFLAGS}.
3656 @item CXXCOMPILE
3657 The command used to actually compile a C++ source file.  The file name
3658 is appended to form the complete command line.
3660 @item CXXLINK
3661 The command used to actually link a C++ program.
3662 @end vtable
3665 @node Assembly Support
3666 @section Assembly Support
3668 Automake includes some support for assembly code.
3670 The variable @code{CCAS} holds the name of the compiler used to build
3671 assembly code.  This compiler must work a bit like a C compiler; in
3672 particular it must accept @samp{-c} and @samp{-o}.  The value of
3673 @code{CCASFLAGS} is passed to the compilation.
3674 @vindex CCAS
3675 @vindex CCASFLAGS
3677 You are required to set @code{CCAS} and @code{CCASFLAGS} via
3678 @file{configure.ac}.  The autoconf macro @code{AM_PROG_AS} will do this
3679 for you.  Unless they are already set, it simply sets @code{CCAS} to the
3680 C compiler and @code{CCASFLAGS} to the C compiler flags.
3682 Only the suffixes @samp{.s} and @samp{.S} are recognized by
3683 @code{automake} as being files containing assembly code.
3686 @node Fortran 77 Support
3687 @comment  node-name,  next,  previous,  up
3688 @section Fortran 77 Support
3690 @cindex Fortran 77 support
3691 @cindex Support for Fortran 77
3693 Automake includes full support for Fortran 77.
3695 Any package including Fortran 77 code must define the output variable
3696 @samp{F77} in @file{configure.ac}; the simplest way to do this is to use
3697 the @code{AC_PROG_F77} macro (@pxref{Particular Programs, , Particular
3698 Program Checks, autoconf, The Autoconf Manual}).
3700 A few additional variables are defined when a Fortran 77 source file is
3701 seen:
3703 @vtable @code
3705 @item F77
3706 The name of the Fortran 77 compiler.
3708 @item FFLAGS
3709 Any flags to pass to the Fortran 77 compiler.
3711 @item AM_FFLAGS
3712 The maintainer's variant of @code{FFLAGS}.
3714 @item RFLAGS
3715 Any flags to pass to the Ratfor compiler.
3717 @item AM_RFLAGS
3718 The maintainer's variant of @code{RFLAGS}.
3720 @item F77COMPILE
3721 The command used to actually compile a Fortran 77 source file.  The file
3722 name is appended to form the complete command line.
3724 @item FLINK
3725 The command used to actually link a pure Fortran 77 program or shared
3726 library.
3728 @end vtable
3730 Automake can handle preprocessing Fortran 77 and Ratfor source files in
3731 addition to compiling them@footnote{Much, if not most, of the
3732 information in the following sections pertaining to preprocessing
3733 Fortran 77 programs was taken almost verbatim from @ref{Catalogue of
3734 Rules, , Catalogue of Rules, make, The GNU Make Manual}.}.  Automake
3735 also contains some support for creating programs and shared libraries
3736 that are a mixture of Fortran 77 and other languages (@pxref{Mixing
3737 Fortran 77 With C and C++}).
3739 These issues are covered in the following sections.
3741 @menu
3742 * Preprocessing Fortran 77::    Preprocessing Fortran 77 sources
3743 * Compiling Fortran 77 Files::  Compiling Fortran 77 sources
3744 * Mixing Fortran 77 With C and C++::  Mixing Fortran 77 With C and C++
3745 @end menu
3748 @node Preprocessing Fortran 77
3749 @comment  node-name,  next,  previous,  up
3750 @subsection Preprocessing Fortran 77
3752 @cindex Preprocessing Fortran 77
3753 @cindex Fortran 77, Preprocessing
3754 @cindex Ratfor programs
3756 @file{N.f} is made automatically from @file{N.F} or @file{N.r}.  This
3757 rule runs just the preprocessor to convert a preprocessable Fortran 77
3758 or Ratfor source file into a strict Fortran 77 source file.  The precise
3759 command used is as follows:
3761 @table @file
3763 @item .F
3764 @code{$(F77) -F $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)}
3766 @item .r
3767 @code{$(F77) -F $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)}
3769 @end table
3772 @node Compiling Fortran 77 Files
3773 @comment  node-name,  next,  previous,  up
3774 @subsection Compiling Fortran 77 Files
3776 @file{N.o} is made automatically from @file{N.f}, @file{N.F} or
3777 @file{N.r} by running the Fortran 77 compiler.  The precise command used
3778 is as follows:
3780 @table @file
3782 @item .f
3783 @code{$(F77) -c $(AM_FFLAGS) $(FFLAGS)}
3785 @item .F
3786 @code{$(F77) -c $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)}
3788 @item .r
3789 @code{$(F77) -c $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)}
3791 @end table
3794 @node Mixing Fortran 77 With C and C++
3795 @comment  node-name,  next,  previous,  up
3796 @subsection Mixing Fortran 77 With C and C++
3798 @cindex Fortran 77, mixing with C and C++
3799 @cindex Mixing Fortran 77 with C and C++
3800 @cindex Linking Fortran 77 with C and C++
3801 @cindex cfortran
3802 @cindex Mixing Fortran 77 with C and/or C++
3804 Automake currently provides @emph{limited} support for creating programs
3805 and shared libraries that are a mixture of Fortran 77 and C and/or C++.
3806 However, there are many other issues related to mixing Fortran 77 with
3807 other languages that are @emph{not} (currently) handled by Automake, but
3808 that are handled by other packages@footnote{For example,
3809 @uref{http://www-zeus.desy.de/~burow/cfortran/, the cfortran package}
3810 addresses all of these inter-language issues, and runs under nearly all
3811 Fortran 77, C and C++ compilers on nearly all platforms.  However,
3812 @code{cfortran} is not yet Free Software, but it will be in the next
3813 major release.}.
3815 @page
3816 Automake can help in two ways:
3818 @enumerate
3819 @item
3820 Automatic selection of the linker depending on which combinations of
3821 source code.
3823 @item
3824 Automatic selection of the appropriate linker flags (e.g. @samp{-L} and
3825 @samp{-l}) to pass to the automatically selected linker in order to link
3826 in the appropriate Fortran 77 intrinsic and run-time libraries.
3828 @cindex FLIBS, defined
3829 These extra Fortran 77 linker flags are supplied in the output variable
3830 @code{FLIBS} by the @code{AC_F77_LIBRARY_LDFLAGS} Autoconf macro
3831 supplied with newer versions of Autoconf (Autoconf version 2.13 and
3832 later).  @xref{Fortran 77 Compiler Characteristics, , , autoconf, The
3833 Autoconf}.
3834 @end enumerate
3836 If Automake detects that a program or shared library (as mentioned in
3837 some @code{_PROGRAMS} or @code{_LTLIBRARIES} primary) contains source
3838 code that is a mixture of Fortran 77 and C and/or C++, then it requires
3839 that the macro @code{AC_F77_LIBRARY_LDFLAGS} be called in
3840 @file{configure.ac}, and that either @code{$(FLIBS)}
3841 appear in the appropriate @code{_LDADD} (for programs) or @code{_LIBADD}
3842 (for shared libraries) variables.  It is the responsibility of the
3843 person writing the @file{Makefile.am} to make sure that @code{$(FLIBS)}
3844 appears in the appropriate @code{_LDADD} or
3845 @code{_LIBADD} variable.
3847 @cindex Mixed language example
3848 @cindex Example, mixed language
3850 For example, consider the following @file{Makefile.am}:
3852 @example
3853 bin_PROGRAMS = foo
3854 foo_SOURCES  = main.cc foo.f
3855 foo_LDADD    = libfoo.la $(FLIBS)
3857 pkglib_LTLIBRARIES = libfoo.la
3858 libfoo_la_SOURCES  = bar.f baz.c zardoz.cc
3859 libfoo_la_LIBADD   = $(FLIBS)
3860 @end example
3862 In this case, Automake will insist that @code{AC_F77_LIBRARY_LDFLAGS}
3863 is mentioned in @file{configure.ac}.  Also, if @code{$(FLIBS)} hadn't
3864 been mentioned in @code{foo_LDADD} and @code{libfoo_la_LIBADD}, then
3865 Automake would have issued a warning.
3868 @page
3869 @menu
3870 * How the Linker is Chosen::    Automatic linker selection
3871 @end menu
3873 @node How the Linker is Chosen
3874 @comment  node-name,  next,  previous,  up
3875 @subsubsection How the Linker is Chosen
3877 @cindex Automatic linker selection
3878 @cindex Selecting the linker automatically
3880 The following diagram demonstrates under what conditions a particular
3881 linker is chosen by Automake.
3883 For example, if Fortran 77, C and C++ source code were to be compiled
3884 into a program, then the C++ linker will be used.  In this case, if the
3885 C or Fortran 77 linkers required any special libraries that weren't
3886 included by the C++ linker, then they must be manually added to an
3887 @code{_LDADD} or @code{_LIBADD} variable by the user writing the
3888 @file{Makefile.am}.
3890 @example
3891                      \              Linker
3892           source      \
3893            code        \     C        C++     Fortran
3894      -----------------  +---------+---------+---------+
3895                         |         |         |         |
3896      C                  |    x    |         |         |
3897                         |         |         |         |
3898                         +---------+---------+---------+
3899                         |         |         |         |
3900          C++            |         |    x    |         |
3901                         |         |         |         |
3902                         +---------+---------+---------+
3903                         |         |         |         |
3904                Fortran  |         |         |    x    |
3905                         |         |         |         |
3906                         +---------+---------+---------+
3907                         |         |         |         |
3908      C + C++            |         |    x    |         |
3909                         |         |         |         |
3910                         +---------+---------+---------+
3911                         |         |         |         |
3912      C +       Fortran  |         |         |    x    |
3913                         |         |         |         |
3914                         +---------+---------+---------+
3915                         |         |         |         |
3916          C++ + Fortran  |         |    x    |         |
3917                         |         |         |         |
3918                         +---------+---------+---------+
3919                         |         |         |         |
3920      C + C++ + Fortran  |         |    x    |         |
3921                         |         |         |         |
3922                         +---------+---------+---------+
3923 @end example
3925 @node Fortran 9x Support
3926 @comment  node-name,  next,  previous,  up
3927 @section Fortran 9x Support
3929 @cindex Fortran 9x support
3930 @cindex Support for Fortran 9x
3932 Automake includes full support for Fortran 9x.
3934 Any package including Fortran 9x code must define the output variable
3935 @samp{FC} in @file{configure.ac}; the simplest way to do this is to use
3936 the @code{AC_PROG_FC} macro (@pxref{Particular Programs, , Particular
3937 Program Checks, autoconf, The Autoconf Manual}).
3939 A few additional variables are defined when a Fortran 9x source file is
3940 seen:
3942 @vtable @code
3944 @item FC
3945 The name of the Fortran 9x compiler.
3947 @item FCFLAGS
3948 Any flags to pass to the Fortran 9x compiler.
3950 @item AM_FCFLAGS
3951 The maintainer's variant of @code{FCFLAGS}.
3953 @item FCCOMPILE
3954 The command used to actually compile a Fortran 9x source file.  The file
3955 name is appended to form the complete command line.
3957 @item FCLINK
3958 The command used to actually link a pure Fortran 9x program or shared
3959 library.
3961 @end vtable
3963 @menu
3964 * Compiling Fortran 9x Files::  Compiling Fortran 9x sources
3965 @end menu
3967 @node Compiling Fortran 9x Files
3968 @comment  node-name,  next,  previous,  up
3969 @subsection Compiling Fortran 9x Files
3971 @file{N.o} is made automatically from @file{N.f90} or @file{N.f95}
3972 by running the Fortran 9x compiler.  The precise command used
3973 is as follows:
3975 @table @file
3977 @item .f9x
3978 @code{$(FC) -c $(AM_FCFLAGS) $(FCFLAGS)}
3980 @end table
3982 @node Java Support
3983 @comment  node-name,  next,  previous,  up
3984 @section Java Support
3986 @cindex Java support
3987 @cindex Support for Java
3989 Automake includes support for compiled Java, using @code{gcj}, the Java
3990 front end to the GNU Compiler Collection.
3992 Any package including Java code to be compiled must define the output
3993 variable @samp{GCJ} in @file{configure.ac}; the variable @samp{GCJFLAGS}
3994 must also be defined somehow (either in @file{configure.ac} or
3995 @file{Makefile.am}).  The simplest way to do this is to use the
3996 @code{AM_PROG_GCJ} macro.
3998 @vindex GCJFLAGS
4000 By default, programs including Java source files are linked with
4001 @code{gcj}.
4003 As always, the contents of @samp{AM_GCJFLAGS} are passed to every
4004 compilation invoking @code{gcj} (in its role as an ahead-of-time
4005 compiler -- when invoking it to create @file{.class} files,
4006 @samp{AM_JAVACFLAGS} is used instead).  If it is necessary to pass
4007 options to @code{gcj} from @file{Makefile.am}, this variable, and not
4008 the user variable @samp{GCJFLAGS}, should be used.
4010 @vindex AM_GCJFLAGS
4012 @code{gcj} can be used to compile @file{.java}, @file{.class},
4013 @file{.zip}, or @file{.jar} files.
4015 When linking, @code{gcj} requires that the main class be specified
4016 using the @samp{--main=} option.  The easiest way to do this is to use
4017 the @code{_LDFLAGS} variable for the program.
4020 @node Support for Other Languages
4021 @comment  node-name,  next,  previous,  up
4022 @section Support for Other Languages
4024 Automake currently only includes full support for C, C++ (@pxref{C++
4025 Support}), Fortran 77 (@pxref{Fortran 77 Support}),
4026 Fortran 9x (@pxref{Fortran 9x Support}),
4027 and Java (@pxref{Java Support}).  There is only rudimentary support for other
4028 languages, support for which will be improved based on user demand.
4030 Some limited support for adding your own languages is available via the
4031 suffix rule handling; see @ref{Suffixes}.
4034 @node ANSI
4035 @section Automatic de-ANSI-fication
4037 @cindex de-ANSI-fication, defined
4039 Although the GNU standards allow the use of ANSI C, this can have the
4040 effect of limiting portability of a package to some older compilers
4041 (notably the SunOS C compiler).
4043 Automake allows you to work around this problem on such machines by
4044 @dfn{de-ANSI-fying} each source file before the actual compilation takes
4045 place.
4047 @vindex AUTOMAKE_OPTIONS
4048 @opindex ansi2knr
4050 If the @file{Makefile.am} variable @code{AUTOMAKE_OPTIONS}
4051 (@pxref{Options}) contains the option @code{ansi2knr} then code to
4052 handle de-ANSI-fication is inserted into the generated
4053 @file{Makefile.in}.
4055 This causes each C source file in the directory to be treated as ANSI C@.
4056 If an ANSI C compiler is available, it is used.  If no ANSI C compiler
4057 is available, the @code{ansi2knr} program is used to convert the source
4058 files into K&R C, which is then compiled.
4060 The @code{ansi2knr} program is simple-minded.  It assumes the source
4061 code will be formatted in a particular way; see the @code{ansi2knr} man
4062 page for details.
4064 Support for de-ANSI-fication requires the source files @file{ansi2knr.c}
4065 and @file{ansi2knr.1} to be in the same package as the ANSI C source;
4066 these files are distributed with Automake.  Also, the package
4067 @file{configure.ac} must call the macro @code{AM_C_PROTOTYPES}
4068 (@pxref{Macros}).
4069 @cvindex AM_C_PROTOTYPES
4071 Automake also handles finding the @code{ansi2knr} support files in some
4072 other directory in the current package.  This is done by prepending the
4073 relative path to the appropriate directory to the @code{ansi2knr}
4074 option.  For instance, suppose the package has ANSI C code in the
4075 @file{src} and @file{lib} subdirectories.  The files @file{ansi2knr.c} and
4076 @file{ansi2knr.1} appear in @file{lib}.  Then this could appear in
4077 @file{src/Makefile.am}:
4079 @example
4080 AUTOMAKE_OPTIONS = ../lib/ansi2knr
4081 @end example
4083 If no directory prefix is given, the files are assumed to be in the
4084 current directory.
4086 Note that automatic de-ANSI-fication will not work when the package is
4087 being built for a different host architecture.  That is because automake
4088 currently has no way to build @code{ansi2knr} for the build machine.
4090 @c FIXME: this paragraph might be better moved to an `upgrading' section.
4091 @cindex @code{LTLIBOBJS} and @code{ansi2knr}
4092 @cindex @code{LIBOBJS} and @code{ansi2knr}
4093 @cindex @code{ansi2knr} and @code{LTLIBOBJS}
4094 @cindex @code{ansi2knr} and @code{LIBOBJS}
4095 Using @code{LIBOBJS} with source de-ANSI-fication used to require
4096 hand-crafted code in @file{configure} to append @code{$U} to basenames
4097 in @code{LIBOBJS}.  This is no longer true today.  Starting with version
4098 2.54, Autoconf takes care of rewriting @code{LIBOBJS} and
4099 @code{LTLIBOBJS}.  (@pxref{AC_LIBOBJ vs LIBOBJS, , @code{AC_LIBOBJ}
4100 vs. @code{LIBOBJS}, autoconf, The Autoconf Manual})
4102 @node Dependencies
4103 @section Automatic dependency tracking
4105 As a developer it is often painful to continually update the
4106 @file{Makefile.in} whenever the include-file dependencies change in a
4107 project.  Automake supplies a way to automatically track dependency
4108 changes.
4110 @cindex Dependency tracking
4111 @cindex Automatic dependency tracking
4113 Automake always uses complete dependencies for a compilation, including
4114 system headers.  Automake's model is that dependency computation should
4115 be a side effect of the build.  To this end, dependencies are computed
4116 by running all compilations through a special wrapper program called
4117 @code{depcomp}.  @code{depcomp} understands how to coax many different C
4118 and C++ compilers into generating dependency information in the format
4119 it requires.  @code{automake -a} will install @code{depcomp} into your
4120 source tree for you.  If @code{depcomp} can't figure out how to properly
4121 invoke your compiler, dependency tracking will simply be disabled for
4122 your build.
4124 @cindex depcomp
4126 Experience with earlier versions of Automake @footnote{See
4127 @uref{http://sources.redhat.com/automake/dependencies.html} for more
4128 information on the history and experiences with automatic dependency
4129 tracking in Automake} taught us that it is not reliable to generate
4130 dependencies only on the maintainer's system, as configurations vary too
4131 much.  So instead Automake implements dependency tracking at build time.
4133 Automatic dependency tracking can be suppressed by putting
4134 @code{no-dependencies} in the variable @code{AUTOMAKE_OPTIONS}, or
4135 passing @code{no-dependencies} as an argument to @code{AM_INIT_AUTOMAKE}
4136 (this should be the preferred way).  Or, you can invoke @code{automake}
4137 with the @code{-i} option.  Dependency tracking is enabled by default.
4139 @vindex AUTOMAKE_OPTIONS
4140 @opindex no-dependencies
4142 The person building your package also can choose to disable dependency
4143 tracking by configuring with @code{--disable-dependency-tracking}.
4145 @cindex Disabling dependency tracking
4146 @cindex Dependency tracking, disabling
4149 @node EXEEXT
4150 @section Support for executable extensions
4152 @cindex Executable extension
4153 @cindex Extension, executable
4154 @cindex Windows
4156 On some platforms, such as Windows, executables are expected to have an
4157 extension such as @samp{.exe}.  On these platforms, some compilers (GCC
4158 among them) will automatically generate @file{foo.exe} when asked to
4159 generate @file{foo}.
4161 Automake provides mostly-transparent support for this.  Unfortunately
4162 @emph{mostly} doesn't yet mean @emph{fully}.  Until the English
4163 dictionary is revised, you will have to assist Automake if your package
4164 must support those platforms.
4166 One thing you must be aware of is that, internally, Automake rewrites
4167 something like this:
4169 @example
4170 bin_PROGRAMS = liver
4171 @end example
4173 to this:
4175 @example
4176 bin_PROGRAMS = liver$(EXEEXT)
4177 @end example
4179 The targets Automake generates are likewise given the @samp{$(EXEEXT)}
4180 extension.  @code{EXEEXT}
4182 However, Automake cannot apply this rewriting to @code{configure}
4183 substitutions.  This means that if you are conditionally building a
4184 program using such a substitution, then your @file{configure.ac} must
4185 take care to add @samp{$(EXEEXT)} when constructing the output variable.
4187 With Autoconf 2.13 and earlier, you must explicitly use @code{AC_EXEEXT}
4188 to get this support.  With Autoconf 2.50, @code{AC_EXEEXT} is run
4189 automatically if you configure a compiler (say, through
4190 @code{AC_PROG_CC}).
4192 Sometimes maintainers like to write an explicit link rule for their
4193 program.  Without executable extension support, this is easy---you
4194 simply write a rule whose target is the name of the program.  However,
4195 when executable extension support is enabled, you must instead add the
4196 @samp{$(EXEEXT)} suffix.
4198 Unfortunately, due to the change in Autoconf 2.50, this means you must
4199 always add this extension.  However, this is a problem for maintainers
4200 who know their package will never run on a platform that has
4201 executable extensions.  For those maintainers, the @code{no-exeext}
4202 option (@pxref{Options}) will disable this feature.  This works in a
4203 fairly ugly way; if @code{no-exeext} is seen, then the presence of a
4204 rule for a target named @code{foo} in @file{Makefile.am} will override
4205 an automake-generated rule for @code{foo$(EXEEXT)}.  Without
4206 the @code{no-exeext} option, this use will give a diagnostic.
4209 @node Other objects
4210 @chapter Other Derived Objects
4212 Automake can handle derived objects which are not C programs.  Sometimes
4213 the support for actually building such objects must be explicitly
4214 supplied, but Automake will still automatically handle installation and
4215 distribution.
4217 @menu
4218 * Scripts::                     Executable scripts
4219 * Headers::                     Header files
4220 * Data::                        Architecture-independent data files
4221 * Sources::                     Derived sources
4222 @end menu
4225 @node Scripts
4226 @section Executable Scripts
4228 @cindex _SCRIPTS primary, defined
4229 @cindex SCRIPTS primary, defined
4230 @cindex Primary variable, SCRIPTS
4232 It is possible to define and install programs which are scripts.  Such
4233 programs are listed using the @samp{SCRIPTS} primary name.  Automake
4234 doesn't define any dependencies for scripts; the @file{Makefile.am}
4235 should include the appropriate rules.
4236 @vindex SCRIPTS
4238 Automake does not assume that scripts are derived objects; such objects
4239 must be deleted by hand (@pxref{Clean}).
4241 The @code{automake} program itself is a Perl script that is generated
4242 from @file{automake.in}.  Here is how this is handled:
4244 @example
4245 bin_SCRIPTS = automake
4246 CLEANFILES = $(bin_SCRIPTS)
4248 do_subst = sed -e 's,[@@]datadir[@@],$(datadir),g' \
4249             -e 's,[@@]PERL[@@],$(PERL),g' \
4250             -e 's,[@@]PACKAGE[@@],$(PACKAGE),g' \
4251             -e 's,[@@]VERSION[@@],$(VERSION),g' \
4252             @dots{}
4254 automake: automake.in Makefile
4255         $(do_subst) < $(srcdir)/automake.in > automake
4256         chmod +x automake
4257 @end example
4259 Because---as we have just seen---scripts can be built, they are not
4260 distributed by default.  Scripts that should be distributed can be
4261 specified using a @code{dist_} prefix as in other primaries.  For
4262 instance the following @file{Makefile.am} declares that
4263 @file{my_script} should be distributed and installed in
4264 @code{$(sbindir)}.
4266 @example
4267 dist_sbin_SCRIPTS = my_script
4268 @end example
4270 @cindex SCRIPTS, installation directories
4271 @cindex Installing scripts
4273 @vindex bin_SCRIPTS
4274 @vindex sbin_SCRIPTS
4275 @vindex libexec_SCRIPTS
4276 @vindex pkgdata_SCRIPTS
4277 @vindex noinst_SCRIPTS
4278 @vindex check_SCRIPTS
4280 Script objects can be installed in @code{bindir}, @code{sbindir},
4281 @code{libexecdir}, or @code{pkgdatadir}.
4283 Scripts that need not being installed can be listed in
4284 @code{noinst_SCRIPTS}, and among them, those which are needed only by
4285 @code{make check} should go in @code{check_SCRIPTS}.
4288 @node Headers
4289 @section Header files
4291 @cindex _HEADERS primary, defined
4292 @cindex HEADERS primary, defined
4293 @cindex Primary variable, HEADERS
4295 @vindex noinst_HEADERS
4296 @cindex HEADERS, installation directories
4297 @cindex Installing headers
4298 @vindex include_HEADERS
4299 @vindex oldinclude_HEADERS
4300 @vindex pkginclude_HEADERS
4303 Header files that must be installed are specified by the
4304 @samp{HEADERS} family of variables.  Headers can be installed in
4305 @code{includedir}, @code{oldincludedir}, @code{pkgincludedir} or any
4306 other directory you may have defined (@pxref{Uniform}).  For instance
4308 @example
4309 include_HEADERS = foo.h bar/bar.h
4310 @end example
4312 @noindent
4313 will install the two files as @file{$(includedir)/foo.h} and
4314 @file{$(includedir)/bar.h}.
4316 The @samp{nobase_} prefix is also supported,
4318 @example
4319 nobase_include_HEADERS = foo.h bar/bar.h
4320 @end example
4322 @noindent
4323 will install the two files as @file{$(includedir)/foo.h} and
4324 @file{$(includedir)/bar/bar.h} (@pxref{Alternative}).
4326 @vindex noinst_HEADERS
4327 Usually, only header files that accompany installed libraries need to
4328 be installed.  Headers used by programs or convenience libraries are
4329 not installed.  The @code{noinst_HEADERS} variable can be used for
4330 such headers.  However when the header actually belongs to one
4331 convenient library or program, we recommend listing it in the
4332 program's or library's @samp{_SOURCES} variable (@pxref{Program
4333 Sources}) instead of in @code{noinst_HEADERS}.  This is clearer for
4334 the @file{Makefile.am} reader.  @code{noinst_HEADERS} would be the
4335 right variable to use in a directory containing only headers and no
4336 associated library or program.
4338 All header files must be listed somewhere; in a @samp{_SOURCES}
4339 variable or in a @samp{_HEADERS} variable.  Missing ones will not
4340 appear in the distribution.
4342 For header files that are built and must not be distributed, use the
4343 @samp{nodist_} prefix as in @code{nodist_include_HEADERS} or
4344 @code{nodist_prog_SOURCES}.  If these generated headers are needed
4345 during the build, you must also ensure they exist before they are
4346 used, see @xref{Sources}.
4349 @node Data
4350 @section Architecture-independent data files
4352 @cindex _DATA primary, defined
4353 @cindex DATA primary, defined
4354 @cindex Primary variable, DATA
4356 Automake supports the installation of miscellaneous data files using the
4357 @samp{DATA} family of variables.
4358 @vindex DATA
4360 @vindex data_DATA
4361 @vindex sysconf_DATA
4362 @vindex sharedstate_DATA
4363 @vindex localstate_DATA
4364 @vindex pkgdata_DATA
4366 Such data can be installed in the directories @code{datadir},
4367 @code{sysconfdir}, @code{sharedstatedir}, @code{localstatedir}, or
4368 @code{pkgdatadir}.
4370 By default, data files are @emph{not} included in a distribution.  Of
4371 course, you can use the @samp{dist_} prefix to change this on a
4372 per-variable basis.
4374 Here is how Automake declares its auxiliary data files:
4376 @example
4377 dist_pkgdata_DATA = clean-kr.am clean.am @dots{}
4378 @end example
4381 @node Sources
4382 @section Built sources
4384 Because Automake's automatic dependency tracking works as a side-effect
4385 of compilation (@pxref{Dependencies}) there is a bootstrap issue: a
4386 target should not be compiled before its dependencies are made, but
4387 these dependencies are unknown until the target is first compiled.
4389 Ordinarily this is not a problem, because dependencies are distributed
4390 sources: they preexist and do not need to be built.  Suppose that
4391 @file{foo.c} includes @file{foo.h}.  When it first compiles
4392 @file{foo.o}, @command{make} only knows that @file{foo.o} depends on
4393 @file{foo.c}.  As a side-effect of this compilation @code{depcomp}
4394 records the @file{foo.h} dependency so that following invocations of
4395 @command{make} will honor it.  In these conditions, it's clear there is
4396 no problem: either @file{foo.o} doesn't exist and has to be built
4397 (regardless of the dependencies), either accurate dependencies exist and
4398 they can be used to decide whether @file{foo.o} should be rebuilt.
4400 It's a different story if @file{foo.h} doesn't exist by the first
4401 @command{make} run.  For instance there might be a rule to build
4402 @file{foo.h}.  This time @file{file.o}'s build will fail because the
4403 compiler can't find @file{foo.h}. @command{make} failed to trigger the
4404 rule to build @file{foo.h} first by lack of dependency information.
4406 @vindex BUILT_SOURCES
4407 @cindex BUILT_SOURCES, defined
4409 The @code{BUILT_SOURCES} variable is a workaround for this problem.  A
4410 source file listed in @code{BUILT_SOURCES} is made on @code{make all}
4411 or @code{make check} (or even @code{make install}) before other
4412 targets are processed.  However, such a source file is not
4413 @emph{compiled} unless explicitly requested by mentioning it in some
4414 other @samp{_SOURCES} variable.
4416 So, to conclude our introductory example, we could use
4417 @code{BUILT_SOURCES = foo.h} to ensure @file{foo.h} gets built before
4418 any other target (including @file{foo.o}) during @code{make all} or
4419 @code{make check}.
4421 @code{BUILT_SOURCES} is actually a bit of a misnomer, as any file which
4422 must be created early in the build process can be listed in this
4423 variable.  Moreover, all built sources do not necessarily have to be
4424 listed in @code{BUILT_SOURCES}.  For instance a generated @file{.c} file
4425 doesn't need to appear in @code{BUILT_SOURCES} (unless it is included by
4426 another source), because it's a known dependency of the associated
4427 object.
4429 It might be important to emphasize that @code{BUILT_SOURCES} is
4430 honored only by @code{make all}, @code{make check} and @code{make
4431 install}.  This means you cannot build a specific target (e.g.,
4432 @code{make foo}) in a clean tree if it depends on a built source.
4433 However it will succeed if you have run @code{make all} earlier,
4434 because accurate dependencies are already available.
4436 The next section illustrates and discusses the handling of built sources
4437 on a toy example.
4439 @menu
4440 * Built sources example::       Several ways to handle built sources.
4441 @end menu
4443 @node Built sources example
4444 @subsection Built sources example
4446 Suppose that @file{foo.c} includes @file{bindir.h}, which is
4447 installation-dependent and not distributed: it needs to be built.  Here
4448 @file{bindir.h} defines the preprocessor macro @code{bindir} to the
4449 value of the @command{make} variable @code{bindir} (inherited from
4450 @file{configure}).
4452 We suggest several implementations below.  It's not meant to be an
4453 exhaustive listing of all ways to handle built sources, but it will give
4454 you a few ideas if you encounter this issue.
4456 @unnumberedsubsec First try
4458 This first implementation will illustrate the bootstrap issue mentioned
4459 in the previous section (@pxref{Sources}).
4461 Here is a tentative @file{Makefile.am}.
4463 @example
4464 # This won't work.
4465 bin_PROGRAMS = foo
4466 foo_SOURCES = foo.c
4467 nodist_foo_SOURCES = bindir.h
4468 CLEANFILES = bindir.h
4469 bindir.h: Makefile
4470         echo '#define bindir "$(bindir)"' >$@@
4471 @end example
4473 This setup doesn't work, because Automake doesn't know that @file{foo.c}
4474 includes @file{bindir.h}.  Remember, automatic dependency tracking works
4475 as a side-effect of compilation, so the dependencies of @file{foo.o} will
4476 be known only after @file{foo.o} has been compiled (@pxref{Dependencies}).
4477 The symptom is as follows.
4479 @example
4480 % make
4481 source='foo.c' object='foo.o' libtool=no \
4482 depfile='.deps/foo.Po' tmpdepfile='.deps/foo.TPo' \
4483 depmode=gcc /bin/sh ./depcomp \
4484 gcc -I. -I. -g -O2 -c `test -f 'foo.c' || echo './'`foo.c
4485 foo.c:2: bindir.h: No such file or directory
4486 make: *** [foo.o] Error 1
4487 @end example
4489 @unnumberedsubsec Using @code{BUILT_SOURCES}
4491 A solution is to require @file{bindir.h} to be built before anything
4492 else.  This is what @code{BUILT_SOURCES} is meant for (@pxref{Sources}).
4494 @example
4495 bin_PROGRAMS = foo
4496 foo_SOURCES = foo.c
4497 BUILT_SOURCES = bindir.h
4498 CLEANFILES = bindir.h
4499 bindir.h: Makefile
4500         echo '#define bindir "$(bindir)"' >$@@
4501 @end example
4503 See how @file{bindir.h} get built first:
4505 @example
4506 % make
4507 echo '#define bindir "/usr/local/bin"' >bindir.h
4508 make  all-am
4509 make[1]: Entering directory `/home/adl/tmp'
4510 source='foo.c' object='foo.o' libtool=no \
4511 depfile='.deps/foo.Po' tmpdepfile='.deps/foo.TPo' \
4512 depmode=gcc /bin/sh ./depcomp \
4513 gcc -I. -I. -g -O2 -c `test -f 'foo.c' || echo './'`foo.c
4514 gcc  -g -O2   -o foo  foo.o
4515 make[1]: Leaving directory `/home/adl/tmp'
4516 @end example
4518 However, as said earlier, @code{BUILT_SOURCES} applies only to the
4519 @code{all}, @code{check}, and @code{install} targets.  It still fails
4520 if you try to run @code{make foo} explicitly:
4522 @example
4523 % make clean
4524 test -z "bindir.h" || rm -f bindir.h
4525 test -z "foo" || rm -f foo
4526 rm -f *.o
4527 % : > .deps/foo.Po # Suppress previously recorded dependencies
4528 % make foo
4529 source='foo.c' object='foo.o' libtool=no \
4530 depfile='.deps/foo.Po' tmpdepfile='.deps/foo.TPo' \
4531 depmode=gcc /bin/sh ./depcomp \
4532 gcc -I. -I. -g -O2 -c `test -f 'foo.c' || echo './'`foo.c
4533 foo.c:2: bindir.h: No such file or directory
4534 make: *** [foo.o] Error 1
4535 @end example
4537 @unnumberedsubsec Recording dependencies manually
4539 Usually people are happy enough with @code{BUILT_SOURCES} because they
4540 never build targets such as @code{make foo} before @code{make all}, as
4541 in the previous example.  However if this matters to you, you can
4542 avoid @code{BUILT_SOURCES} and record such dependencies explicitly in
4543 the @file{Makefile.am}.
4545 @example
4546 bin_PROGRAMS = foo
4547 foo_SOURCES = foo.c
4548 foo.$(OBJEXT): bindir.h
4549 CLEANFILES = bindir.h
4550 bindir.h: Makefile
4551         echo '#define bindir "$(bindir)"' >$@@
4552 @end example
4554 You don't have to list @emph{all} the dependencies of @code{foo.o}
4555 explicitly, only those which might need to be built.  If a dependency
4556 already exists, it will not hinder the first compilation and will be
4557 recorded by the normal dependency tracking code.  (Note that after this
4558 first compilation the dependency tracking code will also have recorded
4559 the dependency between @code{foo.o} and @code{bindir.h}; so our explicit
4560 dependency is really useful to the first build only.)
4562 Adding explicit dependencies like this can be a bit dangerous if you are
4563 not careful enough.  This is due to the way Automake tries not to
4564 overwrite your rules (it assumes you know better than it).
4565 @code{foo.$(OBJEXT): bindir.h} supersedes any rule Automake may want to
4566 output to build @code{foo.$(OBJEXT)}.  It happens to work in this case
4567 because Automake doesn't have to output any @code{foo.$(OBJEXT):}
4568 target: it relies on a suffix rule instead (i.e., @code{.c.$(OBJEXT):}).
4569 Always check the generated @file{Makefile.in} if you do this.
4571 @unnumberedsubsec Build @file{bindir.h} from @file{configure}
4573 It's possible to define this preprocessor macro from @file{configure},
4574 either in @file{config.h} (@pxref{Defining Directories, , Defining
4575 Directories, autoconf, The Autoconf Manual}), or by processing a
4576 @file{bindir.h.in} file using @code{AC_CONFIG_FILES}
4577 (@pxref{Configuration Actions, ,Configuration Actions, autoconf, The
4578 Autoconf Manual}).
4580 At this point it should be clear that building @file{bindir.h} from
4581 @file{configure} work well for this example.  @file{bindir.h} will exist
4582 before you build any target, hence will not cause any dependency issue.
4584 The Makefile can be shrunk as follows.  We do not even have to mention
4585 @file{bindir.h}.
4587 @example
4588 bin_PROGRAMS = foo
4589 foo_SOURCES = foo.c
4590 @end example
4592 However, it's not always possible to build sources from
4593 @file{configure}, especially when these sources are generated by a tool
4594 that needs to be built first...
4596 @unnumberedsubsec Build @file{bindir.c}, not @file{bindir.h}.
4598 Another attractive idea is to define @code{bindir} as a variable or
4599 function exported from @file{bindir.o}, and build @file{bindir.c}
4600 instead of @file{bindir.h}.
4602 @example
4603 noinst_PROGRAMS = foo
4604 foo_SOURCES = foo.c bindir.h
4605 nodist_foo_SOURCES = bindir.c
4606 CLEANFILES = bindir.c
4607 bindir.c: Makefile
4608         echo 'const char bindir[] = "$(bindir)";' >$@
4609 @end example
4611 @file{bindir.h} contains just the variable's declaration and doesn't
4612 need to be built, so it won't cause any trouble.  @file{bindir.o} is
4613 always dependent on @file{bindir.c}, so @file{bindir.c} will get built
4614 first.
4616 @unnumberedsubsec Which is best?
4618 There is no panacea, of course.  Each solution has its merits and
4619 drawbacks.
4621 You cannot use @code{BUILT_SOURCES} if the ability to run @code{make
4622 foo} on a clean tree is important to you.
4624 You won't add explicit dependencies if you are leery of overriding
4625 an Automake rule by mistake.
4627 Building files from @file{./configure} is not always possible, neither
4628 is converting @file{.h} files into @file{.c} files.
4631 @node Other GNU Tools
4632 @chapter Other GNU Tools
4634 Since Automake is primarily intended to generate @file{Makefile.in}s for
4635 use in GNU programs, it tries hard to interoperate with other GNU tools.
4637 @menu
4638 * Emacs Lisp::                  Emacs Lisp
4639 * gettext::                     Gettext
4640 * Libtool::                     Libtool
4641 * Java::                        Java
4642 * Python::                      Python
4643 @end menu
4646 @node Emacs Lisp
4647 @section Emacs Lisp
4649 @cindex _LISP primary, defined
4650 @cindex LISP primary, defined
4651 @cindex Primary variable, LISP
4653 @vindex LISP
4654 @vindex lisp_LISP
4655 @vindex noinst_LISP
4657 Automake provides some support for Emacs Lisp.  The @samp{LISP} primary
4658 is used to hold a list of @file{.el} files.  Possible prefixes for this
4659 primary are @samp{lisp_} and @samp{noinst_}.  Note that if
4660 @code{lisp_LISP} is defined, then @file{configure.ac} must run
4661 @code{AM_PATH_LISPDIR} (@pxref{Macros}).
4663 Automake will byte-compile all Emacs Lisp source files using the Emacs
4664 found by @code{AM_PATH_LISPDIR}, if any was found.
4666 Byte-compiled Emacs Lisp files are not portable among all versions of
4667 Emacs, so it makes sense to turn this off if you expect sites to have
4668 more than one version of Emacs installed.  Furthermore, many packages
4669 don't actually benefit from byte-compilation.  Still, we recommend
4670 that you byte-compile your Emacs Lisp sources.  It is probably better
4671 for sites with strange setups to cope for themselves than to make the
4672 installation less nice for everybody else.
4674 There are two ways to avoid byte-compiling.  Historically, we have
4675 recommended the following construct.
4676 @example
4677 lisp_LISP = file1.el file2.el
4678 ELCFILES =
4679 @end example
4680 @noindent
4681 @code{ELCFILES} is an internal Automake variable that normally lists
4682 all @file{.elc} files that must be byte-compiled.  Automake defines
4683 @code{ELCFILES} automatically from @code{lisp_LISP}.  Emptying this
4684 variable explicitly prevents byte-compilation to occur.
4686 Since Automake 1.8, we now recommend using @code{lisp_DATA} instead.  As
4688 @example
4689 lisp_DATA = file1.el file2.el
4690 @end example
4692 Note that these two constructs are not equivalent.  @code{_LISP} will
4693 not install a file if Emacs is not installed, while @code{_DATA} will
4694 always install its files.
4696 @node gettext
4697 @section Gettext
4699 @cindex GNU Gettext support
4700 @cindex Gettext support
4701 @cindex Support for GNU Gettext
4703 If @code{AM_GNU_GETTEXT} is seen in @file{configure.ac}, then Automake
4704 turns on support for GNU gettext, a message catalog system for
4705 internationalization
4706 (@pxref{GNU Gettext, , , gettext, GNU gettext utilities}).
4708 The @code{gettext} support in Automake requires the addition of two
4709 subdirectories to the package, @file{intl} and @file{po}.  Automake
4710 insures that these directories exist and are mentioned in
4711 @code{SUBDIRS}.
4713 @vindex dist_lisp_LISP
4714 @vindex dist_noinst_LISP
4715 Lisp sources are not distributed by default.  You can prefix the
4716 @code{LISP} primary with @code{dist_}, as in @code{dist_lisp_LISP} or
4717 @code{dist_noinst_LISP}, to indicate that these files should be
4718 distributed.
4720 @node Libtool
4721 @section Libtool
4723 Automake provides support for GNU Libtool (@pxref{Top, , Introduction,
4724 libtool, The Libtool Manual}) with the @samp{LTLIBRARIES} primary.
4725 @xref{A Shared Library}.
4728 @node Java
4729 @section Java
4731 @cindex _JAVA primary, defined
4732 @cindex JAVA primary, defined
4733 @cindex Primary variable, JAVA
4735 Automake provides some minimal support for Java compilation with the
4736 @samp{JAVA} primary.
4738 Any @file{.java} files listed in a @samp{_JAVA} variable will be
4739 compiled with @code{JAVAC} at build time.  By default, @file{.class}
4740 files are not included in the distribution.
4742 @cindex JAVA restrictions
4743 @cindex Restrictions for JAVA
4745 Currently Automake enforces the restriction that only one @samp{_JAVA}
4746 primary can be used in a given @file{Makefile.am}.  The reason for this
4747 restriction is that, in general, it isn't possible to know which
4748 @file{.class} files were generated from which @file{.java} files -- so
4749 it would be impossible to know which files to install where.  For
4750 instance, a @file{.java} file can define multiple classes; the resulting
4751 @file{.class} file names cannot be predicted without parsing the
4752 @file{.java} file.
4754 There are a few variables which are used when compiling Java sources:
4756 @vtable @code
4757 @item JAVAC
4758 The name of the Java compiler.  This defaults to @samp{javac}.
4760 @item JAVACFLAGS
4761 The flags to pass to the compiler.  This is considered to be a user
4762 variable (@pxref{User Variables}).
4764 @item AM_JAVACFLAGS
4765 More flags to pass to the Java compiler.  This, and not
4766 @code{JAVACFLAGS}, should be used when it is necessary to put Java
4767 compiler flags into @file{Makefile.am}.
4769 @item JAVAROOT
4770 The value of this variable is passed to the @samp{-d} option to
4771 @code{javac}.  It defaults to @samp{$(top_builddir)}.
4773 @item CLASSPATH_ENV
4774 This variable is an @code{sh} expression which is used to set the
4775 @code{CLASSPATH} environment variable on the @code{javac} command line.
4776 (In the future we will probably handle class path setting differently.)
4777 @end vtable
4780 @node Python
4781 @section Python
4783 @cindex _PYTHON primary, defined
4784 @cindex PYTHON primary, defined
4785 @cindex Primary variable, PYTHON
4788 Automake provides support for Python compilation with the @samp{PYTHON}
4789 primary.
4791 Any files listed in a @samp{_PYTHON} variable will be byte-compiled with
4792 @code{py-compile} at install time.  @code{py-compile} actually creates
4793 both standard (@file{.pyc}) and byte-compiled (@file{.pyo}) versions of
4794 the source files.  Note that because byte-compilation occurs at install
4795 time, any files listed in @samp{noinst_PYTHON} will not be compiled.
4796 Python source files are included in the distribution by default.
4798 Automake ships with an Autoconf macro called @code{AM_PATH_PYTHON} which
4799 will determine some Python-related directory variables (see below).  If
4800 you have called @code{AM_PATH_PYTHON} from @file{configure.ac}, then you
4801 may use the following variables to list you Python source files in your
4802 variables: @samp{python_PYTHON}, @samp{pkgpython_PYTHON},
4803 @samp{pyexecdir_PYTHON}, @samp{pkgpyexecdir_PYTHON}, depending where you
4804 want your files installed.
4806 @code{AM_PATH_PYTHON([@var{VERSION}], [@var{ACTION-IF-FOUND}],
4807 [@var{ACTION-IF-NOT-FOUND}])} takes three optional arguments.  It will
4808 search a Python interpreter on the system.  The first argument, if
4809 present, is the minimum version of Python required for this package:
4810 @code{AM_PATH_PYTHON} will skip any Python interpreter which is older
4811 than @var{VERSION}.  If an interpreter is found and satisfies
4812 @var{VERSION}, then @var{ACTION-IF-FOUND} is run.  Otherwise,
4813 @var{ACTION-IF-NOT-FOUND} is run.
4815 If @var{ACTION-IF-NOT-FOUND} is not specified, the default is to abort
4816 configure.  This is fine when Python is an absolute requirement for the
4817 package.  Therefore if Python >= 2.2 is only @emph{optional} to the
4818 package, @code{AM_PATH_PYTHON} could be called as follows.
4820 @example
4821   AM_PATH_PYTHON(2.2,, :)
4822 @end example
4824 @code{AM_PATH_PYTHON} creates several output variables based on the
4825 Python installation found during configuration.
4827 @vtable @code
4828 @item PYTHON
4829 The name of the Python executable, or @code{:} if no suitable
4830 interpreter could be found.
4832 Assuming @var{ACTION-IF-NOT-FOUND} is used (otherwise @file{./configure}
4833 will abort if Python is absent), the value of @code{PYTHON} can be used
4834 to setup a conditional in order to disable the relevant part of a build
4835 as follows.
4837 @example
4838   AM_PATH_PYTHON(,, :)
4839   AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
4840 @end example
4843 If the @var{ACTION-IF-NOT-FOUND}
4844 is specified
4846 @item PYTHON_VERSION
4847 The Python version number, in the form @var{major}.@var{minor}
4848 (e.g. @samp{1.5}).  This is currently the value of
4849 @code{sys.version[:3]}.
4851 @item PYTHON_PREFIX
4852 The string @code{$@{prefix@}}.  This term may be used in future work
4853 which needs the contents of Python's @code{sys.prefix}, but general
4854 consensus is to always use the value from configure.
4856 @item PYTHON_EXEC_PREFIX
4857 The string @code{$@{exec_prefix@}}.  This term may be used in future work
4858 which needs the contents of Python's @code{sys.exec_prefix}, but general
4859 consensus is to always use the value from configure.
4861 @item PYTHON_PLATFORM
4862 The canonical name used by Python to describe the operating system, as
4863 given by @code{sys.platform}.  This value is sometimes needed when
4864 building Python extensions.
4866 @item pythondir
4867 The directory name for the @file{site-packages} subdirectory of the
4868 standard Python install tree.
4870 @item pkgpythondir
4871 This is is the directory under @code{pythondir} which is named after the
4872 package.  That is, it is @samp{$(pythondir)/$(PACKAGE)}.  It is provided
4873 as a convenience.
4875 @item pyexecdir
4876 This is the directory where Python extension modules (shared libraries)
4877 should be installed.
4879 @item pkgpyexecdir
4880 This is a convenience variable which is defined as
4881 @samp{$(pyexecdir)/$(PACKAGE)}.
4882 @end vtable
4884 All these directory variables have values that start with either
4885 @code{$@{prefix@}} or @code{$@{exec_prefix@}} unexpanded.  This works
4886 fine in @file{Makefiles}, but it makes these variables hard to use in
4887 @file{configure}.  This is mandated by the GNU coding standards, so
4888 that the user can run @code{make prefix=/foo install}.  The Autoconf
4889 manual has a section with more details on this topic
4890 (@pxref{Installation Directory Variables, , Installation Directory
4891 Variables, autoconf, The Autoconf Manual}).
4894 @node Documentation
4895 @chapter Building documentation
4897 Currently Automake provides support for Texinfo and man pages.
4899 @menu
4900 * Texinfo::                     Texinfo
4901 * Man pages::                   Man pages
4902 @end menu
4905 @node Texinfo
4906 @section Texinfo
4908 @cindex _TEXINFOS primary, defined
4909 @cindex TEXINFOS primary, defined
4910 @cindex Primary variable, TEXINFOS
4911 @cindex HTML output using Texinfo
4912 @cindex PDF output using Texinfo
4913 @cindex PS output using Texinfo
4914 @cindex DVI output using Texinfo
4916 If the current directory contains Texinfo source, you must declare it
4917 with the @samp{TEXINFOS} primary.  Generally Texinfo files are converted
4918 into info, and thus the @code{info_TEXINFOS} variable is most commonly used
4919 here.  Any Texinfo source file must end in the @file{.texi},
4920 @file{.txi}, or @file{.texinfo} extension.  We recommend @file{.texi}
4921 for new manuals.
4922 @vindex TEXINFOS
4923 @vindex info_TEXINFOS
4925 Automake generates rules to build @file{.info}, @file{.dvi}, @file{.ps},
4926 @file{.pdf} and @file{.html} files from your Texinfo sources.
4927 The @file{.info} files are built by @code{make all} and installed
4928 by @code{make install} (unless you use @code{no-installinfo}, see below).
4929 The other files can be built on request by @code{make dvi}, @code{make ps},
4930 @code{make pdf} and @code{make html}.
4932 @cindex Texinfo flag, VERSION
4933 @cindex Texinfo flag, UPDATED
4934 @cindex Texinfo flag, EDITION
4935 @cindex Texinfo flag, UPDATED-MONTH
4937 @cindex VERSION Texinfo flag
4938 @cindex UPDATED Texinfo flag
4939 @cindex EDITION Texinfo flag
4940 @cindex UPDATED-MONTH Texinfo flag
4942 @cindex mdate-sh
4944 If the @file{.texi} file @code{@@include}s @file{version.texi}, then
4945 that file will be automatically generated.  The file @file{version.texi}
4946 defines four Texinfo flag you can reference using
4947 @code{@@value@{EDITION@}}, @code{@@value@{VERSION@}},
4948 @code{@@value@{UPDATED@}}, and @code{@@value@{UPDATED-MONTH@}}.
4950 @table @code
4951 @item EDITION
4952 @itemx VERSION
4953 Both of these flags hold the version number of your program.  They are
4954 kept separate for clarity.
4956 @item UPDATED
4957 This holds the date the primary @file{.texi} file was last modified.
4959 @item UPDATED-MONTH
4960 This holds the name of the month in which the primary @file{.texi} file
4961 was last modified.
4962 @end table
4964 The @file{version.texi} support requires the @code{mdate-sh} program;
4965 this program is supplied with Automake and automatically included when
4966 @code{automake} is invoked with the @code{--add-missing} option.
4968 If you have multiple Texinfo files, and you want to use the
4969 @file{version.texi} feature, then you have to have a separate version
4970 file for each Texinfo file.  Automake will treat any include in a
4971 Texinfo file that matches @samp{vers*.texi} just as an automatically
4972 generated version file.
4974 Sometimes an info file actually depends on more than one @file{.texi}
4975 file.  For instance, in GNU Hello, @file{hello.texi} includes the file
4976 @file{gpl.texi}.  You can tell Automake about these dependencies using
4977 the @code{@var{texi}_TEXINFOS} variable.  Here is how GNU Hello does it:
4978 @vindex TEXINFOS
4979 @vindex _TEXINFOS
4981 @example
4982 info_TEXINFOS = hello.texi
4983 hello_TEXINFOS = gpl.texi
4984 @end example
4986 @cindex texinfo.tex
4988 By default, Automake requires the file @file{texinfo.tex} to appear in
4989 the same directory as the Texinfo source (this can be changed using the
4990 @code{TEXINFO_TEX} variable, see below).  However, if you used
4991 @code{AC_CONFIG_AUX_DIR} in @file{configure.ac} (@pxref{Input, , Finding
4992 `configure' Input, autoconf, The Autoconf Manual}), then
4993 @file{texinfo.tex} is looked for there.  Automake supplies
4994 @file{texinfo.tex} if @samp{--add-missing} is given.
4996 @opindex no-texinfo.tex
4998 The option @samp{no-texinfo.tex} can be used to eliminate the
4999 requirement for @file{texinfo.tex}.  Use of the variable
5000 @code{TEXINFO_TEX} is preferable, however, because that allows the
5001 @code{dvi}, @code{ps}, and @code{pdf} targets to still work.
5003 @cindex Rule, install-info
5004 @cindex Rule, noinstall-info
5005 @cindex Target, install-info
5006 @cindex Target, noinstall-info
5007 @cindex install-info target
5008 @cindex noinstall-info target
5010 @opindex no-installinfo
5011 @trindex install-info
5013 Automake generates an @code{install-info} rule; some people apparently
5014 use this.  By default, info pages are installed by @samp{make install}.
5015 This can be prevented via the @code{no-installinfo} option.
5017 The following variables are used by the Texinfo build rules.
5019 @vtable @code
5020 @item MAKEINFO
5021 The name of the program invoked to build @file{.info} files.  This
5022 variable is defined by Automake.  If the @code{makeinfo} program is
5023 found on the system then it will be used by default; otherwise
5024 @code{missing} will be used instead.
5026 @item MAKEINFOHTML
5027 The command invoked to build @file{.html} files.  Automake
5028 defines this to @code{$(MAKEINFO) --html}.
5030 @item MAKEINFOFLAGS
5031 User flags passed to each invocation of @code{$(MAKEINFO)} and
5032 @code{$(MAKEINFOHTML)}.  This user variable (@pxref{User Variables}) is
5033 not expected to be defined in any @file{Makefile}; it can be used by
5034 users to pass extra flags to suit their needs.
5036 @item AM_MAKEINFOFLAGS
5037 @itemx AM_MAKEINFOHTMLFLAGS
5038 Maintainer flags passed to each @code{makeinfo} invocation.  These
5039 are maintainer variables that can be overridden in @file{Makefile.am}.
5040 @code{$(AM_MAKEINFOFLAGS)} is passed to @code{makeinfo} when building
5041 @file{.info} files; and @code{$(AM_MAKEINFOHTMLFLAGS)} is used when
5042 building @file{.html} files.
5044 For instance the following setting can be used to obtain one single
5045 @file{.html} file per manual, without node separators.
5046 @example
5047 AM_MAKEINFOHTMLFLAGS = --no-headers --no-split
5048 @end example
5050 By default, @code{$(AM_MAKEINFOHTMLFLAGS)} is set to
5051 @code{$(AM_MAKEINFOFLAGS)}.  This means that defining
5052 @code{$(AM_MAKEINFOFLAGS)} without defining
5053 @code{$(AM_MAKEINFOHTMLFLAGS)} will impact builds of both @file{.info}
5054 and @file{.html} files.
5056 @item TEXI2DVI
5057 The name of the command that converts a @file{.texi} file into a
5058 @file{.dvi} file.  This defaults to @code{texi2dvi}, a script that ships
5059 with the Texinfo package.
5061 @item TEXI2PDF
5062 The name of the command that translates a @file{.texi} file into a
5063 @file{.pdf} file.  This defaults to @code{$(TEXI2DVI) --pdf --batch}.
5065 @item DVIPS
5066 The name of the command that build a @file{.ps} file out of a
5067 @file{.dvi} file.  This defaults to @code{dvips}.
5069 @item TEXINFO_TEX
5071 If your package has Texinfo files in many directories, you can use the
5072 variable @code{TEXINFO_TEX} to tell Automake where to find the canonical
5073 @file{texinfo.tex} for your package.  The value of this variable should
5074 be the relative path from the current @file{Makefile.am} to
5075 @file{texinfo.tex}:
5077 @example
5078 TEXINFO_TEX = ../doc/texinfo.tex
5079 @end example
5080 @end vtable
5083 @node Man pages
5084 @section Man pages
5086 @cindex _MANS primary, defined
5087 @cindex MANS primary, defined
5088 @cindex Primary variable, MANS
5090 A package can also include man pages (but see the GNU standards on this
5091 matter, @ref{Man Pages, , , standards, The GNU Coding Standards}.)  Man
5092 pages are declared using the @samp{MANS} primary.  Generally the
5093 @code{man_MANS} variable is used.  Man pages are automatically installed in
5094 the correct subdirectory of @code{mandir}, based on the file extension.
5095 @vindex MANS
5096 @vindex man_MANS
5098 File extensions such as @samp{.1c} are handled by looking for the valid
5099 part of the extension and using that to determine the correct
5100 subdirectory of @code{mandir}.  Valid section names are the digits
5101 @samp{0} through @samp{9}, and the letters @samp{l} and @samp{n}.
5103 Sometimes developers prefer to name a man page something like
5104 @file{foo.man} in the source, and then rename it to have the correct
5105 suffix, e.g. @file{foo.1}, when installing the file.  Automake also
5106 supports this mode.  For a valid section named @var{SECTION}, there is a
5107 corresponding directory named @samp{man@var{SECTION}dir}, and a
5108 corresponding @samp{_MANS} variable.  Files listed in such a variable
5109 are installed in the indicated section.  If the file already has a
5110 valid suffix, then it is installed as-is; otherwise the file suffix is
5111 changed to match the section.
5113 For instance, consider this example:
5114 @example
5115 man1_MANS = rename.man thesame.1 alsothesame.1c
5116 @end example
5118 In this case, @file{rename.man} will be renamed to @file{rename.1} when
5119 installed, but the other files will keep their names.
5121 @cindex Rule, install-man
5122 @cindex Rule, noinstall-man
5123 @cindex Target, install-man
5124 @cindex Target, noinstall-man
5125 @cindex install-man target
5126 @cindex noinstall-man target
5128 @c Use @samp{make install} per documentation: (texi)code.
5129 By default, man pages are installed by @samp{make install}.  However,
5130 since the GNU project does not require man pages, many maintainers do
5131 not expend effort to keep the man pages up to date.  In these cases, the
5132 @code{no-installman} option will prevent the man pages from being
5133 installed by default.  The user can still explicitly install them via
5134 @samp{make install-man}.
5135 @opindex no-installman
5136 @trindex install-man
5138 Here is how the man pages are handled in GNU @code{cpio} (which includes
5139 both Texinfo documentation and man pages):
5141 @example
5142 man_MANS = cpio.1 mt.1
5143 EXTRA_DIST = $(man_MANS)
5144 @end example
5146 Man pages are not currently considered to be source, because it is not
5147 uncommon for man pages to be automatically generated.  Therefore they
5148 are not automatically included in the distribution.  However, this can
5149 be changed by use of the @samp{dist_} prefix.
5151 The @samp{nobase_} prefix is meaningless for man pages and is
5152 disallowed.
5155 @node Install
5156 @chapter What Gets Installed
5158 @cindex Installation support
5159 @cindex make install support
5161 @section Basics of installation
5163 Naturally, Automake handles the details of actually installing your
5164 program once it has been built.  All files named by the various
5165 primaries are automatically installed in the appropriate places when the
5166 user runs @code{make install}.
5168 A file named in a primary is installed by copying the built file into
5169 the appropriate directory.  The base name of the file is used when
5170 installing.
5172 @example
5173 bin_PROGRAMS = hello subdir/goodbye
5174 @end example
5176 In this example, both @samp{hello} and @samp{goodbye} will be installed
5177 in @code{$(bindir)}.
5179 Sometimes it is useful to avoid the basename step at install time.  For
5180 instance, you might have a number of header files in subdirectories of
5181 the source tree which are laid out precisely how you want to install
5182 them.  In this situation you can use the @samp{nobase_} prefix to
5183 suppress the base name step.  For example:
5185 @example
5186 nobase_include_HEADERS = stdio.h sys/types.h
5187 @end example
5189 Will install @file{stdio.h} in @code{$(includedir)} and @file{types.h}
5190 in @code{$(includedir)/sys}.
5192 @section The two parts of install
5194 Automake generates separate @code{install-data} and @code{install-exec}
5195 rules, in case the installer is installing on multiple machines which
5196 share directory structure---these targets allow the machine-independent
5197 parts to be installed only once.  @code{install-exec} installs
5198 platform-dependent files, and @code{install-data} installs
5199 platform-independent files.  The @code{install} target depends on both
5200 of these targets.  While Automake tries to automatically segregate
5201 objects into the correct category, the @file{Makefile.am} author is, in
5202 the end, responsible for making sure this is done correctly.
5203 @trindex install-data
5204 @trindex install-exec
5205 @trindex install
5206 @cindex Install, two parts of
5208 Variables using the standard directory prefixes @samp{data},
5209 @samp{info}, @samp{man}, @samp{include}, @samp{oldinclude},
5210 @samp{pkgdata}, or @samp{pkginclude} (e.g. @samp{data_DATA}) are
5211 installed by @samp{install-data}.
5213 Variables using the standard directory prefixes @samp{bin}, @samp{sbin},
5214 @samp{libexec}, @samp{sysconf}, @samp{localstate}, @samp{lib}, or
5215 @samp{pkglib} (e.g. @samp{bin_PROGRAMS}) are installed by
5216 @samp{install-exec}.
5218 Any variable using a user-defined directory prefix with @samp{exec} in
5219 the name (e.g. @samp{myexecbin_PROGRAMS} is installed by
5220 @samp{install-exec}.  All other user-defined prefixes are installed by
5221 @samp{install-data}.
5223 @section Extending installation
5225 It is possible to extend this mechanism by defining an
5226 @code{install-exec-local} or @code{install-data-local} rule.  If these
5227 rules exist, they will be run at @samp{make install} time.  These
5228 rules can do almost anything; care is required.
5229 @trindex install-exec-local
5230 @trindex install-data-local
5232 Automake also supports two install hooks, @code{install-exec-hook} and
5233 @code{install-data-hook}.  These hooks are run after all other install
5234 rules of the appropriate type, exec or data, have completed.  So, for
5235 instance, it is possible to perform post-installation modifications
5236 using an install hook.
5237 @cindex Install hook
5239 @section Staged installs
5241 @vindex DESTDIR
5242 Automake generates support for the @samp{DESTDIR} variable in all
5243 install rules.  @samp{DESTDIR} is used during the @samp{make install}
5244 step to relocate install objects into a staging area.  Each object and
5245 path is prefixed with the value of @samp{DESTDIR} before being copied
5246 into the install area.  Here is an example of typical DESTDIR usage:
5248 @example
5249 make DESTDIR=/tmp/staging install
5250 @end example
5252 This places install objects in a directory tree built under
5253 @file{/tmp/staging}.  If @file{/gnu/bin/foo} and
5254 @file{/gnu/share/aclocal/foo.m4} are to be installed, the above command
5255 would install @file{/tmp/staging/gnu/bin/foo} and
5256 @file{/tmp/staging/gnu/share/aclocal/foo.m4}.
5258 This feature is commonly used to build install images and packages.  For
5259 more information, see @ref{Makefile Conventions, , , standards, The GNU
5260 Coding Standards}.
5262 Support for @samp{DESTDIR} is implemented by coding it directly into the
5263 install rules.  If your @file{Makefile.am} uses a local install rule
5264 (e.g., @code{install-exec-local}) or an install hook, then you must
5265 write that code to respect @samp{DESTDIR}.
5267 @section Rules for the user
5269 Automake also generates rules for targets @code{uninstall},
5270 @code{installdirs}, and @code{install-strip}.
5271 @trindex uninstall
5272 @trindex installdirs
5273 @trindex install-strip
5275 Automake supports @code{uninstall-local} and @code{uninstall-hook}.
5276 There is no notion of separate uninstalls for ``exec'' and ``data'', as
5277 these features would not provide additional functionality.
5279 Note that @code{uninstall} is not meant as a replacement for a real
5280 packaging tool.
5283 @node Clean
5284 @chapter What Gets Cleaned
5286 @cindex make clean support
5288 The GNU Makefile Standards specify a number of different clean rules.
5289 See @xref{Standard Targets, , Standard Targets for Users, standards,
5290 The GNU Coding Standards}.
5292 Generally the files that can be cleaned are determined automatically by
5293 Automake.  Of course, Automake also recognizes some variables that can
5294 be defined to specify additional files to clean.  These variables are
5295 @code{MOSTLYCLEANFILES}, @code{CLEANFILES}, @code{DISTCLEANFILES}, and
5296 @code{MAINTAINERCLEANFILES}.
5297 @vindex MOSTLYCLEANFILES
5298 @vindex CLEANFILES
5299 @vindex DISTCLEANFILES
5300 @vindex MAINTAINERCLEANFILES
5302 As the GNU Standards aren't always explicit as to which files should be
5303 removed by which rule, we've adopted a heuristic which we believe was
5304 first formulated by Fran@,{c}ois Pinard:
5306 @itemize @bullet
5307 @item
5308 If @code{make} built it, and it is commonly something that one would
5309 want to rebuild (for instance, a @file{.o} file), then
5310 @code{mostlyclean} should delete it.
5312 @item
5313 Otherwise, if @code{make} built it, then @code{clean} should delete it.
5315 @item
5316 If @code{configure} built it, then @code{distclean} should delete it.
5318 @item
5319 If the maintainer built it (for instance, a @file{.info} file), then
5320 @code{maintainer-clean} should delete it.  However
5321 @code{maintainer-clean} should not delete anything that needs to exist
5322 in order to run @code{./configure && make}.
5323 @end itemize
5325 We recommend that you follow this same set of heuristics in your
5326 @file{Makefile.am}.
5329 @node Dist
5330 @chapter What Goes in a Distribution
5332 @section Basics of distribution
5334 @cindex make dist
5336 The @code{dist} rule in the generated @file{Makefile.in} can be used
5337 to generate a gzip'd @code{tar} file and other flavors of archive for
5338 distribution.  The files is named based on the @samp{PACKAGE} and
5339 @samp{VERSION} variables defined by @code{AM_INIT_AUTOMAKE}
5340 (@pxref{Macros}); more precisely the gzip'd @code{tar} file is named
5341 @samp{@var{package}-@var{version}.tar.gz}.
5342 @cvindex PACKAGE
5343 @cvindex VERSION
5344 @trindex dist
5345 You can use the @code{make} variable @samp{GZIP_ENV} to control how gzip
5346 is run.  The default setting is @samp{--best}.
5348 For the most part, the files to distribute are automatically found by
5349 Automake: all source files are automatically included in a distribution,
5350 as are all @file{Makefile.am}s and @file{Makefile.in}s.  Automake also
5351 has a built-in list of commonly used files which are automatically
5352 included if they are found in the current directory (either physically,
5353 or as the target of a @file{Makefile.am} rule).  This list is printed by
5354 @samp{automake --help}.  Also, files which are read by @code{configure}
5355 (i.e. the source files corresponding to the files specified in various
5356 Autoconf macros such as @code{AC_CONFIG_FILES} and siblings) are
5357 automatically distributed.  Files included in @file{Makefile.am}s (using
5358 @code{include}) or in @file{configure.ac} (using @code{m4_include}), and
5359 helper scripts installed with @samp{automake --add-missing} are also
5360 distributed.
5362 @cvindex m4_include, distribution
5364 Still, sometimes there are files which must be distributed, but which
5365 are not covered in the automatic rules.  These files should be listed in
5366 the @code{EXTRA_DIST} variable.  You can mention files from
5367 subdirectories in @code{EXTRA_DIST}.
5369 You can also mention a directory in @code{EXTRA_DIST}; in this case the
5370 entire directory will be recursively copied into the distribution.
5371 Please note that this will also copy @emph{everything} in the directory,
5372 including CVS/RCS version control files.  We recommend against using
5373 this feature.
5374 @vindex EXTRA_DIST
5376 If you define @code{SUBDIRS}, Automake will recursively include the
5377 subdirectories in the distribution.  If @code{SUBDIRS} is defined
5378 conditionally (@pxref{Conditionals}), Automake will normally include all
5379 directories that could possibly appear in @code{SUBDIRS} in the
5380 distribution.  If you need to specify the set of directories
5381 conditionally, you can set the variable @code{DIST_SUBDIRS} to the exact
5382 list of subdirectories to include in the distribution (@pxref{Top level}).
5383 @vindex DIST_SUBDIRS
5386 @section Fine-grained distribution control
5388 Sometimes you need tighter control over what does @emph{not} go into the
5389 distribution; for instance you might have source files which are
5390 generated and which you do not want to distribute.  In this case
5391 Automake gives fine-grained control using the @samp{dist} and
5392 @samp{nodist} prefixes.  Any primary or @samp{_SOURCES} variable can be
5393 prefixed with @samp{dist_} to add the listed files to the distribution.
5394 Similarly, @samp{nodist_} can be used to omit the files from the
5395 distribution.
5396 @vindex dist_
5397 @vindex nodist_
5399 As an example, here is how you would cause some data to be distributed
5400 while leaving some source code out of the distribution:
5402 @example
5403 dist_data_DATA = distribute-this
5404 bin_PROGRAMS = foo
5405 nodist_foo_SOURCES = do-not-distribute.c
5406 @end example
5408 @section The dist hook
5410 @trindex dist-hook
5412 Occasionally it is useful to be able to change the distribution before
5413 it is packaged up.  If the @code{dist-hook} rule exists, it is run
5414 after the distribution directory is filled, but before the actual tar
5415 (or shar) file is created.  One way to use this is for distributing
5416 files in subdirectories for which a new @file{Makefile.am} is overkill:
5418 @example
5419 dist-hook:
5420         mkdir $(distdir)/random
5421         cp -p $(srcdir)/random/a1 $(srcdir)/random/a2 $(distdir)/random
5422 @end example
5424 Another way to to use this is for removing unnecessary files that get
5425 recursively included by specifying a directory in EXTRA_DIST:
5427 @example
5428 EXTRA_DIST = doc
5430 dist-hook:
5431         rm -rf `find $(distdir)/doc -name CVS`
5432 @end example
5434 @vindex distdir
5435 @vindex top_distdir
5436 Two variables that come handy when writing @code{dist-hook} rules are
5437 @code{$(distdir)} and @code{$(top_distdir)}.
5439 @code{$(distdir)} points to the directory where the @code{dist} rule
5440 will copy files from the current directory before creating the
5441 tarball.  If you are at the top-level directory, then @code{distdir =
5442 $(PACKAGE)-$(VERSION)}.  When used from subdirectory named
5443 @file{foo/}, then @code{distdir = ../$(PACKAGE)-$(VERSION)/foo}.
5445 @code{$(top_distdir)} always points to the root directory of the
5446 distributed tree.  At the top-level it's equal to @code{$(distdir)}.
5447 In the @file{foo/} subdirectory
5448 @code{top_distdir = ../$(PACKAGE)-$(VERSION)}.
5450 Note that when packages are nested using @code{AC_CONFIG_SUBDIRS}
5451 (@pxref{Subdirectories, AC_CONFIG_SUBDIRS, Configuring Other Packages
5452 in Subdirectories, autoconf, The Autoconf Manual}), then
5453 @code{$(distdir)} and @code{$(top_distdir)} are relative to the
5454 package where @code{make dist} was run, not to any sub-packages
5455 involved.
5457 @section Checking the distribution
5459 @cindex make distcheck
5460 @cindex make distcleancheck
5461 @vindex distcleancheck_listfiles
5462 @cindex make distuninstallcheck
5463 @vindex distuninstallcheck_listfiles
5465 Automake also generates a @code{distcheck} rule which can be of help
5466 to ensure that a given distribution will actually work.
5467 @code{distcheck} makes a distribution, then tries to do a @code{VPATH}
5468 build, run the test suite, and finally make another tarfile to ensure the
5469 distribution is self-contained.
5470 @trindex distcheck
5472 Building the package involves running @code{./configure}.  If you need
5473 to supply additional flags to @code{configure}, define them in the
5474 @code{DISTCHECK_CONFIGURE_FLAGS} variable, either in your top-level
5475 @file{Makefile.am}, or on the command line when invoking @code{make}.
5476 @vindex DISTCHECK_CONFIGURE_FLAGS
5478 If the @code{distcheck-hook} rule is defined in your top-level
5479 @file{Makefile.am}, then it will be invoked by @code{distcheck} after
5480 the new distribution has been unpacked, but before the unpacked copy
5481 is configured and built.  Your @code{distcheck-hook} can do almost
5482 anything, though as always caution is advised.  Generally this hook is
5483 used to check for potential distribution errors not caught by the
5484 standard mechanism.  Note that @code{distcheck-hook} as well as
5485 @code{DISTCHECK_CONFIGURE_FLAGS} are not honored in a subpackage
5486 @file{Makefile.am}, but the @code{DISTCHECK_CONFIGURE_FLAGS} are
5487 passed down to the @code{configure} script of the subpackage.
5490 Speaking about potential distribution errors, @code{distcheck} will also
5491 ensure that the @code{distclean} rule actually removes all built
5492 files.  This is done by running @code{make distcleancheck} at the end of
5493 the @code{VPATH} build.  By default, @code{distcleancheck} will run
5494 @code{distclean} and then make sure the build tree has been emptied by
5495 running @code{$(distcleancheck_listfiles)}.  Usually this check will
5496 find generated files that you forgot to add to the @code{DISTCLEANFILES}
5497 variable (@pxref{Clean}).
5498 @trindex distcleancheck
5500 The @code{distcleancheck} behavior should be OK for most packages,
5501 otherwise you have the possibility to override the definition of
5502 either the @code{distcleancheck} rule, or the
5503 @code{$(distcleancheck_listfiles)} variable.  For instance to disable
5504 @code{distcleancheck} completely, add the following rule to your
5505 top-level @file{Makefile.am}:
5506 @vindex distcleancheck_listfiles
5508 @example
5509 distcleancheck:
5510         @@:
5511 @end example
5513 If you want @code{distcleancheck} to ignore built files which have not
5514 been cleaned because they are also part of the distribution, add the
5515 following definition instead:
5517 @example
5518 distcleancheck_listfiles = \
5519   find -type f -exec sh -c 'test -f $(srcdir)/@{@} || echo @{@}' ';'
5520 @end example
5522 The above definition is not the default because it's usually an error if
5523 your Makefiles cause some distributed files to be rebuilt when the user
5524 build the package.  (Think about the user missing the tool required to
5525 build the file; or if the required tool is built by your package,
5526 consider the cross-compilation case where it can't be run.)  There is
5527 a FAQ entry about this (@pxref{distcleancheck}), make sure you read it
5528 before playing with @code{distcleancheck_listfiles}.
5530 @code{distcheck} also checks that the @code{uninstall} rule works
5531 properly, both for ordinary and @samp{DESTDIR} builds.  It does this
5532 by invoking @code{make uninstall}, and then it checks the install tree
5533 to see if any files are left over.  This check will make sure that you
5534 correctly coded your @code{uninstall}-related rules.
5536 By default, the checking is done by the @code{distuninstallcheck} rule,
5537 and the list of files in the install tree is generated by
5538 @code{$(distuninstallcheck_listfiles}) (this is a variable whose value is
5539 a shell command to run that prints the list of files to stdout).
5541 Either of these can be overridden to modify the behavior of
5542 @code{distcheck}.  For instance, to disable this check completely, you
5543 would write:
5545 @example
5546 distuninstallcheck:
5547         @@:
5548 @end example
5550 @section The types of distributions
5552 Automake generates rules to provide archives of the project for
5553 distributions in various formats.  Their targets are:
5555 @table @asis
5556 @item @code{dist-bzip2}
5557 Generate a bzip2 tar archive of the distribution.  bzip2 archives are
5558 frequently smaller than gzipped archives.
5559 @trindex dist-bzip2
5561 @item @code{dist-gzip}
5562 Generate a gzip tar archive of the distribution.
5563 @trindex dist-gzip
5565 @item @code{dist-shar}
5566 Generate a shar archive of the distribution.
5567 @trindex dist-shar
5569 @item @code{dist-zip}
5570 Generate a zip archive of the distribution.
5571 @trindex dist-zip
5573 @item @code{dist-tarZ}
5574 Generate a compressed tar archive of
5575 the distribution.
5576 @trindex dist-tarZ
5577 @end table
5579 The rule @code{dist} (and its historical synonym @code{dist-all}) will
5580 create archives in all the enabled formats, @ref{Options}.  By
5581 default, only the @code{dist-gzip} target is hooked to @code{dist}.
5584 @node Tests
5585 @chapter Support for test suites
5587 @cindex Test suites
5588 @cindex make check
5590 Automake supports two forms of test suites.
5592 @section Simple Tests
5594 If the variable @code{TESTS} is defined, its value is taken to be a list
5595 of programs to run in order to do the testing.  The programs can either
5596 be derived objects or source objects; the generated rule will look both
5597 in @code{srcdir} and @file{.}.  Programs needing data files should look
5598 for them in @code{srcdir} (which is both an environment variable and a
5599 make variable) so they work when building in a separate directory
5600 (@pxref{Build Directories, , Build Directories , autoconf, The Autoconf
5601 Manual}), and in particular for the @code{distcheck} rule
5602 (@pxref{Dist}).
5604 @cindex Exit status 77, special interpretation
5606 The number of failures will be printed at the end of the run.  If a
5607 given test program exits with a status of 77, then its result is ignored
5608 in the final count.  This feature allows non-portable tests to be
5609 ignored in environments where they don't make sense.
5611 The variable @code{TESTS_ENVIRONMENT} can be used to set environment
5612 variables for the test run; the environment variable @code{srcdir} is
5613 set in the rule.  If all your test programs are scripts, you can also
5614 set @code{TESTS_ENVIRONMENT} to an invocation of the shell (e.g.
5615 @samp{$(SHELL) -x}); this can be useful for debugging the tests.
5616 @vindex TESTS
5617 @vindex TESTS_ENVIRONMENT
5619 @cindex Tests, expected failure
5620 @cindex Expected test failure
5622 You may define the variable @code{XFAIL_TESTS} to a list of tests
5623 (usually a subset of @code{TESTS}) that are expected to fail.  This will
5624 reverse the result of those tests.
5625 @vindex XFAIL_TESTS
5627 Automake ensures that each program listed in @code{TESTS} is built
5628 before any tests are run; you can list both source and derived programs
5629 in @code{TESTS}.  For instance, you might want to run a C program as a
5630 test.  To do this you would list its name in @code{TESTS} and also in
5631 @code{check_PROGRAMS}, and then specify it as you would any other
5632 program.
5634 @section DejaGnu Tests
5636 If @uref{ftp://ftp.gnu.org/gnu/dejagnu/, @samp{dejagnu}} appears in
5637 @code{AUTOMAKE_OPTIONS}, then a @code{dejagnu}-based test suite is
5638 assumed.  The variable @code{DEJATOOL} is a list of names which are
5639 passed, one at a time, as the @code{--tool} argument to @code{runtest}
5640 invocations; it defaults to the name of the package.
5642 The variable @code{RUNTESTDEFAULTFLAGS} holds the @code{--tool} and
5643 @code{--srcdir} flags that are passed to dejagnu by default; this can be
5644 overridden if necessary.
5645 @vindex RUNTESTDEFAULTFLAGS
5647 The variables @code{EXPECT} and @code{RUNTEST} can
5648 also be overridden to provide project-specific values.  For instance,
5649 you will need to do this if you are testing a compiler toolchain,
5650 because the default values do not take into account host and target
5651 names.
5652 @opindex dejagnu
5653 @vindex DEJATOOL
5654 @vindex EXPECT
5655 @vindex RUNTEST
5657 The contents of the variable @code{RUNTESTFLAGS} are passed to the
5658 @code{runtest} invocation.  This is considered a ``user variable''
5659 (@pxref{User Variables}).  If you need to set @code{runtest} flags in
5660 @file{Makefile.am}, you can use @code{AM_RUNTESTFLAGS} instead.
5661 @vindex RUNTESTFLAGS
5662 @vindex AM_RUNTESTFLAGS
5664 @cindex @file{site.exp}
5665 Automake will generate rules to create a local @file{site.exp} file,
5666 defining various variables detected by @code{./configure}.  This file
5667 is automatically read by DejaGnu.  It is OK for the user of a package
5668 to edit this file in order to tune the test suite.  However this is
5669 not the place where the test suite author should define new variables:
5670 this should be done elsewhere in the real test suite code.
5671 Especially, @file{site.exp} should not be distributed.
5673 For more information regarding DejaGnu test suites, see @xref{Top, , ,
5674 dejagnu, The DejaGnu Manual}.
5676 In either case, the testing is done via @samp{make check}.
5678 @section Install Tests
5680 The @code{installcheck} target is available to the user as a way to
5681 run any tests after the package has been installed.  You can add tests
5682 to this by writing an @code{installcheck-local} rule.
5685 @node Rebuilding
5686 @chapter Rebuilding Makefiles
5687 @cindex rebuild rules
5689 Automake generates rules to automatically rebuild @file{Makefile}s,
5690 @file{configure}, and other derived files like @file{Makefile.in}.
5692 @cvindex AM_MAINTAINER_MODE
5693 If you are using @code{AM_MAINTAINER_MODE} in @file{configure.ac}, then
5694 these automatic rebuilding rules are only enabled in maintainer mode.
5696 @vindex ACLOCAL_AMFLAGS
5697 Sometimes you need to run @code{aclocal} with an argument like @code{-I}
5698 to tell it where to find @file{.m4} files.  Since sometimes @code{make}
5699 will automatically run @code{aclocal}, you need a way to specify these
5700 arguments.  You can do this by defining @code{ACLOCAL_AMFLAGS}; this
5701 holds arguments which are passed verbatim to @code{aclocal}.  This variable
5702 is only useful in the top-level @file{Makefile.am}.
5704 @vindex CONFIG_STATUS_DEPENDENCIES
5705 @vindex CONFIGURE_DEPENDENCIES
5706 @cindex @file{version.sh}, example
5707 @cindex @file{version.m4}, example
5709 Sometimes it is convenient to supplement the rebuild rules for
5710 @file{configure} or @file{config.status} with additional dependencies.
5711 The variables @code{CONFIGURE_DEPENDENCIES} and
5712 @code{CONFIG_STATUS_DEPENDENCIES} can be used to list these extra
5713 dependencies.  These variable should be defined in all
5714 @file{Makefile}s of the tree (because these two rebuild rules are
5715 output in all them), so it is safer and easier to @code{AC_SUBST} them
5716 from @file{configure.ac}.  For instance the following statement will
5717 cause @file{configure} to be rerun each time @file{version.sh} is
5718 changed.
5719 @example
5720 AC_SUBST([CONFIG_STATUS_DEPENDENCIES], ['$(top_srcdir)/version.sh'])
5721 @end example
5722 @noindent
5723 Note the @code{$(top_srcdir)/} in the filename.  Since this variable
5724 is to be used in all @file{Makefile}s, its value must be sensible at
5725 any level in the build hierarchy.
5727 Beware not to mistake @code{CONFIGURE_DEPENDENCIES} for
5728 @code{CONFIG_STATUS_DEPENDENCIES}.
5730 @code{CONFIGURE_DEPENDENCIES} adds dependencies to the
5731 @file{configure} rule, whose effect is to run @code{autoconf}.  This
5732 variable should be seldom used, because @code{automake} already tracks
5733 @code{m4_include}d files.  However it can be useful when playing
5734 tricky games with @code{m4_esyscmd} or similar non-recommendable
5735 macros with side effects.
5737 @code{CONFIG_STATUS_DEPENDENCIES} adds dependencies to the
5738 @file{config.status} rule, whose effect is to run @file{configure}.
5739 This variable should therefore carry any non-standard source that may
5740 be read as a side effect of running configure, like @file{version.sh}
5741 in the example above.
5743 Speaking of @file{version.sh} scripts, we recommend against them
5744 today.  They are mainly used when the version of a package is updated
5745 automatically by a script (e.g., in daily builds).  Here is what some
5746 old-style @file{configure.ac}s may look like:
5747 @example
5748 AC_INIT
5749 . $srcdir/version.sh
5750 AM_INIT_AUTOMAKE([name], $VERSION_NUMBER)
5751 @dots{}
5752 @end example
5753 @noindent
5754 Here, @file{version.sh} is a shell fragment that sets
5755 @code{VERSION_NUMBER}.  The problem with this example is that
5756 @code{automake} cannot track dependencies (listing @file{version.sh}
5757 in @code{CONFIG_STATUS_DEPENDENCIES}, and distributing this file is up
5758 to the user), and that it uses the obsolete form of @code{AC_INIT} and
5759 @code{AM_INIT_AUTOMAKE}.  Upgrading to the new syntax is not
5760 straightforward, because shell variables are not allowed in
5761 @code{AC_INIT}'s arguments.  We recommend that @file{version.sh} be
5762 replaced by an M4 file that is included by @file{configure.ac}:
5763 @example
5764 m4_include([version.m4])
5765 AC_INIT([name], VERSION_NUMBER)
5766 AM_INIT_AUTOMAKE
5767 @dots{}
5768 @end example
5769 @noindent
5770 Here @file{version.m4} could contain something like
5771 @code{m4_define([VERSION_NUMBER], [1.2])}.  The advantage of this
5772 second form is that @code{automake} will take care of the dependencies
5773 when defining the rebuild rule, and will also distribute the file
5774 automatically.  An inconvenience is that @code{autoconf} will now be
5775 rerun each time the version number is bumped, when only
5776 @file{configure} had to be rerun in the previous setup.
5779 @node Options
5780 @chapter Changing Automake's Behavior
5782 Various features of Automake can be controlled by options in the
5783 @file{Makefile.am}.  Such options are applied on a per-@file{Makefile}
5784 basis when listed in a special @file{Makefile} variable named
5785 @code{AUTOMAKE_OPTIONS}.  They are applied globally to all processed
5786 @file{Makefiles} when listed in the first argument of
5787 @code{AM_INIT_AUTOMAKE} in @file{configure.ac}.  Currently understood
5788 options are:
5789 @vindex AUTOMAKE_OPTIONS
5791 @table @asis
5792 @item @code{gnits}
5793 @itemx @code{gnu}
5794 @itemx @code{foreign}
5795 @itemx @code{cygnus}
5796 @cindex Option, gnits
5797 @cindex Option, gnu
5798 @cindex Option, foreign
5799 @cindex Option, cygnus
5801 Set the strictness as appropriate.  The @code{gnits} option also implies
5802 @code{readme-alpha} and @code{check-news}.
5804 @item @code{ansi2knr}
5805 @itemx @code{@var{path}/ansi2knr}
5806 @cindex Option, ansi2knr
5807 Turn on automatic de-ANSI-fication.  @xref{ANSI}.  If preceded by a
5808 path, the generated @file{Makefile.in} will look in the specified
5809 directory to find the @file{ansi2knr} program.  The path should be a
5810 relative path to another directory in the same distribution (Automake
5811 currently does not check this).
5813 @item @code{check-news}
5814 @cindex Option, check-news
5815 Cause @code{make dist} to fail unless the current version number appears
5816 in the first few lines of the @file{NEWS} file.
5818 @item @code{dejagnu}
5819 @cindex Option, dejagnu
5820 Cause @code{dejagnu}-specific rules to be generated.  @xref{Tests}.
5822 @item @code{dist-bzip2}
5823 @cindex Option, dist-bzip2
5824 Hook @code{dist-bzip2} to @code{dist}.
5825 @trindex dist-bzip2
5827 @item @code{dist-shar}
5828 @cindex Option, dist-shar
5829 Hook @code{dist-shar} to @code{dist}.
5830 @trindex dist-shar
5832 @item @code{dist-zip}
5833 @cindex Option, dist-zip
5834 Hook @code{dist-zip} to @code{dist}.
5835 @trindex dist-zip
5837 @item @code{dist-tarZ}
5838 @cindex Option, dist-tarZ
5839 Hook @code{dist-tarZ} to @code{dist}.
5840 @trindex dist-tarZ
5842 @item @code{filename-length-max=99}
5843 @cindex Option, filename-length-max=99
5844 @trindex filename-length-max=99
5845 Abort if filenames longer than 99 characters are found during
5846 @code{make dist}.  Such long filenames are generally considered not to
5847 be portable in tarballs.  See the @code{tar-v7} and @code{tar-ustar}
5848 options below.  This option should be used in the top-level
5849 @file{Makefile.am} or as an argument of @code{AM_INIT_AUTOMAKE} in
5850 @file{configure.ac}, it will be ignored otherwise.
5852 @item @code{no-define}
5853 @cindex Option, no-define
5854 This options is meaningful only when passed as an argument to
5855 @code{AM_INIT_AUTOMAKE}.  It will prevent the @code{PACKAGE} and
5856 @code{VERSION} variables to be @code{AC_DEFINE}d.
5858 @item @code{no-dependencies}
5859 @cindex Option, no-dependencies
5860 This is similar to using @samp{--include-deps} on the command line, but
5861 is useful for those situations where you don't have the necessary bits
5862 to make automatic dependency tracking work @xref{Dependencies}.  In this
5863 case the effect is to effectively disable automatic dependency tracking.
5865 @item @code{no-dist}
5866 @cindex Option, no-dist
5867 Don't emit any code related to @code{dist} target.  This is useful
5868 when a package has its own method for making distributions.
5870 @item @code{no-dist-gzip}
5871 @cindex Option, no-dist-gzip
5872 Do not hook @code{dist-gzip} to @code{dist}.
5873 @trindex no-dist-gzip
5875 @item @code{no-exeext}
5876 @cindex Option, no-exeext
5877 If your @file{Makefile.am} defines a rule for target @samp{foo}, it
5878 will override a rule for a target named @samp{foo$(EXEEXT)}.  This is
5879 necessary when @code{EXEEXT} is found to be empty.  However, by
5880 default automake will generate an error for this use.  The
5881 @code{no-exeext} option will disable this error.  This is intended for
5882 use only where it is known in advance that the package will not be
5883 ported to Windows, or any other operating system using extensions on
5884 executables.
5886 @item @code{no-installinfo}
5887 @cindex Option, no-installinfo
5888 The generated @file{Makefile.in} will not cause info pages to be built
5889 or installed by default.  However, @code{info} and @code{install-info}
5890 targets will still be available.  This option is disallowed at
5891 @samp{GNU} strictness and above.
5892 @trindex info
5893 @trindex install-info
5895 @item @code{no-installman}
5896 @cindex Option, no-installman
5897 The generated @file{Makefile.in} will not cause man pages to be
5898 installed by default.  However, an @code{install-man} target will still
5899 be available for optional installation.  This option is disallowed at
5900 @samp{GNU} strictness and above.
5901 @trindex install-man
5903 @item @code{nostdinc}
5904 @cindex Option, nostdinc
5905 This option can be used to disable the standard @samp{-I} options which
5906 are ordinarily automatically provided by Automake.
5908 @item @code{no-texinfo.tex}
5909 @cindex Option, no-texinfo
5910 Don't require @file{texinfo.tex}, even if there are texinfo files in
5911 this directory.
5913 @item @code{readme-alpha}
5914 @cindex Option, readme-alpha
5915 If this release is an alpha release, and the file @file{README-alpha}
5916 exists, then it will be added to the distribution.  If this option is
5917 given, version numbers are expected to follow one of two forms.  The
5918 first form is @samp{@var{MAJOR}.@var{MINOR}.@var{ALPHA}}, where each
5919 element is a number; the final period and number should be left off for
5920 non-alpha releases.  The second form is
5921 @samp{@var{MAJOR}.@var{MINOR}@var{ALPHA}}, where @var{ALPHA} is a
5922 letter; it should be omitted for non-alpha releases.
5924 @item @code{std-options}
5925 @cindex Options, std-options
5926 @cindex make installcheck
5927 Make the @code{installcheck} rule check that installed scripts and
5928 programs support the @code{--help} and @code{--version} options.
5929 This also provides a basic check that the program's
5930 run-time dependencies are satisfied after installation.
5932 @vindex AM_INSTALLCHECK_STD_OPTIONS_EXEMPT
5933 In a few situations, programs (or scripts) have to be exempted from this
5934 test.  For instance @command{false} (from GNU sh-utils) is never
5935 successful, even for @code{--help} or @code{--version}.  You can list
5936 such programs in the variable @code{AM_INSTALLCHECK_STD_OPTIONS_EXEMPT}.
5937 Programs (not scripts) listed in this variable should be suffixed by
5938 @code{$(EXEEXT)} for the sake of Win32 or OS/2.  For instance suppose we
5939 build @code{false} as a program but @code{true.sh} as a script, and that
5940 neither of them support @code{--help} or @code{--version}:
5942 @example
5943 AUTOMAKE_OPTIONS = std-options
5944 bin_PROGRAMS = false ...
5945 bin_SCRIPTS = true.sh ...
5946 AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = false$(EXEEXT) true.sh
5947 @end example
5949 @item @code{subdir-objects}
5950 If this option is specified, then objects are placed into the
5951 subdirectory of the build directory corresponding to the subdirectory of
5952 the source file.  For instance if the source file is
5953 @file{subdir/file.cxx}, then the output file would be
5954 @file{subdir/file.o}.
5956 @item @code{tar-v7}
5957 @itemx @code{tar-ustar}
5958 @itemx @code{tar-pax}
5959 @cindex Option, tar-v7
5960 @cindex Option, tar-ustar
5961 @cindex Option, tar-pax
5962 @cindex tar formats
5963 @cindex v7 tar format
5964 @cindex ustar format
5965 @cindex pax format
5966 @trindex tar-v7
5967 @trindex tar-ustar
5968 @trindex tar-pax
5970 These three mutually exclusive options select the tar format to use
5971 when generating tarballs with @code{make dist}.  (The tar file created
5972 is then compressed according to the set of @code{no-dist-gzip},
5973 @code{dist-bzip2} and @code{dist-tarZ} options in use.)
5975 These options must be passed as argument to @code{AM_INIT_AUTOMAKE}
5976 (@pxref{Macros}) because they can causes new configure check to be
5977 performed.  Automake will complain if it sees such option in a
5978 @code{AUTOMAKE_OPTIONS} variable.
5980 @code{tar-v7} selects the old V7 tar format.  This is the historical
5981 default.  This antiquated format is understood by all tar
5982 implementations and supports filenames with up to 99 characters. When
5983 given longer filenames some tar implementations will diagnose the
5984 problem while other will generate broken tarballs or use non-portable
5985 extensions.  Furthermore, the V7 format cannot store empty
5986 directories.  When using this format, consider using the
5987 @code{filename-length-max=99} option to catch filenames too long.
5989 @code{tar-ustar} selects the ustar format defined by POSIX
5990 1003.1-1988.  This format is believed to be old enough to be portable.
5991 It fully supports directories, and stores filenames with up to 255
5992 characters.  However you may run against broken tar implementations
5993 that incorrectly handle filenames longer than 99 characters (please
5994 report them to @email{bug-automake@@gnu.org} so we can document this
5995 accurately).
5997 @code{tar-pax} selects the new pax interchange format defined by POSIX
5998 1003.1-2001.  It does not limit the length of filenames.  However,
5999 this format is very young and should probably be restricted to
6000 packages which target only very modern platforms.  There are moves to
6001 change the pax format in an upward-compatible way, so this option may
6002 refer to a more recent version in the future.
6004 @code{configure} knows several ways to construct these formats.  It
6005 will not abort if it cannot find a tool up to the task (so that the
6006 package can still be built), but @code{make dist} will fail.
6008 @item @var{version}
6009 @cindex Option, version
6010 A version number (e.g. @samp{0.30}) can be specified.  If Automake is not
6011 newer than the version specified, creation of the @file{Makefile.in}
6012 will be suppressed.
6014 @item @code{-W@var{category}} or @code{--warnings=@var{category}}
6015 @cindex Option, warnings
6016 These options behave exactly like their command-line counterpart
6017 (@pxref{Invoking Automake}).  This allows you to enable or disable some
6018 warning categories on a per-file basis.  You can also setup some warnings
6019 for your entire project; for instance try @code{AM_INIT_AUTOMAKE([-Wall])}
6020 in your @file{configure.ac}.
6022 @end table
6024 Unrecognized options are diagnosed by @code{automake}.
6026 If you want an option to apply to all the files in the tree, you can use
6027 the @code{AM_INIT_AUTOMAKE} macro in @file{configure.ac}.
6028 @xref{Macros}.
6031 @node Miscellaneous
6032 @chapter Miscellaneous Rules
6034 There are a few rules and variables that didn't fit anywhere else.
6036 @menu
6037 * Tags::                        Interfacing to etags and mkid
6038 * Suffixes::                    Handling new file extensions
6039 * Multilibs::                   Support for multilibs.
6040 @end menu
6043 @node Tags
6044 @section Interfacing to @code{etags}
6046 @cindex TAGS support
6048 Automake will generate rules to generate @file{TAGS} files for use with
6049 GNU Emacs under some circumstances.
6051 If any C, C++ or Fortran 77 source code or headers are present, then
6052 @code{tags} and @code{TAGS} rules will be generated for the directory.
6053 @trindex tags
6055 At the topmost directory of a multi-directory package, a @code{tags}
6056 rule will be output which, when run, will generate a @file{TAGS} file
6057 that includes by reference all @file{TAGS} files from subdirectories.
6059 The @code{tags} rule will also be generated if the variable
6060 @code{ETAGS_ARGS} is defined.  This variable is intended for use in
6061 directories which contain taggable source that @code{etags} does not
6062 understand.  The user can use the @code{ETAGSFLAGS} to pass additional
6063 flags to @code{etags}; @code{AM_ETAGSFLAGS} is also available for use
6064 in @file{Makefile.am}.
6065 @vindex ETAGS_ARGS
6066 @vindex ETAGSFLAGS
6067 @vindex AM_ETAGSFLAGS
6069 Here is how Automake generates tags for its source, and for nodes in its
6070 Texinfo file:
6072 @example
6073 ETAGS_ARGS = automake.in --lang=none \
6074  --regex='/^@@node[ \t]+\([^,]+\)/\1/' automake.texi
6075 @end example
6077 If you add filenames to @samp{ETAGS_ARGS}, you will probably also
6078 want to set @samp{TAGS_DEPENDENCIES}.  The contents of this variable
6079 are added directly to the dependencies for the @code{tags} rule.
6080 @vindex TAGS_DEPENDENCIES
6082 Automake also generates a @code{ctags} rule which can be used to
6083 build @command{vi}-style @file{tags} files.  The variable @code{CTAGS}
6084 is the name of the program to invoke (by default @samp{ctags});
6085 @code{CTAGSFLAGS} can be used by the user to pass additional flags,
6086 and @code{AM_CTAGSFLAGS} can be used by the @file{Makefile.am}.
6088 Automake will also generate an @code{ID} rule which will run
6089 @code{mkid} on the source.  This is only supported on a
6090 directory-by-directory basis.
6091 @trindex id
6093 Automake also supports the @uref{http://www.gnu.org/software/global/,
6094 GNU Global Tags program}.  The @code{GTAGS} rule runs Global Tags
6095 automatically and puts the result in the top build directory.  The
6096 variable @code{GTAGS_ARGS} holds arguments which are passed to
6097 @code{gtags}.
6098 @vindex GTAGS_ARGS
6101 @node Suffixes
6102 @section Handling new file extensions
6104 @cindex Adding new SUFFIXES
6105 @cindex SUFFIXES, adding
6106 @vindex SUFFIXES
6108 It is sometimes useful to introduce a new implicit rule to handle a file
6109 type that Automake does not know about.
6111 For instance, suppose you had a compiler which could compile @samp{.foo}
6112 files to @samp{.o} files.  You would simply define an suffix rule for
6113 your language:
6115 @example
6116 .foo.o:
6117         foocc -c -o $@@ $<
6118 @end example
6120 Then you could directly use a @samp{.foo} file in a @samp{_SOURCES}
6121 variable and expect the correct results:
6123 @example
6124 bin_PROGRAMS = doit
6125 doit_SOURCES = doit.foo
6126 @end example
6128 This was the simpler and more common case.  In other cases, you will
6129 have to help Automake to figure which extensions you are defining your
6130 suffix rule for.  This usually happens when your extensions does not
6131 start with a dot.  Then, all you have to do is to put a list of new
6132 suffixes in the @code{SUFFIXES} variable @strong{before} you define your
6133 implicit rule.
6135 For instance the following definition prevents Automake to misinterpret
6136 @samp{.idlC.cpp:} as an attempt to transform @samp{.idlC} into
6137 @samp{.cpp}.
6139 @example
6140 SUFFIXES = .idl C.cpp
6141 .idlC.cpp:
6142         # whatever
6143 @end example
6145 As you may have noted, the @code{SUFFIXES} variable behaves like the
6146 @code{.SUFFIXES} special target of @code{make}.  You should not touch
6147 @code{.SUFFIXES} yourself, but use @code{SUFFIXES} instead and let
6148 Automake generate the suffix list for @code{.SUFFIXES}.  Any given
6149 @code{SUFFIXES} go at the start of the generated suffixes list, followed
6150 by Automake generated suffixes not already in the list.
6152 @node Multilibs
6153 @section Support for Multilibs
6155 Automake has support for an obscure feature called multilibs.  A
6156 @dfn{multilib} is a library which is built for multiple different ABIs
6157 at a single time; each time the library is built with a different target
6158 flag combination.  This is only useful when the library is intended to
6159 be cross-compiled, and it is almost exclusively used for compiler
6160 support libraries.
6162 The multilib support is still experimental.  Only use it if you are
6163 familiar with multilibs and can debug problems you might encounter.
6166 @node Include
6167 @chapter Include
6169 @cmindex include
6170 @cindex Including Makefile fragment
6171 @cindex Makefile fragment, including
6173 Automake supports an @code{include} directive which can be used to
6174 include other @file{Makefile} fragments when @code{automake} is run.
6175 Note that these fragments are read and interpreted by @code{automake},
6176 not by @code{make}.  As with conditionals, @code{make} has no idea that
6177 @code{include} is in use.
6179 There are two forms of @code{include}:
6181 @table @code
6182 @item include $(srcdir)/file
6183 Include a fragment which is found relative to the current source
6184 directory.
6186 @item include $(top_srcdir)/file
6187 Include a fragment which is found relative to the top source directory.
6188 @end table
6190 Note that if a fragment is included inside a conditional, then the
6191 condition applies to the entire contents of that fragment.
6193 Makefile fragments included this way are always distributed because
6194 there are needed to rebuild @file{Makefile.in}.
6196 @node Conditionals
6197 @chapter Conditionals
6199 @cindex Conditionals
6201 Automake supports a simple type of conditionals.
6203 @cvindex AM_CONDITIONAL
6204 Before using a conditional, you must define it by using
6205 @code{AM_CONDITIONAL} in the @code{configure.ac} file (@pxref{Macros}).
6207 @defmac AM_CONDITIONAL (@var{conditional}, @var{condition})
6208 The conditional name, @var{conditional}, should be a simple string
6209 starting with a letter and containing only letters, digits, and
6210 underscores.  It must be different from @samp{TRUE} and @samp{FALSE}
6211 which are reserved by Automake.
6213 The shell @var{condition} (suitable for use in a shell @code{if}
6214 statement) is evaluated when @code{configure} is run.  Note that you
6215 must arrange for @emph{every} @code{AM_CONDITIONAL} to be invoked every
6216 time @code{configure} is run -- if @code{AM_CONDITIONAL} is run
6217 conditionally (e.g., in a shell @code{if} statement), then the result
6218 will confuse automake.
6219 @end defmac
6221 @cindex --enable-debug, example
6222 @cindex Example conditional --enable-debug
6223 @cindex Conditional example,  --enable-debug
6225 Conditionals typically depend upon options which the user provides to
6226 the @code{configure} script.  Here is an example of how to write a
6227 conditional which is true if the user uses the @samp{--enable-debug}
6228 option.
6230 @example
6231 AC_ARG_ENABLE(debug,
6232 [  --enable-debug    Turn on debugging],
6233 [case "$@{enableval@}" in
6234   yes) debug=true ;;
6235   no)  debug=false ;;
6236   *) AC_MSG_ERROR(bad value $@{enableval@} for --enable-debug) ;;
6237 esac],[debug=false])
6238 AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
6239 @end example
6241 Here is an example of how to use that conditional in @file{Makefile.am}:
6243 @cmindex if
6244 @cmindex endif
6245 @cmindex else
6247 @example
6248 if DEBUG
6249 DBG = debug
6250 else
6251 DBG =
6252 endif
6253 noinst_PROGRAMS = $(DBG)
6254 @end example
6256 This trivial example could also be handled using EXTRA_PROGRAMS
6257 (@pxref{Conditional Programs}).
6259 You may only test a single variable in an @code{if} statement, possibly
6260 negated using @samp{!}.  The @code{else} statement may be omitted.
6261 Conditionals may be nested to any depth.  You may specify an argument to
6262 @code{else} in which case it must be the negation of the condition used
6263 for the current @code{if}.  Similarly you may specify the condition
6264 which is closed by an @code{end}:
6266 @example
6267 if DEBUG
6268 DBG = debug
6269 else !DEBUG
6270 DBG =
6271 endif !DEBUG
6272 @end example
6274 @noindent
6275 Unbalanced conditions are errors.
6277 Note that conditionals in Automake are not the same as conditionals in
6278 GNU Make.  Automake conditionals are checked at configure time by the
6279 @file{configure} script, and affect the translation from
6280 @file{Makefile.in} to @file{Makefile}.  They are based on options passed
6281 to @file{configure} and on results that @file{configure} has discovered
6282 about the host system.  GNU Make conditionals are checked at @code{make}
6283 time, and are based on variables passed to the make program or defined
6284 in the @file{Makefile}.
6286 Automake conditionals will work with any make program.
6289 @node Gnits
6290 @chapter The effect of @code{--gnu} and @code{--gnits}
6292 @cindex --gnu, required files
6293 @cindex --gnu, complete description
6295 The @samp{--gnu} option (or @samp{gnu} in the @samp{AUTOMAKE_OPTIONS}
6296 variable) causes @code{automake} to check the following:
6298 @itemize @bullet
6299 @item
6300 The files @file{INSTALL}, @file{NEWS}, @file{README}, @file{AUTHORS},
6301 and @file{ChangeLog}, plus one of @file{COPYING.LIB}, @file{COPYING.LESSER}
6302 or @file{COPYING}, are required at the topmost directory of the package.
6304 @item
6305 The options @samp{no-installman} and @samp{no-installinfo} are
6306 prohibited.
6307 @end itemize
6309 Note that this option will be extended in the future to do even more
6310 checking; it is advisable to be familiar with the precise requirements
6311 of the GNU standards.  Also, @samp{--gnu} can require certain
6312 non-standard GNU programs to exist for use by various maintainer-only
6313 rules; for instance in the future @code{pathchk} might be required for
6314 @samp{make dist}.
6316 @cindex --gnits, complete description
6318 The @samp{--gnits} option does everything that @samp{--gnu} does, and
6319 checks the following as well:
6321 @itemize @bullet
6322 @item
6323 @samp{make installcheck} will check to make sure that the @code{--help}
6324 and @code{--version} really print a usage message and a version string,
6325 respectively.  This is the @code{std-options} option (@pxref{Options}).
6327 @item
6328 @samp{make dist} will check to make sure the @file{NEWS} file has been
6329 updated to the current version.
6331 @item
6332 @samp{VERSION} is checked to make sure its format complies with Gnits
6333 standards.
6334 @c FIXME xref when standards are finished
6336 @item
6337 @cindex README-alpha
6338 If @samp{VERSION} indicates that this is an alpha release, and the file
6339 @file{README-alpha} appears in the topmost directory of a package, then
6340 it is included in the distribution.  This is done in @samp{--gnits}
6341 mode, and no other, because this mode is the only one where version
6342 number formats are constrained, and hence the only mode where Automake
6343 can automatically determine whether @file{README-alpha} should be
6344 included.
6346 @item
6347 The file @file{THANKS} is required.
6348 @end itemize
6351 @node Cygnus
6352 @chapter The effect of @code{--cygnus}
6354 @cindex Cygnus strictness
6356 Some packages, notably GNU GCC and GNU gdb, have a build environment
6357 originally written at Cygnus Support (subsequently renamed Cygnus
6358 Solutions, and then later purchased by Red Hat).  Packages with this
6359 ancestry are sometimes referred to as ``Cygnus'' trees.
6361 A Cygnus tree has slightly different rules for how a @file{Makefile.in}
6362 is to be constructed.  Passing @samp{--cygnus} to @code{automake} will
6363 cause any generated @file{Makefile.in} to comply with Cygnus rules.
6365 Here are the precise effects of @samp{--cygnus}:
6367 @itemize @bullet
6368 @item
6369 Info files are always created in the build directory, and not in the
6370 source directory.
6372 @item
6373 @file{texinfo.tex} is not required if a Texinfo source file is
6374 specified.  The assumption is that the file will be supplied, but in a
6375 place that Automake cannot find.  This assumption is an artifact of how
6376 Cygnus packages are typically bundled.
6378 @item
6379 @samp{make dist} is not supported, and the rules for it are not
6380 generated.  Cygnus-style trees use their own distribution mechanism.
6382 @item
6383 Certain tools will be searched for in the build tree as well as in the
6384 user's @samp{PATH}.  These tools are @code{runtest}, @code{expect},
6385 @code{makeinfo} and @code{texi2dvi}.
6387 @item
6388 @code{--foreign} is implied.
6390 @item
6391 The options @samp{no-installinfo} and @samp{no-dependencies} are
6392 implied.
6394 @item
6395 The macros @samp{AM_MAINTAINER_MODE} and @samp{AM_CYGWIN32} are
6396 required.
6398 @item
6399 The @code{check} target doesn't depend on @code{all}.
6400 @end itemize
6402 GNU maintainers are advised to use @samp{gnu} strictness in preference
6403 to the special Cygnus mode.  Some day, perhaps, the differences between
6404 Cygnus trees and GNU trees will disappear (for instance, as GCC is made
6405 more standards compliant).  At that time the special Cygnus mode will be
6406 removed.
6409 @node Not Enough
6410 @chapter When Automake Isn't Enough
6412 In some situations, where Automake is not up to one task, one has to
6413 resort to handwritten rules or even handwritten @file{Makefile}s.
6415 @menu
6416 * Extending::                   Adding new rules or overriding existing ones.
6417 * Third-Party Makefiles::       Integrating Non-Automake @file{Makefile}s.
6418 @end menu
6420 @node Extending
6421 @section Extending Automake Rules
6423 With some minor exceptions (like @code{_PROGRAMS} variables being
6424 rewritten to append @code{$(EXEEXT)}), the contents of a
6425 @file{Makefile.am} is copied to @file{Makefile.in} verbatim.
6427 @cindex copying semantics
6429 These copying semantics means that many problems can be worked around
6430 by simply adding some @code{make} variables and rules to
6431 @file{Makefile.am}.  Automake will ignore these additions.
6433 @cindex conflicting definitions
6434 @cindex rules, conflicting
6435 @cindex variables, conflicting
6436 @cindex definitions, conflicts
6438 Since a @file{Makefile.in} is built from data gathered from three
6439 different places (@file{Makefile.am}, @file{configure.ac}, and
6440 @command{automake} itself), it is possible to have conflicting
6441 definitions of rules or variables.  When building @file{Makefile.in}
6442 the following priorities are respected by @command{automake} to ensure
6443 the user always have the last word.  User defined variables in
6444 @file{Makefile.am} have priority over variables @code{AC_SUBST}ed from
6445 @file{configure.ac}, and @code{AC_SUBST}ed variables have priority
6446 over @command{automake}-defined variables.  As far rules are
6447 concerned, a user-defined rule overrides any
6448 @command{automake}-defined rule for the same target.
6450 @cindex overriding rules
6451 @cindex overriding semantics
6452 @cindex rules, overriding
6454 These overriding semantics make it possible to fine tune some default
6455 settings of Automake, or replace some of its rules.  Overriding
6456 Automake rules is often inadvisable, particularly in the topmost
6457 directory of a package with subdirectories.  The @code{-Woverride}
6458 option (@pxref{Invoking Automake}) comes handy to catch overridden
6459 definitions.
6461 Note that Automake does not make any difference between rules with
6462 commands and rules that only specify dependencies.  So it is not
6463 possible to append new dependencies to an @code{automake}-defined
6464 target without redefining the entire rule.
6466 @cindex -local targets
6467 @cindex local targets
6469 However, various useful targets have a @samp{-local} version you can
6470 specify in your @file{Makefile.in}.  Automake will supplement the
6471 standard target with these user-supplied targets.
6473 @trindex  all
6474 @trindex  all-local
6475 @trindex  info
6476 @trindex  info-local
6477 @trindex  dvi
6478 @trindex  dvi-local
6479 @trindex  ps
6480 @trindex  ps-local
6481 @trindex  pdf
6482 @trindex  pdf-local
6483 @trindex  html
6484 @trindex  html-local
6485 @trindex  check
6486 @trindex  check-local
6487 @trindex  install
6488 @trindex  install-data-local
6489 @trindex  install-exec
6490 @trindex  install-exec-local
6491 @trindex  uninstall
6492 @trindex  uninstall-local
6493 @trindex  mostlyclean
6494 @trindex  mostlyclean-local
6495 @trindex  clean
6496 @trindex  clean-local
6497 @trindex  distclean
6498 @trindex  distclean-local
6499 @trindex  installdirs
6500 @trindex  installdirs-local
6501 @trindex  installcheck
6502 @trindex  installcheck-local
6504 The targets that support a local version are @code{all}, @code{info},
6505 @code{dvi}, @code{ps}, @code{pdf}, @code{html}, @code{check},
6506 @code{install-data}, @code{install-exec}, @code{uninstall},
6507 @code{installdirs}, @code{installcheck} and the various @code{clean} targets
6508 (@code{mostlyclean}, @code{clean}, @code{distclean}, and
6509 @code{maintainer-clean}).  Note that there are no
6510 @code{uninstall-exec-local} or @code{uninstall-data-local} targets; just
6511 use @code{uninstall-local}.  It doesn't make sense to uninstall just
6512 data or just executables.
6514 For instance, here is one way to install a file in @file{/etc}:
6516 @example
6517 install-data-local:
6518         $(INSTALL_DATA) $(srcdir)/afile $(DESTDIR)/etc/afile
6519 @end example
6521 @cindex -hook targets
6522 @cindex hook targets
6524 Some rule also have a way to run another rule, called a @dfn{hook},
6525 after their work is done.  The hook is named after the principal target,
6526 with @samp{-hook} appended.  The targets allowing hooks are
6527 @code{install-data}, @code{install-exec}, @code{uninstall}, @code{dist},
6528 and @code{distcheck}.
6529 @trindex install-data-hook
6530 @trindex install-exec-hook
6531 @trindex uninstall-hook
6532 @trindex dist-hook
6534 For instance, here is how to create a hard link to an installed program:
6536 @example
6537 install-exec-hook:
6538         ln $(DESTDIR)$(bindir)/program$(EXEEXT) \
6539            $(DESTDIR)$(bindir)/proglink$(EXEEXT)
6540 @end example
6542 Although cheaper and more portable than symbolic links, hard links
6543 will not work everywhere (for instance OS/2 does not have
6544 @command{ln}).  Ideally you should fall back to @code{cp -p} when
6545 @code{ln} does not work.  An easy way, if symbolic links are
6546 acceptable to you, is to add @code{AC_PROG_LN_S} to
6547 @file{configure.ac} (@pxref{Particular Programs, , Particular Program
6548 Checks, autoconf, The Autoconf Manual}) and use @code{$(LN_S)} in
6549 @file{Makefile.am}.
6551 @cindex versioned binaries, installing
6552 @cindex installing versioned binaries
6553 @cindex LN_S example
6554 For instance, here is how you could install a versioned copy of a
6555 program using @code{$(LN_S)}:
6557 @example
6558 install-exec-hook:
6559         cd $(DESTDIR)$(bindir) && \
6560           mv -f prog$(EXEEXT) prog-$(VERSION)$(EXEEXT) && \
6561           $(LN_S) prog-$(VERSION)$(EXEEXT) prog$(EXEEXT)
6562 @end example
6564 Note that we rename the program so that a new version will erase the
6565 symbolic link, not the real binary.  Also we @code{cd} into the
6566 destination directory in order to create relative links.
6568 @c FIXME should include discussion of variables you can use in these
6569 @c rules
6571 @node Third-Party Makefiles
6572 @section Third-Party @file{Makefile}s
6574 @cindex Third-party packages, interfacing with
6575 @cindex Interfacing with third-party packages
6577 In most projects all @file{Makefile}s are generated by Automake.  In
6578 some cases, however, projects need to embed subdirectories with
6579 handwritten @file{Makefile}s.  For instance one subdirectory could be
6580 a third-party project with its own build system, not using Automake.
6582 It is possible to list arbitrary directories in @code{SUBDIRS} or
6583 @code{DIST_SUBDIRS} provided each of these directories has a
6584 @file{Makefile} that recognizes all the following recursive targets.
6586 @cindex recursive targets and third-party @file{Makefile}s
6587 When a user runs one of these targets, that target is run recursively
6588 in all subdirectories.  This is why it is important that even
6589 third-party @file{Makefile}s support them.
6591 @table @code
6592 @item all
6593 Compile the entire package.  This is the default target in
6594 Automake-generated @file{Makefile}s, but it does not need to be the
6595 default in third-party @file{Makefile}s.
6597 @item distdir
6598 @trindex distdir
6599 @vindex distdir
6600 @vindex top_distdir
6601 Copy files to distribute into @code{$(distdir)}, before a tarball is
6602 constructed.  Of course this target is not required if the
6603 @code{no-dist} option (@pxref{Options}) is used.
6605 The variables @code{$(top_distdir)} and @code{$(distdir)}
6606 (@pxref{Dist}) will be passed from the outer package to the subpackage
6607 when the @code{distdir} target is invoked.  These two variables have
6608 been adjusted for the directory which is being recursed into, so they
6609 are ready to use.
6611 @item install
6612 @itemx install-data
6613 @itemx install-exec
6614 @itemx uninstall
6615 Install or uninstall files (@pxref{Install}).
6617 @item install-info
6618 Install only the Texinfo documentation (@pxref{Texinfo}).
6620 @item installdirs
6621 Create install directories, but do not install any files.
6623 @item check
6624 @itemx installcheck
6625 Check the package (@pxref{Tests}).
6627 @item mostlyclean
6628 @itemx clean
6629 @itemx distclean
6630 @itemx maintainer-clean
6631 Cleaning rules (@pxref{Clean}).
6633 @item dvi
6634 @itemx pdf
6635 @itemx ps
6636 @itemx info
6637 @itemx html
6638 Build the documentation in various formats (@pxref{Texinfo}).
6640 @item tags
6641 @itemx ctags
6642 Build @code{TAGS} and @code{CTAGS} (@pxref{Tags}).
6643 @end table
6645 If you have ever used Gettext in a project, this is a good example of
6646 how third-party @file{Makefile}s can be used with Automake.  The
6647 @file{Makefile}s @command{gettextize} puts in the @file{po/} and
6648 @file{intl/} directories are handwritten @file{Makefile}s that
6649 implement all these targets.  That way they can be added to
6650 @code{SUBDIRS} in Automake packages.
6652 Directories which are only listed in @code{DIST_SUBDIRS} but not in
6653 @code{SUBDIRS} need only the @code{distclean},
6654 @code{maintainer-clean}, and @code{distdir} rules (@pxref{Top level}).
6656 Usually, many of these rules are irrelevant to the third-party
6657 subproject, but they are required for the whole package to work.  It's
6658 OK to have a rule that does nothing, so if you are integrating a
6659 third-party project with no documentation or tag support, you could
6660 simply augment its @file{Makefile} as follows:
6662 @example
6663 EMPTY_AUTOMAKE_TARGETS = dvi pdf ps info html tags ctags
6664 .PHONY: $(EMPTY_AUTOMAKE_TARGETS)
6665 $(EMPTY_AUTOMAKE_TARGETS):
6666 @end example
6668 Another aspect of integrating third-party build systems is whether
6669 they support VPATH builds.  Obviously if the subpackage does not
6670 support VPATH builds the whole package will not support VPATH builds.
6671 This in turns means that @code{make distcheck} will not work, because
6672 it relies on VPATH builds.  Some people can live without this
6673 (actually, many Automake users have never heard of @code{make
6674 distcheck}).  Other people may prefer to revamp the existing
6675 @file{Makefile}s to support VPATH.  Doing so does not necessarily
6676 require Automake, only Autoconf is needed (@pxref{Build Directories, ,
6677 Build Directories, autoconf, The Autoconf Manual}).  The necessary
6678 substitutions: @code{@@scrdir@@}, @code{@@top_srcdir@@}, and
6679 @code{@@top_buildir@@} are defined by @file{configure} when it
6680 processes a @file{Makefile} (@pxref{Preset Output Variables, , Preset
6681 Output Variables, autoconf, The Autoconf Manual}), they are not
6682 computed by the Makefile like the aforementioned @code{$(distdir)} and
6683 @code{$(top_distdir)} variables..
6685 It is sometimes inconvenient to modify a third-party @file{Makefile}
6686 to introduce the above required targets.  For instance one may want to
6687 keep the third-party sources untouched to ease upgrades to new
6688 versions.
6690 @cindex @file{GNUmakefile} including @file{Makefile}
6691 Here are two other ideas.  If GNU make is assumed, one possibility is
6692 to add to that subdirectory a @file{GNUmakefile} that defines the
6693 required targets and include the third-party @file{Makefile}.  For
6694 this to work in VPATH builds, @file{GNUmakefile} must lie in the build
6695 directory; the easiest way to do this is to write a
6696 @file{GNUmakefile.in} instead, and have it processed with
6697 @code{AC_CONFIG_FILES} from the outer package.  For example if we
6698 assume @file{Makefile} defines all targets except the documentation
6699 targets, and that the @code{check} target is actually called
6700 @code{test}, we could write @file{GNUmakefile} (or
6701 @file{GNUmakefile.in}) like this:
6703 @example
6704 # First, include the real Makefile
6705 include Makefile
6706 # Then, define the other targets needed by Automake Makefiles.
6707 .PHONY: dvi pdf ps info html check
6708 dvi pdf ps info html:
6709 check: test
6710 @end example
6712 @cindex Proxy @file{Makefile} for third-party packages
6713 A similar idea that does not use @code{include} is to write a proxy
6714 @file{Makefile} that dispatches rules to the real @file{Makefile},
6715 either with @code{$(MAKE) -f Makefile.real $(AM_MAKEFLAGS) target} (if
6716 it's OK to rename the original @file{Makefile}) or with @code{cd
6717 subdir && $(MAKE) $(AM_MAKEFLAGS) target} (if it's OK to store the
6718 subdirectory project one directory deeper).  The good news is that
6719 this proxy @file{Makefile} can be generated with Automake.  All we
6720 need are -local targets (@pxref{Extending}) that perform the dispatch.
6721 Of course the other Automake features are available, so you could
6722 decide to let Automake perform distribution or installation.  Here is
6723 a possible @file{Makefile.am}:
6725 @example
6726 all-local:
6727         cd subdir && $(MAKE) $(AM_MAKEFLAGS) all
6728 check-local:
6729         cd subdir && $(MAKE) $(AM_MAKEFLAGS) test
6730 clean-local:
6731         cd subdir && $(MAKE) $(AM_MAKEFLAGS) clean
6733 # Assuming the package knows how to install itself
6734 install-data-local:
6735         cd subdir && $(MAKE) $(AM_MAKEFLAGS) install-data
6736 install-exec-local:
6737         cd subdir && $(MAKE) $(AM_MAKEFLAGS) install-exec
6738 uninstall-local:
6739         cd subdir && $(MAKE) $(AM_MAKEFLAGS) uninstall
6741 # Distribute files from here.
6742 EXTRA_DIST = subdir/Makefile subdir/program.c ...
6743 @end example
6745 Pushing this idea to the extreme, it is also possible to ignore the
6746 subproject build system and build everything from this proxy
6747 @file{Makefile.am}.  This might sounds very sensible if you need VPATH
6748 builds but the subproject does not support them.
6750 @node Distributing
6751 @chapter Distributing @file{Makefile.in}s
6753 Automake places no restrictions on the distribution of the resulting
6754 @file{Makefile.in}s.  We still encourage software authors to
6755 distribute their work under terms like those of the GPL, but doing so
6756 is not required to use Automake.
6758 Some of the files that can be automatically installed via the
6759 @code{--add-missing} switch do fall under the GPL@.  However, these also
6760 have a special exception allowing you to distribute them with your
6761 package, regardless of the licensing you choose.
6764 @node API versioning
6765 @chapter Automake API versioning
6767 New Automake releases usually include bug fixes and new features.
6768 Unfortunately they may also introduce new bugs and incompatibilities.
6769 This makes four reasons why a package may require a particular Automake
6770 version.
6772 Things get worse when maintaining a large tree of packages, each one
6773 requiring a different version of Automake.  In the past, this meant that
6774 any developer (and sometime users) had to install several versions of
6775 Automake in different places, and switch @samp{$PATH} appropriately for
6776 each package.
6778 Starting with version 1.6, Automake installs versioned binaries.  This
6779 means you can install several versions of Automake in the same
6780 @samp{$prefix}, and can select an arbitrary Automake version by running
6781 @samp{automake-1.6} or @samp{automake-1.7} without juggling with
6782 @samp{$PATH}.  Furthermore, @file{Makefile}'s generated by Automake 1.6
6783 will use @samp{automake-1.6} explicitly in their rebuild rules.
6785 The number @samp{1.6} in @samp{automake-1.6} is Automake's API version,
6786 not Automake's version.  If a bug fix release is made, for instance
6787 Automake 1.6.1, the API version will remain 1.6.  This means that a
6788 package which work with Automake 1.6 should also work with 1.6.1; after
6789 all, this is what people expect from bug fix releases.
6791 If your package relies on a feature or a bug fix introduced in
6792 a release, you can pass this version as an option to Automake to ensure
6793 older releases will not be used.  For instance, use this in your
6794 @file{configure.ac}:
6796 @example
6797   AM_INIT_AUTOMAKE(1.6.1)    dnl Require Automake 1.6.1 or better.
6798 @end example
6799 @noindent
6800 or, in a particular @file{Makefile.am}:
6802 @example
6803   AUTOMAKE_OPTIONS = 1.6.1   # Require Automake 1.6.1 or better.
6804 @end example
6805 @noindent
6806 Automake will print an error message if its version is
6807 older than the requested version.
6810 @heading What is in the API
6812 Automake's programming interface is not easy to define.  Basically it
6813 should include at least all @strong{documented} variables and targets
6814 that a @samp{Makefile.am} author can use, any behavior associated with
6815 them (e.g. the places where @samp{-hook}'s are run), the command line
6816 interface of @samp{automake} and @samp{aclocal}, @dots{}
6818 @heading What is not in the API
6820 Every undocumented variable, target, or command line option, is not part
6821 of the API@.  You should avoid using them, as they could change from one
6822 version to the other (even in bug fix releases, if this helps to fix a
6823 bug).
6825 If it turns out you need to use such a undocumented feature, contact
6826 @email{automake@@gnu.org} and try to get it documented and exercised by
6827 the test-suite.
6829 @node Upgrading
6830 @chapter Upgrading a Package to a Newer Automake Version
6832 Automake maintains three kind of files in a package.
6834 @itemize
6835 @item @file{aclocal.m4}
6836 @item @file{Makefile.in}s
6837 @item auxiliary tools like @file{install-sh} or @file{py-compile}
6838 @end itemize
6840 @file{aclocal.m4} is generated by @command{aclocal} and contains some
6841 Automake-supplied M4 macros.  Auxiliary tools are installed by
6842 @samp{automake --add-missing} when needed.  @file{Makefile.in}s are
6843 built from @file{Makefile.am} by @command{automake}, and rely on the
6844 definitions of the M4 macros put in @file{aclocal.m4} as well as the
6845 behavior of the auxiliary tools installed.
6847 Because all these files are closely related, it is important to
6848 regenerate all of them when upgrading to a newer Automake release.
6849 The usual way to do that is
6851 @example
6852 aclocal # with any option needed (such a -I m4)
6853 autoconf
6854 automake --add-missing --force-missing
6855 @end example
6857 @noindent
6858 or more conveniently:
6860 @example
6861 autoreconf -vfi
6862 @end example
6864 The use of @code{--force-missing} ensures that auxiliary tools will be
6865 overridden by new versions (@pxref{Invoking Automake}).
6867 It is important to regenerate all these files each time Automake is
6868 upgraded, even between bug fixes releases.  For instance it is not
6869 unusual for a bug fix to involve changes to both the rules generated
6870 in @file{Makefile.in} and the supporting M4 macros copied to
6871 @file{aclocal.m4}.
6873 Presently @command{automake} is able to diagnose situations where
6874 @file{aclocal.m4} has been generated with another version of
6875 @command{aclocal}.  However it never checks whether auxiliary scripts
6876 are up-to-date.  In other words, @command{automake} will tell you when
6877 @command{aclocal} needs to be rerun, but it will never diagnose a
6878 missing @code{--force-missing}.
6880 Before upgrading to a new major release, it is a good idea to read the
6881 file @file{NEWS}.  This file lists all changes between releases: new
6882 features, obsolete constructs, known incompatibilities, and
6883 workarounds.
6885 @node FAQ
6886 @chapter Frequently Asked Questions about Automake
6888 This chapter covers some questions that often come up on the mailing
6889 lists.
6891 @menu
6892 * CVS::                         CVS and generated files
6893 * maintainer-mode::             missing and AM_MAINTAINER_MODE
6894 * wildcards::                   Why doesn't Automake support wildcards?
6895 * distcleancheck::              Files left in build directory after distclean
6896 * renamed objects::             Why are object files sometimes renamed?
6897 * Multiple Outputs::            Writing rules for tools with many output files
6898 @end menu
6900 @node CVS
6901 @section CVS and generated files
6903 @subsection Background: distributed generated files
6904 @cindex generated files, distributed
6905 @cindex rebuild rules
6907 Packages made with Autoconf and Automake ship with some generated
6908 files like @file{configure} or @file{Makefile.in}.  These files were
6909 generated on the developer's host and are distributed so that
6910 end-users do not have to install the maintainer tools required to
6911 rebuild them.  Other generated files like Lex scanners, Yacc parsers,
6912 or Info documentation, are usually distributed on similar grounds.
6914 Automake outputs rules in @file{Makefile}s to rebuild these files.  For
6915 instance @command{make} will run @command{autoconf} to rebuild
6916 @file{configure} whenever @file{configure.ac} is changed.  This makes
6917 development safer by ensuring a @file{configure} is never out-of-date
6918 with respect to @file{configure.ac}.
6920 As generated files shipped in packages are up-to-date, and because
6921 @command{tar} preserves times-tamps, these rebuild rules are not
6922 triggered when a user unpacks and builds a package.
6924 @subsection Background: CVS and timestamps
6925 @cindex timestamps and CVS
6926 @cindex CVS and timestamps
6928 Unless you use CVS keywords (in which case files must be updated at
6929 commit time), CVS preserves timestamp during @code{cvs commit} and
6930 @code{cvs import -d} operations.
6932 When you check out a file using @code{cvs checkout} its timestamp is
6933 set to that of the revision which is being checked out.
6935 However, during @command{cvs update}, files will have the date of the
6936 update, not the original timestamp of this revision.  This is meant to
6937 make sure that @command{make} notices sources files have been updated.
6939 This times tamp shift is troublesome when both sources and generated
6940 files are kept under CVS.  Because CVS processes files in alphabetical
6941 order, @file{configure.ac} will appear older than @file{configure}
6942 after a @command{cvs update} that updates both files, even if
6943 @file{configure} was newer than @file{configure.ac} when it was
6944 checked in.  Calling @code{make} will then trigger a spurious rebuild
6945 of @file{configure}.
6947 @subsection Living with CVS in Autoconfiscated projects
6948 @cindex CVS and generated files
6949 @cindex generated files and CVS
6951 There are basically two clans amongst maintainers: those who keep all
6952 distributed files under CVS, including generated files, and those who
6953 keep generated files @emph{out} of CVS.
6955 @subsubheading All files in CVS
6957 @itemize @bullet
6958 @item
6959 The CVS repository contains all distributed files so you know exactly
6960 what is distributed, and you can checkout any prior version entirely.
6962 @item
6963 Maintainers can see how generated files evolve (for instance you can
6964 see what happens to your @file{Makefile.in}s when you upgrade Automake
6965 and make sure they look OK).
6967 @item
6968 Users do not need the autotools to build a checkout of the project, it
6969 works just like a released tarball.
6971 @item
6972 If users use @command{cvs update} to update their copy, instead of
6973 @command{cvs checkout} to fetch a fresh one, timestamps will be
6974 inaccurate.  Some rebuild rules will be triggered and attempt to
6975 run developer tools such as @command{autoconf} or @command{automake}.
6977 Actually, calls to such tools are all wrapped into a call to the
6978 @command{missing} script discussed later (@pxref{maintainer-mode}).
6979 @command{missing} will take care of fixing the timestamps when these
6980 tools are not installed, so that the build can continue.
6982 @item
6983 In distributed development, developers are likely to have different
6984 version of the maintainer tools installed.  In this case rebuilds
6985 triggered by timestamp lossage will lead to spurious changes
6986 to generated files.  There are several solutions to this:
6988 @itemize
6989 @item
6990 All developers should use the same versions, so that the rebuilt files
6991 are identical to files in CVS.  (This starts to be difficult when each
6992 project you work on uses different versions.)
6993 @item
6994 Or people use a script to fix the timestamp after a checkout (the GCC
6995 folks have such a script).
6996 @item
6997 Or @file{configure.ac} uses @code{AM_MAINTAINER_MODE}, which will
6998 disable all these rebuild rules by default.  This is further discussed
6999 in @ref{maintainer-mode}.
7000 @end itemize
7002 @item
7003 Although we focused on spurious rebuilds, the converse can also
7004 happen.  CVS's timestamp handling can also let you think an
7005 out-of-date file is up-to-date.
7007 For instance, suppose a developer has modified @file{Makefile.am} and
7008 rebuilt @file{Makefile.in}, and then decide to do a last-minute change
7009 to @file{Makefile.am} right before checking in both files (without
7010 rebuilding @file{Makefile.in} to account for the change).
7012 This last change to @file{Makefile.am} make the copy of
7013 @file{Makefile.in} out-of-date.  Since CVS processes files
7014 alphabetically, when another developer @code{cvs update} his or her
7015 tree, @file{Makefile.in} will happen to be newer than
7016 @file{Makefile.am}.  This other developer will not see
7017 @file{Makefile.in} is out-of-date.
7019 @end itemize
7021 @subsubheading Generated files out of CVS
7023 One way to get CVS and @code{make} working peacefully is to never
7024 store generated files in CVS, i.e., do not CVS-control files which
7025 are @code{Makefile} targets (also called @emph{derived} files).
7027 This way developers are not annoyed by changes to generated files.  It
7028 does not matter if they all have different versions (assuming they are
7029 compatible, of course).  And finally, timestamps are not lost, changes
7030 to sources files can't be missed as in the
7031 @file{Makefile.am}/@file{Makefile.in} example discussed earlier.
7033 The drawback is that the CVS repository is not an exact copy of what
7034 is distributed and that users now need to install various development
7035 tools (maybe even specific versions) before they can build a checkout.
7036 But, after all, CVS's job is versioning, not distribution.
7038 Allowing developers to use different versions of their tools can also
7039 hide bugs during distributed development.  Indeed, developers will be
7040 using (hence testing) their own generated files, instead of the
7041 generated files that will be released actually.  The developer who
7042 prepares the tarball might be using a version of the tool that
7043 produces bogus output (for instance a non-portable C file), something
7044 other developers could have noticed if they weren't using their own
7045 versions of this tool.
7047 @subsection Third-party files
7048 @cindex CVS and third-party files
7049 @cindex third-party files and CVS
7051 Another class of files not discussed here (because they do not cause
7052 timestamp issues) are files which are shipped with a package, but
7053 maintained elsewhere.  For instance tools like @command{gettextize}
7054 and @command{autopoint} (from Gettext) or @command{libtoolize} (from
7055 Libtool), will install or update files in your package.
7057 These files, whether they are kept under CVS or not, raise similar
7058 concerns about version mismatch between developers' tools.  The
7059 Gettext manual has a section about this, see @ref{CVS Issues, CVS
7060 Issues, Integrating with CVS, gettext, GNU gettext tools}.
7062 @node maintainer-mode
7063 @section @command{missing} and @code{AM_MAINTAINER_MODE}
7065 @subsection @command{missing}
7066 @cindex missing, purpose
7068 The @command{missing} script is a wrapper around several maintainer
7069 tools, designed to warn users if a maintainer tool is required but
7070 missing.  Typical maintainer tools are @command{autoconf},
7071 @command{automake}, @command{bison}, etc.  Because file generated by
7072 these tools are shipped with the other sources of a package, these
7073 tools shouldn't be required during a user build and they are not
7074 checked for in @file{configure}.
7076 However, if for some reason a rebuild rule is triggered and involves a
7077 missing tool, @command{missing} will notice it and warn the user.
7078 Besides the warning, when a tool is missing, @command{missing} will
7079 attempt to fix timestamps in a way which allow the build to continue.
7080 For instance @command{missing} will touch @file{configure} if
7081 @command{autoconf} is not installed.  When all distributed files are
7082 kept under CVS, this feature of @command{missing} allows user
7083 @emph{with no maintainer tools} to build a package off CVS, bypassing
7084 any timestamp inconsistency implied by @code{cvs update}.
7086 If the required tool is installed, @command{missing} will run it and
7087 won't attempt to continue after failures.  This is correct during
7088 development: developers love fixing failures.  However, users with
7089 wrong versions of maintainer tools may get an error when the rebuild
7090 rule is spuriously triggered, halting the build.  This failure to let
7091 the build continue is one of the arguments of the
7092 @code{AM_MAINTAINER_MODE} advocates.
7094 @subsection @code{AM_MAINTAINER_MODE}
7095 @cindex AM_MAINTAINER_MODE, purpose
7096 @cvindex AM_MAINTAINER_MODE
7098 @code{AM_MAINTAINER_MODE} disables the so called "rebuild rules" by
7099 default.  If you have @code{AM_MAINTAINER_MODE} in
7100 @file{configure.ac}, and run @code{./configure && make}, then
7101 @command{make} will *never* attempt to rebuilt @file{configure},
7102 @file{Makefile.in}s, Lex or Yacc outputs, etc.  I.e., this disables
7103 build rules for files which are usually distributed and that users
7104 should normally not have to update.
7106 If you run @code{./configure --enable-maintainer-mode}, then these
7107 rebuild rules will be active.
7109 People use @code{AM_MAINTAINER_MODE} either because they do want their
7110 users (or themselves) annoyed by timestamps lossage (@pxref{CVS}), or
7111 because they simply can't stand the rebuild rules and prefer running
7112 maintainer tools explicitly.
7114 @code{AM_MAINTAINER_MODE} also allows you to disable some custom build
7115 rules conditionally.  Some developers use this feature to disable
7116 rules that need exotic tools that users may not have available.
7118 Several years ago Fran@,{c}ois Pinard pointed out several arguments
7119 against @code{AM_MAINTAINER_MODE}.  Most of them relate to insecurity.
7120 By removing dependencies you get non-dependable builds: change to
7121 sources files can have no effect on generated files and this can be
7122 very confusing when unnoticed.  He adds that security shouldn't be
7123 reserved to maintainers (what @code{--enable-maintainer-mode}
7124 suggests), on the contrary.  If one user has to modify a
7125 @file{Makefile.am}, then either @file{Makefile.in} should be updated
7126 or a warning should be output (this is what Automake uses
7127 @code{missing} for) but the last thing you want is that nothing
7128 happens and the user doesn't notice it (this is what happens when
7129 rebuild rules are disabled by @code{AM_MAINTAINER_MODE}).
7131 Jim Meyering, the inventor of the @code{AM_MAINTAINER_MODE} macro was
7132 swayed by Fran@,{c}ois's arguments, and got rid of
7133 @code{AM_MAINTAINER_MODE} in all of his packages.
7135 Still many people continue to use @code{AM_MAINTAINER_MODE}, because
7136 it helps them working on projects where all files are kept under CVS,
7137 and because @command{missing} isn't enough if you have the wrong
7138 version of the tools.
7141 @node wildcards
7142 @section Why doesn't Automake support wildcards?
7143 @cindex wildcards
7145 Developers are lazy.  They often would like to use wildcards in
7146 @file{Makefile.am}s, so they don't need to remember they have to
7147 update @file{Makefile.am}s every time they add, delete, or rename a
7148 file.
7150 There are several objections to this:
7151 @itemize
7152 @item
7153 When using CVS (or similar) developers need to remember they have to
7154 run @code{cvs add} or @code{cvs rm} anyway.  Updating
7155 @file{Makefile.am} accordingly quickly becomes a reflex.
7157 Conversely, if your application doesn't compile
7158 because you forgot to add a file in @file{Makefile.am}, it will help
7159 you remember to @code{cvs add} it.
7161 @item
7162 Using wildcards makes easy to distribute files by mistake.  For
7163 instance some code a developer is experimenting with (a test case,
7164 say) but which should not be part of the distribution.
7166 @item
7167 Using wildcards it's easy to omit some files by mistake.  For
7168 instance one developer creates a new file, uses it at many places,
7169 but forget to commit it.  Another developer then checkout the
7170 incomplete project and is able to run `make dist' successfully,
7171 even though a file is missing.
7173 @item
7174 Listing files, you control *exactly* what you distribute.
7175 If some file that should be distributed is missing from your
7176 tree, @code{make dist} will complain.  Besides, you don't distribute
7177 more than what you listed.
7179 @item
7180 Finally it's really hard to @file{forget} adding a file to
7181 @file{Makefile.am}, because if you don't add it, it doesn't get
7182 compiled nor installed, so you can't even test it.
7183 @end itemize
7185 Still, these are philosophical objections, and as such you may disagree,
7186 or find enough value in wildcards to dismiss all of them.  Before you
7187 start writing a patch against Automake to teach it about wildcards,
7188 let's see the main technical issue: portability.
7190 Although @code{$(wildcard ...)} works with GNU @command{make}, it is
7191 not portable to other @command{make} implementations.
7193 The only way Automake could support @command{$(wildcard ...)} is by
7194 expending @command{$(wildcard ...)} when @command{automake} is run.
7195 Resulting @file{Makefile.in}s would be portable since they would
7196 list all files and not use @code{$(wildcard ...)}.  However that
7197 means developers need to remember they must run @code{automake} each
7198 time they add, delete, or rename files.
7200 Compared to editing @file{Makefile.am}, this is really little win.  Sure,
7201 it's easier and faster to type @code{automake; make} than to type
7202 @code{emacs Makefile.am; make}.  But nobody bothered enough to write a
7203 patch add support for this syntax.  Some people use scripts to
7204 generated file lists in @file{Makefile.am} or in separate
7205 @file{Makefile} fragments.
7207 Even if you don't care about portability, and are tempted to use
7208 @code{$(wildcard ...)} anyway because you target only GNU Make, you
7209 should know there are many places where Automake need to know exactly
7210 which files should be processed.  As Automake doesn't know how to
7211 expand @code{$(wildcard ...)}, you cannot use it in these places.
7212 @code{$(wildcard ...)} is a black box comparable to @code{AC_SUBST}ed
7213 variables as far Automake is concerned.
7215 You can get warnings about @code{$(wildcard ...}) constructs using the
7216 @code{-Wportability} flag.
7218 @node distcleancheck
7219 @section Files left in build directory after distclean
7220 @cindex distclean, diagnostic
7221 @cindex dependencies and distributed files
7222 @trindex distclean
7223 @trindex distcleancheck
7225 This is a diagnostic you might encounter while running @code{make
7226 distcheck}.
7228 As explained in @ref{Dist}, @code{make distcheck} attempts to build
7229 and check your package for errors like this one.
7231 @code{make distcheck} will perform a @code{VPATH} build of your
7232 package, and then call @code{make distclean}.  Files left in the build
7233 directory after @code{make distclean} has run are listed after this
7234 error.
7236 This diagnostic really covers two kinds of errors:
7238 @itemize @bullet
7239 @item
7240 files that are forgotten by distclean;
7241 @item
7242 distributed files that are erroneously rebuilt.
7243 @end itemize
7245 The former left-over files are not distributed, so the fix is to mark
7246 them for cleaning (@pxref{Clean}), this is obvious and doesn't deserve
7247 more explanations.
7249 The latter bug is not always easy to understand and fix, so let's
7250 proceed with an example.  Suppose our package contains a program for
7251 which we want to build a man page using @command{help2man}.  GNU
7252 @command{help2man} produces simple manual pages from the @code{--help}
7253 and @code{--version} output of other commands (@pxref{Top, , Overview,
7254 help2man, The Help2man Manual}).  Because we don't to force want our
7255 users to install @command{help2man}, we decide to distribute the
7256 generated man page using the following setup.
7258 @example
7259 # This Makefile.am is bogus.
7260 bin_PROGRAMS = foo
7261 foo_SOURCES = foo.c
7262 dist_man_MANS = foo.1
7264 foo.1: foo$(EXEEXT)
7265         help2man --output=foo.1 ./foo$(EXEEXT)
7266 @end example
7268 This will effectively distribute the man page.  However,
7269 @code{make distcheck} will fail with:
7271 @example
7272 ERROR: files left in build directory after distclean:
7273 ./foo.1
7274 @end example
7276 Why was @file{foo.1} rebuilt?  Because although distributed,
7277 @file{foo.1} depends on a non-distributed built file:
7278 @file{foo$(EXEEXT)}.  @file{foo$(EXEEXT)} is built by the user, so it
7279 will always appear to be newer than the distributed @file{foo.1}.
7281 @code{make distcheck} caught an inconsistency in our package.  Our
7282 intent was to distribute @file{foo.1} so users do not need installing
7283 @command{help2man}, however since this our rule causes this file to be
7284 always rebuilt, users @emph{do} need @command{help2man}.  Either we
7285 should ensure that @file{foo.1} is not rebuilt by users, or there is
7286 no point in distributing @file{foo.1}.
7288 More generally, the rule is that distributed files should never depend
7289 on non-distributed built files.  If you distribute something
7290 generated, distribute its sources.
7292 One way to fix the above example, while still distributing
7293 @file{foo.1} is to not depend on @file{foo$(EXEEXT)}.  For instance,
7294 assuming @command{foo --version} and @command{foo --help} do not
7295 change unless @file{foo.c} or @file{configure.ac} change, we could
7296 write the following @file{Makefile.am}:
7298 @example
7299 bin_PROGRAMS = foo
7300 foo_SOURCES = foo.c
7301 dist_man_MANS = foo.1
7303 foo.1: foo.c $(top_srcdir)/configure.ac
7304         $(MAKE) $(AM_MAKEFLAGS) foo$(EXEEXT)
7305         help2man --output=foo.1 ./foo$(EXEEXT)
7306 @end example
7308 This way, @file{foo.1} will not get rebuilt every time
7309 @file{foo$(EXEEXT)} changes.  The @command{make} call makes sure
7310 @file{foo$(EXEEXT)} is up-to-date before @command{help2man}.  Another
7311 way to ensure this would be to use separate directories for binaries
7312 and man pages, and set @code{SUBDIRS} so that binaries are built
7313 before man pages.
7315 We could also decide not to distribute @file{foo.1}.  In
7316 this case it's fine to have @file{foo.1} dependent upon
7317 @file{foo$(EXEEXT)}, since both will have to be rebuilt.
7318 However it would be impossible to build the package in a
7319 cross-compilation, because building @file{foo.1} involves
7320 an @emph{execution} of @file{foo$(EXEEXT)}.
7322 Another context where such errors are common is when distributed files
7323 are built by tools which are built by the package.  The pattern is similar:
7325 @example
7326 distributed-file: built-tools distributed-sources
7327         build-command
7328 @end example
7330 @noindent
7331 should be changed to
7333 @example
7334 distributed-file: distributed-sources
7335         $(MAKE) $(AM_MAKEFLAGS) built-tools
7336         build-command
7337 @end example
7339 @noindent
7340 or you could choose not to distribute @file{distributed-file}, if
7341 cross-compilation does not matter.
7343 The points made through these examples are worth a summary:
7345 @cartouche
7346 @itemize
7347 @item
7348 Distributed files should never depend upon non-distributed built
7349 files.
7350 @item
7351 Distributed files should be distributed will all their dependencies.
7352 @item
7353 If a file is @emph{intended} be rebuilt by users, there is no point in
7354 distributing it.
7355 @end itemize
7356 @end cartouche
7358 @vrindex distcleancheck_listfiles
7359 For desperate cases, it's always possible to disable this check by
7360 setting @code{distcleancheck_listfiles} as documented in @ref{Dist}.
7361 Make sure you do understand the reason why @code{make distcheck}
7362 complains before you do this.  @code{distcleancheck_listfiles} is a
7363 way to @emph{hide} errors, not to fix them.  You can always do better.
7365 @node renamed objects
7366 @section Why are object files sometimes renamed?
7368 This happens when per-target compilation flags are used.  Object
7369 files need to be renamed just in case they would clash with object
7370 files compiled from the same sources, but with different flags.
7371 Consider the following example.
7373 @example
7374 bin_PROGRAMS = true false
7375 true_SOURCES = generic.c
7376 true_CPPFLAGS = -DEXIT_CODE=0
7377 false_SOURCES = generic.c
7378 false_CPPFLAGS = -DEXIT_CODE=1
7379 @end example
7380 @noindent
7381 Obviously the two programs are built from the same source, but it
7382 would be bad if they shared the same object, because @file{generic.o}
7383 cannot be built with both @code{-DEXIT_CODE=0} *and*
7384 @code{-DEXIT_CODE=1}.  Therefore @command{automake} outputs rules to
7385 build two different objects: @file{true-generic.o} and
7386 @file{false-generic.o}.
7388 @command{automake} doesn't actually look whether sources files are
7389 shared to decide if it must rename objects.  It will just rename all
7390 objects of a target as soon as it sees per-target compilation flags
7391 are used.
7393 It's OK to share object files when per-target compilation flags are not
7394 used.  For instance @file{true} and @file{false} will both use
7395 @file{version.o} in the following example.
7397 @example
7398 AM_CPPFLAGS = -DVERSION=1.0
7399 bin_PROGRAMS = true false
7400 true_SOURCES = true.c version.c
7401 false_SOURCES = false.c version.c
7402 @end example
7404 Note that the renaming of objects is also affected by the
7405 @code{_SHORTNAME} variable (@pxref{Program and Library Variables}).
7408 @node Multiple Outputs
7409 @section Handling Tools that Produce Many Outputs
7410 @cindex multiple outputs, rules with
7411 @cindex many outputs, rules with
7412 @cindex rules with multiple outputs
7414 This section describes a @command{make} idiom that can be used when a
7415 tool produces multiple output files.  It is not specific to Automake
7416 and can be used in ordinary @file{Makefile}s.
7418 Suppose we have a program called @command{foo} that will read one file
7419 called @file{data.foo} and produce two files named @file{data.c} and
7420 @file{data.h}.  We want to write a @file{Makefile} rule that captures
7421 this one-to-two dependency.
7423 The naive rule is incorrect:
7425 @example
7426 # This is incorrect.
7427 data.c data.h: data.foo
7428         foo data.foo
7429 @end example
7431 @noindent
7432 What the above rule really says is that @file{data.c} and
7433 @file{data.h} each depend on @file{data.foo}, and can each be built by
7434 running @code{foo data.foo}.  In other words it is equivalent to:
7436 @example
7437 # We do not want this.
7438 data.c: data.foo
7439         foo data.foo
7440 data.h: data.foo
7441         foo data.foo
7442 @end example
7444 @noindent
7445 which means that @command{foo} can be run twice.  Usually it will not
7446 be run twice, because @command{make} implementations are smart enough
7447 to check for the existence of the second file after the first one has
7448 been built; they will therefore detect that it already exists.
7449 However there are a few situations where it can run twice anyway:
7451 @itemize
7452 @item
7453 The most worrying case is when running a parallel @command{make}.  If
7454 @file{data.c} and @file{data.h} are built in parallel, two @code{foo
7455 data.foo} commands will run concurrently.  This is harmful.
7456 @item
7457 Another case is when the dependency (here @code{data.foo}) is
7458 (or depends upon) a phony target.
7459 @end itemize
7461 A solution that works with parallel @command{make} but not with
7462 phony dependencies is the following:
7464 @example
7465 data.c data.h: data.foo
7466         foo data.foo
7467 data.h: data.c
7468 @end example
7470 @noindent
7471 The above rules are equivalent to
7473 @example
7474 data.c: data.foo
7475         foo data.foo
7476 data.h: data.foo data.c
7477         foo data.foo
7478 @end example
7479 @noindent
7480 therefore a parallel @command{make} will have to serialize the builds
7481 of @file{data.c} and @file{data.h}, and will detect that the second is
7482 no longer needed once the first is over.
7484 Using this pattern is probably enough for most cases.  However it does
7485 not scale easily to more output files (in this scheme all output files
7486 must be totally ordered by the dependency relation), so we will
7487 explore a more complicated solution.
7489 Another idea is to write the following:
7491 @example
7492 # There is still a problem with this one.
7493 data.c: data.foo
7494         foo data.foo
7495 data.h: data.c
7496 @end example
7498 @noindent
7499 The idea is that @code{foo data.foo} is run only when @file{data.c}
7500 needs to be updated, but we further state that @file{data.h} depends
7501 upon @file{data.c}.  That way, if @file{data.h} is required and
7502 @file{data.foo} is out of date, the dependency on @file{data.c} will
7503 trigger the build.
7505 This is almost perfect, but suppose we have built @file{data.h} and
7506 @file{data.c}, and then we erase @file{data.h}.  Then, running
7507 @code{make data.h} will not rebuild @file{data.h}.  The above rules
7508 just state that @file{data.c} must be up-to-date with respect to
7509 @file{data.foo}, and this is already the case.
7511 What we need is a rule that forces a rebuild when @file{data.h} is
7512 missing.  Here it is:
7514 @example
7515 data.c: data.foo
7516         foo data.foo
7517 data.h: data.c
7518         @@if test -f $@@; then :; else \
7519           rm -f data.c; \
7520           $(MAKE) $(AM_MAKEFLAGS) data.c; \
7521         fi
7522 @end example
7524 The above scales easily to more outputs and more inputs.  One of the
7525 output is picked up to serve as a witness of the run of the command,
7526 it depends upon all inputs, and all other outputs depend upon it.  For
7527 instance if @command{foo} should additionally read @file{data.bar} and
7528 also produce @file{data.w} and @file{data.x}, we would write:
7530 @example
7531 data.c: data.foo data.bar
7532         foo data.foo data.bar
7533 data.h data.w data.x: data.c
7534         @@if test -f $@@; then :; else \
7535           rm -f data.c; \
7536           $(MAKE) $(AM_MAKEFLAGS) data.c; \
7537         fi
7538 @end example
7540 There is still a minor problem with this setup.  @command{foo} outputs
7541 four files, but we do not know in which order these files are created.
7542 Suppose that @file{data.h} is created before @file{data.c}.  Then we
7543 have a weird situation.  The next time @command{make} is run,
7544 @file{data.h} will appear older than @file{data.c}, the second rule
7545 will be triggered, a shell will be started to execute the
7546 @code{if...fi} command, but actually it will just execute the
7547 @code{then} branch, that is: nothing.  In other words, because the
7548 witness we selected is not the first file created by @command{foo},
7549 @command{make} will start a shell to do nothing each time it is run.
7551 A simple riposte is to fix the timestamps when this happens.
7553 @example
7554 data.c: data.foo data.bar
7555         foo data.foo data.bar
7556 data.h data.w data.x: data.c
7557         @@if test -f $@@; then \
7558           touch $@@; \
7559         else \
7560           rm -f data.c; \
7561           $(MAKE) $(AM_MAKEFLAGS) data.c; \
7562         fi
7563 @end example
7565 Another solution, not incompatible with the previous one, is to use a
7566 different and dedicated file as witness, rather than using any of
7567 @command{foo}'s outputs.
7569 @example
7570 data.stamp: data.foo data.bar
7571         @@rm -f data.tmp
7572         @@touch data.tmp
7573         foo data.foo data.bar
7574         @@mv -f data.tmp $@@
7575 data.c data.h data.w data.x: data.stamp
7576         @@if test -f $@@; then \
7577           touch $@@; \
7578         else \
7579           rm -f data.stamp; \
7580           $(MAKE) $(AM_MAKEFLAGS) data.stamp; \
7581         fi
7582 @end example
7584 @file{data.tmp} is created before @command{foo} is run, so it has a
7585 timestamp older than output files output by @command{foo}.  It is then
7586 renamed to @file{data.stamp} after @command{foo} has run, because we
7587 do not want to update @file{data.stamp} if @command{foo} fails.
7589 Using a dedicated witness like this is very handy when the list of
7590 output files is not known beforehand.  As an illustration, consider
7591 the following rules to compile many @file{*.el} files into
7592 @file{*.elc} files in a single command.  It does not matter how
7593 @code{ELFILES} is defined (as long as it is not empty: empty targets
7594 are not accepted by POSIX).
7596 @example
7597 ELFILES = one.el two.el three.el @dots{}
7598 ELCFILES = $(ELFILES:=c)
7600 elc-stamp: $(ELFILES)
7601         @@rm -f elc-temp
7602         @@touch elc-temp
7603         $(elisp_comp) $(ELFILES)
7604         @@mv -f elc-temp $@@
7606 $(ELCFILES): elc-stamp
7607         @@if test -f $@@; then \
7608           touch $@@; \
7609         else \
7610           rm -f elc-stamp; \
7611           $(MAKE) $(AM_MAKEFLAGS) elc-stamp; \
7612         fi
7613 @end example
7615 For completeness it should be noted that GNU @command{make} is able to
7616 express rules with multiple output files using pattern rules
7617 (@pxref{Pattern Examples, , Pattern Rule Examples, make, The GNU Make
7618 Manual}).  We do not discuss pattern rules here because they are not
7619 portable, but they can be convenient in packages that assume GNU
7620 @command{make}.
7622 @c ========================================================== Appendices
7624 @page
7625 @node Copying This Manual
7626 @appendix Copying This Manual
7628 @menu
7629 * GNU Free Documentation License::  License for copying this manual
7630 @end menu
7632 @include fdl.texi
7634 @page
7635 @node Indices
7636 @appendix Indices
7638 @menu
7639 * Macro and Variable Index::    Index of Autoconf macros and Automake variables
7640 * General Index::               General index
7641 @end menu
7643 @node Macro and Variable Index
7644 @appendixsec Macro and Variable Index
7646 @printindex vr
7648 @node General Index
7649 @appendixsec General Index
7651 @printindex cp
7654 @page
7655 @contents
7656 @bye
7658 @c  LocalWords:  texinfo setfilename settitle setchapternewpage texi direntry
7659 @c  LocalWords:  dircategory in's aclocal ifinfo titlepage Tromey vskip pt sp
7660 @c  LocalWords:  filll defcodeindex ov cv op tr syncodeindex fn cp vr ifnottex
7661 @c  LocalWords:  dir Automake's ac Dist Gnits gnits cygnus dfn Autoconf's pxref
7662 @c  LocalWords:  cindex Autoconf autoconf perl samp cvs dist trindex SUBST foo
7663 @c  LocalWords:  xs emph FIXME ref vindex pkglibdir pkgincludedir pkgdatadir mt
7664 @c  LocalWords:  pkg libdir cvindex cpio bindir sbindir rmt pax sbin zar zardir
7665 @c  LocalWords:  HTML htmldir html noinst TEXINFOS nodist nobase strudel CFLAGS
7666 @c  LocalWords:  libmumble CC YFLAGS ansi knr itemx de fication config url comp
7667 @c  LocalWords:  depcomp elisp sh mdate mkinstalldirs mkdir py tex dvi ps pdf
7668 @c  LocalWords:  ylwrap zardoz INIT gettext acinclude mv FUNCS LIBOBJS LDADD fr
7669 @c  LocalWords:  uref featureful dnl src LINGUAS es ko nl pl sl sv PROG ISC doc
7670 @c  LocalWords:  POSIX STDC fcntl FUNC ALLOCA blksize struct stat intl po chmod
7671 @c  LocalWords:  ChangeLog SUBDIRS gettextize gpl testdata getopt INTLLIBS cpp
7672 @c  LocalWords:  localedir datadir DLOCALEDIR DEXIT CPPFLAGS autoreconf opindex
7673 @c  LocalWords:  AUX var symlink deps Wno Wnone package's aclocal's distclean
7674 @c  LocalWords:  ltmain xref LIBSOURCE LIBSOURCES LIBOBJ MEMCMP vs RANLIB CXX
7675 @c  LocalWords:  LDFLAGS LIBTOOL libtool XTRA LIBS gettext's acdir APIVERSION
7676 @c  LocalWords:  dirlist noindent usr MULTILIB multilib Multilibs TIOCGWINSZ sc
7677 @c  LocalWords:  GWINSZ termios SRCDIR tarball bzip LISPDIR lispdir XEmacs CCAS
7678 @c  LocalWords:  emacsen MicroEmacs CCASFLAGS UX GCJ gcj GCJFLAGS posix DMALLOC
7679 @c  LocalWords:  dmalloc ldmalloc REGEX regex rx DEPDIR DEP DEFUN aclocaldir fi
7680 @c  LocalWords:  mymacro myothermacro AMFLAGS autopoint autogen libtoolize yum
7681 @c  LocalWords:  autoheader README MAKEFLAGS subdir Inetutils sync COND endif
7682 @c  LocalWords:  Miller's installable includedir inc pkgdata EXEEXT libexec bsd
7683 @c  LocalWords:  pkglib libexecdir prog libcpio cpio's dlopen dlpreopen linux
7684 @c  LocalWords:  subsubsection OBJEXT esac lib LTLIBRARIES liblob LIBADD AR ar
7685 @c  LocalWords:  ARFLAGS cru ing maude libgettext lo LTLIBOBJS rpath SGI PRE yy
7686 @c  LocalWords:  libmaude CCLD CXXFLAGS FFLAGS LFLAGS OBJCFLAGS RFLAGS DEFS cc
7687 @c  LocalWords:  SHORTNAME vtable srcdir nostdinc basename yxx cxx ll lxx gdb
7688 @c  LocalWords:  lexers yymaxdepth maxdepth yyparse yylex yyerror yylval lval
7689 @c  LocalWords:  yychar yydebug yypact yyr yydef def yychk chk yypgo pgo yyact
7690 @c  LocalWords:  yyexca exca yyerrflag errflag yynerrs nerrs yyps yypv pv yys
7691 @c  LocalWords:  yystate yytmp tmp yyv yyval val yylloc lloc yyreds yytoks toks
7692 @c  LocalWords:  yylhs yylen yydefred yydgoto yysindex yyrindex yygindex yyname
7693 @c  LocalWords:  yytable yycheck yyrule byacc CXXCOMPILE CXXLINK FLINK cfortran
7694 @c  LocalWords:  Catalogue preprocessable FLIBS libfoo baz JAVACFLAGS java exe
7695 @c  LocalWords:  SunOS fying basenames exeext uninstalled oldinclude kr FSF's
7696 @c  LocalWords:  pkginclude oldincludedir sysconf sharedstate localstate gcc rm
7697 @c  LocalWords:  sysconfdir sharedstatedir localstatedir preexist CLEANFILES gz
7698 @c  LocalWords:  unnumberedsubsec depfile tmpdepfile depmode const interoperate
7699 @c  LocalWords:  JAVAC javac JAVAROOT builddir CLASSPATH ENV pyc pyo pkgpython
7700 @c  LocalWords:  pyexecdir pkgpyexecdir Python's pythondir pkgpythondir txi ois
7701 @c  LocalWords:  installinfo vers MAKEINFO makeinfo MAKEINFOFLAGS noinstall rf
7702 @c  LocalWords:  mandir thesame alsothesame installman myexecbin DESTDIR Pinard
7703 @c  LocalWords:  uninstall installdirs uninstalls MOSTLYCLEANFILES mostlyclean
7704 @c  LocalWords:  DISTCLEANFILES MAINTAINERCLEANFILES gzip'd GZIP gzip shar exp
7705 @c  LocalWords:  distdir distcheck distcleancheck listfiles distuninstallcheck
7706 @c  LocalWords:  VPATH tarfile stdout XFAIL DejaGnu dejagnu DEJATOOL runtest ln
7707 @c  LocalWords:  RUNTESTDEFAULTFLAGS toolchain RUNTESTFLAGS asis readme DVIPS
7708 @c  LocalWords:  installcheck gzipped tarZ std utils etags mkid multilibbing cd
7709 @c  LocalWords:  ARGS taggable ETAGSFLAGS lang ctags CTAGSFLAGS GTAGS gtags idl
7710 @c  LocalWords:  foocc doit idlC multilibs ABIs cmindex defmac ARG enableval
7711 @c  LocalWords:  MSG xtrue DBG pathchk CYGWIN afile proglink versioned CVS's
7712 @c  LocalWords:  wildcards Autoconfiscated subsubheading autotools Meyering API
7713 @c  LocalWords:  ois's wildcard Wportability cartouche vrindex printindex Duret
7714 @c  LocalWords:  DSOMEFLAG DVERSION automake Lutz insertcopying versioning FAQ
7715 @c  LocalWords:  LTLIBOBJ Libtool's libtool's libltdl dlopening itutions libbar
7716 @c  LocalWords:  WANTEDLIBS libhello sublibraries libtop libsub dlopened Ratfor
7717 @c  LocalWords:  mymodule timestamps timestamp underquoted MAKEINFOHTMLFLAGS
7718 @c  LocalWords:  GNUmakefile buildir