Fix some typos and a grammar nit.
[automake.git] / automake.texi
blobde2fec9491b2f8c06d331d2c5d972f597d7bb077
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 @dircategory GNU programming tools
11 @direntry
12 * automake: (automake).         Making Makefile.in's
13 @end direntry
15 @dircategory Individual utilities
16 @direntry
17 * aclocal: (automake)Invoking aclocal.          Generating aclocal.m4
18 @end direntry
20 @ifinfo
21 This file documents GNU automake @value{VERSION}
23 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
24 Free Software Foundation, Inc.
26 Permission is granted to make and distribute verbatim copies of
27 this manual provided the copyright notice and this permission notice
28 are preserved on all copies.
30 @ignore
31 Permission is granted to process this file through TeX and print the
32 results, provided the printed document carries copying permission
33 notice identical to this one except for the removal of this paragraph
36 @end ignore
37 Permission is granted to copy and distribute modified versions of this
38 manual under the conditions for verbatim copying, provided that the entire
39 resulting derived work is distributed under the terms of a permission
40 notice identical to this one.
42 Permission is granted to copy and distribute translations of this manual
43 into another language, under the above conditions for modified versions,
44 except that this permission notice may be stated in a translation approved
45 by the Foundation.
46 @end ifinfo
49 @titlepage
50 @title GNU Automake
51 @subtitle For version @value{VERSION}, @value{UPDATED}
52 @author David MacKenzie and Tom Tromey
54 @page
55 @vskip 0pt plus 1filll
56 Copyright @copyright{} 1995, 1996, 2000, 2001, 2002 Free Software Foundation, Inc.
57 @sp 2
58 This is the first edition of the GNU Automake documentation,@*
59 and is consistent with GNU Automake @value{VERSION}.@*
60 @sp 2
61 Published by the Free Software Foundation @*
62 59 Temple Place - Suite 330, @*
63 Boston, MA 02111-1307 USA @*
65 Permission is granted to make and distribute verbatim copies of
66 this manual provided the copyright notice and this permission notice
67 are preserved on all copies.
69 Permission is granted to copy and distribute modified versions of this
70 manual under the conditions for verbatim copying, provided that the entire
71 resulting derived work is distributed under the terms of a permission
72 notice identical to this one.
74 Permission is granted to copy and distribute translations of this manual
75 into another language, under the above conditions for modified versions,
76 except that this permission notice may be stated in a translation
77 approved by the Free Software Foundation.
78 @end titlepage
80 @c Define an index of configure output variables.
81 @defcodeindex ov
82 @c Define an index of configure variables.
83 @defcodeindex cv
84 @c Define an index of options.
85 @defcodeindex op
86 @c Define an index of targets.
87 @defcodeindex tr
88 @c Define an index of commands.
89 @defcodeindex cm
91 @c Put the macros and variables into their own index.
92 @c @syncodeindex fn cp
93 @syncodeindex ov vr
94 @syncodeindex cv vr
95 @syncodeindex fn vr
97 @c Put everything else into one index (arbitrarily chosen to be the concept index).
98 @syncodeindex op cp
99 @syncodeindex tr cp
100 @syncodeindex cm cp
102 @ifnottex
103 @node Top, Introduction, (dir), (dir)
104 @comment  node-name,  next,  previous,  up
105 @top GNU Automake
107 This file documents the GNU Automake package.  Automake is a program
108 which creates GNU standards-compliant Makefiles from template files.
109 This edition documents version @value{VERSION}.
111 @menu
112 * Introduction::                Automake's purpose
113 * Generalities::                General ideas
114 * Examples::                    Some example packages
115 * Invoking Automake::           Creating a Makefile.in
116 * configure::                   Scanning configure.ac or configure.in
117 * Top level::                   The top-level Makefile.am
118 * Alternative::                 An alternative approach to subdirectories
119 * Rebuilding::                  Automatic rebuilding of Makefile
120 * Programs::                    Building programs and libraries
121 * Other objects::               Other derived objects
122 * Other GNU Tools::             Other GNU Tools
123 * Documentation::               Building documentation
124 * Install::                     What gets installed
125 * Clean::                       What gets cleaned
126 * Dist::                        What goes in a distribution
127 * Tests::                       Support for test suites
128 * Options::                     Changing Automake's behavior
129 * Miscellaneous::               Miscellaneous rules
130 * Include::                     Including extra files in an Automake template.
131 * Conditionals::                Conditionals
132 * Gnits::                       The effect of @code{--gnu} and @code{--gnits}
133 * Cygnus::                      The effect of @code{--cygnus}
134 * Extending::                   Extending Automake
135 * Distributing::                Distributing the Makefile.in
136 * API versioning::              About compatibility between Automake versions
137 * Macro and Variable Index::
138 * General Index::
139 @end menu
141 @end ifnottex
144 @node Introduction, Generalities, Top, Top
145 @chapter Introduction
147 Automake is a tool for automatically generating @file{Makefile.in}s from
148 files called @file{Makefile.am}.  Each @file{Makefile.am} is basically a
149 series of @code{make} variable definitions@footnote{These variables are
150 also called @dfn{make macros} in Make terminology, however in this
151 manual we reserve the term @dfn{macro} for Autoconf's macros.}, with
152 rules being thrown in occasionally.  The generated @file{Makefile.in}s
153 are compliant with the GNU Makefile standards.
155 @cindex GNU Makefile standards
157 The GNU Makefile Standards Document
158 (@pxref{Makefile Conventions, , , standards, The GNU Coding Standards})
159 is long, complicated, and subject to change.  The goal of Automake is to
160 remove the burden of Makefile maintenance from the back of the
161 individual GNU maintainer (and put it on the back of the Automake
162 maintainer).
164 The typical Automake input file is simply a series of variable definitions.
165 Each such file is processed to create a @file{Makefile.in}.  There
166 should generally be one @file{Makefile.am} per directory of a project.
168 @cindex Constraints of Automake
169 @cindex Automake constraints
171 Automake does constrain a project in certain ways; for instance it
172 assumes that the project uses Autoconf (@pxref{Top, , Introduction,
173 autoconf, The Autoconf Manual}), and enforces certain restrictions on
174 the @file{configure.in} contents@footnote{Autoconf 2.50 promotes
175 @file{configure.ac} over @file{configure.in}.  The rest of this
176 documentation will refer to @file{configure.in} as this use is not yet
177 spread, but Automake supports @file{configure.ac} too.}.
179 @cindex Automake requirements
180 @cindex Requirements, Automake
182 Automake requires @code{perl} in order to generate the
183 @file{Makefile.in}s.  However, the distributions created by Automake are
184 fully GNU standards-compliant, and do not require @code{perl} in order
185 to be built.
187 @cindex BUGS, reporting
188 @cindex Reporting BUGS
189 @cindex E-mail, bug reports
191 Mail suggestions and bug reports for Automake to
192 @email{bug-automake@@gnu.org}.
195 @node Generalities, Examples, Introduction, Top
196 @chapter General ideas
198 The following sections cover a few basic ideas that will help you
199 understand how Automake works.
201 @menu
202 * General Operation::           General operation of Automake
203 * Strictness::                  Standards conformance checking
204 * Uniform::                     The Uniform Naming Scheme
205 * Canonicalization::            How derived variables are named
206 * User Variables::              Variables reserved for the user
207 * Auxiliary Programs::          Programs automake might require
208 @end menu
211 @node General Operation, Strictness, Generalities, Generalities
212 @section General Operation
214 Automake works by reading a @file{Makefile.am} and generating a
215 @file{Makefile.in}.  Certain variables and targets defined in the
216 @file{Makefile.am} instruct Automake to generate more specialized code;
217 for instance, a @samp{bin_PROGRAMS} variable definition will cause targets
218 for compiling and linking programs to be generated.
220 @cindex Non-standard targets
221 @cindex cvs-dist, non-standard example
222 @trindex cvs-dist
224 The variable definitions and targets in the @file{Makefile.am} are copied
225 verbatim into the generated file.  This allows you to add arbitrary code
226 into the generated @file{Makefile.in}.  For instance the Automake
227 distribution includes a non-standard @code{cvs-dist} target, which the
228 Automake maintainer uses to make distributions from his source control
229 system.
231 @cindex GNU make extensions
233 Note that most GNU make extensions are not recognized by Automake.  Using
234 such extensions in a @file{Makefile.am} will lead to errors or confusing
235 behavior.
237 @cindex Append operator
238 A special exception is that the GNU make append operator, @samp{+=}, is
239 supported.  This operator appends its right hand argument to the variable
240 specified on the left.  Automake will translate the operator into
241 an ordinary @samp{=} operator; @samp{+=} will thus work with any make program.
243 Automake tries to keep comments grouped with any adjoining targets or
244 variable definitions.
246 @cindex Make targets, overriding
247 @cindex Overriding make targets
249 A target defined in @file{Makefile.am} generally overrides any such
250 target of a similar name that would be automatically generated by
251 @code{automake}.  Although this is a supported feature, it is generally
252 best to avoid making use of it, as sometimes the generated rules are
253 very particular.
255 @cindex Variables, overriding
256 @cindex Overriding make variables
258 Similarly, a variable defined in @file{Makefile.am} or @code{AC_SUBST}'ed
259 from @file{configure.in} will override any definition of the variable that
260 @code{automake} would ordinarily create.  This feature is more often
261 useful than the ability to override a target definition.  Be warned that
262 many of the variables generated by @code{automake} are considered to be for
263 internal use only, and their names might change in future releases.
265 @cindex Recursive operation of Automake
266 @cindex Automake, recursive operation
267 @cindex Example of recursive operation
269 When examining a variable definition, Automake will recursively examine
270 variables referenced in the definition.  For example, if Automake is
271 looking at the content of @code{foo_SOURCES} in this snippet
273 @example
274 xs = a.c b.c
275 foo_SOURCES = c.c $(xs)
276 @end example
278 it would use the files @file{a.c}, @file{b.c}, and @file{c.c} as the
279 contents of @code{foo_SOURCES}.
281 @cindex ## (special Automake comment)
282 @cindex Special Automake comment
283 @cindex Comment, special to Automake
285 Automake also allows a form of comment which is @emph{not} copied into
286 the output; all lines beginning with @samp{##} (leading spaces allowed)
287 are completely ignored by Automake.
289 It is customary to make the first line of @file{Makefile.am} read:
291 @cindex Makefile.am, first line
292 @cindex First line of Makefile.am
294 @example
295 ## Process this file with automake to produce Makefile.in
296 @end example
298 @c FIXME discuss putting a copyright into Makefile.am here?  I would but
299 @c I don't know quite what to say.
301 @c FIXME document customary ordering of Makefile.am here!
304 @node Strictness, Uniform, General Operation, Generalities
305 @section Strictness
307 @cindex Non-GNU packages
309 While Automake is intended to be used by maintainers of GNU packages, it
310 does make some effort to accommodate those who wish to use it, but do
311 not want to use all the GNU conventions.
313 @cindex Strictness, defined
314 @cindex Strictness, foreign
315 @cindex foreign strictness
316 @cindex Strictness, gnu
317 @cindex gnu strictness
318 @cindex Strictness, gnits
319 @cindex gnits strictness
321 To this end, Automake supports three levels of @dfn{strictness}---the
322 strictness indicating how stringently Automake should check standards
323 conformance.
325 The valid strictness levels are:
327 @table @samp
328 @item foreign
329 Automake will check for only those things which are absolutely
330 required for proper operations.  For instance, whereas GNU standards
331 dictate the existence of a @file{NEWS} file, it will not be required in
332 this mode.  The name comes from the fact that Automake is intended to be
333 used for GNU programs; these relaxed rules are not the standard mode of
334 operation.
336 @item gnu
337 Automake will check---as much as possible---for compliance to the GNU
338 standards for packages.  This is the default.
340 @item gnits
341 Automake will check for compliance to the as-yet-unwritten @dfn{Gnits
342 standards}.  These are based on the GNU standards, but are even more
343 detailed.  Unless you are a Gnits standards contributor, it is
344 recommended that you avoid this option until such time as the Gnits
345 standard is actually published (which may never happen).
346 @end table
348 For more information on the precise implications of the strictness
349 level, see @ref{Gnits}.
351 Automake also has a special ``cygnus'' mode which is similar to
352 strictness but handled differently.  This mode is useful for packages
353 which are put into a ``Cygnus'' style tree (e.g., the GCC tree).  For
354 more information on this mode, see @ref{Cygnus}.
357 @node Uniform, Canonicalization, Strictness, Generalities
358 @section The Uniform Naming Scheme
360 @cindex Uniform naming scheme
362 Automake variables generally follow a @dfn{uniform naming scheme} that
363 makes it easy to decide how programs (and other derived objects) are
364 built, and how they are installed.  This scheme also supports
365 @code{configure} time determination of what should be built.
367 @cindex _PROGRAMS primary variable
368 @cindex PROGRAMS primary variable
369 @cindex Primary variable, PROGRAMS
370 @cindex Primary variable, defined
372 At @code{make} time, certain variables are used to determine which
373 objects are to be built.  The variable names are made of several pieces
374 which are concatenated together.
376 The piece which tells automake what is being built is commonly called
377 the @dfn{primary}.  For instance, the primary @code{PROGRAMS} holds a
378 list of programs which are to be compiled and linked.
379 @vindex PROGRAMS
381 @cindex pkglibdir, defined
382 @cindex pkgincludedir, defined
383 @cindex pkgdatadir, defined
385 @vindex pkglibdir
386 @vindex pkgincludedir
387 @vindex pkgdatadir
389 A different set of names is used to decide where the built objects
390 should be installed.  These names are prefixes to the primary which
391 indicate which standard directory should be used as the installation
392 directory.  The standard directory names are given in the GNU standards
393 (@pxref{Directory Variables, , , standards, The GNU Coding Standards}).
394 Automake extends this list with @code{pkglibdir}, @code{pkgincludedir},
395 and @code{pkgdatadir}; these are the same as the non-@samp{pkg}
396 versions, but with @samp{@@PACKAGE@@} appended.  For instance,
397 @code{pkglibdir} is defined as @code{$(libdir)/@@PACKAGE@@}.
398 @cvindex PACKAGE, directory
400 @cindex EXTRA_, prepending
402 For each primary, there is one additional variable named by prepending
403 @samp{EXTRA_} to the primary name.  This variable is used to list
404 objects which may or may not be built, depending on what
405 @code{configure} decides.  This variable is required because Automake
406 must statically know the entire list of objects that may be built in
407 order to generate a @file{Makefile.in} that will work in all cases.
409 @cindex EXTRA_PROGRAMS, defined
410 @cindex Example, EXTRA_PROGRAMS
411 @cindex cpio example
413 For instance, @code{cpio} decides at configure time which programs are
414 built.  Some of the programs are installed in @code{bindir}, and some
415 are installed in @code{sbindir}:
417 @example
418 EXTRA_PROGRAMS = mt rmt
419 bin_PROGRAMS = cpio pax
420 sbin_PROGRAMS = @@MORE_PROGRAMS@@
421 @end example
423 Defining a primary without a prefix as a variable, e.g.,
424 @code{PROGRAMS}, is an error.
426 Note that the common @samp{dir} suffix is left off when constructing the
427 variable names; thus one writes @samp{bin_PROGRAMS} and not
428 @samp{bindir_PROGRAMS}.
430 Not every sort of object can be installed in every directory.  Automake
431 will flag those attempts it finds in error.
432 Automake will also diagnose obvious misspellings in directory names.
434 @cindex Extending list of installation directories
435 @cindex Installation directories, extending list
437 Sometimes the standard directories---even as augmented by Automake---
438 are not enough.  In particular it is sometimes useful, for clarity, to
439 install objects in a subdirectory of some predefined directory.  To this
440 end, Automake allows you to extend the list of possible installation
441 directories.  A given prefix (e.g. @samp{zar}) is valid if a variable of
442 the same name with @samp{dir} appended is defined (e.g. @code{zardir}).
444 @cindex HTML support, example
446 For instance, until HTML support is part of Automake, you could use this
447 to install raw HTML documentation:
449 @example
450 htmldir = $(prefix)/html
451 html_DATA = automake.html
452 @end example
454 @cindex noinst primary prefix, definition
456 The special prefix @samp{noinst} indicates that the objects in question
457 should be built but not installed at all.  This is usually used for
458 objects required to build the rest of your package, for instance static
459 libraries (@pxref{A Library}), or helper scripts.
461 @cindex check primary prefix, definition
463 The special prefix @samp{check} indicates that the objects in question
464 should not be built until the @code{make check} command is run.  Those
465 objects are not installed either.
467 The current primary names are @samp{PROGRAMS}, @samp{LIBRARIES},
468 @samp{LISP}, @samp{PYTHON}, @samp{JAVA}, @samp{SCRIPTS}, @samp{DATA},
469 @samp{HEADERS}, @samp{MANS}, and @samp{TEXINFOS}.
470 @vindex PROGRAMS
471 @vindex LIBRARIES
472 @vindex LISP
473 @vindex PYTHON
474 @vindex JAVA
475 @vindex SCRIPTS
476 @vindex DATA
477 @vindex HEADERS
478 @vindex MANS
479 @vindex TEXINFOS
481 Some primaries also allow additional prefixes which control other
482 aspects of @code{automake}'s behavior.  The currently defined prefixes
483 are @samp{dist_}, @samp{nodist_}, and @samp{nobase_}.  These prefixes
484 are explained later (@pxref{Program and Library Variables}).
487 @node Canonicalization, User Variables, Uniform, Generalities
488 @section How derived variables are named
490 @cindex canonicalizing Automake variables
492 Sometimes a Makefile variable name is derived from some text the
493 maintainer supplies.  For instance, a program name listed in
494 @samp{_PROGRAMS} is rewritten into the name of a @samp{_SOURCES}
495 variable.  In cases like this, Automake canonicalizes the text, so that
496 program names and the like do not have to follow Makefile variable naming
497 rules.  All characters in the name except for letters, numbers, the
498 strudel (@@), and the underscore are turned into underscores when making
499 variable references.
501 For example, if your program is named @code{sniff-glue}, the derived
502 variable name would be @code{sniff_glue_SOURCES}, not
503 @code{sniff-glue_SOURCES}.  Similarly the sources for a library named
504 @code{libmumble++.a} should be listed in the
505 @code{libmumble___a_SOURCES} variable.
507 The strudel is an addition, to make the use of Autoconf substitutions in
508 variable names less obfuscating.
511 @node User Variables, Auxiliary Programs, Canonicalization, Generalities
512 @section Variables reserved for the user
514 @cindex variables, reserved for the user
515 @cindex user variables
517 Some @code{Makefile} variables are reserved by the GNU Coding Standards
518 for the use of the ``user'' -- the person building the package.  For
519 instance, @code{CFLAGS} is one such variable.
521 Sometimes package developers are tempted to set user variables such as
522 @code{CFLAGS} because it appears to make their job easier -- they don't
523 have to introduce a second variable into every target.
525 However, the package itself should never set a user variable,
526 particularly not to include switches which are required for proper
527 compilation of the package.  Since these variables are documented as
528 being for the package builder, that person rightfully expects to be able
529 to override any of these variables at build time.
531 To get around this problem, automake introduces an automake-specific
532 shadow variable for each user flag variable.  (Shadow variables are not
533 introduced for variables like @code{CC}, where they would make no
534 sense.)  The shadow variable is named by prepending @samp{AM_} to the
535 user variable's name.  For instance, the shadow variable for
536 @code{YFLAGS} is @code{AM_YFLAGS}.
539 @node Auxiliary Programs,  , User Variables, Generalities
540 @section Programs automake might require
542 @cindex Programs, auxiliary
543 @cindex Auxiliary programs
545 Automake sometimes requires helper programs so that the generated
546 @file{Makefile} can do its work properly.  There are a fairly large
547 number of them, and we list them here.
549 @table @code
550 @item ansi2knr.c
551 @itemx ansi2knr.1
552 These two files are used by the automatic de-ANSI-fication support
553 (@pxref{ANSI}).
555 @item compile
556 This is a wrapper for compilers which don't accept both @samp{-c} and
557 @samp{-o} at the same time.  It is only used when absolutely required.
558 Such compilers are rare.
560 @item config.guess
561 @itemx config.sub
562 These programs compute the canonical triplets for the given build, host,
563 or target architecture.  These programs are updated regularly to support
564 new architectures and fix probes broken by changes in new kernel
565 versions.  You are encouraged to fetch the latest versions of these
566 files from @url{ftp://ftp.gnu.org/gnu/config/} before making a release.
568 @item depcomp
569 This program understands how to run a compiler so that it will generate
570 not only the desired output but also dependency information which is
571 then used by the automatic dependency tracking feature.
573 @item elisp-comp
574 This program is used to byte-compile Emacs Lisp code.
576 @item install-sh
577 This is a replacement for the @code{install} program which works on
578 platforms where @code{install} is unavailable or unusable.
580 @item mdate-sh
581 This script is used to generate a @file{version.texi} file.  It examines
582 a file and prints some date information about it.
584 @item missing
585 This wraps a number of programs which are typically only required by
586 maintainers.  If the program in question doesn't exist, @code{missing}
587 prints an informative warning and attempts to fix things so that the
588 build can continue.
590 @item mkinstalldirs
591 This works around the fact that @code{mkdir -p} is not portable.
593 @item py-compile
594 This is used to byte-compile Python scripts.
596 @item texinfo.tex
597 Not a program, this file is required for @code{make dvi}, @code{make ps}
598 and @code{make pdf} to work when Texinfo sources are in the package.
600 @item ylwrap
601 This program wraps @code{lex} and @code{yacc} and ensures that, for
602 instance, multiple @code{yacc} instances can be invoked in a single
603 directory in parallel.
605 @end table
608 @node Examples, Invoking Automake, Generalities, Top
609 @chapter Some example packages
611 @menu
612 * Complete::                    A simple example, start to finish
613 * Hello::                       A classic program
614 * true::                        Building true and false
615 @end menu
618 @node Complete, Hello, Examples, Examples
619 @section A simple example, start to finish
621 @cindex Complete example
623 Let's suppose you just finished writing @code{zardoz}, a program to make
624 your head float from vortex to vortex.  You've been using Autoconf to
625 provide a portability framework, but your @file{Makefile.in}s have been
626 ad-hoc.  You want to make them bulletproof, so you turn to Automake.
628 @cindex AM_INIT_AUTOMAKE, example use
630 The first step is to update your @file{configure.in} to include the
631 commands that @code{automake} needs.  The way to do this is to add an
632 @code{AM_INIT_AUTOMAKE} call just after @code{AC_INIT}:
634 @example
635 AC_INIT(zardoz, 1.0)
636 AM_INIT_AUTOMAKE
637 @dots{}
638 @end example
640 Since your program doesn't have any complicating factors (e.g., it
641 doesn't use @code{gettext}, it doesn't want to build a shared library),
642 you're done with this part.  That was easy!
644 @cindex aclocal program, introduction
645 @cindex aclocal.m4, preexisting
646 @cindex acinclude.m4, defined
648 Now you must regenerate @file{configure}.  But to do that, you'll need
649 to tell @code{autoconf} how to find the new macro you've used.  The
650 easiest way to do this is to use the @code{aclocal} program to generate
651 your @file{aclocal.m4} for you.  But wait@dots{} maybe you already have an
652 @file{aclocal.m4}, because you had to write some hairy macros for your
653 program.  The @code{aclocal} program lets you put your own macros into
654 @file{acinclude.m4}, so simply rename and then run:
656 @example
657 mv aclocal.m4 acinclude.m4
658 aclocal
659 autoconf
660 @end example
662 @cindex zardoz example
664 Now it is time to write your @file{Makefile.am} for @code{zardoz}.
665 Since @code{zardoz} is a user program, you want to install it where the
666 rest of the user programs go: @code{bindir}.  Additionally,
667 @code{zardoz} has some Texinfo documentation.  Your @file{configure.in}
668 script uses @code{AC_REPLACE_FUNCS}, so you need to link against
669 @samp{@@LIBOBJS@@}.  So here's what you'd write:
671 @example
672 bin_PROGRAMS = zardoz
673 zardoz_SOURCES = main.c head.c float.c vortex9.c gun.c
674 zardoz_LDADD = @@LIBOBJS@@
676 info_TEXINFOS = zardoz.texi
677 @end example
679 Now you can run @code{automake --add-missing} to generate your
680 @file{Makefile.in} and grab any auxiliary files you might need, and
681 you're done!
684 @node Hello, true, Complete, Examples
685 @section A classic program
687 @cindex Example, GNU Hello
688 @cindex Hello example
689 @cindex GNU Hello, example
691 @uref{ftp://prep.ai.mit.edu/pub/gnu/hello-1.3.tar.gz, GNU hello} is
692 renowned for its classic simplicity and versatility.  This section shows
693 how Automake could be used with the GNU Hello package.  The examples
694 below are from the latest beta version of GNU Hello, but with all of the
695 maintainer-only code stripped out, as well as all copyright comments.
697 Of course, GNU Hello is somewhat more featureful than your traditional
698 two-liner.  GNU Hello is internationalized, does option processing, and
699 has a manual and a test suite.
701 @cindex configure.in, from GNU Hello
702 @cindex GNU Hello, configure.in
703 @cindex Hello, configure.in
705 Here is the @file{configure.in} from GNU Hello:
706 @c FIXME: This definitively requires an update.
708 @example
709 dnl Process this file with autoconf to produce a configure script.
710 AC_INIT(src/hello.c)
711 AM_INIT_AUTOMAKE(hello, 1.3.11)
712 AM_CONFIG_HEADER(config.h)
714 dnl Set of available languages.
715 ALL_LINGUAS="de fr es ko nl no pl pt sl sv"
717 dnl Checks for programs.
718 AC_PROG_CC
719 AC_ISC_POSIX
721 dnl Checks for libraries.
723 dnl Checks for header files.
724 AC_STDC_HEADERS
725 AC_HAVE_HEADERS(string.h fcntl.h sys/file.h sys/param.h)
727 dnl Checks for library functions.
728 AC_FUNC_ALLOCA
730 dnl Check for st_blksize in struct stat
731 AC_ST_BLKSIZE
733 dnl internationalization macros
734 AM_GNU_GETTEXT
735 AC_OUTPUT([Makefile doc/Makefile intl/Makefile po/Makefile.in \
736            src/Makefile tests/Makefile tests/hello],
737    [chmod +x tests/hello])
738 @end example
740 The @samp{AM_} macros are provided by Automake (or the Gettext library);
741 the rest are standard Autoconf macros.
744 The top-level @file{Makefile.am}:
746 @example
747 EXTRA_DIST = BUGS ChangeLog.O
748 SUBDIRS = doc intl po src tests
749 @end example
751 As you can see, all the work here is really done in subdirectories.
753 The @file{po} and @file{intl} directories are automatically generated
754 using @code{gettextize}; they will not be discussed here.
756 @cindex Texinfo file handling example
757 @cindex Example, handling Texinfo files
759 In @file{doc/Makefile.am} we see:
761 @example
762 info_TEXINFOS = hello.texi
763 hello_TEXINFOS = gpl.texi
764 @end example
766 This is sufficient to build, install, and distribute the GNU Hello
767 manual.
769 @cindex Regression test example
770 @cindex Example, regression test
772 Here is @file{tests/Makefile.am}:
774 @example
775 TESTS = hello
776 EXTRA_DIST = hello.in testdata
777 @end example
779 The script @file{hello} is generated by @code{configure}, and is the
780 only test case.  @code{make check} will run this test.
782 @cindex INCLUDES, example usage
784 Last we have @file{src/Makefile.am}, where all the real work is done:
785 @c FIXME: As all the Hello World excerpts in this manual, this
786 @c shows deprecated features (here: $(INCLUDES)).
788 @example
789 bin_PROGRAMS = hello
790 hello_SOURCES = hello.c version.c getopt.c getopt1.c getopt.h system.h
791 hello_LDADD = @@INTLLIBS@@ @@ALLOCA@@
792 localedir = $(datadir)/locale
793 INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\"
794 @end example
797 @node true,  , Hello, Examples
798 @section Building true and false
800 @cindex Example, false and true
801 @cindex false Example
802 @cindex true Example
804 Here is another, trickier example.  It shows how to generate two
805 programs (@code{true} and @code{false}) from the same source file
806 (@file{true.c}).  The difficult part is that each compilation of
807 @file{true.c} requires different @code{cpp} flags.
809 @example
810 bin_PROGRAMS = true false
811 false_SOURCES =
812 false_LDADD = false.o
814 true.o: true.c
815         $(COMPILE) -DEXIT_CODE=0 -c true.c
817 false.o: true.c
818         $(COMPILE) -DEXIT_CODE=1 -o false.o -c true.c
819 @end example
821 Note that there is no @code{true_SOURCES} definition.  Automake will
822 implicitly assume that there is a source file named @file{true.c}, and
823 define rules to compile @file{true.o} and link @file{true}.  The
824 @code{true.o: true.c} rule supplied by the above @file{Makefile.am},
825 will override the Automake generated rule to build @file{true.o}.
827 @code{false_SOURCES} is defined to be empty---that way no implicit value
828 is substituted.  Because we have not listed the source of
829 @file{false}, we have to tell Automake how to link the program.  This is
830 the purpose of the @code{false_LDADD} line.  A @code{false_DEPENDENCIES}
831 variable, holding the dependencies of the @file{false} target will be
832 automatically generated by Automake from the content of
833 @code{false_LDADD}.
835 The above rules won't work if your compiler doesn't accept both
836 @samp{-c} and @samp{-o}.  The simplest fix for this is to introduce a
837 bogus dependency (to avoid problems with a parallel @code{make}):
839 @example
840 true.o: true.c false.o
841         $(COMPILE) -DEXIT_CODE=0 -c true.c
843 false.o: true.c
844         $(COMPILE) -DEXIT_CODE=1 -c true.c && mv true.o false.o
845 @end example
847 Also, these explicit rules do not work if the de-ANSI-fication feature
848 is used (@pxref{ANSI}).  Supporting de-ANSI-fication requires a little
849 more work:
851 @example
852 true._o: true._c false.o
853         $(COMPILE) -DEXIT_CODE=0 -c true.c
855 false._o: true._c
856         $(COMPILE) -DEXIT_CODE=1 -c true.c && mv true._o false.o
857 @end example
859 As it turns out, there is also a much easier way to do this same task.
860 Some of the above techniques are useful enough that we've kept the
861 example in the manual.  However if you were to build @code{true} and
862 @code{false} in real life, you would probably use per-program
863 compilation flags, like so:
865 @example
866 bin_PROGRAMS = false true
868 false_SOURCES = true.c
869 false_CPPFLAGS = -DEXIT_CODE=1
871 true_SOURCES = true.c
872 true_CPPFLAGS = -DEXIT_CODE=0
873 @end example
875 In this case Automake will cause @file{true.c} to be compiled twice,
876 with different flags.  De-ANSI-fication will work automatically.  In
877 this instance, the names of the object files would be chosen by
878 automake; they would be @file{false-true.o} and @file{true-true.o}.
879 (The name of the object files rarely matters.)
882 @node Invoking Automake, configure, Examples, Top
883 @chapter Creating a @file{Makefile.in}
885 @cindex Multiple configure.in files
886 @cindex Invoking Automake
887 @cindex Automake, invoking
889 To create all the @file{Makefile.in}s for a package, run the
890 @code{automake} program in the top level directory, with no arguments.
891 @code{automake} will automatically find each appropriate
892 @file{Makefile.am} (by scanning @file{configure.in}; @pxref{configure})
893 and generate the corresponding @file{Makefile.in}.  Note that
894 @code{automake} has a rather simplistic view of what constitutes a
895 package; it assumes that a package has only one @file{configure.in}, at
896 the top.  If your package has multiple @file{configure.in}s, then you
897 must run @code{automake} in each directory holding a
898 @file{configure.in}.  (Alternatively, you may rely on Autoconf's
899 @code{autoreconf}, which is able to recurse your package tree and run
900 @code{automake} where appropriate.)
902 You can optionally give @code{automake} an argument; @file{.am} is
903 appended to the argument and the result is used as the name of the input
904 file.  This feature is generally only used to automatically rebuild an
905 out-of-date @file{Makefile.in}.  Note that @code{automake} must always
906 be run from the topmost directory of a project, even if being used to
907 regenerate the @file{Makefile.in} in some subdirectory.  This is
908 necessary because @code{automake} must scan @file{configure.in}, and
909 because @code{automake} uses the knowledge that a @file{Makefile.in} is
910 in a subdirectory to change its behavior in some cases.
912 @vindex AUTOCONF
913 Automake will run @code{autoconf} to scan @file{configure.in} and its
914 dependencies (@file{aclocal.m4}), therefore @code{autoconf} must be in
915 your @code{PATH}.  If there is an @code{AUTOCONF} variable in your
916 environment it will be used instead of @code{autoconf}, this allows you
917 to select a particular version of Autoconf.  By the way, don't
918 misunderstand this paragraph: Automake runs @code{autoconf} to
919 @strong{scan} your @file{configure.in}, this won't build
920 @file{configure} and you still have to run @code{autoconf} yourself for
921 this purpose.
923 @cindex Automake options
924 @cindex Options, Automake
925 @cindex Strictness, command line
927 @code{automake} accepts the following options:
929 @cindex Extra files distributed with Automake
930 @cindex Files distributed with Automake
931 @cindex config.guess
933 @table @samp
934 @item -a
935 @itemx --add-missing
936 @opindex -a
937 @opindex --add-missing
938 Automake requires certain common files to exist in certain situations;
939 for instance @file{config.guess} is required if @file{configure.in} runs
940 @code{AC_CANONICAL_HOST}.  Automake is distributed with several of these
941 files (@pxref{Auxiliary Programs}); this option will cause the missing
942 ones to be automatically added to the package, whenever possible.  In
943 general if Automake tells you a file is missing, try using this option.
944 By default Automake tries to make a symbolic link pointing to its own
945 copy of the missing file; this can be changed with @code{--copy}.
947 @item --libdir=@var{dir}
948 @opindex --libdir
949 Look for Automake data files in directory @var{dir} instead of in the
950 installation directory.  This is typically used for debugging.
952 @item -c
953 @opindex -c
954 @itemx --copy
955 @opindex --copy
956 When used with @code{--add-missing}, causes installed files to be
957 copied.  The default is to make a symbolic link.
959 @item --cygnus
960 @opindex --cygnus
961 Causes the generated @file{Makefile.in}s to follow Cygnus rules, instead
962 of GNU or Gnits rules.  For more information, see @ref{Cygnus}.
964 @item -f
965 @opindex -f
966 @itemx --force-missing
967 @opindex --force-missing
968 When used with @code{--add-missing}, causes standard files to be reinstalled
969 even if they already exist in the source tree.  This involves removing
970 the file from the source tree before creating the new symlink (or, with
971 @code{--copy}, copying the new file).
973 @item --foreign
974 @opindex --foreign
975 Set the global strictness to @samp{foreign}.  For more information, see
976 @ref{Strictness}.
978 @item --gnits
979 @opindex --gnits
980 Set the global strictness to @samp{gnits}.  For more information, see
981 @ref{Gnits}.
983 @item --gnu
984 @opindex --gnu
985 Set the global strictness to @samp{gnu}.  For more information, see
986 @ref{Gnits}.  This is the default strictness.
988 @item --help
989 @opindex --help
990 Print a summary of the command line options and exit.
992 @item -i
993 @itemx --ignore-deps
994 @opindex -i
995 This disables the dependency tracking feature in generated
996 @file{Makefile}s; see @ref{Dependencies}.
998 @item --include-deps
999 @opindex --include-deps
1000 This enables the dependency tracking feature.  This feature is enabled
1001 by default.  This option is provided for historical reasons only and
1002 probably should not be used.
1004 @item --no-force
1005 @opindex --no-force
1006 Ordinarily @code{automake} creates all @file{Makefile.in}s mentioned in
1007 @file{configure.in}.  This option causes it to only update those
1008 @file{Makefile.in}s which are out of date with respect to one of their
1009 dependents.
1011 @item -o @var{dir}
1012 @itemx --output-dir=@var{dir}
1013 @opindex -o
1014 @opindex --output-dir
1015 Put the generated @file{Makefile.in} in the directory @var{dir}.
1016 Ordinarily each @file{Makefile.in} is created in the directory of the
1017 corresponding @file{Makefile.am}.  This option is deprecated and will be
1018 removed in a future release.
1020 @item -v
1021 @itemx --verbose
1022 @opindex -v
1023 @opindex --verbose
1024 Cause Automake to print information about which files are being read or
1025 created.
1027 @item --version
1028 @opindex --version
1029 Print the version number of Automake and exit.
1031 @item -W CATEGORY
1032 @item --warnings=@var{category}
1033 @opindex -W
1034 @opindex --warnings
1035 Output warnings falling in @var{category}.  @var{category} can be
1036 one of:
1037 @table @samp
1038 @item gnu
1039 warnings related to the GNU Coding Standards
1040 (@pxref{Top, , , standards, The GNU Coding Standards}).
1041 @item obsolete
1042 obsolete features or constructions
1043 @item portability
1044 portability issues (e.g., use of Make features which are known not portable)
1045 @item syntax
1046 weird syntax, unused variables, typos
1047 @item unsupported
1048 unsupported or incomplete features
1049 @item all
1050 all the warnings
1051 @item none
1052 turn off all the warnings
1053 @item error
1054 treat warnings as errors
1055 @end table
1057 A category can be turned off by prefixing its name with @samp{no-}.  For
1058 instance @samp{-Wno-syntax} will hide the warnings about unused
1059 variables.
1061 The categories output by default are @samp{syntax} and
1062 @samp{unsupported}.  Additionally, @samp{gnu} is enabled in @samp{--gnu} and
1063 @samp{--gnits} strictness.
1065 @samp{portability} warnings are currently disabled by default, but they
1066 will be enabled in @samp{--gnu} and @samp{--gnits} strictness in a
1067 future release.
1069 @vindex WARNINGS
1070 The environment variable @samp{WARNINGS} can contain a comma separated
1071 list of categories to enable.  It will be taken into account before the
1072 command-line switches, this way @samp{-Wnone} will also ignore any
1073 warning category enabled by @samp{WARNINGS}.  This variable is also used
1074 by other tools like @command{autoconf}; unknown categories are ignored
1075 for this reason.
1077 @end table
1080 @node configure, Top level, Invoking Automake, Top
1081 @chapter Scanning @file{configure.in}
1083 @cindex configure.in, scanning
1084 @cindex Scanning configure.in
1086 Automake scans the package's @file{configure.in} to determine certain
1087 information about the package.  Some @code{autoconf} macros are required
1088 and some variables must be defined in @file{configure.in}.  Automake
1089 will also use information from @file{configure.in} to further tailor its
1090 output.
1092 Automake also supplies some Autoconf macros to make the maintenance
1093 easier.  These macros can automatically be put into your
1094 @file{aclocal.m4} using the @code{aclocal} program.
1096 @menu
1097 * Requirements::                Configuration requirements
1098 * Optional::                    Other things Automake recognizes
1099 * Invoking aclocal::            Auto-generating aclocal.m4
1100 * aclocal options::             aclocal command line arguments
1101 * Macro search path::           Modifying aclocal's search path
1102 * Macros::                      Autoconf macros supplied with Automake
1103 * Extending aclocal::           Writing your own aclocal macros
1104 @end menu
1107 @node Requirements, Optional, configure, configure
1108 @section Configuration requirements
1110 @cindex Automake requirements
1111 @cindex Requirements of Automake
1113 The one real requirement of Automake is that your @file{configure.in}
1114 call @code{AM_INIT_AUTOMAKE}.  This macro does several things which are
1115 required for proper Automake operation (@pxref{Macros}).
1116 @cvindex AM_INIT_AUTOMAKE
1118 Here are the other macros which Automake requires but which are not run
1119 by @code{AM_INIT_AUTOMAKE}:
1121 @cindex AC_OUTPUT, scanning
1123 @table @code
1124 @item AC_CONFIG_FILES
1125 @itemx AC_OUTPUT
1126 Automake uses these to determine which files to create (@pxref{Output, ,
1127 Creating Output Files, autoconf, The Autoconf Manual}).  A listed file
1128 is considered to be an Automake generated @file{Makefile} if there
1129 exists a file with the same name and the @file{.am} extension appended.
1130 Typically, @code{AC_CONFIG_FILES([foo/Makefile])} will cause Automake to
1131 generate @file{foo/Makefile.in} if @file{foo/Makefile.am} exists.
1133 Other listed files are treated differently.  Currently the only
1134 difference is that an Automake @file{Makefile} is removed by @code{make
1135 distclean}, while other files are removed by @code{make clean}.
1136 @c FIXME: this is in violation of standards!
1137 @cvindex AC_OUTPUT
1138 @end table
1141 @node Optional, Invoking aclocal, Requirements, configure
1142 @section Other things Automake recognizes
1144 @cindex Macros Automake recognizes
1145 @cindex Recognized macros by Automake
1147 Every time Automake is run it calls Autoconf to trace
1148 @file{configure.in}.  This way it can recognize the use of certain
1149 macros and tailor the generated @file{Makefile.in} appropriately.
1150 Currently recognized macros and their effects are:
1152 @table @code
1153 @item AC_CONFIG_HEADERS
1154 Automake will generate rules to rebuild these headers.  Older versions
1155 of Automake required the use of @code{AM_CONFIG_HEADER}
1156 (@pxref{Macros}); this is no longer the case today.
1157 @cvindex AC_CONFIG_HEADERS
1159 @item AC_CONFIG_AUX_DIR
1160 Automake will look for various helper scripts, such as
1161 @file{mkinstalldirs}, in the directory named in this macro invocation.
1162 If not seen, the scripts are looked for in their @samp{standard}
1163 locations (either the top source directory, or in the source directory
1164 corresponding to the current @file{Makefile.am}, whichever is
1165 appropriate).  @xref{Input, , Finding `configure' Input, autoconf, The
1166 Autoconf Manual}.
1167 @cvindex AC_CONFIG_AUX_DIR
1168 FIXME: give complete list of things looked for in this directory
1170 @item AC_CANONICAL_HOST
1171 Automake will ensure that @file{config.guess} and @file{config.sub}
1172 exist.  Also, the @file{Makefile} variables @samp{host_alias} and
1173 @samp{host_triplet} are introduced.  See @ref{Canonicalizing, ,
1174 Getting the Canonical System Type, autoconf, The Autoconf Manual}.
1175 @cvindex AC_CANONICAL_HOST
1176 @vindex host_alias
1177 @vindex host_triplet
1179 @item AC_CANONICAL_SYSTEM
1180 This is similar to @code{AC_CANONICAL_HOST}, but also defines the
1181 @file{Makefile} variables @samp{build_alias} and @samp{target_alias}.
1182 @xref{Canonicalizing, , Getting the Canonical System Type, autoconf, The
1183 Autoconf Manual}.
1184 @cvindex AC_CANONICAL_SYSTEM
1185 @vindex build_alias
1186 @vindex target_alias
1188 @item AC_LIBSOURCE
1189 @itemx AC_LIBSOURCES
1190 @itemx AC_LIBOBJ
1191 Automake will automatically distribute any file listed in
1192 @code{AC_LIBSOURCE} or @code{AC_LIBSOURCES}.
1194 Note that the @code{AC_LIBOBJ} macro calls @code{AC_LIBSOURCE}.  So if
1195 an Autoconf macro is documented to call @code{AC_LIBOBJ([file])}, then
1196 @file{file.c} will be distributed automatically by Automake.  This
1197 encompasses many macros like @code{AC_FUNC_ALLOCA},
1198 @code{AC_FUNC_MEMCMP}, @code{AC_REPLACE_FUNCS}, and others.
1199 @cvindex AC_LIBOBJ
1200 @cvindex AC_LIBSOURCE
1201 @cvindex AC_LIBSOURCES
1203 By the way, direct assignments to @code{LIBOBJS} are no longer
1204 supported.  You should always use @code{AC_LIBOBJ} for this purpose.
1205 @xref{AC_LIBOBJ vs LIBOBJS, , @code{AC_LIBOBJ} vs. @code{LIBOBJS},
1206 autoconf, The Autoconf Manual}.
1207 @cvindex LIBOBJS
1209 @item AC_PROG_RANLIB
1210 This is required if any libraries are built in the package.
1211 @xref{Particular Programs, , Particular Program Checks, autoconf, The
1212 Autoconf Manual}.
1213 @cvindex AC_PROG_RANLIB
1215 @item AC_PROG_CXX
1216 This is required if any C++ source is included.  @xref{Particular
1217 Programs, , Particular Program Checks, autoconf, The Autoconf Manual}.
1218 @cvindex AC_PROG_CXX
1220 @item AC_PROG_F77
1221 This is required if any Fortran 77 source is included.  This macro is
1222 distributed with Autoconf version 2.13 and later.  @xref{Particular
1223 Programs, , Particular Program Checks, autoconf, The Autoconf Manual}.
1224 @cvindex AC_PROG_F77
1226 @item AC_F77_LIBRARY_LDFLAGS
1227 This is required for programs and shared libraries that are a mixture of
1228 languages that include Fortran 77 (@pxref{Mixing Fortran 77 With C and
1229 C++}).  @xref{Macros, , Autoconf macros supplied with Automake}.
1230 @cvindex AC_F77_LIBRARY_LDFLAGS
1232 @item AC_PROG_LIBTOOL
1233 Automake will turn on processing for @code{libtool} (@pxref{Top, ,
1234 Introduction, libtool, The Libtool Manual}).
1235 @cvindex AC_PROG_LIBTOOL
1237 @item AC_PROG_YACC
1238 If a Yacc source file is seen, then you must either use this macro or
1239 define the variable @samp{YACC} in @file{configure.in}.  The former is
1240 preferred (@pxref{Particular Programs, , Particular Program Checks,
1241 autoconf, The Autoconf Manual}).
1242 @cvindex AC_PROG_YACC
1243 @cvindex YACC
1245 @item AC_PROG_LEX
1246 If a Lex source file is seen, then this macro must be used.
1247 @xref{Particular Programs, , Particular Program Checks, autoconf, The
1248 Autoconf Manual}.
1249 @cvindex AC_PROG_LEX
1251 @item AC_SUBST
1252 @cvindex AC_SUBST
1253 The first argument is automatically defined as a variable in each
1254 generated @file{Makefile.in}.  @xref{Setting Output Variables, , Setting
1255 Output Variables, autoconf, The Autoconf Manual}.
1257 If the Autoconf manual says that a macro calls @code{AC_SUBST} for
1258 @var{var}, or defined the output variable @var{var} then @var{var} will
1259 be defined in each generated @file{Makefile.in}.
1260 E.g. @code{AC_PATH_XTRA} defines @code{X_CFLAGS} and @code{X_LIBS}, so
1261 you can use the variable in any @file{Makefile.am} if
1262 @code{AC_PATH_XTRA} is called.
1264 @item AM_C_PROTOTYPES
1265 This is required when using automatic de-ANSI-fication; see @ref{ANSI}.
1266 @cvindex AM_C_PROTOTYPES
1268 @item AM_GNU_GETTEXT
1269 This macro is required for packages which use GNU gettext
1270 (@pxref{gettext}).  It is distributed with gettext.  If Automake sees
1271 this macro it ensures that the package meets some of gettext's
1272 requirements.
1273 @cvindex AM_GNU_GETTEXT
1275 @item AM_MAINTAINER_MODE
1276 @opindex --enable-maintainer-mode
1277 This macro adds a @samp{--enable-maintainer-mode} option to
1278 @code{configure}.  If this is used, @code{automake} will cause
1279 @samp{maintainer-only} rules to be turned off by default in the
1280 generated @file{Makefile.in}s. This macro defines the
1281 @samp{MAINTAINER_MODE} conditional, which you can use in your own
1282 @file{Makefile.am}.
1283 @cvindex AM_MAINTAINER_MODE
1285 @end table
1288 @node Invoking aclocal, aclocal options, Optional, configure
1289 @section Auto-generating aclocal.m4
1291 @cindex Invoking aclocal
1292 @cindex aclocal, Invoking
1294 Automake includes a number of Autoconf macros which can be used in your
1295 package; some of them are actually required by Automake in certain
1296 situations.  These macros must be defined in your @file{aclocal.m4};
1297 otherwise they will not be seen by @code{autoconf}.
1299 The @code{aclocal} program will automatically generate @file{aclocal.m4}
1300 files based on the contents of @file{configure.in}.  This provides a
1301 convenient way to get Automake-provided macros, without having to
1302 search around.  Also, the @code{aclocal} mechanism allows other packages
1303 to supply their own macros.
1305 At startup, @code{aclocal} scans all the @file{.m4} files it can find,
1306 looking for macro definitions (@pxref{Macro search path}).  Then it
1307 scans @file{configure.in}.  Any
1308 mention of one of the macros found in the first step causes that macro,
1309 and any macros it in turn requires, to be put into @file{aclocal.m4}.
1311 The contents of @file{acinclude.m4}, if it exists, are also
1312 automatically included in @file{aclocal.m4}.  This is useful for
1313 incorporating local macros into @file{configure}.
1315 @code{aclocal} tries to be smart about looking for new @code{AC_DEFUN}s
1316 in the files it scans.  It also
1317 tries to copy the full text of the scanned file into @file{aclocal.m4},
1318 including both @samp{#} and @samp{dnl} comments.  If you want to make a
1319 comment which will be completely ignored by @code{aclocal}, use
1320 @samp{##} as the comment leader.
1322 @menu
1323 * aclocal options::             Options supported by aclocal
1324 * Macro search path::           How aclocal finds .m4 files
1325 @end menu
1327 @node aclocal options, Macro search path, Invoking aclocal, configure
1328 @section aclocal options
1330 @cindex aclocal, Options
1331 @cindex Options, aclocal
1333 @code{aclocal} accepts the following options:
1335 @table @code
1336 @item --acdir=@var{dir}
1337 @opindex --acdir
1338 Look for the macro files in @var{dir} instead of the installation
1339 directory.  This is typically used for debugging.
1341 @item --help
1342 @opindex --help
1343 Print a summary of the command line options and exit.
1345 @item -I @var{dir}
1346 @opindex -I
1347 Add the directory @var{dir} to the list of directories searched for
1348 @file{.m4} files.
1350 @item --output=@var{file}
1351 @opindex --output
1352 Cause the output to be put into @var{file} instead of @file{aclocal.m4}.
1354 @item --print-ac-dir
1355 @opindex --print-ac-dir
1356 Prints the name of the directory which @code{aclocal} will search to
1357 find third-party @file{.m4} files.  When this option is given, normal
1358 processing is suppressed.  This option can be used by a package to
1359 determine where to install a macro file.
1361 @item --verbose
1362 @opindex --verbose
1363 Print the names of the files it examines.
1365 @item --version
1366 @opindex --version
1367 Print the version number of Automake and exit.
1368 @end table
1370 @node Macro search path, Macros, aclocal options, configure
1371 @section Macro search path
1373 @cindex Macro search path
1374 @cindex aclocal search path
1376 By default, @command{aclocal} searches for @file{.m4} files in the following
1377 directories, in this order:
1379 @table @code
1380 @item @var{acdir-APIVERSION}
1381 This is where the @file{.m4} macros distributed with automake itself
1382 are stored.  @var{APIVERSION} depends on the automake release used;
1383 for automake 1.6.x, @var{APIVERSION} = @code{1.6}.
1385 @item @var{acdir}
1386 This directory is intended for third party @file{.m4} files, and is
1387 configured when @command{automake} itself is built.  This is
1388 @file{@@datadir@@/aclocal/}, which typically
1389 expands to @file{$@{prefix@}/share/aclocal/}.  To find the compiled-in
1390 value of @var{acdir}, use the @code{--print-ac-dir} option
1391 (@pxref{aclocal options}).
1392 @end table
1394 As an example, suppose that automake-1.6.2 was configured with
1395 @code{--prefix=/usr/local}.  Then, the search path would be:
1397 @enumerate
1398 @item @file{/usr/local/share/aclocal-1.6/}
1399 @item @file{/usr/local/share/aclocal/}
1400 @end enumerate
1402 As explained in (@pxref{aclocal options}), there are several options that
1403 can be used to change or extend this search path.
1405 @subsection Modifying the macro search path: @code{--acdir}
1407 The most obvious option to modify the search path is
1408 @code{--acdir=@var{dir}}, which changes default directory and
1409 drops the @var{APIVERSION} directory.  For example, if one specifies
1410 @code{--acdir=/opt/private/}, then the search path becomes:
1412 @enumerate
1413 @item @file{/opt/private/}
1414 @end enumerate
1416 Note that this option, @code{--acdir}, is intended for use
1417 by the internal automake test suite only; it is not ordinarily
1418 needed by end-users.
1420 @subsection Modifying the macro search path: @code{-I @var{dir}}
1422 Any extra directories specified using @code{-I} options
1423 (@pxref{aclocal options}) are @emph{prepended} to this search list.  Thus,
1424 @code{aclocal -I /foo -I /bar} results in the following search path:
1426 @enumerate
1427 @item @file{/foo}
1428 @item @file{/bar}
1429 @item @var{acdir}-@var{APIVERSION}
1430 @item @var{acdir}
1431 @end enumerate
1433 @subsection Modifying the macro search path: @file{dirlist}
1434 @cindex @file{dirlist}
1436 There is a third mechanism for customizing the search path.  If a
1437 @file{dirlist} file exists in @var{acdir}, then that file is assumed to
1438 contain a list of directories, one per line, to be added to the search
1439 list.  These directories are searched @emph{after} all other
1440 directories.
1442 For example, suppose
1443 @file{@var{acdir}/dirlist} contains the following:
1445 @example
1446 /test1
1447 /test2
1448 @end example
1450 @noindent
1451 and that @code{aclocal} was called with the @code{-I /foo -I /bar} options.
1452 Then, the search path would be
1454 @enumerate
1455 @item @file{/foo}
1456 @item @file{/bar}
1457 @item @var{acdir}-@var{APIVERSION}
1458 @item @var{acdir}
1459 @item @file{/test1}
1460 @item @file{/test2}
1461 @end enumerate
1463 If the @code{--acdir=@var{dir}} option is used, then @command{aclocal}
1464 will search for the @file{dirlist} file in @var{dir}.  In the
1465 @code{--acdir=/opt/private/} example above, @command{aclocal} would look
1466 for @file{/opt/private/dirlist}.  Again, however, the @code{--acdir}
1467 option is intended for use by the internal automake test suite only;
1468 @code{--acdir} is not ordinarily needed by end-users.
1470 @file{dirlist} is useful in the following situation: suppose that
1471 @code{automake} version @code{1.6.2} is installed with
1472 $prefix=/usr by the system vendor. Thus, the default search
1473 directories are
1475 @enumerate
1476 @item @file{/usr/share/aclocal-1.6/}
1477 @item @file{/usr/share/aclocal/}
1478 @end enumerate
1480 However, suppose further that many packages have been manually
1481 installed on the system, with $prefix=/usr/local, as is typical.
1482 In that case, many of these ``extra'' @file{.m4} files are in
1483 @file{/usr/local/share/aclocal}.  The only way to force
1484 @file{/usr/bin/aclocal} to find these ``extra'' @file{.m4} files
1485 is to always call @code{aclocal -I /usr/local/share/aclocal}.
1486 This is inconvenient.  With @file{dirlist}, one may create the file
1488 @file{/usr/share/aclocal/dirlist}
1490 @noindent
1491 which contains only the single line
1493 @file{/usr/local/share/aclocal}
1495 Now, the ``default'' search path on the affected system is
1497 @enumerate
1498 @item @file{/usr/share/aclocal-1.6/}
1499 @item @file{/usr/share/aclocal/}
1500 @item @file{/usr/local/share/aclocal/}
1501 @end enumerate
1503 without the need for @code{-I} options; @code{-I} options can be reserved
1504 for project-specific needs (@file{my-source-dir/m4/}), rather than
1505 using it to work around local system-dependent tool installation
1506 directories.
1508 Similarly, @file{dirlist} can be handy if you have installed a local
1509 copy Automake on your account and want @command{aclocal} to look for
1510 macros installed at other places on the system.
1512 @node Macros, Extending aclocal, Macro search path, configure
1513 @section Autoconf macros supplied with Automake
1515 Automake ships with several Autoconf macros that you can use from your
1516 @file{configure.in}.  When you use one of them it will be included by
1517 @code{aclocal} in @file{aclocal.m4}.
1519 @menu
1520 * Public macros::               Macros that you can use.
1521 * Private macros::              Macros that you should not use.
1522 @end menu
1524 @c consider generating the following subsections automatically from m4 files.
1526 @node Public macros, Private macros, Macros, Macros
1527 @subsection Public macros
1529 @table @code
1530 @item AM_CONFIG_HEADER
1531 Automake will generate rules to automatically regenerate the config
1532 header.  This obsolete macro is a synonym of @code{AC_CONFIG_HEADERS}
1533 today (@pxref{Optional}).
1534 @cvindex AM_CONFIG_HEADER
1536 @item AM_ENABLE_MULTILIB
1537 This is used when a ``multilib'' library is being built.  The first
1538 optional argument is the name of the @file{Makefile} being generated; it
1539 defaults to @samp{Makefile}.  The second option argument is used to find
1540 the top source directory; it defaults to the empty string (generally
1541 this should not be used unless you are familiar with the internals).
1542 @xref{Multilibs}.
1544 @item AM_C_PROTOTYPES
1545 Check to see if function prototypes are understood by the compiler.  If
1546 so, define @samp{PROTOTYPES} and set the output variables @samp{U} and
1547 @samp{ANSI2KNR} to the empty string.  Otherwise, set @samp{U} to
1548 @samp{_} and @samp{ANSI2KNR} to @samp{./ansi2knr}.  Automake uses these
1549 values to implement automatic de-ANSI-fication.
1550 @cvindex AM_C_PROTOTYPES
1552 @item AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
1553 If the use of @code{TIOCGWINSZ} requires @file{<sys/ioctl.h>}, then
1554 define @code{GWINSZ_IN_SYS_IOCTL}.  Otherwise @code{TIOCGWINSZ} can be
1555 found in @file{<termios.h>}.
1556 @cvindex AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
1558 @item AM_INIT_AUTOMAKE([OPTIONS])
1559 @itemx AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
1560 Runs many macros required for proper operation of the generated Makefiles.
1562 This macro has two forms, the second of which has two required
1563 arguments: the package and the version number.  This latter form is
1564 obsolete because the @var{package} and @var{version} can be obtained
1565 from Autoconf's @code{AC_INIT} macro (which itself has an old and a new
1566 form).
1568 If your @file{configure.in} has:
1569 @example
1570 AC_INIT(src/foo.c)
1571 AM_INIT_AUTOMAKE(mumble, 1.5)
1572 @end example
1573 you can modernize it as follow:
1574 @example
1575 AC_INIT(mumble, 1.5)
1576 AC_CONFIG_SRCDIR(src/foo.c)
1577 AM_INIT_AUTOMAKE
1578 @end example
1580 Note that if you're upgrading your @file{configure.in} from an earlier
1581 version of Automake, it is not always correct to simply move the package
1582 and version arguments from @code{AM_INIT_AUTOMAKE} directly to
1583 @code{AC_INIT}, as in the example above.  The first argument of
1584 @code{AC_INIT} is the name of your package (e.g. @samp{GNU Automake}),
1585 not the tarball name (e.g. @samp{automake}) you used to pass to
1586 @code{AM_INIT_AUTOMAKE}.  Autoconf's rule to derive a tarball name from
1587 the package name should work for most but not all packages.  Especially,
1588 if your tarball name is not all lower case, you will have to use the
1589 four-argument form of @code{AC_INIT} (supported in Autoconf versions
1590 greater than 2.52g).
1592 When @code{AM_INIT_AUTOMAKE} is called with a single argument, it is
1593 interpreted as a space-separated list of Automake options which should
1594 be applied to every @file{Makefile.am} in the tree.  The effect is as if
1595 each option were listed in @code{AUTOMAKE_OPTIONS}.
1597 By default this macro @code{AC_DEFINE}'s @samp{PACKAGE} and
1598 @samp{VERSION}.  This can be avoided by passing the @samp{no-define}
1599 option, as in:
1600 @example
1601 AM_INIT_AUTOMAKE([gnits 1.5 no-define dist-bzip2])
1602 @end example
1603 or by passing a third non-empty argument to the obsolete form.
1605 @cvindex PACKAGE, prevent definition
1606 @cvindex VERSION, prevent definition
1609 @item AM_PATH_LISPDIR
1610 Searches for the program @code{emacs}, and, if found, sets the output
1611 variable @code{lispdir} to the full path to Emacs' site-lisp directory.
1613 Note that this test assumes the @code{emacs} found to be a version that
1614 supports Emacs Lisp (such as @sc{gnu} Emacs or XEmacs).  Other emacsen
1615 can cause this test to hang (some, like old versions of MicroEmacs,
1616 start up in interactive mode, requiring @samp{C-x C-c} to exit, which
1617 is hardly obvious for a non-emacs user).  In most cases, however, you
1618 should be able to use @samp{C-c} to kill the test.  In order to avoid
1619 problems, you can set @code{EMACS} to ``no'' in the environment, or
1620 use the @samp{--with-lispdir} option to @command{configure} to
1621 explictly set the correct path (if you're sure you have an @code{emacs}
1622 that supports Emacs Lisp.
1623 @cvindex AM_PATH_LISPDIR
1625 @item AM_PROG_AS
1626 Use this macro when you have assembly code in your project.  This will
1627 choose the assembler for you (by default the C compiler) and set
1628 @code{CCAS}, and will also set @code{CCASFLAGS} if required.
1630 @item AM_PROG_CC_C_O
1631 This is like @code{AC_PROG_CC_C_O}, but it generates its results in the
1632 manner required by automake.  You must use this instead of
1633 @code{AC_PROG_CC_C_O} when you need this functionality.
1635 @item AM_PROG_CC_STDC
1636 If the C compiler is not in ANSI C mode by default, try to add an option
1637 to output variable @code{CC} to make it so.  This macro tries various
1638 options that select ANSI C on some system or another.  It considers the
1639 compiler to be in ANSI C mode if it handles function prototypes correctly.
1641 If you use this macro, you should check after calling it whether the C
1642 compiler has been set to accept ANSI C; if not, the shell variable
1643 @code{am_cv_prog_cc_stdc} is set to @samp{no}.  If you wrote your source
1644 code in ANSI C, you can make an un-ANSIfied copy of it by using the
1645 @code{ansi2knr} option (@pxref{ANSI}).
1647 @item AM_PROG_LEX
1648 @cindex HP-UX 10, lex problems
1649 @cindex lex problems with HP-UX 10
1650 Like @code{AC_PROG_LEX} (@pxref{Particular Programs, , Particular
1651 Program Checks, autoconf, The Autoconf Manual}), but uses the
1652 @code{missing} script on systems that do not have @code{lex}.
1653 @samp{HP-UX 10} is one such system.
1655 @item AM_PROG_GCJ
1656 This macro finds the @code{gcj} program or causes an error.  It sets
1657 @samp{GCJ} and @samp{GCJFLAGS}.  @code{gcj} is the Java front-end to the
1658 GNU Compiler Collection.
1659 @cvindex AM_PROG_GCJ
1661 @item AM_SYS_POSIX_TERMIOS
1662 @cvindex am_cv_sys_posix_termios
1663 @cindex POSIX termios headers
1664 @cindex termios POSIX headers
1665 Check to see if POSIX termios headers and functions are available on the
1666 system.  If so, set the shell variable @code{am_cv_sys_posix_termios} to
1667 @samp{yes}.  If not, set the variable to @samp{no}.
1669 @item AM_WITH_DMALLOC
1670 @cvindex WITH_DMALLOC
1671 @cindex dmalloc, support for
1672 @opindex --with-dmalloc
1673 Add support for the
1674 @uref{ftp://ftp.letters.com/src/dmalloc/dmalloc.tar.gz, dmalloc}
1675 package.  If the user configures with @samp{--with-dmalloc}, then define
1676 @code{WITH_DMALLOC} and add @samp{-ldmalloc} to @code{LIBS}.
1678 @item AM_WITH_REGEX
1679 @cvindex WITH_REGEX
1680 @opindex --with-regex
1681 @cindex regex package
1682 @cindex rx package
1683 Adds @samp{--with-regex} to the @code{configure} command line.  If
1684 specified (the default), then the @samp{regex} regular expression
1685 library is used, @file{regex.o} is put into @samp{LIBOBJS}, and
1686 @samp{WITH_REGEX} is defined.  If @samp{--without-regex} is given, then
1687 the @samp{rx} regular expression library is used, and @file{rx.o} is put
1688 into @samp{LIBOBJS}.
1690 @end table
1692 @node Private macros,  , Public macros, Macros
1693 @subsection Private macros
1695 The following macros are private macros you should not call directly.
1696 They are called by the other public macros when appropriate.  Do not
1697 rely on them, as they might be changed in a future version.  Consider
1698 them as implementation details; or better, do not consider them at all:
1699 skip this section!
1701 @table @code
1702 @item _AM_DEPENDENCIES
1703 @itemx AM_SET_DEPDIR
1704 @itemx AM_DEP_TRACK
1705 @itemx AM_OUTPUT_DEPENDENCY_COMMANDS
1706 These macros are used to implement automake's automatic dependency
1707 tracking scheme.  They are called automatically by automake when
1708 required, and there should be no need to invoke them manually.
1710 @item AM_MAKE_INCLUDE
1711 This macro is used to discover how the user's @code{make} handles
1712 @code{include} statements.  This macro is automatically invoked when
1713 needed; there should be no need to invoke it manually.
1715 @item AM_PROG_INSTALL_STRIP
1716 This is used to find a version of @code{install} which can be used to
1717 @code{strip} a program at installation time.  This macro is
1718 automatically included when required.
1720 @item AM_SANITY_CHECK
1721 This checks to make sure that a file created in the build directory is
1722 newer than a file in the source directory.  This can fail on systems
1723 where the clock is set incorrectly.  This macro is automatically run
1724 from @code{AM_INIT_AUTOMAKE}.
1726 @end table
1730 @node Extending aclocal,  , Macros, configure
1731 @section Writing your own aclocal macros
1733 @cindex aclocal, extending
1734 @cindex Extending aclocal
1736 The @code{aclocal} program doesn't have any built-in knowledge of any
1737 macros, so it is easy to extend it with your own macros.
1739 This is mostly used for libraries which want to supply their own
1740 Autoconf macros for use by other programs.  For instance the
1741 @code{gettext} library supplies a macro @code{AM_GNU_GETTEXT} which
1742 should be used by any package using @code{gettext}.  When the library is
1743 installed, it installs this macro so that @code{aclocal} will find it.
1745 A file of macros should be a series of @code{AC_DEFUN}'s.  The
1746 @code{aclocal} programs also understands @code{AC_REQUIRE}, so it is
1747 safe to put each macro in a separate file.  @xref{Prerequisite Macros, ,
1748 , autoconf, The Autoconf Manual}, and @ref{Macro Definitions, , ,
1749 autoconf, The Autoconf Manual}.
1751 A macro file's name should end in @file{.m4}.  Such files should be
1752 installed in @code{`aclocal --print-ac-dir`} (which usually happens to
1753 be @file{$(datadir)/aclocal}).
1756 @node Top level, Alternative, configure, Top
1757 @chapter The top-level @file{Makefile.am}
1759 @section Recursing subdirectories
1761 @cindex SUBDIRS, explained
1763 In packages with subdirectories, the top level @file{Makefile.am} must
1764 tell Automake which subdirectories are to be built.  This is done via
1765 the @code{SUBDIRS} variable.
1766 @vindex SUBDIRS
1768 The @code{SUBDIRS} variable holds a list of subdirectories in which
1769 building of various sorts can occur.  Many targets (e.g. @code{all}) in
1770 the generated @file{Makefile} will run both locally and in all specified
1771 subdirectories.  Note that the directories listed in @code{SUBDIRS} are
1772 not required to contain @file{Makefile.am}s; only @file{Makefile}s
1773 (after configuration).  This allows inclusion of libraries from packages
1774 which do not use Automake (such as @code{gettext}).
1776 In packages that use subdirectories, the top-level @file{Makefile.am} is
1777 often very short.  For instance, here is the @file{Makefile.am} from the
1778 GNU Hello distribution:
1780 @example
1781 EXTRA_DIST = BUGS ChangeLog.O README-alpha
1782 SUBDIRS = doc intl po src tests
1783 @end example
1785 When Automake invokes @code{make} in a subdirectory, it uses the value
1786 of the @code{MAKE} variable.  It passes the value of the variable
1787 @code{AM_MAKEFLAGS} to the @code{make} invocation; this can be set in
1788 @file{Makefile.am} if there are flags you must always pass to
1789 @code{make}.
1790 @vindex MAKE
1791 @vindex MAKEFLAGS
1793 The directories mentioned in @code{SUBDIRS} must be direct children of
1794 the current directory.  For instance, you cannot put @samp{src/subdir}
1795 into @code{SUBDIRS}.  Instead you should put @code{SUBDIRS = subdir}
1796 into @file{src/Makefile.am}.  Automake can be used to construct packages
1797 of arbitrary depth this way.
1799 By default, Automake generates @file{Makefiles} which work depth-first
1800 (@samp{postfix}).  However, it is possible to change this ordering.  You
1801 can do this by putting @samp{.} into @code{SUBDIRS}.  For instance,
1802 putting @samp{.}  first will cause a @samp{prefix} ordering of
1803 directories.  All @samp{clean} targets are run in reverse order of build
1804 targets.
1806 @section Conditional subdirectories
1807 @cindex Subdirectories, building conditionally
1808 @cindex Conditional subdirectories
1809 @cindex @code{SUBDIRS}, conditional
1810 @cindex Conditional @code{SUBDIRS}
1812 It is possible to define the @code{SUBDIRS} variable conditionally if,
1813 like in the case of GNU @code{Inetutils}, you want to only build a
1814 subset of the entire package.
1816 To illustrate how this works, let's assume we have two directories
1817 @file{src/} and @file{opt/}.  @file{src/} should always be built, but we
1818 want to decide in @code{./configure} whether @file{opt/} will be built
1819 or not.  (For this example we will assume that @file{opt/} should be
1820 built when the variable @code{$want_opt} was set to @code{yes}.)
1822 Running @code{make} should thus recurse into @file{src/} always, and
1823 then maybe in @file{opt/}.
1825 However @code{make dist} should always recurse into both @file{src/} and
1826 @file{opt/}.  Because @file{opt/} should be distributed even if it is
1827 not needed in the current configuration. This means @file{opt/Makefile}
1828 should be created unconditionally.  @footnote{Don't try seeking a
1829 solution where @file{opt/Makefile} is created conditionally, this is a
1830 lot trickier than the solutions presented here.}
1832 There are two ways to setup a project like this.  You can use Automake
1833 conditionals (@pxref{Conditionals}) or use Autoconf @code{AC_SUBST}
1834 variables (@pxref{Setting Output Variables, , Setting Output Variables,
1835 autoconf, The Autoconf Manual}).  Using Automake conditionals is the
1836 preferred solution.
1838 @subsection Conditional subdirectories with @code{AM_CONDITIONAL}
1839 @cindex @code{SUBDIRS} and @code{AM_CONDITIONAL}
1840 @cindex @code{AM_CONDITIONAL} and @code{SUBDIRS}
1842 @c The test case for the setup described here is
1843 @c     test/subdircond2.test
1844 @c Try to keep it in sync.
1846 @file{configure} should output the @file{Makefile} for each directory
1847 and define a condition into which @file{opt/} should be built.
1849 @example
1850 @dots{}
1851 AM_CONDITIONAL([COND_OPT], [test "$want_opt" = yes])
1852 AC_CONFIG_FILES([Makefile src/Makefile opt/Makefile])
1853 @dots{}
1854 @end example
1856 Then @code{SUBDIRS} can be defined in the top-level @file{Makefile.am}
1857 as follows.
1859 @example
1860 if COND_OPT
1861   MAYBE_OPT = opt
1862 endif
1863 SUBDIRS = src $(MAYBE_OPT)
1864 @end example
1866 As you can see, running @code{make} will rightly recurse into
1867 @file{src/} and maybe @file{opt/}.
1869 @vindex DIST_SUBDIRS
1870 As you can't see, running @code{make dist} will recurse into both
1871 @file{src/} and @file{opt/} directories because @code{make dist}, unlike
1872 @code{make all}, doesn't use the @code{SUBDIRS} variable.  It uses the
1873 @code{DIST_SUBDIRS} variable.
1875 In this case Automake will define @code{DIST_SUBDIRS = src opt}
1876 automatically because it knows that @code{MAYBE_OPT} can contain
1877 @code{opt} in some condition.
1879 @subsection Conditional subdirectories with @code{AC_SUBST}
1880 @cindex @code{SUBDIRS} and @code{AC_SUBST}
1881 @cindex @code{AC_SUBST} and @code{SUBDIRS}
1883 @c The test case for the setup described here is
1884 @c     test/subdircond3.test
1885 @c Try to keep it in sync.
1887 Another idea is to define @code{MAYBE_OPT} from @file{./configure} using
1888 @code{AC_SUBST}:
1890 @example
1891 @dots{}
1892 if test "$want_opt" = yes; then
1893   MAYBE_OPT=opt
1894 else
1895   MAYBE_OPT=
1897 AC_SUBST([MAYBE_OPT])
1898 AC_CONFIG_FILES([Makefile src/Makefile opt/Makefile])
1899 @dots{}
1900 @end example
1902 In this case the top-level @file{Makefile.am} should look as follows.
1904 @example
1905 SUBDIRS = src $(MAYBE_OPT)
1906 DIST_SUBDIRS = src opt
1907 @end example
1909 The drawback is that since Automake cannot guess what the possible
1910 values of @code{MAYBE_OPT} are, it is necessary to define
1911 @code{DIST_SUBDIRS}.
1913 @subsection How @code{DIST_SUBDIRS} is used
1914 @cindex @code{DIST_SUBDIRS}, explained
1916 As shown in the above examples, @code{DIST_SUBDIRS} is used by targets
1917 that need to recurse in all directories, even those which have been
1918 conditionally left out of the build.
1920 Precisely, @code{DIST_SUBDIRS} is used by @code{make dist}, @code{make
1921 distclean}, and @code{make maintainer-clean}.  All other recursive
1922 targets use @code{SUBDIRS}.
1924 Automake will define @code{DIST_SUBDIRS} automatically from the
1925 possibles values of @code{SUBDIRS} in all conditions.
1927 If @code{SUBDIRS} contains @code{AC_SUBST} variables,
1928 @code{DIST_SUBDIRS} will not be defined correctly because Automake
1929 doesn't know the possible values of these variables.  In this case
1930 @code{DIST_SUBDIRS} needs to be defined manually.
1933 @node Alternative, Rebuilding, Top level, Top
1934 @chapter An Alternative Approach to Subdirectories
1936 If you've ever read Peter Miller's excellent paper,
1937 @uref{http://www.pcug.org.au/~millerp/rmch/recu-make-cons-harm.html,
1938 Recursive Make Considered Harmful}, the preceding section on the use of
1939 subdirectories will probably come as unwelcome advice.  For those who
1940 haven't read the paper, Miller's main thesis is that recursive
1941 @code{make} invocations are both slow and error-prone.
1943 Automake provides sufficient cross-directory support @footnote{We
1944 believe.  This work is new and there are probably warts.
1945 @xref{Introduction}, for information on reporting bugs.} to enable you
1946 to write a single @file{Makefile.am} for a complex multi-directory
1947 package.
1950 By default an installable file specified in a subdirectory will have its
1951 directory name stripped before installation.  For instance, in this
1952 example, the header file will be installed as
1953 @file{$(includedir)/stdio.h}:
1955 @example
1956 include_HEADERS = inc/stdio.h
1957 @end example
1959 @cindex nobase_
1960 @cindex Path stripping, avoiding
1961 @cindex Avoiding path stripping
1963 However, the @samp{nobase_} prefix can be used to circumvent this path
1964 stripping.  In this example, the header file will be installed as
1965 @file{$(includedir)/sys/types.h}:
1967 @example
1968 nobase_include_HEADERS = sys/types.h
1969 @end example
1971 @cindex nobase_ and dist_ or nodist_
1972 @cindex dist_ and nobase_
1973 @cindex nodist_ and nobase_
1975 @samp{nobase_} should be specified first when used in conjunction with
1976 either @samp{dist_} or @samp{nodist_} (@pxref{Dist}).  For instance:
1978 @example
1979 nobase_dist_pkgdata_DATA = images/vortex.pgm
1980 @end example
1982 @node Rebuilding, Programs, Alternative, Top
1983 @chapter Rebuilding Makefiles
1985 Automake generates rules to automatically rebuild @file{Makefile}s,
1986 @file{configure}, and other derived files like @file{Makefile.in}.
1988 If you are using @code{AM_MAINTAINER_MODE} in @file{configure.in}, then
1989 these automatic rebuilding rules are only enabled in maintainer mode.
1991 Sometimes you need to run @code{aclocal} with an argument like @code{-I}
1992 to tell it where to find @file{.m4} files.  Since sometimes @code{make}
1993 will automatically run @code{aclocal}, you need a way to specify these
1994 arguments.  You can do this by defining @code{ACLOCAL_AMFLAGS}; this
1995 holds arguments which are passed verbatim to @code{aclocal}.  This variable
1996 is only useful in the top-level @file{Makefile.am}.
1997 @vindex ACLOCAL_AMFLAGS
2000 @node Programs, Other objects, Rebuilding, Top
2001 @chapter Building Programs and Libraries
2003 A large part of Automake's functionality is dedicated to making it easy
2004 to build programs and libraries.
2006 @menu
2007 * A Program::                   Building a program
2008 * A Library::                   Building a library
2009 * A Shared Library::            Building a Libtool library
2010 * Program and Library Variables::  Variables controlling program and
2011                                 library builds
2012 * LIBOBJS::                     Special handling for LIBOBJS and ALLOCA
2013 * Program variables::           Variables used when building a program
2014 * Yacc and Lex::                Yacc and Lex support
2015 * C++ Support::
2016 * Assembly Support::
2017 * Fortran 77 Support::
2018 * Java Support::
2019 * Support for Other Languages::
2020 * ANSI::                        Automatic de-ANSI-fication
2021 * Dependencies::                Automatic dependency tracking
2022 * EXEEXT::                      Support for executable extensions
2023 @end menu
2026 @node A Program, A Library, Programs, Programs
2027 @section Building a program
2029 In order to build a program, you need to tell Automake which sources
2030 are part of it, and which libraries it should be linked with.
2032 This section also covers conditional compilation of sources or
2033 programs.  Most of the comments about these also apply to libraries
2034 (@pxref{A Library}) and Libtool libraries (@pxref{A Shared Library}).
2036 @menu
2037 * Program Sources::             Defining program sources
2038 * Linking::                     Linking with libraries or extra objects
2039 * Conditional Sources::         Handling conditional sources
2040 * Conditional Programs::        Building program conditionally
2041 @end menu
2043 @node Program Sources, Linking, A Program, A Program
2044 @subsection Defining program sources
2046 @cindex PROGRAMS, bindir
2047 @vindex bin_PROGRAMS
2048 @vindex sbin_PROGRAMS
2049 @vindex libexec_PROGRAMS
2050 @vindex pkglib_PROGRAMS
2051 @vindex noinst_PROGRAMS
2052 @vindex check_PROGRAMS
2054 In a directory containing source that gets built into a program (as
2055 opposed to a library or a script), the @samp{PROGRAMS} primary is used.
2056 Programs can be installed in @code{bindir}, @code{sbindir},
2057 @code{libexecdir}, @code{pkglibdir}, or not at all (@samp{noinst}).
2058 They can also be built only for @code{make check}, in which case the
2059 prefix is @samp{check}.
2061 For instance:
2063 @example
2064 bin_PROGRAMS = hello
2065 @end example
2067 In this simple case, the resulting @file{Makefile.in} will contain code
2068 to generate a program named @code{hello}.
2070 Associated with each program are several assisting variables which are
2071 named after the program.  These variables are all optional, and have
2072 reasonable defaults.  Each variable, its use, and default is spelled out
2073 below; we use the ``hello'' example throughout.
2075 The variable @code{hello_SOURCES} is used to specify which source files
2076 get built into an executable:
2078 @example
2079 hello_SOURCES = hello.c version.c getopt.c getopt1.c getopt.h system.h
2080 @end example
2082 This causes each mentioned @samp{.c} file to be compiled into the
2083 corresponding @samp{.o}.  Then all are linked to produce @file{hello}.
2085 @cindex _SOURCES primary, defined
2086 @cindex SOURCES primary, defined
2087 @cindex Primary variable, SOURCES
2089 If @samp{hello_SOURCES} is not specified, then it defaults to the single
2090 file @file{hello.c}; that is, the default is to compile a single C file
2091 whose base name is the name of the program itself.  (This is a terrible
2092 default but we are stuck with it for historical reasons.)
2093 @vindex _SOURCES
2094 @vindex SOURCES
2096 Multiple programs can be built in a single directory.  Multiple programs
2097 can share a single source file, which must be listed in each
2098 @samp{_SOURCES} definition.
2100 @cindex Header files in _SOURCES
2101 @cindex _SOURCES and header files
2103 Header files listed in a @samp{_SOURCES} definition will be included in
2104 the distribution but otherwise ignored.  In case it isn't obvious, you
2105 should not include the header file generated by @file{configure} in a
2106 @samp{_SOURCES} variable; this file should not be distributed.  Lex
2107 (@samp{.l}) and Yacc (@samp{.y}) files can also be listed; see @ref{Yacc
2108 and Lex}.
2111 @node Linking, Conditional Sources, Program Sources, A Program
2112 @subsection Linking the program
2114 If you need to link against libraries that are not found by
2115 @code{configure}, you can use @code{LDADD} to do so.  This variable is
2116 used to specify additional objects or libraries to link with; it is
2117 inappropriate for specifying specific linker flags, you should use
2118 @code{AM_LDFLAGS} for this purpose.
2119 @vindex LDADD
2120 @vindex AM_LDFLAGS
2122 @cindex prog_LDADD, defined
2124 Sometimes, multiple programs are built in one directory but do not share
2125 the same link-time requirements.  In this case, you can use the
2126 @samp{@var{prog}_LDADD} variable (where @var{prog} is the name of the
2127 program as it appears in some @samp{_PROGRAMS} variable, and usually
2128 written in lowercase) to override the global @code{LDADD}.  If this
2129 variable exists for a given program, then that program is not linked
2130 using @code{LDADD}.
2131 @vindex _LDADD
2133 For instance, in GNU cpio, @code{pax}, @code{cpio} and @code{mt} are
2134 linked against the library @file{libcpio.a}.  However, @code{rmt} is
2135 built in the same directory, and has no such link requirement.  Also,
2136 @code{mt} and @code{rmt} are only built on certain architectures.  Here
2137 is what cpio's @file{src/Makefile.am} looks like (abridged):
2139 @example
2140 bin_PROGRAMS = cpio pax @@MT@@
2141 libexec_PROGRAMS = @@RMT@@
2142 EXTRA_PROGRAMS = mt rmt
2144 LDADD = ../lib/libcpio.a @@INTLLIBS@@
2145 rmt_LDADD =
2147 cpio_SOURCES = @dots{}
2148 pax_SOURCES = @dots{}
2149 mt_SOURCES = @dots{}
2150 rmt_SOURCES = @dots{}
2151 @end example
2153 @cindex _LDFLAGS, defined
2155 @samp{@var{prog}_LDADD} is inappropriate for passing program-specific
2156 linker flags (except for @samp{-l}, @samp{-L}, @samp{-dlopen} and
2157 @samp{-dlpreopen}).  So, use the @samp{@var{prog}_LDFLAGS} variable for
2158 this purpose.
2159 @vindex _LDFLAGS
2161 @cindex _DEPENDENCIES, defined
2163 It is also occasionally useful to have a program depend on some other
2164 target which is not actually part of that program.  This can be done
2165 using the @samp{@var{prog}_DEPENDENCIES} variable.  Each program depends
2166 on the contents of such a variable, but no further interpretation is
2167 done.
2169 If @samp{@var{prog}_DEPENDENCIES} is not supplied, it is computed by
2170 Automake.  The automatically-assigned value is the contents of
2171 @samp{@var{prog}_LDADD}, with most configure substitutions, @samp{-l},
2172 @samp{-L}, @samp{-dlopen} and @samp{-dlpreopen} options removed.  The
2173 configure substitutions that are left in are only @samp{@@LIBOBJS@@} and
2174 @samp{@@ALLOCA@@}; these are left because it is known that they will not
2175 cause an invalid value for @samp{@var{prog}_DEPENDENCIES} to be
2176 generated.
2179 @node Conditional Sources, Conditional Programs, Linking, A Program
2180 @subsection Conditional compilation of sources
2182 You can't put a configure substitution (e.g., @samp{@@FOO@@}) into a
2183 @samp{_SOURCES} variable.  The reason for this is a bit hard to explain,
2184 but suffice to say that it simply won't work.  Automake will give an
2185 error if you try to do this.
2187 Fortunately there are two other ways to achieve the same result.  One is
2188 to use configure substitutions in @code{_LDADD} variables, the other is
2189 to use an Automake conditional.
2191 @subsubsection Conditional compilation using @code{_LDADD} substitutions
2193 @cindex EXTRA_prog_SOURCES, defined
2195 Automake must know all the source files that could possibly go into a
2196 program, even if not all the files are built in every circumstance.  Any
2197 files which are only conditionally built should be listed in the
2198 appropriate @samp{EXTRA_} variable.  For instance, if
2199 @file{hello-linux.c} or @file{hello-generic.c} were conditionally included
2200 in @code{hello}, the @file{Makefile.am} would contain:
2202 @example
2203 bin_PROGRAMS = hello
2204 hello_SOURCES = hello-common.c
2205 EXTRA_hello_SOURCES = hello-linux.c hello-generic.c
2206 hello_LDADD = @@HELLO_SYSTEM@@
2207 hello_DEPENDENCIES = @@HELLO_SYSTEM@@
2208 @end example
2210 @noindent
2211 You can then setup the @code{@@HELLO_SYSTEM@@} substitution from
2212 @file{configure.in}:
2214 @example
2215 @dots{}
2216 case $host in
2217   *linux*) HELLO_SYSTEM='hello-linux.$(OBJEXT)' ;;
2218   *)       HELLO_SYSTEM='hello-generic.$(OBJEXT)' ;;
2219 esac
2220 AC_SUBST([HELLO_SYSTEM])
2221 @dots{}
2222 @end example
2224 In this case, @code{HELLO_SYSTEM} should be replaced by
2225 @file{hello-linux.o} or @file{hello-bsd.o}, and added to
2226 @code{hello_DEPENDENCIES} and @code{hello_LDADD} in order to be built
2227 and linked in.
2229 @subsubsection Conditional compilation using Automake conditionals
2231 An often simpler way to compile source files conditionally is to use
2232 Automake conditionals.  For instance, you could use this
2233 @file{Makefile.am} construct to build the same @file{hello} example:
2235 @example
2236 bin_PROGRAMS = hello
2237 if LINUX
2238 hello_SOURCES = hello-linux.c hello-common.c
2239 else
2240 hello_SOURCES = hello-generic.c hello-common.c
2241 endif
2242 @end example
2244 In this case, your @file{configure.in} should setup the @code{LINUX}
2245 conditional using @code{AM_CONDITIONAL} (@pxref{Conditionals}).
2247 When using conditionals like this you don't need to use the
2248 @samp{EXTRA_} variable, because Automake will examine the contents of
2249 each variable to construct the complete list of source files.
2251 If your program uses a lot of files, you will probably prefer a
2252 conditional @code{+=}.
2254 @example
2255 bin_PROGRAMS = hello
2256 hello_SOURCES = hello-common.c
2257 if LINUX
2258 hello_cond += hello-linux.c
2259 else
2260 hello_cond += hello-generic.c
2261 endif
2262 @end example
2264 @node Conditional Programs,  , Conditional Sources, A Program
2265 @subsection Conditional compilation of programs
2267 Sometimes it is useful to determine the programs that are to be built at
2268 configure time.  For instance, GNU @code{cpio} only builds @code{mt} and
2269 @code{rmt} under special circumstances.
2271 @cindex EXTRA_PROGRAMS, defined
2273 In this case, you must notify Automake of all the programs that can
2274 possibly be built, but at the same time cause the generated
2275 @file{Makefile.in} to use the programs specified by @code{configure}.
2276 This is done by having @code{configure} substitute values into each
2277 @samp{_PROGRAMS} definition, while listing all optionally built programs
2278 in @code{EXTRA_PROGRAMS}.
2279 @vindex EXTRA_PROGRAMS
2281 Of course you can use Automake conditionals to determine the programs to
2282 be built.
2285 @node A Library, A Shared Library, A Program, Programs
2286 @section Building a library
2288 @cindex _LIBRARIES primary, defined
2289 @cindex LIBRARIES primary, defined
2290 @cindex Primary variable, LIBRARIES
2292 @vindex lib_LIBRARIES
2293 @vindex pkglib_LIBRARIES
2294 @vindex noinst_LIBRARIES
2296 Building a library is much like building a program.  In this case, the
2297 name of the primary is @samp{LIBRARIES}.  Libraries can be installed in
2298 @code{libdir} or @code{pkglibdir}.
2300 @xref{A Shared Library}, for information on how to build shared
2301 libraries using Libtool and the @samp{LTLIBRARIES} primary.
2303 Each @samp{_LIBRARIES} variable is a list of the libraries to be built.
2304 For instance to create a library named @file{libcpio.a}, but not install
2305 it, you would write:
2307 @example
2308 noinst_LIBRARIES = libcpio.a
2309 @end example
2311 The sources that go into a library are determined exactly as they are
2312 for programs, via the @samp{_SOURCES} variables.  Note that the library
2313 name is canonicalized (@pxref{Canonicalization}), so the @samp{_SOURCES}
2314 variable corresponding to @file{liblob.a} is @samp{liblob_a_SOURCES},
2315 not @samp{liblob.a_SOURCES}.
2317 @cindex _LIBADD primary, defined
2318 @cindex LIBADD primary, defined
2319 @cindex Primary variable, LIBADD
2321 Extra objects can be added to a library using the
2322 @samp{@var{library}_LIBADD} variable.  This should be used for objects
2323 determined by @code{configure}.  Again from @code{cpio}:
2324 @vindex _LIBADD
2325 @vindex LIBADD
2327 @example
2328 libcpio_a_LIBADD = @@LIBOBJS@@ @@ALLOCA@@
2329 @end example
2331 In addition, sources for extra objects that will not exist until
2332 configure-time must be added to the @code{BUILT_SOURCES} variable
2333 (@pxref{Sources}).
2336 @node A Shared Library, Program and Library Variables, A Library, Programs
2337 @section Building a Shared Library
2339 @cindex Shared libraries, support for
2341 Building shared libraries is a relatively complex matter.  For this
2342 reason, GNU Libtool (@pxref{Top, , Introduction, libtool, The
2343 Libtool Manual}) was created to help build shared libraries in a
2344 platform-independent way.
2346 @cindex _LTLIBRARIES primary, defined
2347 @cindex LTLIBRARIES primary, defined
2348 @cindex Primary variable, LTLIBRARIES
2349 @cindex Example of shared libraries
2351 @cindex suffix .la, defined
2353 Automake uses Libtool to build libraries declared with the
2354 @samp{LTLIBRARIES} primary.  Each @samp{_LTLIBRARIES} variable is a list
2355 of shared libraries to build.  For instance, to create a library named
2356 @file{libgettext.a} and its corresponding shared libraries, and install
2357 them in @samp{libdir}, write:
2359 @example
2360 lib_LTLIBRARIES = libgettext.la
2361 @end example
2363 @vindex lib_LTLIBRARIES
2364 @vindex pkglib_LTLIBRARIES
2365 @vindex noinst_LTLIBRARIES
2366 @vindex check_LTLIBRARIES
2368 @cindex check_LTLIBRARIES, not allowed
2370 Note that shared libraries @emph{must} be installed in order to work
2371 properly, so @code{check_LTLIBRARIES} is not allowed.  However,
2372 @code{noinst_LTLIBRARIES} is allowed.  This feature should be used for
2373 libtool ``convenience libraries''.
2375 @cindex suffix .lo, defined
2377 For each library, the @samp{@var{library}_LIBADD} variable contains the
2378 names of extra libtool objects (@file{.lo} files) to add to the shared
2379 library.  The @samp{@var{library}_LDFLAGS} variable contains any
2380 additional libtool flags, such as @samp{-version-info} or
2381 @samp{-static}.
2383 @cindex @@LTLIBOBJS@@, special handling
2385 Where an ordinary library might include @code{@@LIBOBJS@@}, a libtool
2386 library must use @code{@@LTLIBOBJS@@}.  This is required because the
2387 object files that libtool operates on do not necessarily end in
2388 @file{.o}.  The libtool manual contains more details on this topic.
2390 For libraries installed in some directory, Automake will automatically
2391 supply the appropriate @samp{-rpath} option.  However, for libraries
2392 determined at configure time (and thus mentioned in
2393 @code{EXTRA_LTLIBRARIES}), Automake does not know the eventual
2394 installation directory; for such libraries you must add the
2395 @samp{-rpath} option to the appropriate @samp{_LDFLAGS} variable by
2396 hand.
2398 Ordinarily, Automake requires that a shared library's name start with
2399 @samp{lib}.  However, if you are building a dynamically loadable module
2400 then you might wish to use a "nonstandard" name.  In this case, put
2401 @code{-module} into the @samp{_LDFLAGS} variable.
2403 @xref{Using Automake, Using Automake with Libtool, The Libtool Manual,
2404 libtool, The Libtool Manual}, for more information.
2407 @node Program and Library Variables, LIBOBJS, A Shared Library, Programs
2408 @section Program and Library Variables
2410 Associated with each program are a collection of variables which can be
2411 used to modify how that program is built.  There is a similar list of
2412 such variables for each library.  The canonical name of the program (or
2413 library) is used as a base for naming these variables.
2415 In the list below, we use the name ``maude'' to refer to the program or
2416 library.  In your @file{Makefile.am} you would replace this with the
2417 canonical name of your program.  This list also refers to ``maude'' as a
2418 program, but in general the same rules apply for both static and dynamic
2419 libraries; the documentation below notes situations where programs and
2420 libraries differ.
2422 @table @samp
2423 @item maude_SOURCES
2424 This variable, if it exists, lists all the source files which are
2425 compiled to build the program.  These files are added to the
2426 distribution by default.  When building the program, Automake will cause
2427 each source file to be compiled to a single @file{.o} file (or
2428 @file{.lo} when using libtool).  Normally these object files are named
2429 after the source file, but other factors can change this.  If a file in
2430 the @samp{_SOURCES} variable has an unrecognized extension, Automake
2431 will do one of two things with it.  If a suffix rule exists for turning
2432 files with the unrecognized extension into @file{.o} files, then
2433 automake will treat this file as it will any other source file
2434 (@pxref{Support for Other Languages}).  Otherwise, the file will be
2435 ignored as though it were a header file.
2437 The prefixes @samp{dist_} and @samp{nodist_} can be used to control
2438 whether files listed in a @samp{_SOURCES} variable are distributed.
2439 @samp{dist_} is redundant, as sources are distributed by default, but it
2440 can be specified for clarity if desired.
2442 It is possible to have both @samp{dist_} and @samp{nodist_} variants of
2443 a given @samp{_SOURCES} variable at once; this lets you easily
2444 distribute some files and not others, for instance:
2446 @example
2447 nodist_maude_SOURCES = nodist.c
2448 dist_maude_SOURCES = dist-me.c
2449 @end example
2451 By default the output file (on Unix systems, the @file{.o} file) will be
2452 put into the current build directory.  However, if the option
2453 @code{subdir-objects} is in effect in the current directory then the
2454 @file{.o} file will be put into the subdirectory named after the source
2455 file.  For instance, with @code{subdir-objects} enabled,
2456 @file{sub/dir/file.c} will be compiled to @file{sub/dir/file.o}.  Some
2457 people prefer this mode of operation.  You can specify
2458 @code{subdir-objects} in @code{AUTOMAKE_OPTIONS} (@pxref{Options}).
2459 @cindex Subdirectory, objects in
2460 @cindex Objects in subdirectory
2463 @item EXTRA_maude_SOURCES
2464 Automake needs to know the list of files you intend to compile
2465 @emph{statically}.  For one thing, this is the only way Automake has of
2466 knowing what sort of language support a given @file{Makefile.in}
2467 requires.  @footnote{There are other, more obscure reasons reasons for
2468 this limitation as well.}  This means that, for example, you can't put a
2469 configure substitution like @samp{@@my_sources@@} into a @samp{_SOURCES}
2470 variable.  If you intend to conditionally compile source files and use
2471 @file{configure} to substitute the appropriate object names into, e.g.,
2472 @samp{_LDADD} (see below), then you should list the corresponding source
2473 files in the @samp{EXTRA_} variable.
2475 This variable also supports @samp{dist_} and @samp{nodist_} prefixes,
2476 e.g., @samp{nodist_EXTRA_maude_SOURCES}.
2478 @item maude_AR
2479 A static library is created by default by invoking @code{$(AR) cru}
2480 followed by the name of the library and then the objects being put into
2481 the library.  You can override this by setting the @samp{_AR} variable.
2482 This is usually used with C++; some C++ compilers require a special
2483 invocation in order to instantiate all the templates which should go
2484 into a library.  For instance, the SGI C++ compiler likes this variable set
2485 like so:
2486 @example
2487 libmaude_a_AR = $(CXX) -ar -o
2488 @end example
2490 @item maude_LIBADD
2491 Extra objects can be added to a library using the @samp{_LIBADD}
2492 variable.  This should be used for objects determined by
2493 @code{configure}.
2495 @item maude_LDADD
2496 Extra objects can be added to a shared library or a program by listing
2497 them in the @samp{_LDADD} variable.  This should be used for objects
2498 determined by @code{configure}.
2500 @samp{_LDADD} and @samp{_LIBADD} are inappropriate for passing
2501 program-specific linker flags (except for @samp{-l}, @samp{-L},
2502 @samp{-dlopen} and @samp{-dlpreopen}).  Use the @samp{_LDFLAGS} variable
2503 for this purpose.
2505 For instance, if your @file{configure.in} uses @code{AC_PATH_XTRA}, you
2506 could link your program against the X libraries like so:
2508 @example
2509 maude_LDADD = $(X_PRE_LIBS) $(X_LIBS) $(X_EXTRA_LIBS)
2510 @end example
2512 @item maude_LDFLAGS
2513 This variable is used to pass extra flags to the link step of a program
2514 or a shared library.
2516 @item maude_LINK
2517 You can override the linker on a per-program basis.  By default the
2518 linker is chosen according to the languages used by the program.  For
2519 instance, a program that includes C++ source code would use the C++
2520 compiler to link.  The @samp{_LINK} variable must hold the name of a
2521 command which can be passed all the @file{.o} file names as arguments.
2522 Note that the name of the underlying program is @emph{not} passed to
2523 @samp{_LINK}; typically one uses @samp{$@@}:
2525 @example
2526 maude_LINK = $(CCLD) -magic -o $@@
2527 @end example
2529 @item maude_CCASFLAGS
2530 @itemx maude_CFLAGS
2531 @itemx maude_CPPFLAGS
2532 @itemx maude_CXXFLAGS
2533 @itemx maude_FFLAGS
2534 @itemx maude_GCJFLAGS
2535 @itemx maude_LFLAGS
2536 @itemx maude_OBJCFLAGS
2537 @itemx maude_RFLAGS
2538 @itemx maude_YFLAGS
2539 Automake allows you to set compilation flags on a per-program (or
2540 per-library) basis.  A single source file can be included in several
2541 programs, and it will potentially be compiled with different flags for
2542 each program.  This works for any language directly supported by
2543 Automake.  The flags are
2544 @samp{_CCASFLAGS},
2545 @samp{_CFLAGS},
2546 @samp{_CPPFLAGS},
2547 @samp{_CXXFLAGS},
2548 @samp{_FFLAGS},
2549 @samp{_GCJFLAGS},
2550 @samp{_LFLAGS},
2551 @samp{_OBJCFLAGS},
2552 @samp{_RFLAGS}, and
2553 @samp{_YFLAGS}.
2555 When using a per-program compilation flag, Automake will choose a
2556 different name for the intermediate object files.  Ordinarily a file
2557 like @file{sample.c} will be compiled to produce @file{sample.o}.
2558 However, if the program's @samp{_CFLAGS} variable is set, then the
2559 object file will be named, for instance, @file{maude-sample.o}.
2561 In compilations with per-program flags, the ordinary @samp{AM_} form of
2562 the flags variable is @emph{not} automatically included in the
2563 compilation (however, the user form of the variable @emph{is} included).
2564 So for instance, if you want the hypothetical @file{maude} compilations
2565 to also use the value of @samp{AM_CFLAGS}, you would need to write:
2567 @example
2568 maude_CFLAGS = @dots{} your flags @dots{} $(AM_CFLAGS)
2569 @end example
2572 @item maude_DEPENDENCIES
2573 It is also occasionally useful to have a program depend on some other
2574 target which is not actually part of that program.  This can be done
2575 using the @samp{_DEPENDENCIES} variable.  Each program depends on the
2576 contents of such a variable, but no further interpretation is done.
2578 If @samp{_DEPENDENCIES} is not supplied, it is computed by Automake.
2579 The automatically-assigned value is the contents of @samp{_LDADD} or
2580 @samp{_LIBADD}, with most configure substitutions, @samp{-l}, @samp{-L},
2581 @samp{-dlopen} and @samp{-dlpreopen} options removed.  The configure
2582 substitutions that are left in are only @samp{@@LIBOBJS@@} and
2583 @samp{@@ALLOCA@@}; these are left because it is known that they will not
2584 cause an invalid value for @samp{_DEPENDENCIES} to be generated.
2586 @item maude_SHORTNAME
2587 On some platforms the allowable file names are very short.  In order to
2588 support these systems and per-program compilation flags at the same
2589 time, Automake allows you to set a ``short name'' which will influence
2590 how intermediate object files are named.  For instance, if you set
2591 @samp{maude_SHORTNAME} to @samp{m}, then in the above per-program
2592 compilation flag example the object file would be named
2593 @file{m-sample.o} rather than @file{maude-sample.o}.  This facility is
2594 rarely needed in practice, and we recommend avoiding it until you find
2595 it is required.
2596 @end table
2599 @node LIBOBJS, Program variables, Program and Library Variables, Programs
2600 @section Special handling for LIBOBJS and ALLOCA
2602 @cindex @@LIBOBJS@@, special handling
2603 @cindex @@ALLOCA@@, special handling
2605 Automake explicitly recognizes the use of @code{@@LIBOBJS@@} and
2606 @code{@@ALLOCA@@}, and uses this information, plus the list of
2607 @code{LIBOBJS} files derived from @file{configure.in} to automatically
2608 include the appropriate source files in the distribution (@pxref{Dist}).
2609 These source files are also automatically handled in the
2610 dependency-tracking scheme; see @xref{Dependencies}.
2612 @code{@@LIBOBJS@@} and @code{@@ALLOCA@@} are specially recognized in any
2613 @samp{_LDADD} or @samp{_LIBADD} variable.
2616 @node Program variables, Yacc and Lex, LIBOBJS, Programs
2617 @section Variables used when building a program
2619 Occasionally it is useful to know which @file{Makefile} variables
2620 Automake uses for compilations; for instance you might need to do your
2621 own compilation in some special cases.
2623 Some variables are inherited from Autoconf; these are @code{CC},
2624 @code{CFLAGS}, @code{CPPFLAGS}, @code{DEFS}, @code{LDFLAGS}, and
2625 @code{LIBS}.
2626 @vindex CC
2627 @vindex CFLAGS
2628 @vindex CPPFLAGS
2629 @vindex DEFS
2630 @vindex LDFLAGS
2631 @vindex LIBS
2633 There are some additional variables which Automake itself defines:
2635 @vtable @code
2636 @item AM_CPPFLAGS
2637 The contents of this variable are passed to every compilation which invokes
2638 the C preprocessor; it is a list of arguments to the preprocessor.  For
2639 instance, @samp{-I} and @samp{-D} options should be listed here.
2641 Automake already provides some @samp{-I} options automatically.  In
2642 particular it generates @samp{-I$(srcdir)}, @samp{-I.}, and a @samp{-I}
2643 pointing to the directory holding @file{config.h} (if you've used
2644 @code{AC_CONFIG_HEADERS} or @code{AM_CONFIG_HEADER}).  You can disable
2645 the default @samp{-I} options using the @samp{nostdinc} option.
2647 @code{AM_CPPFLAGS} is ignored in preference to a per-executable (or
2648 per-library) @code{_CPPFLAGS} variable if it is defined.
2650 @item INCLUDES
2651 This does the same job as @samp{AM_CPPFLAGS}.  It is an older name for
2652 the same functionality.  This variable is deprecated; we suggest using
2653 @samp{AM_CPPFLAGS} instead.
2655 @item AM_CFLAGS
2656 This is the variable which the @file{Makefile.am} author can use to pass
2657 in additional C compiler flags.  It is more fully documented elsewhere.
2658 In some situations, this is not used, in preference to the
2659 per-executable (or per-library) @code{_CFLAGS}.
2661 @item COMPILE
2662 This is the command used to actually compile a C source file.  The
2663 filename is appended to form the complete command line.
2665 @item AM_LDFLAGS
2666 This is the variable which the @file{Makefile.am} author can use to pass
2667 in additional linker flags.  In some situations, this is not used, in
2668 preference to the per-executable (or per-library) @code{_LDFLAGS}.
2670 @item LINK
2671 This is the command used to actually link a C program.  It already
2672 includes @samp{-o $@@} and the usual variable references (for instance,
2673 @code{CFLAGS}); it takes as ``arguments'' the names of the object files
2674 and libraries to link in.
2675 @end vtable
2678 @node Yacc and Lex, C++ Support, Program variables, Programs
2679 @section Yacc and Lex support
2681 Automake has somewhat idiosyncratic support for Yacc and Lex.
2683 Automake assumes that the @file{.c} file generated by @code{yacc} (or
2684 @code{lex}) should be named using the basename of the input file.  That
2685 is, for a yacc source file @file{foo.y}, Automake will cause the
2686 intermediate file to be named @file{foo.c} (as opposed to
2687 @file{y.tab.c}, which is more traditional).
2689 The extension of a yacc source file is used to determine the extension
2690 of the resulting @samp{C} or @samp{C++} file.  Files with the extension
2691 @samp{.y} will be turned into @samp{.c} files; likewise, @samp{.yy} will
2692 become @samp{.cc}; @samp{.y++}, @samp{c++}; and @samp{.yxx},
2693 @samp{.cxx}.
2695 Likewise, lex source files can be used to generate @samp{C} or
2696 @samp{C++}; the extensions @samp{.l}, @samp{.ll}, @samp{.l++}, and
2697 @samp{.lxx} are recognized.
2699 You should never explicitly mention the intermediate (@samp{C} or
2700 @samp{C++}) file in any @samp{SOURCES} variable; only list the source
2701 file.
2703 The intermediate files generated by @code{yacc} (or @code{lex}) will be
2704 included in any distribution that is made.  That way the user doesn't
2705 need to have @code{yacc} or @code{lex}.
2707 If a @code{yacc} source file is seen, then your @file{configure.in} must
2708 define the variable @samp{YACC}.  This is most easily done by invoking
2709 the macro @samp{AC_PROG_YACC} (@pxref{Particular Programs, , Particular
2710 Program Checks, autoconf, The Autoconf Manual}).
2712 When @code{yacc} is invoked, it is passed @samp{YFLAGS} and
2713 @samp{AM_YFLAGS}.  The former is a user variable and the latter is
2714 intended for the @file{Makefile.am} author.
2716 Similarly, if a @code{lex} source file is seen, then your
2717 @file{configure.in} must define the variable @samp{LEX}.  You can use
2718 @samp{AC_PROG_LEX} to do this (@pxref{Particular Programs, , Particular
2719 Program Checks, autoconf, The Autoconf Manual}), but using
2720 @code{AM_PROG_LEX} macro (@pxref{Macros}) is recommended.
2722 When @code{lex} is invoked, it is passed @samp{LFLAGS} and
2723 @samp{AM_LFLAGS}.  The former is a user variable and the latter is
2724 intended for the @file{Makefile.am} author.
2728 @cindex ylwrap
2729 @cindex yacc, multiple parsers
2730 @cindex Multiple yacc parsers
2731 @cindex Multiple lex lexers
2732 @cindex lex, multiple lexers
2735 Automake makes it possible to include multiple @code{yacc} (or
2736 @code{lex}) source files in a single program.  When there is more than
2737 one distinct @code{yacc} (or @code{lex}) source file in a directory,
2738 Automake uses a small program called @code{ylwrap} to run @code{yacc}
2739 (or @code{lex}) in a subdirectory.  This is necessary because yacc's
2740 output filename is fixed, and a parallel make could conceivably invoke
2741 more than one instance of @code{yacc} simultaneously.  The @code{ylwrap}
2742 program is distributed with Automake.  It should appear in the directory
2743 specified by @samp{AC_CONFIG_AUX_DIR} (@pxref{Input, , Finding
2744 `configure' Input, autoconf, The Autoconf Manual}), or the current
2745 directory if that macro is not used in @file{configure.in}.
2747 For @code{yacc}, simply managing locking is insufficient.  The output of
2748 @code{yacc} always uses the same symbol names internally, so it isn't
2749 possible to link two @code{yacc} parsers into the same executable.
2751 We recommend using the following renaming hack used in @code{gdb}:
2752 @example
2753 #define yymaxdepth c_maxdepth
2754 #define yyparse c_parse
2755 #define yylex   c_lex
2756 #define yyerror c_error
2757 #define yylval  c_lval
2758 #define yychar  c_char
2759 #define yydebug c_debug
2760 #define yypact  c_pact
2761 #define yyr1    c_r1
2762 #define yyr2    c_r2
2763 #define yydef   c_def
2764 #define yychk   c_chk
2765 #define yypgo   c_pgo
2766 #define yyact   c_act
2767 #define yyexca  c_exca
2768 #define yyerrflag c_errflag
2769 #define yynerrs c_nerrs
2770 #define yyps    c_ps
2771 #define yypv    c_pv
2772 #define yys     c_s
2773 #define yy_yys  c_yys
2774 #define yystate c_state
2775 #define yytmp   c_tmp
2776 #define yyv     c_v
2777 #define yy_yyv  c_yyv
2778 #define yyval   c_val
2779 #define yylloc  c_lloc
2780 #define yyreds  c_reds
2781 #define yytoks  c_toks
2782 #define yylhs   c_yylhs
2783 #define yylen   c_yylen
2784 #define yydefred c_yydefred
2785 #define yydgoto c_yydgoto
2786 #define yysindex c_yysindex
2787 #define yyrindex c_yyrindex
2788 #define yygindex c_yygindex
2789 #define yytable  c_yytable
2790 #define yycheck  c_yycheck
2791 #define yyname   c_yyname
2792 #define yyrule   c_yyrule
2793 @end example
2795 For each define, replace the @samp{c_} prefix with whatever you like.
2796 These defines work for @code{bison}, @code{byacc}, and traditional
2797 @code{yacc}s.  If you find a parser generator that uses a symbol not
2798 covered here, please report the new name so it can be added to the list.
2801 @node C++ Support, Assembly Support, Yacc and Lex, Programs
2802 @section C++ Support
2804 @cindex C++ support
2805 @cindex Support for C++
2807 Automake includes full support for C++.
2809 Any package including C++ code must define the output variable
2810 @samp{CXX} in @file{configure.in}; the simplest way to do this is to use
2811 the @code{AC_PROG_CXX} macro (@pxref{Particular Programs, , Particular
2812 Program Checks, autoconf, The Autoconf Manual}).
2814 A few additional variables are defined when a C++ source file is seen:
2816 @vtable @code
2817 @item CXX
2818 The name of the C++ compiler.
2820 @item CXXFLAGS
2821 Any flags to pass to the C++ compiler.
2823 @item AM_CXXFLAGS
2824 The maintainer's variant of @code{CXXFLAGS}.
2826 @item CXXCOMPILE
2827 The command used to actually compile a C++ source file.  The file name
2828 is appended to form the complete command line.
2830 @item CXXLINK
2831 The command used to actually link a C++ program.
2832 @end vtable
2835 @node Assembly Support, Fortran 77 Support, C++ Support, Programs
2836 @section Assembly Support
2838 Automake includes some support for assembly code.
2840 The variable @code{CCAS} holds the name of the compiler used to build
2841 assembly code.  This compiler must work a bit like a C compiler; in
2842 particular it must accept @samp{-c} and @samp{-o}.  The value of
2843 @code{CCASFLAGS} is passed to the compilation.
2844 @vindex CCAS
2845 @vindex CCASFLAGS
2847 You are required to set @code{CCAS} and @code{CCASFLAGS} via
2848 @file{configure.in}.  The autoconf macro @code{AM_PROG_AS} will do this
2849 for you.  Unless they are already set, it simply sets @code{CCAS} to the
2850 C compiler and @code{CCASFLAGS} to the C compiler flags.
2852 Only the suffixes @samp{.s} and @samp{.S} are recognized by
2853 @code{automake} as being files containing assembly code.
2856 @node Fortran 77 Support, Java Support, Assembly Support, Programs
2857 @comment  node-name,  next,  previous,  up
2858 @section Fortran 77 Support
2860 @cindex Fortran 77 support
2861 @cindex Support for Fortran 77
2863 Automake includes full support for Fortran 77.
2865 Any package including Fortran 77 code must define the output variable
2866 @samp{F77} in @file{configure.in}; the simplest way to do this is to use
2867 the @code{AC_PROG_F77} macro (@pxref{Particular Programs, , Particular
2868 Program Checks, autoconf, The Autoconf Manual}).  @xref{Fortran 77 and
2869 Autoconf}.
2871 A few additional variables are defined when a Fortran 77 source file is
2872 seen:
2874 @vtable @code
2876 @item F77
2877 The name of the Fortran 77 compiler.
2879 @item FFLAGS
2880 Any flags to pass to the Fortran 77 compiler.
2882 @item AM_FFLAGS
2883 The maintainer's variant of @code{FFLAGS}.
2885 @item RFLAGS
2886 Any flags to pass to the Ratfor compiler.
2888 @item AM_RFLAGS
2889 The maintainer's variant of @code{RFLAGS}.
2891 @item F77COMPILE
2892 The command used to actually compile a Fortran 77 source file.  The file
2893 name is appended to form the complete command line.
2895 @item FLINK
2896 The command used to actually link a pure Fortran 77 program or shared
2897 library.
2899 @end vtable
2901 Automake can handle preprocessing Fortran 77 and Ratfor source files in
2902 addition to compiling them@footnote{Much, if not most, of the
2903 information in the following sections pertaining to preprocessing
2904 Fortran 77 programs was taken almost verbatim from @ref{Catalogue of
2905 Rules, , Catalogue of Rules, make, The GNU Make Manual}.}.  Automake
2906 also contains some support for creating programs and shared libraries
2907 that are a mixture of Fortran 77 and other languages (@pxref{Mixing
2908 Fortran 77 With C and C++}).
2910 These issues are covered in the following sections.
2912 @menu
2913 * Preprocessing Fortran 77::
2914 * Compiling Fortran 77 Files::
2915 * Mixing Fortran 77 With C and C++::
2916 * Fortran 77 and Autoconf::
2917 @end menu
2920 @node Preprocessing Fortran 77, Compiling Fortran 77 Files, Fortran 77 Support, Fortran 77 Support
2921 @comment  node-name,  next,  previous,  up
2922 @subsection Preprocessing Fortran 77
2924 @cindex Preprocessing Fortran 77
2925 @cindex Fortran 77, Preprocessing
2926 @cindex Ratfor programs
2928 @file{N.f} is made automatically from @file{N.F} or @file{N.r}.  This
2929 rule runs just the preprocessor to convert a preprocessable Fortran 77
2930 or Ratfor source file into a strict Fortran 77 source file.  The precise
2931 command used is as follows:
2933 @table @file
2935 @item .F
2936 @code{$(F77) -F $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)}
2938 @item .r
2939 @code{$(F77) -F $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)}
2941 @end table
2944 @node Compiling Fortran 77 Files, Mixing Fortran 77 With C and C++, Preprocessing Fortran 77, Fortran 77 Support
2945 @comment  node-name,  next,  previous,  up
2946 @subsection Compiling Fortran 77 Files
2948 @file{N.o} is made automatically from @file{N.f}, @file{N.F} or
2949 @file{N.r} by running the Fortran 77 compiler.  The precise command used
2950 is as follows:
2952 @table @file
2954 @item .f
2955 @code{$(F77) -c $(AM_FFLAGS) $(FFLAGS)}
2957 @item .F
2958 @code{$(F77) -c $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)}
2960 @item .r
2961 @code{$(F77) -c $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)}
2963 @end table
2966 @node Mixing Fortran 77 With C and C++, Fortran 77 and Autoconf, Compiling Fortran 77 Files, Fortran 77 Support
2967 @comment  node-name,  next,  previous,  up
2968 @subsection Mixing Fortran 77 With C and C++
2970 @cindex Fortran 77, mixing with C and C++
2971 @cindex Mixing Fortran 77 with C and C++
2972 @cindex Linking Fortran 77 with C and C++
2973 @cindex cfortran
2974 @cindex Mixing Fortran 77 with C and/or C++
2976 Automake currently provides @emph{limited} support for creating programs
2977 and shared libraries that are a mixture of Fortran 77 and C and/or C++.
2978 However, there are many other issues related to mixing Fortran 77 with
2979 other languages that are @emph{not} (currently) handled by Automake, but
2980 that are handled by other packages@footnote{For example,
2981 @uref{http://www-zeus.desy.de/~burow/cfortran/, the cfortran package}
2982 addresses all of these inter-language issues, and runs under nearly all
2983 Fortran 77, C and C++ compilers on nearly all platforms.  However,
2984 @code{cfortran} is not yet Free Software, but it will be in the next
2985 major release.}.
2987 @page
2988 Automake can help in two ways:
2990 @enumerate
2991 @item
2992 Automatic selection of the linker depending on which combinations of
2993 source code.
2995 @item
2996 Automatic selection of the appropriate linker flags (e.g. @samp{-L} and
2997 @samp{-l}) to pass to the automatically selected linker in order to link
2998 in the appropriate Fortran 77 intrinsic and run-time libraries.
3000 @cindex FLIBS, defined
3001 These extra Fortran 77 linker flags are supplied in the output variable
3002 @code{FLIBS} by the @code{AC_F77_LIBRARY_LDFLAGS} Autoconf macro
3003 supplied with newer versions of Autoconf (Autoconf version 2.13 and
3004 later).  @xref{Fortran 77 Compiler Characteristics, , , autoconf, The
3005 Autoconf}.
3006 @end enumerate
3008 If Automake detects that a program or shared library (as mentioned in
3009 some @code{_PROGRAMS} or @code{_LTLIBRARIES} primary) contains source
3010 code that is a mixture of Fortran 77 and C and/or C++, then it requires
3011 that the macro @code{AC_F77_LIBRARY_LDFLAGS} be called in
3012 @file{configure.in}, and that either @code{$(FLIBS)} or @code{@@FLIBS@@}
3013 appear in the appropriate @code{_LDADD} (for programs) or @code{_LIBADD}
3014 (for shared libraries) variables.  It is the responsibility of the
3015 person writing the @file{Makefile.am} to make sure that @code{$(FLIBS)}
3016 or @code{@@FLIBS@@} appears in the appropriate @code{_LDADD} or
3017 @code{_LIBADD} variable.
3019 @cindex Mixed language example
3020 @cindex Example, mixed language
3022 For example, consider the following @file{Makefile.am}:
3024 @example
3025 bin_PROGRAMS = foo
3026 foo_SOURCES  = main.cc foo.f
3027 foo_LDADD    = libfoo.la @@FLIBS@@
3029 pkglib_LTLIBRARIES = libfoo.la
3030 libfoo_la_SOURCES  = bar.f baz.c zardoz.cc
3031 libfoo_la_LIBADD   = $(FLIBS)
3032 @end example
3034 In this case, Automake will insist that @code{AC_F77_LIBRARY_LDFLAGS}
3035 is mentioned in @file{configure.in}.  Also, if @code{@@FLIBS@@} hadn't
3036 been mentioned in @code{foo_LDADD} and @code{libfoo_la_LIBADD}, then
3037 Automake would have issued a warning.
3040 @page
3041 @menu
3042 * How the Linker is Chosen::
3043 @end menu
3045 @node How the Linker is Chosen,  , Mixing Fortran 77 With C and C++, Mixing Fortran 77 With C and C++
3046 @comment  node-name,  next,  previous,  up
3047 @subsubsection How the Linker is Chosen
3049 @cindex Automatic linker selection
3050 @cindex Selecting the linker automatically
3052 The following diagram demonstrates under what conditions a particular
3053 linker is chosen by Automake.
3055 For example, if Fortran 77, C and C++ source code were to be compiled
3056 into a program, then the C++ linker will be used.  In this case, if the
3057 C or Fortran 77 linkers required any special libraries that weren't
3058 included by the C++ linker, then they must be manually added to an
3059 @code{_LDADD} or @code{_LIBADD} variable by the user writing the
3060 @file{Makefile.am}.
3062 @example
3063                      \              Linker
3064           source      \
3065            code        \     C        C++     Fortran
3066      -----------------  +---------+---------+---------+
3067                         |         |         |         |
3068      C                  |    x    |         |         |
3069                         |         |         |         |
3070                         +---------+---------+---------+
3071                         |         |         |         |
3072          C++            |         |    x    |         |
3073                         |         |         |         |
3074                         +---------+---------+---------+
3075                         |         |         |         |
3076                Fortran  |         |         |    x    |
3077                         |         |         |         |
3078                         +---------+---------+---------+
3079                         |         |         |         |
3080      C + C++            |         |    x    |         |
3081                         |         |         |         |
3082                         +---------+---------+---------+
3083                         |         |         |         |
3084      C +       Fortran  |         |         |    x    |
3085                         |         |         |         |
3086                         +---------+---------+---------+
3087                         |         |         |         |
3088          C++ + Fortran  |         |    x    |         |
3089                         |         |         |         |
3090                         +---------+---------+---------+
3091                         |         |         |         |
3092      C + C++ + Fortran  |         |    x    |         |
3093                         |         |         |         |
3094                         +---------+---------+---------+
3095 @end example
3098 @node Fortran 77 and Autoconf,  , Mixing Fortran 77 With C and C++, Fortran 77 Support
3099 @comment  node-name,  next,  previous,  up
3100 @subsection Fortran 77 and Autoconf
3102 The current Automake support for Fortran 77 requires a recent enough
3103 version of Autoconf that also includes support for Fortran 77.  Full
3104 Fortran 77 support was added to Autoconf 2.13, so you will want to use
3105 that version of Autoconf or later.
3108 @node Java Support, Support for Other Languages, Fortran 77 Support, Programs
3109 @comment  node-name,  next,  previous,  up
3110 @section Java Support
3112 @cindex Java support
3113 @cindex Support for Java
3115 Automake includes support for compiled Java, using @code{gcj}, the Java
3116 front end to the GNU Compiler Collection.
3118 Any package including Java code to be compiled must define the output
3119 variable @samp{GCJ} in @file{configure.in}; the variable @samp{GCJFLAGS}
3120 must also be defined somehow (either in @file{configure.in} or
3121 @file{Makefile.am}).  The simplest way to do this is to use the
3122 @code{AM_PROG_GCJ} macro.
3124 @vindex GCJFLAGS
3126 By default, programs including Java source files are linked with
3127 @code{gcj}.
3129 As always, the contents of @samp{AM_GCJFLAGS} are passed to every
3130 compilation invoking @code{gcj} (in its role as an ahead-of-time
3131 compiler -- when invoking it to create @file{.class} files,
3132 @samp{AM_JAVACFLAGS} is used instead).  If it is necessary to pass
3133 options to @code{gcj} from @file{Makefile.am}, this variable, and not
3134 the user variable @samp{GCJFLAGS}, should be used.
3136 @vindex AM_GCJFLAGS
3138 @code{gcj} can be used to compile @file{.java}, @file{.class},
3139 @file{.zip}, or @file{.jar} files.
3141 When linking, @code{gcj} requires that the main class be specified
3142 using the @samp{--main=} option.  The easiest way to do this is to use
3143 the @code{_LDFLAGS} variable for the program.
3146 @node Support for Other Languages, ANSI, Java Support, Programs
3147 @comment  node-name,  next,  previous,  up
3148 @section Support for Other Languages
3150 Automake currently only includes full support for C, C++ (@pxref{C++
3151 Support}), Fortran 77 (@pxref{Fortran 77 Support}), and Java
3152 (@pxref{Java Support}).  There is only rudimentary support for other
3153 languages, support for which will be improved based on user demand.
3155 Some limited support for adding your own languages is available via the
3156 suffix rule handling; see @ref{Suffixes}.
3159 @node ANSI, Dependencies, Support for Other Languages, Programs
3160 @section Automatic de-ANSI-fication
3162 @cindex de-ANSI-fication, defined
3164 Although the GNU standards allow the use of ANSI C, this can have the
3165 effect of limiting portability of a package to some older compilers
3166 (notably the SunOS C compiler).
3168 Automake allows you to work around this problem on such machines by
3169 @dfn{de-ANSI-fying} each source file before the actual compilation takes
3170 place.
3172 @vindex AUTOMAKE_OPTIONS
3173 @opindex ansi2knr
3175 If the @file{Makefile.am} variable @code{AUTOMAKE_OPTIONS}
3176 (@pxref{Options}) contains the option @code{ansi2knr} then code to
3177 handle de-ANSI-fication is inserted into the generated
3178 @file{Makefile.in}.
3180 This causes each C source file in the directory to be treated as ANSI C@.
3181 If an ANSI C compiler is available, it is used.  If no ANSI C compiler
3182 is available, the @code{ansi2knr} program is used to convert the source
3183 files into K&R C, which is then compiled.
3185 The @code{ansi2knr} program is simple-minded.  It assumes the source
3186 code will be formatted in a particular way; see the @code{ansi2knr} man
3187 page for details.
3189 Support for de-ANSI-fication requires the source files @file{ansi2knr.c}
3190 and @file{ansi2knr.1} to be in the same package as the ANSI C source;
3191 these files are distributed with Automake.  Also, the package
3192 @file{configure.in} must call the macro @code{AM_C_PROTOTYPES}
3193 (@pxref{Macros}).
3194 @cvindex AM_C_PROTOTYPES
3196 Automake also handles finding the @code{ansi2knr} support files in some
3197 other directory in the current package.  This is done by prepending the
3198 relative path to the appropriate directory to the @code{ansi2knr}
3199 option.  For instance, suppose the package has ANSI C code in the
3200 @file{src} and @file{lib} subdirs.  The files @file{ansi2knr.c} and
3201 @file{ansi2knr.1} appear in @file{lib}.  Then this could appear in
3202 @file{src/Makefile.am}:
3204 @example
3205 AUTOMAKE_OPTIONS = ../lib/ansi2knr
3206 @end example
3208 If no directory prefix is given, the files are assumed to be in the
3209 current directory.
3211 Files mentioned in @code{LIBOBJS} which need de-ANSI-fication will not
3212 be automatically handled.  That's because @code{configure} will generate
3213 an object name like @file{regex.o}, while @code{make} will be looking
3214 for @file{regex_.o} (when de-ANSI-fying).  Eventually this problem will
3215 be fixed via @code{autoconf} magic, but for now you must put this code
3216 into your @file{configure.in}, just before the @code{AC_OUTPUT} call:
3218 @example
3219 # This is necessary so that .o files in LIBOBJS are also built via
3220 # the ANSI2KNR-filtering rules.
3221 LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'`
3222 @end example
3223 @c FIXME: Ask Akim how this should be handled in the upcoming Autoconf.
3225 Note that automatic de-ANSI-fication will not work when the package is
3226 being built for a different host architecture.  That is because automake
3227 currently has no way to build @code{ansi2knr} for the build machine.
3230 @node Dependencies, EXEEXT, ANSI, Programs
3231 @section Automatic dependency tracking
3233 As a developer it is often painful to continually update the
3234 @file{Makefile.in} whenever the include-file dependencies change in a
3235 project.  Automake supplies a way to automatically track dependency
3236 changes.
3238 @cindex Dependency tracking
3239 @cindex Automatic dependency tracking
3241 Automake always uses complete dependencies for a compilation, including
3242 system headers.  Automake's model is that dependency computation should
3243 be a side effect of the build.  To this end, dependencies are computed
3244 by running all compilations through a special wrapper program called
3245 @code{depcomp}.  @code{depcomp} understands how to coax many different C
3246 and C++ compilers into generating dependency information in the format
3247 it requires.  @code{automake -a} will install @code{depcomp} into your
3248 source tree for you.  If @code{depcomp} can't figure out how to properly
3249 invoke your compiler, dependency tracking will simply be disabled for
3250 your build.
3252 @cindex depcomp
3254 Experience with earlier versions of Automake @footnote{See
3255 @uref{http://sources.redhat.com/automake/dependencies.html} for more
3256 information on the history and experiences with automatic dependency
3257 tracking in Automake} taught us that it is not reliable to generate
3258 dependencies only on the maintainer's system, as configurations vary too
3259 much.  So instead Automake implements dependency tracking at build time.
3261 Automatic dependency tracking can be suppressed by putting
3262 @code{no-dependencies} in the variable @code{AUTOMAKE_OPTIONS}, or
3263 passing @code{no-dependencies} as an argument to @code{AM_INIT_AUTOMAKE}
3264 (this should be the prefered way).  Or, you can invoke @code{automake}
3265 with the @code{-i} option.  Dependency tracking is enabled by default.
3267 @vindex AUTOMAKE_OPTIONS
3268 @opindex no-dependencies
3270 The person building your package also can choose to disable dependency
3271 tracking by configuring with @code{--disable-dependency-tracking}.
3273 @cindex Disabling dependency tracking
3274 @cindex Dependency tracking, disabling
3277 @node EXEEXT,  , Dependencies, Programs
3278 @section Support for executable extensions
3280 @cindex Executable extension
3281 @cindex Extension, executable
3282 @cindex Windows
3284 On some platforms, such as Windows, executables are expected to have an
3285 extension such as @samp{.exe}.  On these platforms, some compilers (GCC
3286 among them) will automatically generate @file{foo.exe} when asked to
3287 generate @file{foo}.
3289 Automake provides mostly-transparent support for this.  Unfortunately
3290 @emph{mostly} doesn't yet mean @emph{fully}.  Until the English
3291 dictionary is revised, you will have to assist Automake if your package
3292 must support those platforms.
3294 One thing you must be aware of is that, internally, Automake rewrites
3295 something like this:
3297 @example
3298 bin_PROGRAMS = liver
3299 @end example
3301 to this:
3303 @example
3304 bin_PROGRAMS = liver$(EXEEXT)
3305 @end example
3307 The targets Automake generates are likewise given the @samp{$(EXEEXT)}
3308 extension.  @code{EXEEXT}
3310 However, Automake cannot apply this rewriting to @code{configure}
3311 substitutions.  This means that if you are conditionally building a
3312 program using such a substitution, then your @file{configure.in} must
3313 take care to add @samp{$(EXEEXT)} when constructing the output variable.
3315 With Autoconf 2.13 and earlier, you must explicitly use @code{AC_EXEEXT}
3316 to get this support.  With Autoconf 2.50, @code{AC_EXEEXT} is run
3317 automatically if you configure a compiler (say, through
3318 @code{AC_PROG_CC}).
3320 Sometimes maintainers like to write an explicit link rule for their
3321 program.  Without executable extension support, this is easy---you
3322 simply write a target with the same name as the program.  However, when
3323 executable extension support is enabled, you must instead add the
3324 @samp{$(EXEEXT)} suffix.
3326 Unfortunately, due to the change in Autoconf 2.50, this means you must
3327 always add this extension.  However, this is a problem for maintainers
3328 who know their package will never run on a platform that has executable
3329 extensions.  For those maintainers, the @code{no-exeext} option
3330 (@pxref{Options}) will disable this feature.  This works in a fairly
3331 ugly way; if @code{no-exeext} is seen, then the presence of a target
3332 named @code{foo} in @file{Makefile.am} will override an
3333 automake-generated target of the form @code{foo$(EXEEXT)}.  Without the
3334 @code{no-exeext} option, this use will give an error.
3337 @node Other objects, Other GNU Tools, Programs, Top
3338 @chapter Other Derived Objects
3340 Automake can handle derived objects which are not C programs.  Sometimes
3341 the support for actually building such objects must be explicitly
3342 supplied, but Automake will still automatically handle installation and
3343 distribution.
3345 @menu
3346 * Scripts::                     Executable scripts
3347 * Headers::                     Header files
3348 * Data::                        Architecture-independent data files
3349 * Sources::                     Derived sources
3350 @end menu
3353 @node Scripts, Headers, Other objects, Other objects
3354 @section Executable Scripts
3356 @cindex _SCRIPTS primary, defined
3357 @cindex SCRIPTS primary, defined
3358 @cindex Primary variable, SCRIPTS
3360 It is possible to define and install programs which are scripts.  Such
3361 programs are listed using the @samp{SCRIPTS} primary name.  Automake
3362 doesn't define any dependencies for scripts; the @file{Makefile.am}
3363 should include the appropriate rules.
3364 @vindex SCRIPTS
3366 Automake does not assume that scripts are derived objects; such objects
3367 must be deleted by hand (@pxref{Clean}).
3369 The @code{automake} program itself is a Perl script that is generated at
3370 configure time from @file{automake.in}.  Here is how this is handled:
3372 @example
3373 bin_SCRIPTS = automake
3374 @end example
3376 Since @code{automake} appears in the @code{AC_OUTPUT} macro, a target
3377 for it is automatically generated, and it is also automatically cleaned
3378 (despite the fact it's a script).
3380 @cindex SCRIPTS, installation directories
3381 @cindex Installing scripts
3383 @vindex bin_SCRIPTS
3384 @vindex sbin_SCRIPTS
3385 @vindex libexec_SCRIPTS
3386 @vindex pkgdata_SCRIPTS
3387 @vindex noinst_SCRIPTS
3388 @vindex check_SCRIPTS
3390 Script objects can be installed in @code{bindir}, @code{sbindir},
3391 @code{libexecdir}, or @code{pkgdatadir}.
3393 Scripts that need not being installed can be listed in
3394 @code{noinst_SCRIPTS}, and among them, those which are needed only by
3395 @code{make check} should go in @code{check_SCRIPTS}.
3398 @node Headers, Data, Scripts, Other objects
3399 @section Header files
3401 @cindex _HEADERS primary, defined
3402 @cindex HEADERS primary, defined
3403 @cindex Primary variable, HEADERS
3405 @vindex noinst_HEADERS
3407 Header files are specified by the @samp{HEADERS} family of variables.
3408 Generally header files are not installed, so the @code{noinst_HEADERS}
3409 variable will be the most used.  @footnote{However, for the case of a
3410 non-installed header file that is actually used by a particular program,
3411 we recommend listing it in the program's @samp{_SOURCES} variable
3412 instead of in @code{noinst_HEADERS}.  We believe this is more clear.}
3413 @vindex HEADERS
3415 All header files must be listed somewhere; missing ones will not appear
3416 in the distribution.  Often it is clearest to list uninstalled headers
3417 with the rest of the sources for a program.  @xref{A Program}.  Headers
3418 listed in a @samp{_SOURCES} variable need not be listed in any
3419 @samp{_HEADERS} variable.
3421 @cindex HEADERS, installation directories
3422 @cindex Installing headers
3424 @vindex include_HEADERS
3425 @vindex oldinclude_HEADERS
3426 @vindex pkginclude_HEADERS
3428 Headers can be installed in @code{includedir}, @code{oldincludedir}, or
3429 @code{pkgincludedir}.
3432 @node Data, Sources, Headers, Other objects
3433 @section Architecture-independent data files
3435 @cindex _DATA primary, defined
3436 @cindex DATA primary, defined
3437 @cindex Primary variable, DATA
3439 Automake supports the installation of miscellaneous data files using the
3440 @samp{DATA} family of variables.
3441 @vindex DATA
3443 @vindex data_DATA
3444 @vindex sysconf_DATA
3445 @vindex sharedstate_DATA
3446 @vindex localstate_DATA
3447 @vindex pkgdata_DATA
3449 Such data can be installed in the directories @code{datadir},
3450 @code{sysconfdir}, @code{sharedstatedir}, @code{localstatedir}, or
3451 @code{pkgdatadir}.
3453 By default, data files are @emph{not} included in a distribution.  Of
3454 course, you can use the @samp{dist_} prefix to change this on a
3455 per-variable basis.
3457 Here is how Automake declares its auxiliary data files:
3459 @example
3460 dist_pkgdata_DATA = clean-kr.am clean.am @dots{}
3461 @end example
3464 @node Sources,  , Data, Other objects
3465 @section Built sources
3467 @cindex BUILT_SOURCES, defined
3469 Occasionally a file which would otherwise be called @samp{source}
3470 (e.g. a C @samp{.h} file) is actually derived from some other file.
3471 Such files should be listed in the @code{BUILT_SOURCES} variable.
3472 @vindex BUILT_SOURCES
3474 @code{BUILT_SOURCES} is actually a bit of a misnomer, as any file which
3475 must be created early in the build process can be listed in this
3476 variable.
3478 A source file listed in @code{BUILT_SOURCES} is created before the other
3479 @code{all} targets are made.  However, such a source file is not
3480 compiled unless explicitly requested by mentioning it in some other
3481 @samp{_SOURCES} variable.
3483 So, for instance, if you had header files which were created by a script
3484 run at build time, then you would list these headers in
3485 @code{BUILT_SOURCES}, to ensure that they would be built before any
3486 other compilations (perhaps ones using these headers) were started.
3489 @node Other GNU Tools, Documentation, Other objects, Top
3490 @chapter Other GNU Tools
3492 Since Automake is primarily intended to generate @file{Makefile.in}s for
3493 use in GNU programs, it tries hard to interoperate with other GNU tools.
3495 @menu
3496 * Emacs Lisp::                  Emacs Lisp
3497 * gettext::                     Gettext
3498 * Libtool::                     Libtool
3499 * Java::                        Java
3500 * Python::                      Python
3501 @end menu
3504 @node Emacs Lisp, gettext, Other GNU Tools, Other GNU Tools
3505 @section Emacs Lisp
3507 @cindex _LISP primary, defined
3508 @cindex LISP primary, defined
3509 @cindex Primary variable, LISP
3511 @vindex LISP
3512 @vindex lisp_LISP
3513 @vindex noinst_LISP
3515 Automake provides some support for Emacs Lisp.  The @samp{LISP} primary
3516 is used to hold a list of @file{.el} files.  Possible prefixes for this
3517 primary are @samp{lisp_} and @samp{noinst_}.  Note that if
3518 @code{lisp_LISP} is defined, then @file{configure.in} must run
3519 @code{AM_PATH_LISPDIR} (@pxref{Macros}).
3521 @vindex ELCFILES
3523 By default Automake will byte-compile all Emacs Lisp source files using
3524 the Emacs found by @code{AM_PATH_LISPDIR}.  If you wish to avoid
3525 byte-compiling, simply define the variable @code{ELCFILES} to be empty.
3526 Byte-compiled Emacs Lisp files are not portable among all versions of
3527 Emacs, so it makes sense to turn this off if you expect sites to have
3528 more than one version of Emacs installed.  Furthermore, many packages
3529 don't actually benefit from byte-compilation.  Still, we recommend that
3530 you leave it enabled by default.  It is probably better for sites with
3531 strange setups to cope for themselves than to make the installation less
3532 nice for everybody else.
3535 @node gettext, Libtool, Emacs Lisp, Other GNU Tools
3536 @section Gettext
3538 @cindex GNU Gettext support
3539 @cindex Gettext support
3540 @cindex Support for GNU Gettext
3542 If @code{AM_GNU_GETTEXT} is seen in @file{configure.in}, then Automake
3543 turns on support for GNU gettext, a message catalog system for
3544 internationalization
3545 (@pxref{GNU Gettext, , , gettext, GNU gettext utilities}).
3547 The @code{gettext} support in Automake requires the addition of two
3548 subdirectories to the package, @file{intl} and @file{po}.  Automake
3549 insures that these directories exist and are mentioned in
3550 @code{SUBDIRS}.
3553 @node Libtool, Java, gettext, Other GNU Tools
3554 @section Libtool
3556 Automake provides support for GNU Libtool (@pxref{Top, , Introduction,
3557 libtool, The Libtool Manual}) with the @samp{LTLIBRARIES} primary.
3558 @xref{A Shared Library}.
3561 @node Java, Python, Libtool, Other GNU Tools
3562 @section Java
3564 @cindex _JAVA primary, defined
3565 @cindex JAVA primary, defined
3566 @cindex Primary variable, JAVA
3568 Automake provides some minimal support for Java compilation with the
3569 @samp{JAVA} primary.
3571 Any @file{.java} files listed in a @samp{_JAVA} variable will be
3572 compiled with @code{JAVAC} at build time.  By default, @file{.class}
3573 files are not included in the distribution.
3575 @cindex JAVA restrictions
3576 @cindex Restrictions for JAVA
3578 Currently Automake enforces the restriction that only one @samp{_JAVA}
3579 primary can be used in a given @file{Makefile.am}.  The reason for this
3580 restriction is that, in general, it isn't possible to know which
3581 @file{.class} files were generated from which @file{.java} files -- so
3582 it would be impossible to know which files to install where.  For
3583 instance, a @file{.java} file can define multiple classes; the resulting
3584 @file{.class} file names cannot be predicted without parsing the
3585 @file{.java} file.
3587 There are a few variables which are used when compiling Java sources:
3589 @vtable @code
3590 @item JAVAC
3591 The name of the Java compiler.  This defaults to @samp{javac}.
3593 @item JAVACFLAGS
3594 The flags to pass to the compiler.  This is considered to be a user
3595 variable (@pxref{User Variables}).
3597 @item AM_JAVACFLAGS
3598 More flags to pass to the Java compiler.  This, and not
3599 @code{JAVACFLAGS}, should be used when it is necessary to put Java
3600 compiler flags into @file{Makefile.am}.
3602 @item JAVAROOT
3603 The value of this variable is passed to the @samp{-d} option to
3604 @code{javac}.  It defaults to @samp{$(top_builddir)}.
3606 @item CLASSPATH_ENV
3607 This variable is an @code{sh} expression which is used to set the
3608 @code{CLASSPATH} environment variable on the @code{javac} command line.
3609 (In the future we will probably handle class path setting differently.)
3610 @end vtable
3613 @node Python,  , Java, Other GNU Tools
3614 @section Python
3616 @cindex _PYTHON primary, defined
3617 @cindex PYTHON primary, defined
3618 @cindex Primary variable, PYTHON
3621 Automake provides support for Python compilation with the @samp{PYTHON}
3622 primary.
3624 Any files listed in a @samp{_PYTHON} variable will be byte-compiled with
3625 @code{py-compile} at install time.  @code{py-compile} actually creates
3626 both standard (@file{.pyc}) and byte-compiled (@file{.pyo}) versions of
3627 the source files.  Note that because byte-compilation occurs at install
3628 time, any files listed in @samp{noinst_PYTHON} will not be compiled.
3629 Python source files are included in the distribution by default.
3631 Automake ships with an Autoconf macro called @code{AM_PATH_PYTHON} which
3632 will determine some Python-related directory variables (see below).  If
3633 you have called @code{AM_PATH_PYTHON} from @file{configure.in}, then you
3634 may use the following variables to list you Python source files in your
3635 variables: @samp{python_PYTHON}, @samp{pkgpython_PYTHON},
3636 @samp{pyexecdir_PYTHON}, @samp{pkgpyexecdir_PYTHON}, depending where you
3637 want your files installed.
3639 @code{AM_PATH_PYTHON} takes a single optional argument.  This argument,
3640 if present, is the minimum version of Python which can be used for this
3641 package.  If the version of Python found on the system is older than the
3642 required version, then @code{AM_PATH_PYTHON} will cause an error.
3644 @code{AM_PATH_PYTHON} creates several output variables based on the
3645 Python installation found during configuration.
3647 @vtable @code
3648 @item PYTHON
3649 The name of the Python executable.
3651 @item PYTHON_VERSION
3652 The Python version number, in the form @var{major}.@var{minor}
3653 (e.g. @samp{1.5}).  This is currently the value of
3654 @code{sys.version[:3]}.
3656 @item PYTHON_PREFIX
3657 The string @code{$prefix}.  This term may be used in future work
3658 which needs the contents of Python's @code{sys.prefix}, but general
3659 consensus is to always use the value from configure.
3661 @item PYTHON_EXEC_PREFIX
3662 The string @code{$exec_prefix}.  This term may be used in future work
3663 which needs the contents of Python's @code{sys.exec_prefix}, but general
3664 consensus is to always use the value from configure.
3666 @item PYTHON_PLATFORM
3667 The canonical name used by Python to describe the operating system, as
3668 given by @code{sys.platform}.  This value is sometimes needed when
3669 building Python extensions.
3671 @item pythondir
3672 The directory name for the @file{site-packages} subdirectory of the
3673 standard Python install tree.
3675 @item pkgpythondir
3676 This is is the directory under @code{pythondir} which is named after the
3677 package.  That is, it is @samp{$(pythondir)/$(PACKAGE)}.  It is provided
3678 as a convenience.
3680 @item pyexecdir
3681 This is the directory where Python extension modules (shared libraries)
3682 should be installed.
3684 @item pkgpyexecdir
3685 This is a convenience variable which is defined as
3686 @samp{$(pyexecdir)/$(PACKAGE)}.
3687 @end vtable
3690 @node Documentation, Install, Other GNU Tools, Top
3691 @chapter Building documentation
3693 Currently Automake provides support for Texinfo and man pages.
3695 @menu
3696 * Texinfo::                     Texinfo
3697 * Man pages::                   Man pages
3698 @end menu
3701 @node Texinfo, Man pages, Documentation, Documentation
3702 @section Texinfo
3704 @cindex _TEXINFOS primary, defined
3705 @cindex TEXINFOS primary, defined
3706 @cindex Primary variable, TEXINFOS
3708 If the current directory contains Texinfo source, you must declare it
3709 with the @samp{TEXINFOS} primary.  Generally Texinfo files are converted
3710 into info, and thus the @code{info_TEXINFOS} variable is most commonly used
3711 here.  Any Texinfo source file must end in the @file{.texi},
3712 @file{.txi}, or @file{.texinfo} extension.  We recommend @file{.texi}
3713 for new manuals.
3714 @vindex TEXINFOS
3715 @vindex info_TEXINFOS
3717 Automake generates rules to build @file{.info}, @file{.dvi}, @file{.ps},
3718 and @file{.pdf} files from your Texinfo sources.  The @file{.info} files
3719 are built by @code{make all} and installed by @code{make install}
3720 (unless you use @code{no-installinfo}, see below).  The other files can
3721 be built on request by @code{make dvi}, @code{make ps}, and @code{make
3722 pdf}.
3724 @cindex Texinfo flag, VERSION
3725 @cindex Texinfo flag, UPDATED
3726 @cindex Texinfo flag, EDITION
3727 @cindex Texinfo flag, UPDATED-MONTH
3729 @cindex VERSION Texinfo flag
3730 @cindex UPDATED Texinfo flag
3731 @cindex EDITION Texinfo flag
3732 @cindex UPDATED-MONTH Texinfo flag
3734 @cindex mdate-sh
3736 If the @file{.texi} file @code{@@include}s @file{version.texi}, then
3737 that file will be automatically generated.  The file @file{version.texi}
3738 defines four Texinfo flag you can reference using
3739 @code{@@value@{EDITION@}}, @code{@@value@{VERSION@}},
3740 @code{@@value@{UPDATED@}}, and @code{@@value@{UPDATED-MONTH@}}.
3742 @table @code
3743 @item EDITION
3744 @itemx VERSION
3745 Both of these flags hold the version number of your program.  They are
3746 kept separate for clarity.
3748 @item UPDATED
3749 This holds the date the primary @file{.texi} file was last modified.
3751 @item UPDATED-MONTH
3752 This holds the name of the month in which the primary @file{.texi} file
3753 was last modified.
3754 @end table
3756 The @file{version.texi} support requires the @code{mdate-sh} program;
3757 this program is supplied with Automake and automatically included when
3758 @code{automake} is invoked with the @code{--add-missing} option.
3760 If you have multiple Texinfo files, and you want to use the
3761 @file{version.texi} feature, then you have to have a separate version
3762 file for each Texinfo file.  Automake will treat any include in a
3763 Texinfo file that matches @samp{vers*.texi} just as an automatically
3764 generated version file.
3766 When an info file is rebuilt, the program named by the @code{MAKEINFO}
3767 variable is used to invoke it.  If the @code{makeinfo} program is found
3768 on the system then it will be used by default; otherwise @code{missing}
3769 will be used instead.  The flags in the variables @code{MAKEINFOFLAGS}
3770 and @code{AM_MAKEINFOFLAGS} will be passed to the @code{makeinfo}
3771 invocation; the first of these is intended for use by the user
3772 (@pxref{User Variables}) and the second by the @file{Makefile.am}
3773 writer.
3774 @vindex MAKEINFO
3775 @vindex MAKEINFOFLAGS
3776 @vindex AM_MAKEINFOFLAGS
3778 Sometimes an info file actually depends on more than one @file{.texi}
3779 file.  For instance, in GNU Hello, @file{hello.texi} includes the file
3780 @file{gpl.texi}.  You can tell Automake about these dependencies using
3781 the @code{@var{texi}_TEXINFOS} variable.  Here is how GNU Hello does it:
3782 @vindex TEXINFOS
3783 @vindex _TEXINFOS
3785 @example
3786 info_TEXINFOS = hello.texi
3787 hello_TEXINFOS = gpl.texi
3788 @end example
3790 @cindex texinfo.tex
3792 By default, Automake requires the file @file{texinfo.tex} to appear in
3793 the same directory as the Texinfo source.  However, if you used
3794 @code{AC_CONFIG_AUX_DIR} in @file{configure.in} (@pxref{Input, , Finding
3795 `configure' Input, autoconf, The Autoconf Manual}), then
3796 @file{texinfo.tex} is looked for there.  Automake supplies
3797 @file{texinfo.tex} if @samp{--add-missing} is given.
3799 @vindex TEXINFO_TEX
3801 If your package has Texinfo files in many directories, you can use the
3802 variable @code{TEXINFO_TEX} to tell Automake where to find the canonical
3803 @file{texinfo.tex} for your package.  The value of this variable should
3804 be the relative path from the current @file{Makefile.am} to
3805 @file{texinfo.tex}:
3807 @example
3808 TEXINFO_TEX = ../doc/texinfo.tex
3809 @end example
3811 @opindex no-texinfo.tex
3813 The option @samp{no-texinfo.tex} can be used to eliminate the
3814 requirement for @file{texinfo.tex}.  Use of the variable
3815 @code{TEXINFO_TEX} is preferable, however, because that allows the
3816 @code{dvi}, @code{ps}, and @code{pdf} targets to still work.
3818 @cindex Target, install-info
3819 @cindex Target, noinstall-info
3820 @cindex install-info target
3821 @cindex noinstall-info target
3823 @opindex no-installinfo
3824 @trindex install-info
3826 Automake generates an @code{install-info} target; some people apparently
3827 use this.  By default, info pages are installed by @samp{make install}.
3828 This can be prevented via the @code{no-installinfo} option.
3831 @node Man pages,  , Texinfo, Documentation
3832 @section Man pages
3834 @cindex _MANS primary, defined
3835 @cindex MANS primary, defined
3836 @cindex Primary variable, MANS
3838 A package can also include man pages (but see the GNU standards on this
3839 matter, @ref{Man Pages, , , standards, The GNU Coding Standards}.)  Man
3840 pages are declared using the @samp{MANS} primary.  Generally the
3841 @code{man_MANS} variable is used.  Man pages are automatically installed in
3842 the correct subdirectory of @code{mandir}, based on the file extension.
3843 @vindex MANS
3844 @vindex man_MANS
3846 File extensions such as @samp{.1c} are handled by looking for the valid
3847 part of the extension and using that to determine the correct
3848 subdirectory of @code{mandir}.  Valid section names are the digits
3849 @samp{0} through @samp{9}, and the letters @samp{l} and @samp{n}.
3851 Sometimes developers prefer to name a man page something like
3852 @file{foo.man} in the source, and then rename it to have the correct
3853 suffix, e.g. @file{foo.1}, when installing the file.  Automake also
3854 supports this mode.  For a valid section named @var{SECTION}, there is a
3855 corresponding directory named @samp{man@var{SECTION}dir}, and a
3856 corresponding @samp{_MANS} variable.  Files listed in such a variable
3857 are installed in the indicated section.  If the file already has a
3858 valid suffix, then it is installed as-is; otherwise the file suffix is
3859 changed to match the section.
3861 For instance, consider this example:
3862 @example
3863 man1_MANS = rename.man thesame.1 alsothesame.1c
3864 @end example
3866 In this case, @file{rename.man} will be renamed to @file{rename.1} when
3867 installed, but the other files will keep their names.
3869 @cindex Target, install-man
3870 @cindex Target, noinstall-man
3871 @cindex install-man target
3872 @cindex noinstall-man target
3874 @c Use @samp{make install} per documentation: (texi)code.
3875 By default, man pages are installed by @samp{make install}.  However,
3876 since the GNU project does not require man pages, many maintainers do
3877 not expend effort to keep the man pages up to date.  In these cases, the
3878 @code{no-installman} option will prevent the man pages from being
3879 installed by default.  The user can still explicitly install them via
3880 @samp{make install-man}.
3881 @opindex no-installman
3882 @trindex install-man
3884 Here is how the man pages are handled in GNU @code{cpio} (which includes
3885 both Texinfo documentation and man pages):
3887 @example
3888 man_MANS = cpio.1 mt.1
3889 EXTRA_DIST = $(man_MANS)
3890 @end example
3892 Man pages are not currently considered to be source, because it is not
3893 uncommon for man pages to be automatically generated.  Therefore they
3894 are not automatically included in the distribution.  However, this can
3895 be changed by use of the @samp{dist_} prefix.
3897 The @samp{nobase_} prefix is meaningless for man pages and is
3898 disallowed.
3901 @node Install, Clean, Documentation, Top
3902 @chapter What Gets Installed
3904 @cindex Installation support
3905 @cindex make install support
3907 @section Basics of installation
3909 Naturally, Automake handles the details of actually installing your
3910 program once it has been built.  All files named by the various
3911 primaries are automatically installed in the appropriate places when the
3912 user runs @code{make install}.
3914 A file named in a primary is installed by copying the built file into
3915 the appropriate directory.  The base name of the file is used when
3916 installing.
3918 @example
3919 bin_PROGRAMS = hello subdir/goodbye
3920 @end example
3922 In this example, both @samp{hello} and @samp{goodbye} will be installed
3923 in @code{$(bindir)}.
3925 Sometimes it is useful to avoid the basename step at install time.  For
3926 instance, you might have a number of header files in subdirectories of
3927 the source tree which are laid out precisely how you want to install
3928 them.  In this situation you can use the @samp{nobase_} prefix to
3929 suppress the base name step.  For example:
3931 @example
3932 nobase_include_HEADERS = stdio.h sys/types.h
3933 @end example
3935 Will install @file{stdio.h} in @code{$(includedir)} and @file{types.h}
3936 in @code{$(includedir)/sys}.
3938 @section The two parts of install
3940 Automake generates separate @code{install-data} and @code{install-exec}
3941 targets, in case the installer is installing on multiple machines which
3942 share directory structure---these targets allow the machine-independent
3943 parts to be installed only once.  @code{install-exec} installs
3944 platform-dependent files, and @code{install-data} installs
3945 platform-independent files.  The @code{install} target depends on both
3946 of these targets.  While Automake tries to automatically segregate
3947 objects into the correct category, the @file{Makefile.am} author is, in
3948 the end, responsible for making sure this is done correctly.
3949 @trindex install-data
3950 @trindex install-exec
3951 @trindex install
3952 @cindex Install, two parts of
3954 Variables using the standard directory prefixes @samp{data},
3955 @samp{info}, @samp{man}, @samp{include}, @samp{oldinclude},
3956 @samp{pkgdata}, or @samp{pkginclude} (e.g. @samp{data_DATA}) are
3957 installed by @samp{install-data}.
3959 Variables using the standard directory prefixes @samp{bin}, @samp{sbin},
3960 @samp{libexec}, @samp{sysconf}, @samp{localstate}, @samp{lib}, or
3961 @samp{pkglib} (e.g. @samp{bin_PROGRAMS}) are installed by
3962 @samp{install-exec}.
3964 Any variable using a user-defined directory prefix with @samp{exec} in
3965 the name (e.g. @samp{myexecbin_PROGRAMS} is installed by
3966 @samp{install-exec}.  All other user-defined prefixes are installed by
3967 @samp{install-data}.
3969 @section Extending installation
3971 It is possible to extend this mechanism by defining an
3972 @code{install-exec-local} or @code{install-data-local} target.  If these
3973 targets exist, they will be run at @samp{make install} time.  These
3974 rules can do almost anything; care is required.
3975 @trindex install-exec-local
3976 @trindex install-data-local
3978 Automake also supports two install hooks, @code{install-exec-hook} and
3979 @code{install-data-hook}.  These hooks are run after all other install
3980 rules of the appropriate type, exec or data, have completed.  So, for
3981 instance, it is possible to perform post-installation modifications
3982 using an install hook.
3983 @cindex Install hook
3985 @section Staged installs
3987 @vindex DESTDIR
3988 Automake generates support for the @samp{DESTDIR} variable in all
3989 install rules.  @samp{DESTDIR} is used during the @samp{make install}
3990 step to relocate install objects into a staging area.  Each object and
3991 path is prefixed with the value of @samp{DESTDIR} before being copied
3992 into the install area.  Here is an example of typical DESTDIR usage:
3994 @example
3995 make DESTDIR=/tmp/staging install
3996 @end example
3998 This places install objects in a directory tree built under
3999 @file{/tmp/staging}.  If @file{/gnu/bin/foo} and
4000 @file{/gnu/share/aclocal/foo.m4} are to be installed, the above command
4001 would install @file{/tmp/staging/gnu/bin/foo} and
4002 @file{/tmp/staging/gnu/share/aclocal/foo.m4}.
4004 This feature is commonly used to build install images and packages.  For
4005 more information, see @ref{Makefile Conventions, , , standards, The GNU
4006 Coding Standards}.
4008 Support for @samp{DESTDIR} is implemented by coding it directly into the
4009 install rules.  If your @file{Makefile.am} uses a local install rule
4010 (e.g., @code{install-exec-local}) or an install hook, then you must
4011 write that code to respect @samp{DESTDIR}.
4013 @section Rules for the user
4015 Automake also generates an @code{uninstall} target, an
4016 @code{installdirs} target, and an @code{install-strip} target.
4017 @trindex uninstall
4018 @trindex installdirs
4019 @trindex install-strip
4021 Automake supports @code{uninstall-local} and @code{uninstall-hook}.
4022 There is no notion of separate uninstalls for ``exec'' and ``data'', as
4023 these features would not provide additional functionality.
4025 Note that @code{uninstall} is not meant as a replacement for a real
4026 packaging tool.
4029 @node Clean, Dist, Install, Top
4030 @chapter What Gets Cleaned
4032 @cindex make clean support
4034 The GNU Makefile Standards specify a number of different clean rules.
4035 See @xref{Standard Targets, , Standard Targets for Users, standards,
4036 The GNU Coding Standards}.
4038 Generally the files that can be cleaned are determined automatically by
4039 Automake.  Of course, Automake also recognizes some variables that can
4040 be defined to specify additional files to clean.  These variables are
4041 @code{MOSTLYCLEANFILES}, @code{CLEANFILES}, @code{DISTCLEANFILES}, and
4042 @code{MAINTAINERCLEANFILES}.
4043 @vindex MOSTLYCLEANFILES
4044 @vindex CLEANFILES
4045 @vindex DISTCLEANFILES
4046 @vindex MAINTAINERCLEANFILES
4048 As the GNU Standards aren't always explicit as to which files should be
4049 removed by which target, we've adopted a heuristic which we believe was
4050 first formulated by Fran@,{c}ois Pinard:
4052 @itemize @bullet
4053 @item
4054 If @code{make} built it, and it is commonly something that one would
4055 want to rebuild (for instance, a @file{.o} file), then
4056 @code{mostlyclean} should delete it.
4058 @item
4059 Otherwise, if @code{make} built it, then @code{clean} should delete it.
4061 @item
4062 If @code{configure} built it, then @code{distclean} should delete it
4064 @item
4065 If the maintainer built it, then @code{maintainer-clean} should
4066 delete it.
4067 @end itemize
4069 We recommend that you follow this same set of heuristics in your
4070 @file{Makefile.am}.
4073 @node Dist, Tests, Clean, Top
4074 @chapter What Goes in a Distribution
4076 @section Basics of distribution
4078 @cindex make dist
4080 The @code{dist} target in the generated @file{Makefile.in} can be used
4081 to generate a gzip'd @code{tar} file and other flavors of archive for
4082 distribution.  The files is named based on the @samp{PACKAGE} and
4083 @samp{VERSION} variables defined by @code{AM_INIT_AUTOMAKE}
4084 (@pxref{Macros}); more precisely the gzip'd @code{tar} file is named
4085 @samp{@var{package}-@var{version}.tar.gz}.
4086 @cvindex PACKAGE
4087 @cvindex VERSION
4088 @trindex dist
4089 You can use the @code{make} variable @samp{GZIP_ENV} to control how gzip
4090 is run.  The default setting is @samp{--best}.
4092 For the most part, the files to distribute are automatically found by
4093 Automake: all source files are automatically included in a distribution,
4094 as are all @file{Makefile.am}s and @file{Makefile.in}s.  Automake also
4095 has a built-in list of commonly used files which are automatically
4096 included if they are found in the current directory (either physically,
4097 or as the target of a @file{Makefile.am} rule).  This list is printed by
4098 @samp{automake --help}.  Also, files which are read by @code{configure}
4099 (i.e. the source files corresponding to the files specified in various
4100 Autoconf macros such as @code{AC_CONFIG_FILES} and siblings) are
4101 automatically distributed.  Files included in @file{Makefile.am}s (using
4102 @code{include}) or in @file{configure.in} (using @code{m4_include}) are
4103 also distributed.
4105 Still, sometimes there are files which must be distributed, but which
4106 are not covered in the automatic rules.  These files should be listed in
4107 the @code{EXTRA_DIST} variable.  You can mention files from
4108 subdirectories in @code{EXTRA_DIST}.
4110 You can also mention a directory in @code{EXTRA_DIST}; in this case the
4111 entire directory will be recursively copied into the distribution.
4112 Please note that this will also copy @emph{everything} in the directory,
4113 including CVS/RCS version control files.  We recommend against using
4114 this feature.
4116 @vindex EXTRA_DIST
4118 @section Fine-grained distribution control
4120 Sometimes you need tighter control over what does @emph{not} go into the
4121 distribution; for instance you might have source files which are
4122 generated and which you do not want to distribute.  In this case
4123 Automake gives fine-grained control using the @samp{dist} and
4124 @samp{nodist} prefixes.  Any primary or @samp{_SOURCES} variable can be
4125 prefixed with @samp{dist_} to add the listed files to the distribution.
4126 Similarly, @samp{nodist_} can be used to omit the files from the
4127 distribution.
4128 @vindex dist_
4129 @vindex nodist_
4131 As an example, here is how you would cause some data to be distributed
4132 while leaving some source code out of the distribution:
4134 @example
4135 dist_data_DATA = distribute-this
4136 bin_PROGRAMS = foo
4137 nodist_foo_SOURCES = do-not-distribute.c
4138 @end example
4140 @section The dist hook
4142 Another way to to use this is for removing unnecessary files that get
4143 recursively included by specifying a directory in EXTRA_DIST:
4145 @example
4146 EXTRA_DIST = doc
4148 dist-hook:
4149         rm -rf `find $(distdir)/doc -name CVS`
4150 @end example
4152 If you define @code{SUBDIRS}, Automake will recursively include the
4153 subdirectories in the distribution.  If @code{SUBDIRS} is defined
4154 conditionally (@pxref{Conditionals}), Automake will normally include all
4155 directories that could possibly appear in @code{SUBDIRS} in the
4156 distribution.  If you need to specify the set of directories
4157 conditionally, you can set the variable @code{DIST_SUBDIRS} to the exact
4158 list of subdirectories to include in the distribution.
4159 @vindex DIST_SUBDIRS
4161 @trindex dist-hook
4163 Occasionally it is useful to be able to change the distribution before
4164 it is packaged up.  If the @code{dist-hook} target exists, it is run
4165 after the distribution directory is filled, but before the actual tar
4166 (or shar) file is created.  One way to use this is for distributing
4167 files in subdirectories for which a new @file{Makefile.am} is overkill:
4169 @example
4170 dist-hook:
4171         mkdir $(distdir)/random
4172         cp -p $(srcdir)/random/a1 $(srcdir)/random/a2 $(distdir)/random
4173 @end example
4175 @section Checking the distribution
4177 @cindex make distcheck
4178 @cindex make distcleancheck
4179 @vindex distcleancheck_listfiles
4180 @cindex make distuninstallcheck
4181 @vindex distuninstallcheck_listfiles
4183 Automake also generates a @code{distcheck} target which can be of help
4184 to ensure that a given distribution will actually work.
4185 @code{distcheck} makes a distribution, then tries to do a @code{VPATH}
4186 build, run the testsuite, and finally make another tarfile to ensure the
4187 distribution is self-contained.
4188 @trindex distcheck
4190 Building the package involves running @code{./configure}.  If you need
4191 to supply additional flags to @code{configure}, define them in the
4192 @code{DISTCHECK_CONFIGURE_FLAGS} variable, either in your top-level
4193 @file{Makefile.am}, or on the command line when invoking @code{make}.
4194 @vindex DISTCHECK_CONFIGURE_FLAGS
4196 If the target @code{distcheck-hook} is defined in your
4197 @file{Makefile.am}, then it will be invoked by @code{distcheck} after
4198 the new distribution has been unpacked, but before the unpacked copy is
4199 configured and built.  Your @code{distcheck-hook} can do almost
4200 anything, though as always caution is advised.  Generally this hook is
4201 used to check for potential distribution errors not caught by the
4202 standard mechanism.
4204 Speaking about potential distribution errors, @code{distcheck} will also
4205 ensure that the @code{distclean} target actually removes all built
4206 files.  This is done by running @code{make distcleancheck} at the end of
4207 the @code{VPATH} build.  By default, @code{distcleancheck} will run
4208 @code{distclean} and then make sure the build tree has been emptied by
4209 running @code{$(distcleancheck_listfiles)}.  Usually this check will
4210 find generated files that you forgot to add to the @code{DISTCLEANFILES}
4211 variable (@pxref{Clean}).
4212 @trindex distcleancheck
4214 The @code{distcleancheck} behaviour should be ok for most packages,
4215 otherwise you have the possibility to override the definitition of
4216 either the @code{distcleancheck} target, or the
4217 @code{$(distcleancheck_listfiles)} variable.  For instance to disable
4218 @code{distcleancheck} completely, add the following rule to your
4219 top-level @file{Makefile.am}:
4220 @vindex distcleancheck_listfiles
4222 @example
4223 distcleancheck:
4224         @@:
4225 @end example
4227 If you want @code{distcleancheck} to ignore built files which have not
4228 been cleaned because they are also part of the distribution, add the
4229 following definition instead:
4231 @example
4232 distcleancheck_listfiles = \
4233   find -type f -exec sh -c 'test -f $(srcdir)/@{@} || echo @{@}' ';'
4234 @end example
4236 The above definition is not the default because it's usually an error if
4237 your Makefiles cause some distributed files to be rebuilt when the user
4238 build the package.  (Think about the user missing the tool required to
4239 build the file; or if the required tool is built by your package,
4240 consider the cross-compilation case where it can't be run.)
4242 @code{distcheck} also checks that the @code{uninstall} target works
4243 properly, both for ordinary and @samp{DESTDIR} builds.  It does this
4244 by invoking @code{make uninstall}, and then it checks the install tree
4245 to see if any files are left over.  This check will make sure that you
4246 correctly coded your @code{uninstall}-related targets.
4248 By default, the checking is done by the @code{distuninstallcheck} target,
4249 and the list of files in the install tree is generated by
4250 @code{$(distuninstallcheck_listfiles}) (this is a variable whose value is
4251 a shell command to run that prints the list of files to stdout).
4253 Either of these can be overridden to modify the behavior of
4254 @code{distcheck}.  For instance, to disable this check completely, you
4255 would write:
4257 @example
4258 distuninstallcheck:
4259         @@:
4260 @end example
4262 @section The types of distributions
4264 @trindex dist-gzip
4265 Automake generates a @samp{.tar.gz} file when asked to create a
4266 distribution and other archives formats, @ref{Options}.  The target
4267 @code{dist-gzip} generates the @samp{.tar.gz} file only.
4270 @node Tests, Options, Dist, Top
4271 @chapter Support for test suites
4273 @cindex Test suites
4274 @cindex make check
4276 Automake supports two forms of test suites.
4278 @section Simple Tests
4280 If the variable @code{TESTS} is defined, its value is taken to be a list
4281 of programs to run in order to do the testing.  The programs can either
4282 be derived objects or source objects; the generated rule will look both
4283 in @code{srcdir} and @file{.}.  Programs needing data files should look
4284 for them in @code{srcdir} (which is both an environment variable and a
4285 make variable) so they work when building in a separate directory
4286 (@pxref{Build Directories, , Build Directories , autoconf, The Autoconf
4287 Manual}), and in particular for the @code{distcheck} target
4288 (@pxref{Dist}).
4290 @cindex Exit status 77, special interpretation
4292 The number of failures will be printed at the end of the run.  If a
4293 given test program exits with a status of 77, then its result is ignored
4294 in the final count.  This feature allows non-portable tests to be
4295 ignored in environments where they don't make sense.
4297 The variable @code{TESTS_ENVIRONMENT} can be used to set environment
4298 variables for the test run; the environment variable @code{srcdir} is
4299 set in the rule.  If all your test programs are scripts, you can also
4300 set @code{TESTS_ENVIRONMENT} to an invocation of the shell (e.g.
4301 @samp{$(SHELL) -x}); this can be useful for debugging the tests.
4302 @vindex TESTS
4303 @vindex TESTS_ENVIRONMENT
4305 @cindex Tests, expected failure
4306 @cindex Expected test failure
4308 You may define the variable @code{XFAIL_TESTS} to a list of tests
4309 (usually a subset of @code{TESTS}) that are expected to fail.  This will
4310 reverse the result of those tests.
4311 @vindex XFAIL_TESTS
4313 Automake ensures that each program listed in @code{TESTS} is built
4314 before any tests are run; you can list both source and derived programs
4315 in @code{TESTS}.  For instance, you might want to run a C program as a
4316 test.  To do this you would list its name in @code{TESTS} and also in
4317 @code{check_PROGRAMS}, and then specify it as you would any other
4318 program.
4320 @section DejaGNU Tests
4322 If @uref{ftp://ftp.gnu.org/gnu/dejagnu/, @samp{dejagnu}} appears in
4323 @code{AUTOMAKE_OPTIONS}, then a @code{dejagnu}-based test suite is
4324 assumed.  The variable @code{DEJATOOL} is a list of names which are
4325 passed, one at a time, as the @code{--tool} argument to @code{runtest}
4326 invocations; it defaults to the name of the package.
4328 The variable @code{RUNTESTDEFAULTFLAGS} holds the @code{--tool} and
4329 @code{--srcdir} flags that are passed to dejagnu by default; this can be
4330 overridden if necessary.
4331 @vindex RUNTESTDEFAULTFLAGS
4333 The variables @code{EXPECT} and @code{RUNTEST} can
4334 also be overridden to provide project-specific values.  For instance,
4335 you will need to do this if you are testing a compiler toolchain,
4336 because the default values do not take into account host and target
4337 names.
4338 @opindex dejagnu
4339 @vindex DEJATOOL
4340 @vindex EXPECT
4341 @vindex RUNTEST
4343 The contents of the variable @code{RUNTESTFLAGS} are passed to the
4344 @code{runtest} invocation.  This is considered a ``user variable''
4345 (@pxref{User Variables}).  If you need to set @code{runtest} flags in
4346 @file{Makefile.am}, you can use @code{AM_RUNTESTFLAGS} instead.
4347 @vindex RUNTESTFLAGS
4348 @vindex AM_RUNTESTFLAGS
4349 @c FIXME xref dejagnu
4351 @cindex @file{site.exp}
4352 Automake will generate rules to create a local @file{site.exp} file,
4353 defining various variables detected by @code{./configure}.  This file
4354 is automatically read by DejaGnu.  It is ok for the user of a package
4355 to edit this file in order to tune the test suite.  However this is
4356 not the place where the test suite author should define new variables:
4357 this should be done elsewhere in the real test suite code.
4358 Especially, @file{site.exp} should not be distributed.
4360 In either case, the testing is done via @samp{make check}.
4362 @section Install Tests
4364 The @code{installcheck} target is available to the user as a way to run
4365 any tests after the package has been installed.  You can add tests to
4366 this by writing an @code{installcheck-local} target.
4369 @node Options, Miscellaneous, Tests, Top
4370 @chapter Changing Automake's Behavior
4372 Various features of Automake can be controlled by options in the
4373 @file{Makefile.am}.  Such options are applied on a per-@file{Makefile}
4374 basis when listed in a special @file{Makefile} variable named
4375 @code{AUTOMAKE_OPTIONS}.  They are applied globally to all processed
4376 @file{Makefiles} when listed in the first argument of
4377 @code{AM_INIT_AUTOMAKE} in @file{configure.in}.  Currently understood
4378 options are:
4379 @vindex AUTOMAKE_OPTIONS
4381 @table @asis
4382 @item @code{gnits}
4383 @itemx @code{gnu}
4384 @itemx @code{foreign}
4385 @itemx @code{cygnus}
4386 @cindex Option, gnits
4387 @cindex Option, gnu
4388 @cindex Option, foreign
4389 @cindex Option, cygnus
4391 Set the strictness as appropriate.  The @code{gnits} option also implies
4392 @code{readme-alpha} and @code{check-news}.
4394 @item @code{ansi2knr}
4395 @itemx @code{@var{path}/ansi2knr}
4396 @cindex Option, ansi2knr
4397 Turn on automatic de-ANSI-fication.  @xref{ANSI}.  If preceded by a
4398 path, the generated @file{Makefile.in} will look in the specified
4399 directory to find the @file{ansi2knr} program.  The path should be a
4400 relative path to another directory in the same distribution (Automake
4401 currently does not check this).
4403 @item @code{check-news}
4404 @cindex Option, check-news
4405 Cause @code{make dist} to fail unless the current version number appears
4406 in the first few lines of the @file{NEWS} file.
4408 @item @code{dejagnu}
4409 @cindex Option, dejagnu
4410 Cause @code{dejagnu}-specific rules to be generated.  @xref{Tests}.
4412 @item @code{dist-bzip2}
4413 @cindex Option, dist-bzip2
4414 Generate a @code{dist-bzip2} target, creating a bzip2 tar archive of the
4415 distribution.  @code{dist} will create it in addition to the other
4416 formats.  bzip2 archives are frequently smaller than gzipped archives.
4417 @trindex dist-bzip2
4419 @item @code{dist-shar}
4420 @cindex Option, dist-shar
4421 Generate a @code{dist-shar} target, creating a shar archive of the
4422 distribution.  @code{dist} will create it in addition to the other
4423 formats.
4424 @trindex dist-shar
4426 @item @code{dist-zip}
4427 @cindex Option, dist-zip
4428 Generate a @code{dist-zip} target, creating a zip archive of the
4429 distribution.  @code{dist} will create it in addition to the other
4430 formats.
4431 @trindex dist-zip
4433 @item @code{dist-tarZ}
4434 @cindex Option, dist-tarZ
4435 Generate a @code{dist-tarZ} target, creating a compressed tar archive of
4436 the distribution.  @code{dist} will create it in addition to the other
4437 formats.
4438 @trindex dist-tarZ
4440 @item @code{no-define}
4441 @cindex Option, no-define
4442 This options is meaningful only when passed as an argument to
4443 @code{AM_INIT_AUTOMAKE}.  It will prevent the @code{PACKAGE} and
4444 @code{VERSION} variables to be @code{AC_DEFINE}d.
4446 @item @code{no-dependencies}
4447 @cindex Option, no-dependencies
4448 This is similar to using @samp{--include-deps} on the command line, but
4449 is useful for those situations where you don't have the necessary bits
4450 to make automatic dependency tracking work @xref{Dependencies}.  In this
4451 case the effect is to effectively disable automatic dependency tracking.
4453 @item @code{no-exeext}
4454 @cindex Option, no-exeext
4455 If your @file{Makefile.am} defines a target @samp{foo}, it will override
4456 a target named @samp{foo$(EXEEXT)}.  This is necessary when
4457 @code{EXEEXT} is found to be empty.  However, by default automake will
4458 generate an error for this use.  The @code{no-exeext} option will
4459 disable this error.  This is intended for use only where it is known in
4460 advance that the package will not be ported to Windows, or any other
4461 operating system using extensions on executables.
4463 @item @code{no-installinfo}
4464 @cindex Option, no-installinfo
4465 The generated @file{Makefile.in} will not cause info pages to be built
4466 or installed by default.  However, @code{info} and @code{install-info}
4467 targets will still be available.  This option is disallowed at
4468 @samp{GNU} strictness and above.
4469 @trindex info
4470 @trindex install-info
4472 @item @code{no-installman}
4473 @cindex Option, no-installman
4474 The generated @file{Makefile.in} will not cause man pages to be
4475 installed by default.  However, an @code{install-man} target will still
4476 be available for optional installation.  This option is disallowed at
4477 @samp{GNU} strictness and above.
4478 @trindex install-man
4480 @item @code{nostdinc}
4481 @cindex Option, nostdinc
4482 This option can be used to disable the standard @samp{-I} options which
4483 are ordinarily automatically provided by Automake.
4485 @item @code{no-texinfo.tex}
4486 @cindex Option, no-texinfo
4487 Don't require @file{texinfo.tex}, even if there are texinfo files in
4488 this directory.
4490 @item @code{readme-alpha}
4491 @cindex Option, readme-alpha
4492 If this release is an alpha release, and the file @file{README-alpha}
4493 exists, then it will be added to the distribution.  If this option is
4494 given, version numbers are expected to follow one of two forms.  The
4495 first form is @samp{@var{MAJOR}.@var{MINOR}.@var{ALPHA}}, where each
4496 element is a number; the final period and number should be left off for
4497 non-alpha releases.  The second form is
4498 @samp{@var{MAJOR}.@var{MINOR}@var{ALPHA}}, where @var{ALPHA} is a
4499 letter; it should be omitted for non-alpha releases.
4501 @item @code{std-options}
4502 @cindex Options, std-options
4503 @cindex make installcheck
4504 Make the @code{installcheck} target check that installed scripts and
4505 programs support the @code{--help} and @code{--version} options.
4506 This also provides a basic check that the program's
4507 run-time dependencies are satisfied after installation.
4509 @vindex AM_INSTALLCHECK_STD_OPTIONS_EXEMPT
4510 In a few situations, programs (or scripts) have to be exempted from this
4511 test.  For instance @command{false} (from GNU sh-utils) is never
4512 successful, even for @code{--help} or @code{--version}.  You can
4513 list such programs in the variable @code{AM_INSTALLCHECK_STD_OPTIONS_EXEMPT}.
4515 @item @code{subdir-objects}
4516 If this option is specified, then objects are placed into the
4517 subdirectory of the build directory corresponding to the subdirectory of
4518 the source file.  For instance if the source file is
4519 @file{subdir/file.cxx}, then the output file would be
4520 @file{subdir/file.o}.
4522 @item @var{version}
4523 @cindex Option, version
4524 A version number (e.g. @samp{0.30}) can be specified.  If Automake is not
4525 newer than the version specified, creation of the @file{Makefile.in}
4526 will be suppressed.
4528 @item @code{-W@var{category}} or @code{--warnings=@var{category}}
4529 @cindex Option, warnings
4530 These options behave exactly like their command-line counterpart
4531 (@pxref{Invoking Automake}).  This allows you to enable or disable some
4532 warning categories on a per-file basis.  You can also setup some warnings
4533 for your entire project; for instance try @code{AM_INIT_AUTOMAKE([-Wall])}
4534 in your @file{configure.in}.
4536 @end table
4538 Unrecognized options are diagnosed by @code{automake}.
4540 If you want an option to apply to all the files in the tree, you can use
4541 the @code{AM_INIT_AUTOMAKE} macro in @file{configure.in}.
4542 @xref{Macros}.
4545 @node Miscellaneous, Include, Options, Top
4546 @chapter Miscellaneous Rules
4548 There are a few rules and variables that didn't fit anywhere else.
4550 @menu
4551 * Tags::                        Interfacing to etags and mkid
4552 * Suffixes::                    Handling new file extensions
4553 * Multilibs::                   Support for multilibbing.
4554 @end menu
4557 @node Tags, Suffixes, Miscellaneous, Miscellaneous
4558 @section Interfacing to @code{etags}
4560 @cindex TAGS support
4562 Automake will generate rules to generate @file{TAGS} files for use with
4563 GNU Emacs under some circumstances.
4565 If any C, C++ or Fortran 77 source code or headers are present, then
4566 @code{tags} and @code{TAGS} targets will be generated for the directory.
4567 @trindex tags
4569 At the topmost directory of a multi-directory package, a @code{tags}
4570 target file will be generated which, when run, will generate a
4571 @file{TAGS} file that includes by reference all @file{TAGS} files from
4572 subdirectories.
4574 The @code{tags} target will also be generated if the variable
4575 @code{ETAGS_ARGS} is defined.  This variable is intended for use in
4576 directories which contain taggable source that @code{etags} does not
4577 understand.  The user can use the @code{ETAGSFLAGS} to pass additional
4578 flags to @code{etags}; @code{AM_ETAGSFLAGS} is also available for use in
4579 @file{Makefile.am}.
4580 @vindex ETAGS_ARGS
4581 @vindex ETAGSFLAGS
4582 @vindex AM_ETAGSFLAGS
4584 Here is how Automake generates tags for its source, and for nodes in its
4585 Texinfo file:
4587 @example
4588 ETAGS_ARGS = automake.in --lang=none \
4589  --regex='/^@@node[ \t]+\([^,]+\)/\1/' automake.texi
4590 @end example
4592 If you add filenames to @samp{ETAGS_ARGS}, you will probably also
4593 want to set @samp{TAGS_DEPENDENCIES}.  The contents of this variable
4594 are added directly to the dependencies for the @code{tags} target.
4595 @vindex TAGS_DEPENDENCIES
4597 Automake also generates a @code{ctags} target which can be used to
4598 build @command{vi}-style @file{tags} files.  The variable @code{CTAGS}
4599 is the name of the program to invoke (by default @samp{ctags});
4600 @code{CTAGSFLAGS} can be used by the user to pass additional flags,
4601 and @code{AM_CTAGSFLAGS} can be used by the @file{Makefile.am}.
4603 Automake will also generate an @code{ID} target which will run
4604 @code{mkid} on the source.  This is only supported on a
4605 directory-by-directory basis.
4606 @trindex id
4608 Automake also supports the @uref{http://www.gnu.org/software/global/,
4609 GNU Global Tags program}.  The @code{GTAGS} target runs Global Tags
4610 automatically and puts the result in the top build directory.  The
4611 variable @code{GTAGS_ARGS} holds arguments which are passed to
4612 @code{gtags}.
4613 @vindex GTAGS_ARGS
4616 @node Suffixes, Multilibs, Tags, Miscellaneous
4617 @section Handling new file extensions
4619 @cindex Adding new SUFFIXES
4620 @cindex SUFFIXES, adding
4621 @vindex SUFFIXES
4623 It is sometimes useful to introduce a new implicit rule to handle a file
4624 type that Automake does not know about.
4626 For instance, suppose you had a compiler which could compile @samp{.foo}
4627 files to @samp{.o} files.  You would simply define an suffix rule for
4628 your language:
4630 @example
4631 .foo.o:
4632         foocc -c -o $@@ $<
4633 @end example
4635 Then you could directly use a @samp{.foo} file in a @samp{_SOURCES}
4636 variable and expect the correct results:
4638 @example
4639 bin_PROGRAMS = doit
4640 doit_SOURCES = doit.foo
4641 @end example
4643 This was the simpler and more common case.  In other cases, you will
4644 have to help Automake to figure which extensions you are defining your
4645 suffix rule for.  This usually happens when your extensions does not
4646 start with a dot.  Then, all you have to do is to put a list of new
4647 suffixes in the @code{SUFFIXES} variable @strong{before} you define your
4648 implicit rule.
4650 For instance the following definition prevents Automake to misinterpret
4651 @samp{.idlC.cpp:} as an attempt to transform @samp{.idlC} into
4652 @samp{.cpp}.
4654 @example
4655 SUFFIXES = .idl C.cpp
4656 .idlC.cpp:
4657         # whatever
4658 @end example
4660 As you may have noted, the @code{SUFFIXES} variable behaves like the
4661 @code{.SUFFIXES} special target of @code{make}.  You should not touch
4662 @code{.SUFFIXES} yourself, but use @code{SUFFIXES} instead and let
4663 Automake generate the suffix list for @code{.SUFFIXES}.  Any given
4664 @code{SUFFIXES} go at the start of the generated suffixes list, followed
4665 by Automake generated suffixes not already in the list.
4667 @node Multilibs,  , Suffixes, Miscellaneous
4668 @section Support for Multilibs
4670 Automake has support for an obscure feature called multilibs.  A
4671 @dfn{multilib} is a library which is built for multiple different ABIs
4672 at a single time; each time the library is built with a different target
4673 flag combination.  This is only useful when the library is intended to
4674 be cross-compiled, and it is almost exclusively used for compiler
4675 support libraries.
4677 The multilib support is still experimental.  Only use it if you are
4678 familiar with multilibs and can debug problems you might encounter.
4681 @node Include, Conditionals, Miscellaneous, Top
4682 @chapter Include
4684 @cmindex include
4685 @cindex Including Makefile fragment
4686 @cindex Makefile fragment, including
4688 Automake supports an @code{include} directive which can be used to
4689 include other @file{Makefile} fragments when @code{automake} is run.
4690 Note that these fragments are read and interpreted by @code{automake},
4691 not by @code{make}.  As with conditionals, @code{make} has no idea that
4692 @code{include} is in use.
4694 There are two forms of @code{include}:
4696 @table @code
4697 @item include $(srcdir)/file
4698 Include a fragment which is found relative to the current source
4699 directory.
4701 @item include $(top_srcdir)/file
4702 Include a fragment which is found relative to the top source directory.
4703 @end table
4705 Note that if a fragment is included inside a conditional, then the
4706 condition applies to the entire contents of that fragment.
4708 Makefile fragments included this way are always distributed because
4709 there are needed to rebuild @file{Makefile.in}.
4711 @node Conditionals, Gnits, Include, Top
4712 @chapter Conditionals
4714 @cindex Conditionals
4716 Automake supports a simple type of conditionals.
4718 @cvindex AM_CONDITIONAL
4719 Before using a conditional, you must define it by using
4720 @code{AM_CONDITIONAL} in the @code{configure.in} file (@pxref{Macros}).
4722 @defmac AM_CONDITIONAL (@var{conditional}, @var{condition})
4723 The conditional name, @var{conditional}, should be a simple string
4724 starting with a letter and containing only letters, digits, and
4725 underscores.  It must be different from @samp{TRUE} and @samp{FALSE}
4726 which are reserved by Automake.
4728 The shell @var{condition} (suitable for use in a shell @code{if}
4729 statement) is evaluated when @code{configure} is run.  Note that you
4730 must arrange for @emph{every} @code{AM_CONDITIONAL} to be invoked every
4731 time @code{configure} is run -- if @code{AM_CONDITIONAL} is run
4732 conditionally (e.g., in a shell @code{if} statement), then the result
4733 will confuse automake.
4734 @end defmac
4736 @cindex --enable-debug, example
4737 @cindex Example conditional --enable-debug
4738 @cindex Conditional example,  --enable-debug
4740 Conditionals typically depend upon options which the user provides to
4741 the @code{configure} script.  Here is an example of how to write a
4742 conditional which is true if the user uses the @samp{--enable-debug}
4743 option.
4745 @example
4746 AC_ARG_ENABLE(debug,
4747 [  --enable-debug    Turn on debugging],
4748 [case "$@{enableval@}" in
4749   yes) debug=true ;;
4750   no)  debug=false ;;
4751   *) AC_MSG_ERROR(bad value $@{enableval@} for --enable-debug) ;;
4752 esac],[debug=false])
4753 AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
4754 @end example
4756 Here is an example of how to use that conditional in @file{Makefile.am}:
4758 @cmindex if
4759 @cmindex endif
4760 @cmindex else
4762 @example
4763 if DEBUG
4764 DBG = debug
4765 else
4766 DBG =
4767 endif
4768 noinst_PROGRAMS = $(DBG)
4769 @end example
4771 This trivial example could also be handled using EXTRA_PROGRAMS
4772 (@pxref{Conditional Programs}).
4774 You may only test a single variable in an @code{if} statement, possibly
4775 negated using @samp{!}.  The @code{else} statement may be omitted.
4776 Conditionals may be nested to any depth.  You may specify an argument to
4777 @code{else} in which case it must be the negation of the condition used
4778 for the current @code{if}.  Similarly you may specify the condition
4779 which is closed by an @code{end}:
4781 @example
4782 if DEBUG
4783 DBG = debug
4784 else !DEBUG
4785 DBG =
4786 endif !DEBUG
4787 @end example
4789 @noindent
4790 Unbalanced conditions are errors.
4792 Note that conditionals in Automake are not the same as conditionals in
4793 GNU Make.  Automake conditionals are checked at configure time by the
4794 @file{configure} script, and affect the translation from
4795 @file{Makefile.in} to @file{Makefile}.  They are based on options passed
4796 to @file{configure} and on results that @file{configure} has discovered
4797 about the host system.  GNU Make conditionals are checked at @code{make}
4798 time, and are based on variables passed to the make program or defined
4799 in the @file{Makefile}.
4801 Automake conditionals will work with any make program.
4804 @node Gnits, Cygnus, Conditionals, Top
4805 @chapter The effect of @code{--gnu} and @code{--gnits}
4807 @cindex --gnu, required files
4808 @cindex --gnu, complete description
4810 The @samp{--gnu} option (or @samp{gnu} in the @samp{AUTOMAKE_OPTIONS}
4811 variable) causes @code{automake} to check the following:
4813 @itemize @bullet
4814 @item
4815 The files @file{INSTALL}, @file{NEWS}, @file{README}, @file{AUTHORS},
4816 and @file{ChangeLog}, plus one of @file{COPYING.LIB}, @file{COPYING.LESSER}
4817 or @file{COPYING}, are required at the topmost directory of the package.
4819 @item
4820 The options @samp{no-installman} and @samp{no-installinfo} are
4821 prohibited.
4822 @end itemize
4824 Note that this option will be extended in the future to do even more
4825 checking; it is advisable to be familiar with the precise requirements
4826 of the GNU standards.  Also, @samp{--gnu} can require certain
4827 non-standard GNU programs to exist for use by various maintainer-only
4828 targets; for instance in the future @code{pathchk} might be required for
4829 @samp{make dist}.
4831 @cindex --gnits, complete description
4833 The @samp{--gnits} option does everything that @samp{--gnu} does, and
4834 checks the following as well:
4836 @itemize @bullet
4837 @item
4838 @samp{make installcheck} will check to make sure that the @code{--help}
4839 and @code{--version} really print a usage message and a version string,
4840 respectively.  This is the @code{std-options} option (@pxref{Options}).
4842 @item
4843 @samp{make dist} will check to make sure the @file{NEWS} file has been
4844 updated to the current version.
4846 @item
4847 @samp{VERSION} is checked to make sure its format complies with Gnits
4848 standards.
4849 @c FIXME xref when standards are finished
4851 @item
4852 @cindex README-alpha
4853 If @samp{VERSION} indicates that this is an alpha release, and the file
4854 @file{README-alpha} appears in the topmost directory of a package, then
4855 it is included in the distribution.  This is done in @samp{--gnits}
4856 mode, and no other, because this mode is the only one where version
4857 number formats are constrained, and hence the only mode where Automake
4858 can automatically determine whether @file{README-alpha} should be
4859 included.
4861 @item
4862 The file @file{THANKS} is required.
4863 @end itemize
4866 @node Cygnus, Extending, Gnits, Top
4867 @chapter The effect of @code{--cygnus}
4869 @cindex Cygnus strictness
4871 Some packages, notably GNU GCC and GNU gdb, have a build environment
4872 originally written at Cygnus Support (subsequently renamed Cygnus
4873 Solutions, and then later purchased by Red Hat).  Packages with this
4874 ancestry are sometimes referred to as ``Cygnus'' trees.
4876 A Cygnus tree has slightly different rules for how a @file{Makefile.in}
4877 is to be constructed.  Passing @samp{--cygnus} to @code{automake} will
4878 cause any generated @file{Makefile.in} to comply with Cygnus rules.
4880 Here are the precise effects of @samp{--cygnus}:
4882 @itemize @bullet
4883 @item
4884 Info files are always created in the build directory, and not in the
4885 source directory.
4887 @item
4888 @file{texinfo.tex} is not required if a Texinfo source file is
4889 specified.  The assumption is that the file will be supplied, but in a
4890 place that Automake cannot find.  This assumption is an artifact of how
4891 Cygnus packages are typically bundled.
4893 @item
4894 @samp{make dist} is not supported, and the rules for it are not
4895 generated.  Cygnus-style trees use their own distribution mechanism.
4897 @item
4898 Certain tools will be searched for in the build tree as well as in the
4899 user's @samp{PATH}.  These tools are @code{runtest}, @code{expect},
4900 @code{makeinfo} and @code{texi2dvi}.
4902 @item
4903 @code{--foreign} is implied.
4905 @item
4906 The options @samp{no-installinfo} and @samp{no-dependencies} are
4907 implied.
4909 @item
4910 The macros @samp{AM_MAINTAINER_MODE} and @samp{AM_CYGWIN32} are
4911 required.
4913 @item
4914 The @code{check} target doesn't depend on @code{all}.
4915 @end itemize
4917 GNU maintainers are advised to use @samp{gnu} strictness in preference
4918 to the special Cygnus mode.  Some day, perhaps, the differences between
4919 Cygnus trees and GNU trees will disappear (for instance, as GCC is made
4920 more standards compliant).  At that time the special Cygnus mode will be
4921 removed.
4924 @node Extending, Distributing, Cygnus, Top
4925 @chapter When Automake Isn't Enough
4927 Automake's implicit copying semantics means that many problems can be
4928 worked around by simply adding some @code{make} targets and rules to
4929 @file{Makefile.in}.  Automake will ignore these additions.
4931 @cindex -local targets
4932 @cindex local targets
4934 There are some caveats to doing this.  Although you can overload a
4935 target already used by Automake, it is often inadvisable, particularly
4936 in the topmost directory of a package with subdirectories.  However,
4937 various useful targets have a @samp{-local} version you can specify in
4938 your @file{Makefile.in}.  Automake will supplement the standard target
4939 with these user-supplied targets.
4941 @trindex  all
4942 @trindex  all-local
4943 @trindex  info
4944 @trindex  info-local
4945 @trindex  dvi
4946 @trindex  dvi-local
4947 @trindex  ps
4948 @trindex  ps-local
4949 @trindex  pdf
4950 @trindex  pdf-local
4951 @trindex  check
4952 @trindex  check-local
4953 @trindex  install
4954 @trindex  install-data-local
4955 @trindex  install-exec
4956 @trindex  install-exec-local
4957 @trindex  uninstall
4958 @trindex  uninstall-local
4959 @trindex  mostlyclean
4960 @trindex  mostlyclean-local
4961 @trindex  clean
4962 @trindex  clean-local
4963 @trindex  distclean
4964 @trindex  distclean-local
4965 @trindex  installdirs
4966 @trindex  installdirs-local
4967 @trindex  installcheck
4968 @trindex  installcheck-local
4970 The targets that support a local version are @code{all}, @code{info},
4971 @code{dvi}, @code{ps}, @code{pdf}, @code{check}, @code{install-data},
4972 @code{install-exec}, @code{uninstall}, @code{installdirs},
4973 @code{installcheck} and the various @code{clean} targets
4974 (@code{mostlyclean}, @code{clean}, @code{distclean}, and
4975 @code{maintainer-clean}).  Note that there are no
4976 @code{uninstall-exec-local} or @code{uninstall-data-local} targets; just
4977 use @code{uninstall-local}.  It doesn't make sense to uninstall just
4978 data or just executables.
4980 For instance, here is one way to install a file in @file{/etc}:
4982 @example
4983 install-data-local:
4984         $(INSTALL_DATA) $(srcdir)/afile $(DESTDIR)/etc/afile
4985 @end example
4987 @cindex -hook targets
4988 @cindex hook targets
4990 Some targets also have a way to run another target, called a @dfn{hook},
4991 after their work is done.  The hook is named after the principal target,
4992 with @samp{-hook} appended.  The targets allowing hooks are
4993 @code{install-data}, @code{install-exec}, @code{uninstall}, @code{dist},
4994 and @code{distcheck}.
4995 @trindex install-data-hook
4996 @trindex install-exec-hook
4997 @trindex uninstall-hook
4998 @trindex dist-hook
5000 For instance, here is how to create a hard link to an installed program:
5002 @example
5003 install-exec-hook:
5004         ln $(DESTDIR)$(bindir)/program $(DESTDIR)$(bindir)/proglink
5005 @end example
5007 @c FIXME should include discussion of variables you can use in these
5008 @c rules
5010 @node Distributing, API versioning, Extending, Top
5011 @chapter Distributing @file{Makefile.in}s
5013 Automake places no restrictions on the distribution of the resulting
5014 @file{Makefile.in}s.  We still encourage software authors to distribute
5015 their work under terms like those of the GPL, but doing so is not
5016 required to use Automake.
5018 Some of the files that can be automatically installed via the
5019 @code{--add-missing} switch do fall under the GPL@.  However, these also
5020 have a special exception allowing you to distribute them with your
5021 package, regardless of the licensing you choose.
5024 @node API versioning, Macro and Variable Index, Distributing, Top
5025 @chapter Automake API versioning
5027 New Automake releases usually include bug fixes and new features.
5028 Unfortunately they may also introduce new bugs and incompatibilities.
5029 This makes four reasons why a package may require a particular Automake
5030 version.
5032 Things get worse when maintaining a large tree of packages, each one
5033 requiring a different version of Automake.  In the past, this meant that
5034 any developer (and sometime users) had to install several versions of
5035 Automake in different places, and switch @samp{$PATH} appropriately for
5036 each package.
5038 Starting with version 1.6, Automake installs versioned binaries.  This
5039 means you can install several versions of Automake in the same
5040 @samp{$prefix}, and can select an arbitrary Automake version by running
5041 @samp{automake-1.6} or @samp{automake-1.7} without juggling with
5042 @samp{$PATH}.  Furthermore, @file{Makefile}'s generated by Automake 1.6
5043 will use @samp{automake-1.6} explicitly in their rebuild rules.
5045 Note that @samp{1.6} in @samp{automake-1.6} is Automake's API version,
5046 not Automake's version.  If a bug fix release is made, for instance
5047 Automake 1.6.1, the API version will remain 1.6.  This means that a
5048 package which work with Automake 1.6 should also work with 1.6.1; after
5049 all, this is what people expect from bug fix releases.
5051 Note that if your package relies on a feature or a bug fix introduced in
5052 a release, you can pass this version as an option to Automake to ensure
5053 older releases will not be used.  For instance, use this in your
5054 @file{configure.in}:
5056 @example
5057   AM_INIT_AUTOMAKE(1.6.1)    dnl Require Automake 1.6.1 or better.
5058 @end example
5059 @noindent
5060 or, in a particular @file{Makefile.am}:
5062 @example
5063   AUTOMAKE_OPTIONS = 1.6.1   # Require Automake 1.6.1 or better.
5064 @end example
5065 @noindent
5066 Automake will print an error message if its version is
5067 older than the requested version.
5070 @heading What is in the API
5072 Automake's programming interface is not easy to define.  Basically it
5073 should include at least all @strong{documented} variables and targets
5074 that a @samp{Makefile.am} author can use, any behavior associated with
5075 them (e.g. the places where @samp{-hook}'s are run), the command line
5076 interface of @samp{automake} and @samp{aclocal}, @dots{}
5078 @heading What is not in the API
5080 Every undocumented variable, target, or command line option, is not part
5081 of the API@.  You should avoid using them, as they could change from one
5082 version to the other (even in bug fix releases, if this helps to fix a
5083 bug).
5085 If it turns out you need to use such a undocumented feature, contact
5086 @email{automake@@gnu.org} and try to get it documented and exercised by
5087 the test-suite.
5089 @page
5090 @node Macro and Variable Index, General Index, API versioning, Top
5091 @unnumbered Macro and Variable Index
5093 @printindex vr
5096 @page
5097 @node General Index,  , Macro and Variable Index, Top
5098 @unnumbered General Index
5100 @printindex cp
5103 @page
5104 @contents
5105 @bye