For PR automake/347:
[platform/upstream/automake.git] / automake.texi
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
7
8 @include version.texi
9
10 @dircategory GNU programming tools
11 @direntry
12 * automake: (automake).         Making Makefile.in's
13 @end direntry
14
15 @dircategory Individual utilities
16 @direntry
17 * aclocal: (automake)Invoking aclocal.          Generating aclocal.m4
18 @end direntry
19
20 @ifinfo
21 This file documents GNU automake @value{VERSION}
22
23 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
24 Free Software Foundation, Inc.
25
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.
29
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
34
35
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.
41
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
47
48
49 @titlepage
50 @title GNU Automake
51 @subtitle For version @value{VERSION}, @value{UPDATED}
52 @author David MacKenzie and Tom Tromey
53
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 @*
64
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.
68
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.
73
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
79
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
90
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
96
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
101
102 @ifnottex
103 @node Top, Introduction, (dir), (dir)
104 @comment  node-name,  next,  previous,  up
105 @top GNU Automake
106
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}.
110
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
140
141 @end ifnottex
142
143
144 @node Introduction, Generalities, Top, Top
145 @chapter Introduction
146
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.
154
155 @cindex GNU Makefile standards
156
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).
163
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.
167
168 @cindex Constraints of Automake
169 @cindex Automake constraints
170
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.}.
178
179 @cindex Automake requirements
180 @cindex Requirements, Automake
181
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.
186
187 @cindex BUGS, reporting
188 @cindex Reporting BUGS
189 @cindex E-mail, bug reports
190
191 Mail suggestions and bug reports for Automake to
192 @email{bug-automake@@gnu.org}.
193
194
195 @node Generalities, Examples, Introduction, Top
196 @chapter General ideas
197
198 The following sections cover a few basic ideas that will help you
199 understand how Automake works.
200
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
209
210
211 @node General Operation, Strictness, Generalities, Generalities
212 @section General Operation
213
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.
219
220 @cindex Non-standard targets
221 @cindex cvs-dist, non-standard example
222 @trindex cvs-dist
223
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.
230
231 @cindex GNU make extensions
232
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.
236
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.
242
243 Automake tries to keep comments grouped with any adjoining targets or
244 variable definitions.
245
246 @cindex Make targets, overriding
247 @cindex Overriding make targets
248
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.
254
255 @cindex Variables, overriding
256 @cindex Overriding make variables
257
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.
264
265 @cindex Recursive operation of Automake
266 @cindex Automake, recursive operation
267 @cindex Example of recursive operation
268
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
272
273 @example
274 xs = a.c b.c
275 foo_SOURCES = c.c $(xs)
276 @end example
277
278 it would use the files @file{a.c}, @file{b.c}, and @file{c.c} as the
279 contents of @code{foo_SOURCES}.
280
281 @cindex ## (special Automake comment)
282 @cindex Special Automake comment
283 @cindex Comment, special to Automake
284
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.
288
289 It is customary to make the first line of @file{Makefile.am} read:
290
291 @cindex Makefile.am, first line
292 @cindex First line of Makefile.am
293
294 @example
295 ## Process this file with automake to produce Makefile.in
296 @end example
297
298 @c FIXME discuss putting a copyright into Makefile.am here?  I would but
299 @c I don't know quite what to say.
300
301 @c FIXME document customary ordering of Makefile.am here!
302
303
304 @node Strictness, Uniform, General Operation, Generalities
305 @section Strictness
306
307 @cindex Non-GNU packages
308
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.
312
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
320
321 To this end, Automake supports three levels of @dfn{strictness}---the
322 strictness indicating how stringently Automake should check standards
323 conformance.
324
325 The valid strictness levels are:
326
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.
335
336 @item gnu
337 Automake will check---as much as possible---for compliance to the GNU
338 standards for packages.  This is the default.
339
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
347
348 For more information on the precise implications of the strictness
349 level, see @ref{Gnits}.
350
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}.
355
356
357 @node Uniform, Canonicalization, Strictness, Generalities
358 @section The Uniform Naming Scheme
359
360 @cindex Uniform naming scheme
361
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.
366
367 @cindex _PROGRAMS primary variable
368 @cindex PROGRAMS primary variable
369 @cindex Primary variable, PROGRAMS
370 @cindex Primary variable, defined
371
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.
375
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
380
381 @cindex pkglibdir, defined
382 @cindex pkgincludedir, defined
383 @cindex pkgdatadir, defined
384
385 @vindex pkglibdir
386 @vindex pkgincludedir
387 @vindex pkgdatadir
388
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
399
400 @cindex EXTRA_, prepending
401
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.
408
409 @cindex EXTRA_PROGRAMS, defined
410 @cindex Example, EXTRA_PROGRAMS
411 @cindex cpio example
412
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}:
416
417 @example
418 EXTRA_PROGRAMS = mt rmt
419 bin_PROGRAMS = cpio pax
420 sbin_PROGRAMS = @@MORE_PROGRAMS@@
421 @end example
422
423 Defining a primary without a prefix as a variable, e.g.,
424 @code{PROGRAMS}, is an error.
425
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}.
429
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.
433
434 @cindex Extending list of installation directories
435 @cindex Installation directories, extending list
436
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}).
443
444 @cindex HTML support, example
445
446 For instance, until HTML support is part of Automake, you could use this
447 to install raw HTML documentation:
448
449 @example
450 htmldir = $(prefix)/html
451 html_DATA = automake.html
452 @end example
453
454 @cindex noinst primary prefix, definition
455
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.
460
461 @cindex check primary prefix, definition
462
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.
466
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
480
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}).
485
486
487 @node Canonicalization, User Variables, Uniform, Generalities
488 @section How derived variables are named
489
490 @cindex canonicalizing Automake variables
491
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.
500
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.
506
507 The strudel is an addition, to make the use of Autoconf substitutions in
508 variable names less obfuscating.
509
510
511 @node User Variables, Auxiliary Programs, Canonicalization, Generalities
512 @section Variables reserved for the user
513
514 @cindex variables, reserved for the user
515 @cindex user variables
516
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.
520
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.
524
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.
530 @c FIXME: maybe Automake could bark if a developer forces a user variable
531 @c from Makefile.am.
532
533 To get around this problem, automake introduces an automake-specific
534 shadow variable for each user flag variable.  (Shadow variables are not
535 introduced for variables like @code{CC}, where they would make no
536 sense.)  The shadow variable is named by prepending @samp{AM_} to the
537 user variable's name.  For instance, the shadow variable for
538 @code{YFLAGS} is @code{AM_YFLAGS}.
539
540
541 @node Auxiliary Programs,  , User Variables, Generalities
542 @section Programs automake might require
543
544 @cindex Programs, auxiliary
545 @cindex Auxiliary programs
546
547 Automake sometimes requires helper programs so that the generated
548 @file{Makefile} can do its work properly.  There are a fairly large
549 number of them, and we list them here.
550
551 @table @code
552 @item ansi2knr.c
553 @itemx ansi2knr.1
554 These two files are used by the automatic de-ANSI-fication support
555 (@pxref{ANSI}).
556
557 @item compile
558 This is a wrapper for compilers which don't accept both @samp{-c} and
559 @samp{-o} at the same time.  It is only used when absolutely required.
560 Such compilers are rare.
561
562 @item config.guess
563 @itemx config.sub
564 These programs compute the canonical triplets for the given build, host,
565 or target architecture.  These programs are updated regulary to support
566 new architectures and fix probes broken by changes in new kernel
567 versions.  You are encouraged to fetch the latest versions of these
568 files from @url{ftp://ftp.gnu.org/gnu/config/} before making a release.
569
570 @item depcomp
571 This program understands how to run a compiler so that it will generate
572 not only the desired output but also dependency information which is
573 then used by the automatic dependency tracking feature.
574
575 @item elisp-comp
576 This program is used to byte-compile Emacs Lisp code.
577
578 @item install-sh
579 This is a replacement for the @code{install} program which works on
580 platforms where @code{install} is unavailable or unusable.
581
582 @item mdate-sh
583 This script is used to generate a @file{version.texi} file.  It examines
584 a file and prints some date information about it.
585
586 @item missing
587 This wraps a number of programs which are typically only required by
588 maintainers.  If the program in question doesn't exist, @code{missing}
589 prints an informative warning and attempts to fix things so that the
590 build can continue.
591
592 @item mkinstalldirs
593 This works around the fact that @code{mkdir -p} is not portable.
594
595 @item py-compile
596 This is used to byte-compile Python scripts.
597
598 @item texinfo.tex
599 Not a program, this file is required for @code{make dvi}, @code{make ps}
600 and @code{make pdf} to work when Texinfo sources are in the package.
601
602 @item ylwrap
603 This program wraps @code{lex} and @code{yacc} and ensures that, for
604 instance, multiple @code{yacc} instances can be invoked in a single
605 directory in parallel.
606
607 @end table
608
609
610 @node Examples, Invoking Automake, Generalities, Top
611 @chapter Some example packages
612
613 @menu
614 * Complete::                    A simple example, start to finish
615 * Hello::                       A classic program
616 * etags::                       Building etags and ctags
617 @end menu
618
619
620 @node Complete, Hello, Examples, Examples
621 @section A simple example, start to finish
622
623 @cindex Complete example
624
625 Let's suppose you just finished writing @code{zardoz}, a program to make
626 your head float from vortex to vortex.  You've been using Autoconf to
627 provide a portability framework, but your @file{Makefile.in}s have been
628 ad-hoc.  You want to make them bulletproof, so you turn to Automake.
629
630 @cindex AM_INIT_AUTOMAKE, example use
631
632 The first step is to update your @file{configure.in} to include the
633 commands that @code{automake} needs.  The way to do this is to add an
634 @code{AM_INIT_AUTOMAKE} call just after @code{AC_INIT}:
635
636 @example
637 AC_INIT(zardoz, 1.0)
638 AM_INIT_AUTOMAKE
639 @dots{}
640 @end example
641
642 Since your program doesn't have any complicating factors (e.g., it
643 doesn't use @code{gettext}, it doesn't want to build a shared library),
644 you're done with this part.  That was easy!
645
646 @cindex aclocal program, introduction
647 @cindex aclocal.m4, preexisting
648 @cindex acinclude.m4, defined
649
650 Now you must regenerate @file{configure}.  But to do that, you'll need
651 to tell @code{autoconf} how to find the new macro you've used.  The
652 easiest way to do this is to use the @code{aclocal} program to generate
653 your @file{aclocal.m4} for you.  But wait@dots{} maybe you already have an
654 @file{aclocal.m4}, because you had to write some hairy macros for your
655 program.  The @code{aclocal} program lets you put your own macros into
656 @file{acinclude.m4}, so simply rename and then run:
657
658 @example
659 mv aclocal.m4 acinclude.m4
660 aclocal
661 autoconf
662 @end example
663
664 @cindex zardoz example
665
666 Now it is time to write your @file{Makefile.am} for @code{zardoz}.
667 Since @code{zardoz} is a user program, you want to install it where the
668 rest of the user programs go: @code{bindir}.  Additionally,
669 @code{zardoz} has some Texinfo documentation.  Your @file{configure.in}
670 script uses @code{AC_REPLACE_FUNCS}, so you need to link against
671 @samp{@@LIBOBJS@@}.  So here's what you'd write:
672
673 @example
674 bin_PROGRAMS = zardoz
675 zardoz_SOURCES = main.c head.c float.c vortex9.c gun.c
676 zardoz_LDADD = @@LIBOBJS@@
677
678 info_TEXINFOS = zardoz.texi
679 @end example
680
681 Now you can run @code{automake --add-missing} to generate your
682 @file{Makefile.in} and grab any auxiliary files you might need, and
683 you're done!
684
685
686 @node Hello, etags, Complete, Examples
687 @section A classic program
688
689 @cindex Example, GNU Hello
690 @cindex Hello example
691 @cindex GNU Hello, example
692
693 @uref{ftp://prep.ai.mit.edu/pub/gnu/hello-1.3.tar.gz, GNU hello} is
694 renowned for its classic simplicity and versatility.  This section shows
695 how Automake could be used with the GNU Hello package.  The examples
696 below are from the latest beta version of GNU Hello, but with all of the
697 maintainer-only code stripped out, as well as all copyright comments.
698
699 Of course, GNU Hello is somewhat more featureful than your traditional
700 two-liner.  GNU Hello is internationalized, does option processing, and
701 has a manual and a test suite.
702
703 @cindex configure.in, from GNU Hello
704 @cindex GNU Hello, configure.in
705 @cindex Hello, configure.in
706
707 Here is the @file{configure.in} from GNU Hello:
708 @c FIXME: This definitively requires an update.
709
710 @example
711 dnl Process this file with autoconf to produce a configure script.
712 AC_INIT(src/hello.c)
713 AM_INIT_AUTOMAKE(hello, 1.3.11)
714 AM_CONFIG_HEADER(config.h)
715
716 dnl Set of available languages.
717 ALL_LINGUAS="de fr es ko nl no pl pt sl sv"
718
719 dnl Checks for programs.
720 AC_PROG_CC
721 AC_ISC_POSIX
722
723 dnl Checks for libraries.
724
725 dnl Checks for header files.
726 AC_STDC_HEADERS
727 AC_HAVE_HEADERS(string.h fcntl.h sys/file.h sys/param.h)
728
729 dnl Checks for library functions.
730 AC_FUNC_ALLOCA
731
732 dnl Check for st_blksize in struct stat
733 AC_ST_BLKSIZE
734
735 dnl internationalization macros
736 AM_GNU_GETTEXT
737 AC_OUTPUT([Makefile doc/Makefile intl/Makefile po/Makefile.in \
738            src/Makefile tests/Makefile tests/hello],
739    [chmod +x tests/hello])
740 @end example
741
742 The @samp{AM_} macros are provided by Automake (or the Gettext library);
743 the rest are standard Autoconf macros.
744
745
746 The top-level @file{Makefile.am}:
747
748 @example
749 EXTRA_DIST = BUGS ChangeLog.O
750 SUBDIRS = doc intl po src tests
751 @end example
752
753 As you can see, all the work here is really done in subdirectories.
754
755 The @file{po} and @file{intl} directories are automatically generated
756 using @code{gettextize}; they will not be discussed here.
757
758 @cindex Texinfo file handling example
759 @cindex Example, handling Texinfo files
760
761 In @file{doc/Makefile.am} we see:
762
763 @example
764 info_TEXINFOS = hello.texi
765 hello_TEXINFOS = gpl.texi
766 @end example
767
768 This is sufficient to build, install, and distribute the GNU Hello
769 manual.
770
771 @cindex Regression test example
772 @cindex Example, regression test
773
774 Here is @file{tests/Makefile.am}:
775
776 @example
777 TESTS = hello
778 EXTRA_DIST = hello.in testdata
779 @end example
780
781 The script @file{hello} is generated by @code{configure}, and is the
782 only test case.  @code{make check} will run this test.
783
784 @cindex INCLUDES, example usage
785
786 Last we have @file{src/Makefile.am}, where all the real work is done:
787 @c FIXME: As all the Hello World excerpts in this manual, this
788 @c shows deprecated features (here: $(INCLUDES)).
789
790 @example
791 bin_PROGRAMS = hello
792 hello_SOURCES = hello.c version.c getopt.c getopt1.c getopt.h system.h
793 hello_LDADD = @@INTLLIBS@@ @@ALLOCA@@
794 localedir = $(datadir)/locale
795 INCLUDES = -I../intl -DLOCALEDIR=\"$(localedir)\"
796 @end example
797
798
799 @node etags,  , Hello, Examples
800 @section Building etags and ctags
801
802 @cindex Example, ctags and etags
803 @cindex ctags Example
804 @cindex etags Example
805
806 Here is another, trickier example.  It shows how to generate two
807 programs (@code{ctags} and @code{etags}) from the same source file
808 (@file{etags.c}).  The difficult part is that each compilation of
809 @file{etags.c} requires different @code{cpp} flags.
810
811 @example
812 bin_PROGRAMS = etags ctags
813 ctags_SOURCES =
814 ctags_LDADD = ctags.o
815
816 etags.o: etags.c
817         $(COMPILE) -DETAGS_REGEXPS -c etags.c
818
819 ctags.o: etags.c
820         $(COMPILE) -DCTAGS -o ctags.o -c etags.c
821 @end example
822
823 Note that there is no @code{etags_SOURCES} definition.  Automake will
824 implicitly assume that there is a source file named @file{etags.c}, and
825 define rules to compile @file{etags.o} and link @file{etags}.  The
826 @code{etags.o: etags.c} rule supplied by the above @file{Makefile.am},
827 will override the Automake generated rule to build @file{etags.o}.
828
829 @code{ctags_SOURCES} is defined to be empty---that way no implicit value
830 is substituted.  Because we have not listed the source of
831 @file{ctags}, we have to tell Automake how to link the program.  This is
832 the purpose of the @code{ctags_LDADD} line.  A @code{ctags_DEPENDENCIES}
833 variable, holding the dependencies of the @file{ctags} target will be
834 automatically generated by Automake from the contant of
835 @code{ctags_LDADD}.
836
837 The above rules won't work if your compiler doesn't accept both
838 @samp{-c} and @samp{-o}.  The simplest fix for this is to introduce a
839 bogus dependency (to avoid problems with a parallel @code{make}):
840
841 @example
842 etags.o: etags.c ctags.o
843         $(COMPILE) -DETAGS_REGEXPS -c etags.c
844
845 ctags.o: etags.c
846         $(COMPILE) -DCTAGS -c etags.c && mv etags.o ctags.o
847 @end example
848
849 Also, these explicit rules do not work if the de-ANSI-fication feature
850 is used (@pxref{ANSI}).  Supporting de-ANSI-fication requires a little
851 more work:
852
853 @example
854 etags._o: etags._c ctags.o
855         $(COMPILE) -DETAGS_REGEXPS -c etags.c
856
857 ctags._o: etags._c
858         $(COMPILE) -DCTAGS -c etags.c && mv etags._o ctags.o
859 @end example
860
861 As it turns out, there is also a much easier way to do this same task.
862 Some of the above techniques are useful enough that we've kept the
863 example in the manual.  However if you were to build @code{etags} and
864 @code{ctags} in real life, you would probably use per-program
865 compilation flags, like so:
866
867 @example
868 bin_PROGRAMS = ctags etags
869
870 ctags_SOURCES = etags.c
871 ctags_CPPFLAGS = -DCTAGS
872
873 etags_SOURCES = etags.c
874 etags_CPPFLAGS = -DETAGS_REGEXPS
875 @end example
876
877 In this case Automake will cause @file{etags.c} to be compiled twice,
878 with different flags.  De-ANSI-fication will work automatically.  In
879 this instance, the names of the object files would be chosen by
880 automake; they would be @file{ctags-etags.o} and @file{etags-etags.o}.
881 (The name of the object files rarely matters.)
882
883
884 @node Invoking Automake, configure, Examples, Top
885 @chapter Creating a @file{Makefile.in}
886
887 @cindex Multiple configure.in files
888 @cindex Invoking Automake
889 @cindex Automake, invoking
890
891 To create all the @file{Makefile.in}s for a package, run the
892 @code{automake} program in the top level directory, with no arguments.
893 @code{automake} will automatically find each appropriate
894 @file{Makefile.am} (by scanning @file{configure.in}; @pxref{configure})
895 and generate the corresponding @file{Makefile.in}.  Note that
896 @code{automake} has a rather simplistic view of what constitutes a
897 package; it assumes that a package has only one @file{configure.in}, at
898 the top.  If your package has multiple @file{configure.in}s, then you
899 must run @code{automake} in each directory holding a
900 @file{configure.in}.  (Alteratively, you may rely on Autoconf's
901 @code{autoreconf}, which is able to recurse your package tree and run
902 @code{automake} where appropriate.)
903
904 You can optionally give @code{automake} an argument; @file{.am} is
905 appended to the argument and the result is used as the name of the input
906 file.  This feature is generally only used to automatically rebuild an
907 out-of-date @file{Makefile.in}.  Note that @code{automake} must always
908 be run from the topmost directory of a project, even if being used to
909 regenerate the @file{Makefile.in} in some subdirectory.  This is
910 necessary because @code{automake} must scan @file{configure.in}, and
911 because @code{automake} uses the knowledge that a @file{Makefile.in} is
912 in a subdirectory to change its behavior in some cases.
913
914 @vindex AUTOCONF
915 Automake will run @code{autoconf} to scan @file{configure.in} and its
916 dependencies (@file{aclocal.m4}), therefore @code{autoconf} must be in
917 your @code{PATH}.  If there is an @code{AUTOCONF} variable in your
918 environment it will be used instead of @code{autoconf}, this allows you
919 to select a particular version of Autoconf.  By the way, don't
920 misunderstand this paragraph: Automake runs @code{autoconf} to
921 @strong{scan} your @file{configure.in}, this won't build
922 @file{configure} and you still have to run @code{autoconf} yourself for
923 this purpose.
924
925 @cindex Automake options
926 @cindex Options, Automake
927 @cindex Strictness, command line
928
929 @code{automake} accepts the following options:
930
931 @cindex Extra files distributed with Automake
932 @cindex Files distributed with Automake
933 @cindex config.guess
934
935 @table @samp
936 @item -a
937 @itemx --add-missing
938 @opindex -a
939 @opindex --add-missing
940 Automake requires certain common files to exist in certain situations;
941 for instance @file{config.guess} is required if @file{configure.in} runs
942 @code{AC_CANONICAL_HOST}.  Automake is distributed with several of these
943 files (@pxref{Auxiliary Programs}); this option will cause the missing
944 ones to be automatically added to the package, whenever possible.  In
945 general if Automake tells you a file is missing, try using this option.
946 By default Automake tries to make a symbolic link pointing to its own
947 copy of the missing file; this can be changed with @code{--copy}.
948
949 @item --libdir=@var{dir}
950 @opindex --libdir
951 Look for Automake data files in directory @var{dir} instead of in the
952 installation directory.  This is typically used for debugging.
953
954 @item -c
955 @opindex -c
956 @itemx --copy
957 @opindex --copy
958 When used with @code{--add-missing}, causes installed files to be
959 copied.  The default is to make a symbolic link.
960
961 @item --cygnus
962 @opindex --cygnus
963 Causes the generated @file{Makefile.in}s to follow Cygnus rules, instead
964 of GNU or Gnits rules.  For more information, see @ref{Cygnus}.
965
966 @item -f
967 @opindex -f
968 @itemx --force-missing
969 @opindex --force-missing
970 When used with @code{--add-missing}, causes standard files to be reinstalled
971 even if they already exist in the source tree.  This involves removing
972 the file from the source tree before creating the new symlink (or, with
973 @code{--copy}, copying the new file).
974
975 @item --foreign
976 @opindex --foreign
977 Set the global strictness to @samp{foreign}.  For more information, see
978 @ref{Strictness}.
979
980 @item --gnits
981 @opindex --gnits
982 Set the global strictness to @samp{gnits}.  For more information, see
983 @ref{Gnits}.
984
985 @item --gnu
986 @opindex --gnu
987 Set the global strictness to @samp{gnu}.  For more information, see
988 @ref{Gnits}.  This is the default strictness.
989
990 @item --help
991 @opindex --help
992 Print a summary of the command line options and exit.
993
994 @item -i
995 @itemx --ignore-deps
996 @opindex -i
997 This disables the dependency tracking feature in generated
998 @file{Makefile}s; see @ref{Dependencies}.
999
1000 @item --include-deps
1001 @opindex --include-deps
1002 This enables the dependency tracking feature.  This feature is enabled
1003 by default.  This option is provided for historical reasons only and
1004 probably should not be used.
1005
1006 @item --no-force
1007 @opindex --no-force
1008 Ordinarily @code{automake} creates all @file{Makefile.in}s mentioned in
1009 @file{configure.in}.  This option causes it to only update those
1010 @file{Makefile.in}s which are out of date with respect to one of their
1011 dependents.
1012
1013 @item -o @var{dir}
1014 @itemx --output-dir=@var{dir}
1015 @opindex -o
1016 @opindex --output-dir
1017 Put the generated @file{Makefile.in} in the directory @var{dir}.
1018 Ordinarily each @file{Makefile.in} is created in the directory of the
1019 corresponding @file{Makefile.am}.  This option is deprecated and will be
1020 removed in a future release.
1021
1022 @item -v
1023 @itemx --verbose
1024 @opindex -v
1025 @opindex --verbose
1026 Cause Automake to print information about which files are being read or
1027 created.
1028
1029 @item --version
1030 @opindex --version
1031 Print the version number of Automake and exit.
1032
1033 @item -W CATEGORY
1034 @item --warnings=@var{category}
1035 @opindex -W
1036 @opindex --warnings
1037 Output warnings falling in @var{category}.  @var{category} can be
1038 one of:
1039 @table @samp
1040 @item gnu
1041 warnings related to the GNU Coding Standards
1042 (@pxref{Top, , , standards, The GNU Coding Standards}).
1043 @item obsolete
1044 obsolete features or constructions
1045 @item unsupported
1046 unsupported or incomplete features
1047 @item unused
1048 unused variables
1049 @item portability
1050 portability issues
1051 @item all
1052 all the warnings
1053 @item none
1054 turn off all the warnings
1055 @item error
1056 treat warnings as errors
1057 @end table
1058
1059 A category can be turned off by prefixing its name with @samp{no-}.  For
1060 instance @samp{-Wno-unused} will hide the warnings about unused
1061 variables.
1062
1063 The categories output by default are @samp{unsupported} and
1064 @samp{unused}.  Additionally, @samp{gnu} and @samp{portability} warnings
1065 are enabled in @samp{--gnu} and @samp{--gnits} strictness.
1066
1067 @vindex WARNINGS
1068 The environment variable @samp{WARNINGS} can contain a comma separated
1069 list of categories to enable.  It will be taken into account before the
1070 command-line switches, this way @samp{-Wnone} will also ignore any
1071 warning category enabled by @samp{WARNINGS}.  This variable is also used
1072 by other tools like @command{autoconf}; unknown categories are ignored
1073 for this reason.
1074
1075 @end table
1076
1077
1078 @node configure, Top level, Invoking Automake, Top
1079 @chapter Scanning @file{configure.in}
1080
1081 @cindex configure.in, scanning
1082 @cindex Scanning configure.in
1083
1084 Automake scans the package's @file{configure.in} to determine certain
1085 information about the package.  Some @code{autoconf} macros are required
1086 and some variables must be defined in @file{configure.in}.  Automake
1087 will also use information from @file{configure.in} to further tailor its
1088 output.
1089
1090 Automake also supplies some Autoconf macros to make the maintenance
1091 easier.  These macros can automatically be put into your
1092 @file{aclocal.m4} using the @code{aclocal} program.
1093
1094 @menu
1095 * Requirements::                Configuration requirements
1096 * Optional::                    Other things Automake recognizes
1097 * Invoking aclocal::            Auto-generating aclocal.m4
1098 * Macros::                      Autoconf macros supplied with Automake
1099 * Extending aclocal::           Writing your own aclocal macros
1100 @end menu
1101
1102
1103 @node Requirements, Optional, configure, configure
1104 @section Configuration requirements
1105
1106 @cindex Automake requirements
1107 @cindex Requirements of Automake
1108
1109 The one real requirement of Automake is that your @file{configure.in}
1110 call @code{AM_INIT_AUTOMAKE}.  This macro does several things which are
1111 required for proper Automake operation (@pxref{Macros}).
1112 @cvindex AM_INIT_AUTOMAKE
1113
1114 Here are the other macros which Automake requires but which are not run
1115 by @code{AM_INIT_AUTOMAKE}:
1116
1117 @cindex AC_OUTPUT, scanning
1118
1119 @table @code
1120 @item AC_CONFIG_FILES
1121 @itemx AC_OUTPUT
1122 Automake uses these to determine which files to create (@pxref{Output, ,
1123 Creating Output Files, autoconf, The Autoconf Manual}).  A listed file
1124 is considered to be an Automake generated @file{Makefile} if there
1125 exists a file with the same name and the @file{.am} extension appended.
1126 Typically, @code{AC_CONFIG_FILES([foo/Makefile])} will cause Automake to
1127 generate @file{foo/Makefile.in} if @file{foo/Makefile.am} exists.
1128
1129 Other listed files are treated differently.  Currently the only
1130 difference is that an Automake @file{Makefile} is removed by @code{make
1131 distclean}, while other files are removed by @code{make clean}.
1132 @c FIXME: this is in violation of standards!
1133 @cvindex AC_OUTPUT
1134 @end table
1135
1136
1137 @node Optional, Invoking aclocal, Requirements, configure
1138 @section Other things Automake recognizes
1139
1140 @cindex Macros Automake recognizes
1141 @cindex Recognized macros by Automake
1142
1143 Automake will also recognize the use of certain macros and tailor the
1144 generated @file{Makefile.in} appropriately.  Currently recognized macros
1145 and their effects are:
1146
1147 @table @code
1148 @item AC_CONFIG_HEADERS
1149 Automake will generate rules to rebuild these headers.  Older versions
1150 of Automake required the use of @code{AM_CONFIG_HEADER}
1151 (@pxref{Macros}); this no longuer the case today.
1152 @cvindex AC_CONFIG_HEADERS
1153
1154 @item AC_CONFIG_AUX_DIR
1155 Automake will look for various helper scripts, such as
1156 @file{mkinstalldirs}, in the directory named in this macro invocation.
1157 If not seen, the scripts are looked for in their @samp{standard}
1158 locations (either the top source directory, or in the source directory
1159 corresponding to the current @file{Makefile.am}, whichever is
1160 appropriate).  @xref{Input, , Finding `configure' Input, autoconf, The
1161 Autoconf Manual}.
1162 @cvindex AC_CONFIG_AUX_DIR
1163 FIXME: give complete list of things looked for in this directory
1164
1165 @item AC_PATH_XTRA
1166 Automake will insert definitions for the variables defined by
1167 @code{AC_PATH_XTRA} into each @file{Makefile.in} that builds a C program
1168 or library.  @xref{System Services, , System Services, autoconf, The
1169 Autoconf Manual}.
1170 @cvindex AC_PATH_XTRA
1171
1172 @item AC_CANONICAL_HOST
1173 Automake will ensure that @file{config.guess} and @file{config.sub}
1174 exist.  Also, the @file{Makefile} variables @samp{host_alias} and
1175 @samp{host_triplet} are introduced.  See @ref{Canonicalizing, ,
1176 Getting the Canonical System Type, autoconf, The Autoconf Manual}.
1177 @cvindex AC_CANONICAL_HOST
1178 @vindex host_alias
1179 @vindex host_triplet
1180
1181 @item AC_CANONICAL_SYSTEM
1182 This is similar to @code{AC_CANONICAL_HOST}, but also defines the
1183 @file{Makefile} variables @samp{build_alias} and @samp{target_alias}.
1184 @xref{Canonicalizing, , Getting the Canonical System Type, autoconf, The
1185 Autoconf Manual}.
1186 @cvindex AC_CANONICAL_SYSTEM
1187 @vindex build_alias
1188 @vindex target_alias
1189
1190 @item  AC_FUNC_ALLOCA
1191 @itemx AC_FUNC_ERROR_AT_LINE
1192 @itemx AC_FUNC_FNMATCH
1193 @itemx AC_FUNC_GETLOADAVG
1194 @itemx AC_FUNC_MEMCMP
1195 @itemx AC_FUNC_MKTIME
1196 @itemx AC_FUNC_OBSTACK
1197 @itemx AC_FUNC_STRTOD
1198 @itemx AC_REPLACE_FUNCS
1199 @itemx AC_REPLACE_GNU_GETOPT
1200 @itemx AC_STRUCT_ST_BLOCKS
1201 @itemx AM_WITH_REGEX
1202 Automake will ensure that the appropriate dependencies are generated for
1203 the objects corresponding to these macros.  Also, Automake will verify
1204 that the appropriate source files are part of the distribution.  Note
1205 that Automake does not come with any of the C sources required to use
1206 these macros, so @code{automake -a} will not install the sources.
1207 @xref{A Library}, for more information.  Also, see @ref{Particular
1208 Functions, , Particular Function Checks, autoconf, The Autoconf Manual}.
1209 @cvindex AC_FUNC_ALLOCA
1210 @cvindex AC_FUNC_ERROR_AT_LINE
1211 @cvindex AC_FUNC_FNMATCH
1212 @cvindex AC_FUNC_GETLOADAVG
1213 @cvindex AC_FUNC_MEMCMP
1214 @cvindex AC_FUNC_MKTIME
1215 @cvindex AC_FUNC_OBSTACK
1216 @cvindex AC_FUNC_STRTOD
1217 @cvindex AC_REPLACE_FUNCS
1218 @cvindex AC_REPLACE_GNU_GETOPT
1219 @cvindex AC_STRUCT_ST_BLOCKS
1220 @cvindex AM_WITH_REGEX
1221
1222 @item AC_LIBOBJ
1223 @itemx LIBOBJS
1224 @itemx AC_LIBSOURCE
1225 @itemx AC_LIBSOURCES
1226 Automake will detect statements which put @file{.o} files into
1227 @code{LIBOBJS}, or pass @file{.o} files to @code{AC_LIBOBJ}, and will
1228 treat these additional files as if they were discovered via
1229 @code{AC_REPLACE_FUNCS}.  Similarly, Automake will also distribute file
1230 listed in @code{AC_LIBSOURCE} and @code{AC_LIBSOURCES}.
1231
1232 Note that assignments to @code{LIBOBJS} is a construct which is being
1233 phased out; they will be ignored in a future release of Automake.  You
1234 should call the @code{AC_LIBOBJ} macro instead.  @xref{Generic
1235 Functions, , Generic Function Checks, autoconf, The Autoconf Manual}.
1236
1237 @cvindex AC_LIBOBJ
1238 @cvindex AC_LIBSOURCE
1239 @cvindex AC_LIBSOURCES
1240 @cvindex LIBOBJS
1241
1242 @item AC_PROG_RANLIB
1243 This is required if any libraries are built in the package.
1244 @xref{Particular Programs, , Particular Program Checks, autoconf, The
1245 Autoconf Manual}.
1246 @cvindex AC_PROG_RANLIB
1247
1248 @item AC_PROG_CXX
1249 This is required if any C++ source is included.  @xref{Particular
1250 Programs, , Particular Program Checks, autoconf, The Autoconf Manual}.
1251 @cvindex AC_PROG_CXX
1252
1253 @item AC_PROG_F77
1254 This is required if any Fortran 77 source is included.  This macro is
1255 distributed with Autoconf version 2.13 and later.  @xref{Particular
1256 Programs, , Particular Program Checks, autoconf, The Autoconf Manual}.
1257 @cvindex AC_PROG_F77
1258
1259 @item AC_F77_LIBRARY_LDFLAGS
1260 This is required for programs and shared libraries that are a mixture of
1261 languages that include Fortran 77 (@pxref{Mixing Fortran 77 With C and
1262 C++}).  @xref{Macros, , Autoconf macros supplied with Automake}.
1263 @cvindex AC_F77_LIBRARY_LDFLAGS
1264
1265 @item AC_PROG_LIBTOOL
1266 Automake will turn on processing for @code{libtool} (@pxref{Top, ,
1267 Introduction, libtool, The Libtool Manual}).
1268 @cvindex AC_PROG_LIBTOOL
1269
1270 @item AC_PROG_YACC
1271 If a Yacc source file is seen, then you must either use this macro or
1272 define the variable @samp{YACC} in @file{configure.in}.  The former is
1273 preferred (@pxref{Particular Programs, , Particular Program Checks,
1274 autoconf, The Autoconf Manual}).
1275 @cvindex AC_PROG_YACC
1276 @cvindex YACC
1277
1278 @item AC_PROG_LEX
1279 If a Lex source file is seen, then this macro must be used.
1280 @xref{Particular Programs, , Particular Program Checks, autoconf, The
1281 Autoconf Manual}.
1282 @cvindex AC_PROG_LEX
1283
1284 @item AM_C_PROTOTYPES
1285 This is required when using automatic de-ANSI-fication; see @ref{ANSI}.
1286 @cvindex AM_C_PROTOTYPES
1287
1288 @item AM_GNU_GETTEXT
1289 This macro is required for packages which use GNU gettext
1290 (@pxref{gettext}).  It is distributed with gettext.  If Automake sees
1291 this macro it ensures that the package meets some of gettext's
1292 requirements.
1293 @cvindex AM_GNU_GETTEXT
1294
1295 @item AM_MAINTAINER_MODE
1296 @opindex --enable-maintainer-mode
1297 This macro adds a @samp{--enable-maintainer-mode} option to
1298 @code{configure}.  If this is used, @code{automake} will cause
1299 @samp{maintainer-only} rules to be turned off by default in the
1300 generated @file{Makefile.in}s. This macro defines the
1301 @samp{MAINTAINER_MODE} conditional, which you can use in your own
1302 @file{Makefile.am}.
1303 @cvindex AM_MAINTAINER_MODE
1304
1305 @item AC_SUBST
1306 @itemx AC_CHECK_TOOL
1307 @itemx AC_CHECK_PROG
1308 @itemx AC_CHECK_PROGS
1309 @itemx AC_PATH_PROG
1310 @itemx AC_PATH_PROGS
1311 For each of these macros, the first argument is automatically defined as
1312 a variable in each generated @file{Makefile.in}.  @xref{Setting Output
1313 Variables, , Setting Output Variables, autoconf, The Autoconf Manual},
1314 and @ref{Generic Programs, , Generic Program Checks, autoconf, The
1315 Autoconf Manual}.
1316 @cvindex AC_SUBST
1317 @cvindex AC_CHECK_TOOL
1318 @cvindex AC_CHECK_PROG
1319 @cvindex AC_CHECK_PROGS
1320 @cvindex AC_PATH_PROG
1321 @cvindex AC_PATH_PROGS
1322
1323 @end table
1324
1325
1326 @node Invoking aclocal, Macros, Optional, configure
1327 @section Auto-generating aclocal.m4
1328
1329 @cindex Invoking aclocal
1330 @cindex aclocal, Invoking
1331
1332 Automake includes a number of Autoconf macros which can be used in your
1333 package; some of them are actually required by Automake in certain
1334 situations.  These macros must be defined in your @file{aclocal.m4};
1335 otherwise they will not be seen by @code{autoconf}.
1336
1337 The @code{aclocal} program will automatically generate @file{aclocal.m4}
1338 files based on the contents of @file{configure.in}.  This provides a
1339 convenient way to get Automake-provided macros, without having to
1340 search around.  Also, the @code{aclocal} mechanism allows other packages
1341 to supply their own macros.
1342
1343 At startup, @code{aclocal} scans all the @file{.m4} files it can find,
1344 looking for macro definitions (@pxref{Macro search path}).  Then it
1345 scans @file{configure.in}.  Any
1346 mention of one of the macros found in the first step causes that macro,
1347 and any macros it in turn requires, to be put into @file{aclocal.m4}.
1348
1349 The contents of @file{acinclude.m4}, if it exists, are also
1350 automatically included in @file{aclocal.m4}.  This is useful for
1351 incorporating local macros into @file{configure}.
1352
1353 @code{aclocal} tries to be smart about looking for new @code{AC_DEFUN}s
1354 in the files it scans.  It also
1355 tries to copy the full text of the scanned file into @file{aclocal.m4},
1356 including both @samp{#} and @samp{dnl} comments.  If you want to make a
1357 comment which will be completely ignored by @code{aclocal}, use
1358 @samp{##} as the comment leader.
1359
1360 @menu
1361 * aclocal options::             Options supported by aclocal
1362 * Macro search path::           How aclocal finds .m4 files
1363 @end menu
1364
1365 @node aclocal options, Macro search path, Invoking aclocal, Invoking aclocal
1366 @section aclocal options
1367
1368 @cindex aclocal, Options
1369 @cindex Options, aclocal
1370
1371 @code{aclocal} accepts the following options:
1372
1373 @table @code
1374 @item --acdir=@var{dir}
1375 @opindex --acdir
1376 Look for the macro files in @var{dir} instead of the installation
1377 directory.  This is typically used for debugging.
1378
1379 @item --help
1380 @opindex --help
1381 Print a summary of the command line options and exit.
1382
1383 @item -I @var{dir}
1384 @opindex -I
1385 Add the directory @var{dir} to the list of directories searched for
1386 @file{.m4} files.
1387
1388 @item --output=@var{file}
1389 @opindex --output
1390 Cause the output to be put into @var{file} instead of @file{aclocal.m4}.
1391
1392 @item --print-ac-dir
1393 @opindex --print-ac-dir
1394 Prints the name of the directory which @code{aclocal} will search to
1395 find third-party @file{.m4} files.  When this option is given, normal
1396 processing is suppressed.  This option can be used by a package to
1397 determine where to install a macro file.
1398
1399 @item --verbose
1400 @opindex --verbose
1401 Print the names of the files it examines.
1402
1403 @item --version
1404 @opindex --version
1405 Print the version number of Automake and exit.
1406 @end table
1407
1408 @node Macro search path, , aclocal options, Invoking aclocal
1409 @section Macro search path
1410
1411 @cindex Macro search path
1412 @cindex aclocal search path
1413
1414 By default, @command{aclocal} searches for @file{.m4} files in the following
1415 directories, in this order:
1416
1417 @table @code
1418 @item @var{acdir-APIVERSION}
1419 This is where the @file{.m4} macros distributed with automake itself
1420 are stored.  @var{APIVERSION} depends on the automake release used;
1421 for automake 1.6.x, @var{APIVERSION} = @code{1.6}.
1422
1423 @item @var{acdir}
1424 This directory is intended for third party @file{.m4} files, and is
1425 configured when @command{automake} itself is built.  This is
1426 @file{@@datadir@@/aclocal/}, which typically
1427 expands to @file{$@{prefix@}/share/aclocal/}.  To find the compiled-in
1428 value of @var{acdir}, use the @code{--print-ac-dir} option
1429 (@pxref{aclocal options}).
1430 @end table
1431
1432 As an example, suppose that automake-1.6.2 was configured with
1433 @code{--prefix=/usr/local}.  Then, the search path would be:
1434
1435 @enumerate
1436 @item @file{/usr/local/share/aclocal-1.6/}
1437 @item @file{/usr/local/share/aclocal/}
1438 @end enumerate
1439
1440 As explained in (@pxref{aclocal options}), there are several options that
1441 can be used to change or extend this search path.
1442
1443 @subsection Modifying the macro search path: @code{--acdir}
1444
1445 The most obvious option to modify the search path is
1446 @code{--acdir=@var{dir}}, which changes default directory and
1447 drops the @var{APIVERSION} directory.  For example, if one specifies
1448 @code{--acdir=/opt/private/}, then the search path becomes:
1449
1450 @enumerate
1451 @item @file{/opt/private/}
1452 @end enumerate
1453
1454 Note that this option, @code{--acdir}, is intended for use
1455 by the internal automake test suite only; it is not ordinarily
1456 needed by end-users.
1457
1458 @subsection Modifying the macro search path: @code{-I @var{dir}}
1459
1460 Any extra directories specified using @code{-I} options
1461 (@pxref{aclocal options}) are @emph{prepended} to this search list.  Thus,
1462 @code{aclocal -I /foo -I /bar} results in the following search path:
1463
1464 @enumerate
1465 @item @file{/foo}
1466 @item @file{/bar}
1467 @item @var{acdir}-@var{APIVERSION}
1468 @item @var{acdir}
1469 @end enumerate
1470
1471 @subsection Modifying the macro search path: @file{dirlist}
1472 @cindex @file{dirlist}
1473
1474 There is a third mechanism for customizing the search path.  If a
1475 @file{dirlist} file exists in @var{acdir}, then that file is assumed to
1476 contain a list of directories, one per line, to be added to the search
1477 list.  These directories are searched @emph{after} all other
1478 directories.
1479
1480 For example, suppose
1481 @file{@var{acdir}/dirlist} contains the following:
1482
1483 @example
1484 /test1
1485 /test2
1486 @end example
1487
1488 @noindent
1489 and that @code{aclocal} was called with the @code{-I /foo -I /bar} options.
1490 Then, the search path would be
1491
1492 @enumerate
1493 @item @file{/foo}
1494 @item @file{/bar}
1495 @item @var{acdir}-@var{APIVERSION}
1496 @item @var{acdir}
1497 @item @file{/test1}
1498 @item @file{/test2}
1499 @end enumerate
1500
1501 If the @code{--acdir=@var{dir}} option is used, then @command{aclocal}
1502 will search for the @file{dirlist} file in @var{dir}.  In the
1503 @code{--acdir=/opt/private/} example above, @command{aclocal} would look
1504 for @file{/opt/private/dirlist}.  Again, however, the @code{--acdir}
1505 option is intended for use by the internal automake test suite only;
1506 @code{--acdir} is not ordinarily needed by end-users.
1507
1508 @file{dirlist} is useful in the following situation: suppose that
1509 @code{automake} version @code{1.6.2} is installed with
1510 $prefix=/usr by the system vendor. Thus, the default search
1511 directories are
1512
1513 @enumerate
1514 @item @file{/usr/share/aclocal-1.6/}
1515 @item @file{/usr/share/aclocal/}
1516 @end enumerate
1517
1518 However, suppose further that many packages have been manually
1519 installed on the system, with $prefix=/usr/local, as is typical.
1520 In that case, many of these ``extra'' @file{.m4} files are in
1521 @file{/usr/local/share/aclocal}.  The only way to force
1522 @file{/usr/bin/aclocal} to find these ``extra'' @file{.m4} files
1523 is to always call @code{aclocal -I /usr/local/share/aclocal}.
1524 This is inconvenient.  With @file{dirlist}, one may create the file
1525
1526 @file{/usr/share/aclocal/dirlist}
1527
1528 @noindent
1529 which contains only the single line
1530
1531 @file{/usr/local/share/aclocal}
1532
1533 Now, the ``default'' search path on the affected system is
1534
1535 @enumerate
1536 @item @file{/usr/share/aclocal-1.6/}
1537 @item @file{/usr/share/aclocal/}
1538 @item @file{/usr/local/share/aclocal/}
1539 @end enumerate
1540
1541 without the need for @code{-I} options; @code{-I} options can be reserved
1542 for project-specific needs (@file{my-source-dir/m4/}), rather than
1543 using it to work around local system-dependent tool installation
1544 directories.
1545
1546 Similarly, @file{dirlist} can be handy if you have installed a local
1547 copy Automake on your account and want @command{aclocal} to look for
1548 macros installed at other places on the system.
1549
1550 @node Macros, Extending aclocal, Invoking aclocal, configure
1551 @section Autoconf macros supplied with Automake
1552
1553 Automake ships with several Autoconf macros that you can use from your
1554 @file{configure.in}.  When you use one of them it will be included by
1555 @code{aclocal} in @file{aclocal.m4}.
1556
1557 @menu
1558 * Public macros::               Macros that you can use.
1559 * Private macros::              Macros that you should not use.
1560 @end menu
1561
1562 @c consider generating the following subsections automatically from m4 files.
1563
1564 @node Public macros, Private macros, Macros, Macros
1565 @subsection Public macros
1566
1567 @table @code
1568 @item AM_CONFIG_HEADER
1569 Automake will generate rules to automatically regenerate the config
1570 header.  This obsolete macro is a synonym of @code{AC_CONFIG_HEADERS}
1571 today (@pxref{Optional}).
1572 @cvindex AM_CONFIG_HEADER
1573
1574 @item AM_ENABLE_MULTILIB
1575 This is used when a ``multilib'' library is being built.  The first
1576 optional argument is the name of the @file{Makefile} being generated; it
1577 defaults to @samp{Makefile}.  The second option argument is used to find
1578 the top source directory; it defaults to the empty string (generally
1579 this should not be used unless you are familiar with the internals).
1580 @xref{Multilibs}.
1581
1582 @item AM_C_PROTOTYPES
1583 Check to see if function prototypes are understood by the compiler.  If
1584 so, define @samp{PROTOTYPES} and set the output variables @samp{U} and
1585 @samp{ANSI2KNR} to the empty string.  Otherwise, set @samp{U} to
1586 @samp{_} and @samp{ANSI2KNR} to @samp{./ansi2knr}.  Automake uses these
1587 values to implement automatic de-ANSI-fication.
1588 @cvindex AM_C_PROTOTYPES
1589
1590 @item AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
1591 If the use of @code{TIOCGWINSZ} requires @file{<sys/ioctl.h>}, then
1592 define @code{GWINSZ_IN_SYS_IOCTL}.  Otherwise @code{TIOCGWINSZ} can be
1593 found in @file{<termios.h>}.
1594 @cvindex AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
1595
1596 @item AM_INIT_AUTOMAKE([OPTIONS])
1597 @itemx AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
1598 Runs many macros required for proper operation of the generated Makefiles.
1599
1600 This macro has two forms, the second of which has two required
1601 arguments: the package and the version number.  This latter form is
1602 obsolete because the @var{package} and @var{version} can be obtained
1603 from Autoconf's @code{AC_INIT} macro (which itself has an old and a new
1604 form).
1605
1606 If your @file{configure.in} has:
1607 @example
1608 AC_INIT(src/foo.c)
1609 AM_INIT_AUTOMAKE(mumble, 1.5)
1610 @end example
1611 you can modernize it as follow:
1612 @example
1613 AC_INIT(mumble, 1.5)
1614 AC_CONFIG_SRCDIR(src/foo.c)
1615 AM_INIT_AUTOMAKE
1616 @end example
1617
1618 Note that if you're upgrading your @file{configure.in} from an earlier
1619 version of Automake, it is not always correct to simply move the package
1620 and version arguments from @code{AM_INIT_AUTOMAKE} directly to
1621 @code{AC_INIT}, as in the example above.  The first argument of
1622 @code{AC_INIT} is the name of your package (e.g. @samp{GNU Automake}),
1623 not the tarball name (e.g. @samp{automake}) you used to pass to
1624 @code{AM_INIT_AUTOMAKE}.  Autoconf's rule to derive a tarball name from
1625 the package name should work for most but not all packages.  Especially,
1626 if your tarball name is not all lower case, you will have to use the
1627 four-argument form of @code{AC_INIT} (supported in Autoconf versions
1628 greater than 2.52g).
1629
1630 When @code{AM_INIT_AUTOMAKE} is called with a single argument, it is
1631 interpreted as a space-separated list of Automake options which should
1632 be applied to every @file{Makefile.am} in the tree.  The effect is as if
1633 each option were listed in @code{AUTOMAKE_OPTIONS}.
1634
1635 By default this macro @code{AC_DEFINE}'s @samp{PACKAGE} and
1636 @samp{VERSION}.  This can be avoided by passing the @samp{no-define}
1637 option, as in:
1638 @example
1639 AM_INIT_AUTOMAKE([gnits 1.5 no-define dist-bzip2])
1640 @end example
1641 or by passing a third non-empty argument to the obsolete form.
1642
1643 @cvindex PACKAGE, prevent definition
1644 @cvindex VERSION, prevent definition
1645
1646
1647 @item AM_PATH_LISPDIR
1648 Searches for the program @code{emacs}, and, if found, sets the output
1649 variable @code{lispdir} to the full path to Emacs' site-lisp directory.
1650
1651 Note that this test assumes the @code{emacs} found to be a version that
1652 supports Emacs Lisp (such as @sc{gnu} Emacs or XEmacs).  Other emacsen
1653 can cause this test to hang (some, like old versions of MicroEmacs,
1654 start up in interactive mode, requiring @samp{C-x C-c} to exit, which
1655 is hardly obvious for a non-emacs user).  In most cases, however, you
1656 should be able to use @samp{C-c} to kill the test.  In order to avoid
1657 problems, you can set @code{EMACS} to ``no'' in the environment, or
1658 use the @samp{--with-lispdir} option to @command{configure} to
1659 explictly set the correct path (if you're sure you have an @code{emacs}
1660 that supports Emacs Lisp.
1661 @cvindex AM_PATH_LISPDIR
1662
1663 @item AM_PROG_AS
1664 Use this macro when you have assembly code in your project.  This will
1665 choose the assembler for you (by default the C compiler) and set
1666 @code{CCAS}, and will also set @code{CCASFLAGS} if required.
1667
1668 @item AM_PROG_CC_C_O
1669 This is like @code{AC_PROG_CC_C_O}, but it generates its results in the
1670 manner required by automake.  You must use this instead of
1671 @code{AC_PROG_CC_C_O} when you need this functionality.
1672
1673 @item AM_PROG_CC_STDC
1674 If the C compiler is not in ANSI C mode by default, try to add an option
1675 to output variable @code{CC} to make it so.  This macro tries various
1676 options that select ANSI C on some system or another.  It considers the
1677 compiler to be in ANSI C mode if it handles function prototypes correctly.
1678
1679 If you use this macro, you should check after calling it whether the C
1680 compiler has been set to accept ANSI C; if not, the shell variable
1681 @code{am_cv_prog_cc_stdc} is set to @samp{no}.  If you wrote your source
1682 code in ANSI C, you can make an un-ANSIfied copy of it by using the
1683 @code{ansi2knr} option (@pxref{ANSI}).
1684
1685 @item AM_PROG_LEX
1686 @cindex HP-UX 10, lex problems
1687 @cindex lex problems with HP-UX 10
1688 Like @code{AC_PROG_LEX} (@pxref{Particular Programs, , Particular
1689 Program Checks, autoconf, The Autoconf Manual}), but uses the
1690 @code{missing} script on systems that do not have @code{lex}.
1691 @samp{HP-UX 10} is one such system.
1692
1693 @item AM_PROG_GCJ
1694 This macro finds the @code{gcj} program or causes an error.  It sets
1695 @samp{GCJ} and @samp{GCJFLAGS}.  @code{gcj} is the Java front-end to the
1696 GNU Compiler Collection.
1697 @cvindex AM_PROG_GCJ
1698
1699 @item AM_SYS_POSIX_TERMIOS
1700 @cvindex am_cv_sys_posix_termios
1701 @cindex POSIX termios headers
1702 @cindex termios POSIX headers
1703 Check to see if POSIX termios headers and functions are available on the
1704 system.  If so, set the shell variable @code{am_cv_sys_posix_termios} to
1705 @samp{yes}.  If not, set the variable to @samp{no}.
1706
1707 @item AM_WITH_DMALLOC
1708 @cvindex WITH_DMALLOC
1709 @cindex dmalloc, support for
1710 @opindex --with-dmalloc
1711 Add support for the
1712 @uref{ftp://ftp.letters.com/src/dmalloc/dmalloc.tar.gz, dmalloc}
1713 package.  If the user configures with @samp{--with-dmalloc}, then define
1714 @code{WITH_DMALLOC} and add @samp{-ldmalloc} to @code{LIBS}.
1715
1716 @item AM_WITH_REGEX
1717 @cvindex WITH_REGEX
1718 @opindex --with-regex
1719 @cindex regex package
1720 @cindex rx package
1721 Adds @samp{--with-regex} to the @code{configure} command line.  If
1722 specified (the default), then the @samp{regex} regular expression
1723 library is used, @file{regex.o} is put into @samp{LIBOBJS}, and
1724 @samp{WITH_REGEX} is defined.  If @samp{--without-regex} is given, then
1725 the @samp{rx} regular expression library is used, and @file{rx.o} is put
1726 into @samp{LIBOBJS}.
1727
1728 @end table
1729
1730 @node Private macros,  , Public macros, Macros
1731 @subsection Private macros
1732
1733 The following macros are private macros you should not call directly.
1734 They are called by the other public macros when appropriate.  Do not
1735 rely on them, as they might be changed in a future version.  Consider
1736 them as implementation details; or better, do not consider them at all:
1737 skip this section!
1738
1739 @table @code
1740 @item _AM_DEPENDENCIES
1741 @itemx AM_SET_DEPDIR
1742 @itemx AM_DEP_TRACK
1743 @itemx AM_OUTPUT_DEPENDENCY_COMMANDS
1744 These macros are used to implement automake's automatic dependency
1745 tracking scheme.  They are called automatically by automake when
1746 required, and there should be no need to invoke them manually.
1747
1748 @item AM_MAKE_INCLUDE
1749 This macro is used to discover how the user's @code{make} handles
1750 @code{include} statements.  This macro is automatically invoked when
1751 needed; there should be no need to invoke it manually.
1752
1753 @item AM_PROG_INSTALL_STRIP
1754 This is used to find a version of @code{install} which can be used to
1755 @code{strip} a program at installation time.  This macro is
1756 automatically included when required.
1757
1758 @item AM_SANITY_CHECK
1759 This checks to make sure that a file created in the build directory is
1760 newer than a file in the source directory.  This can fail on systems
1761 where the clock is set incorrectly.  This macro is automatically run
1762 from @code{AM_INIT_AUTOMAKE}.
1763
1764 @end table
1765
1766
1767
1768 @node Extending aclocal,  , Macros, configure
1769 @section Writing your own aclocal macros
1770
1771 @cindex aclocal, extending
1772 @cindex Extending aclocal
1773
1774 The @code{aclocal} program doesn't have any built-in knowledge of any
1775 macros, so it is easy to extend it with your own macros.
1776
1777 This is mostly used for libraries which want to supply their own
1778 Autoconf macros for use by other programs.  For instance the
1779 @code{gettext} library supplies a macro @code{AM_GNU_GETTEXT} which
1780 should be used by any package using @code{gettext}.  When the library is
1781 installed, it installs this macro so that @code{aclocal} will find it.
1782
1783 A file of macros should be a series of @code{AC_DEFUN}'s.  The
1784 @code{aclocal} programs also understands @code{AC_REQUIRE}, so it is
1785 safe to put each macro in a separate file.  @xref{Prerequisite Macros, ,
1786 , autoconf, The Autoconf Manual}, and @ref{Macro Definitions, , ,
1787 autoconf, The Autoconf Manual}.
1788
1789 A macro file's name should end in @file{.m4}.  Such files should be
1790 installed in @code{`aclocal --print-ac-dir`} (which usually happens to
1791 be @file{$(datadir)/aclocal}).
1792
1793
1794 @node Top level, Alternative, configure, Top
1795 @chapter The top-level @file{Makefile.am}
1796
1797 @cindex SUBDIRS, explained
1798
1799 In packages with subdirectories, the top level @file{Makefile.am} must
1800 tell Automake which subdirectories are to be built.  This is done via
1801 the @code{SUBDIRS} variable.
1802 @vindex SUBDIRS
1803
1804 The @code{SUBDIRS} variable holds a list of subdirectories in which
1805 building of various sorts can occur.  Many targets (e.g. @code{all}) in
1806 the generated @file{Makefile} will run both locally and in all specified
1807 subdirectories.  Note that the directories listed in @code{SUBDIRS} are
1808 not required to contain @file{Makefile.am}s; only @file{Makefile}s
1809 (after configuration).  This allows inclusion of libraries from packages
1810 which do not use Automake (such as @code{gettext}).  The directories
1811 mentioned in @code{SUBDIRS} must be direct children of the current
1812 directory.  For instance, you cannot put @samp{src/subdir} into
1813 @code{SUBDIRS}.
1814
1815 In packages that use subdirectories, the top-level @file{Makefile.am} is
1816 often very short.  For instance, here is the @file{Makefile.am} from the
1817 GNU Hello distribution:
1818
1819 @example
1820 EXTRA_DIST = BUGS ChangeLog.O README-alpha
1821 SUBDIRS = doc intl po src tests
1822 @end example
1823
1824 @cindex SUBDIRS, overriding
1825 @cindex Overriding SUBDIRS
1826
1827 It is possible to override the @code{SUBDIRS} variable if, like in the
1828 case of GNU @code{Inetutils}, you want to only build a subset of the
1829 entire package.  In your @file{Makefile.am} include:
1830
1831 @example
1832 SUBDIRS = @@MY_SUBDIRS@@
1833 @end example
1834
1835 Then in your @file{configure.in} you can specify:
1836
1837 @example
1838 MY_SUBDIRS="src doc lib po"
1839 AC_SUBST(MY_SUBDIRS)
1840 @end example
1841
1842 (Note that we don't use the variable name @code{SUBDIRS} in our
1843 @file{configure.in}; that would cause Automake to believe that every
1844 @file{Makefile.in} should recurse into the listed subdirectories.)
1845
1846 The upshot of this is that Automake is tricked into building the package
1847 to take the subdirs, but doesn't actually bind that list until
1848 @code{configure} is run.
1849
1850 Although the @code{SUBDIRS} variable can contain configure substitutions
1851 (e.g. @samp{@@DIRS@@}); Automake itself does not actually examine the
1852 contents of this variable.
1853
1854 If @code{SUBDIRS} is defined, then your @file{configure.in} must include
1855 @code{AC_PROG_MAKE_SET}.  When Automake invokes @code{make} in a
1856 subdirectory, it uses the value of the @code{MAKE} variable.  It passes
1857 the value of the variable @code{AM_MAKEFLAGS} to the @code{make}
1858 invocation; this can be set in @file{Makefile.am} if there are flags you
1859 must always pass to @code{make}.
1860 @vindex MAKE
1861 @vindex MAKEFLAGS
1862
1863 The use of @code{SUBDIRS} is not restricted to just the top-level
1864 @file{Makefile.am}.  Automake can be used to construct packages of
1865 arbitrary depth.
1866
1867 By default, Automake generates @file{Makefiles} which work depth-first
1868 (@samp{postfix}).  However, it is possible to change this ordering.  You
1869 can do this by putting @samp{.} into @code{SUBDIRS}.  For instance,
1870 putting @samp{.}  first will cause a @samp{prefix} ordering of
1871 directories.  All @samp{clean} targets are run in reverse order of build
1872 targets.
1873
1874 Sometimes, such as when running @code{make dist}, you want all possible
1875 subdirectories to be examined.  In this case Automake will use
1876 @code{DIST_SUBDIRS}, instead of @code{SUBDIRS}, to determine where to
1877 recurse.  This variable will also be used when the user runs
1878 @code{distclean} or @code{maintainer-clean}.  It should be set to the
1879 full list of subdirectories in the project.  If this variable is not set,
1880 Automake will attempt to set it for you.
1881
1882
1883 @node Alternative, Rebuilding, Top level, Top
1884 @chapter An Alternative Approach to Subdirectories
1885
1886 If you've ever read Peter Miller's excellent paper,
1887 @uref{http://www.pcug.org.au/~millerp/rmch/recu-make-cons-harm.html,
1888 Recursive Make Considered Harmful}, the preceding section on the use of
1889 subdirectories will probably come as unwelcome advice.  For those who
1890 haven't read the paper, Miller's main thesis is that recursive
1891 @code{make} invocations are both slow and error-prone.
1892
1893 Automake provides sufficient cross-directory support @footnote{We
1894 believe.  This work is new and there are probably warts.
1895 @xref{Introduction}, for information on reporting bugs.} to enable you
1896 to write a single @file{Makefile.am} for a complex multi-directory
1897 package.
1898
1899
1900 By default an installable file specified in a subdirectory will have its
1901 directory name stripped before installation.  For instance, in this
1902 example, the header file will be installed as
1903 @file{$(includedir)/stdio.h}:
1904
1905 @example
1906 include_HEADERS = inc/stdio.h
1907 @end example
1908
1909 @cindex nobase_
1910 @cindex Path stripping, avoiding
1911 @cindex Avoiding path stripping
1912
1913 However, the @samp{nobase_} prefix can be used to circumvent this path
1914 stripping.  In this example, the header file will be installed as
1915 @file{$(includedir)/sys/types.h}:
1916
1917 @example
1918 nobase_include_HEADERS = sys/types.h
1919 @end example
1920
1921 @cindex nobase_ and dist_ or nodist_
1922 @cindex dist_ and nobase_
1923 @cindex nodist_ and nobase_
1924
1925 @samp{nobase_} should be specified first when used in conjonction with
1926 either @samp{dist_} or @samp{nodist_} (@pxref{Dist}).  For instance:
1927
1928 @example
1929 nobase_dist_pkgdata_DATA = images/vortex.pgm
1930 @end example
1931
1932 @node Rebuilding, Programs, Alternative, Top
1933 @chapter Rebuilding Makefiles
1934
1935 Automake generates rules to automatically rebuild @file{Makefile}s,
1936 @file{configure}, and other derived files like @file{Makefile.in}.
1937
1938 If you are using @code{AM_MAINTAINER_MODE} in @file{configure.in}, then
1939 these automatic rebuilding rules are only enabled in maintainer mode.
1940
1941 Sometimes you need to run @code{aclocal} with an argument like @code{-I}
1942 to tell it where to find @file{.m4} files.  Since sometimes @code{make}
1943 will automatically run @code{aclocal}, you need a way to specify these
1944 arguments.  You can do this by defining @code{ACLOCAL_AMFLAGS}; this
1945 holds arguments which are passed verbatim to @code{aclocal}.  This variable
1946 is only useful in the top-level @file{Makefile.am}.
1947 @vindex ACLOCAL_AMFLAGS
1948
1949
1950 @node Programs, Other objects, Rebuilding, Top
1951 @chapter Building Programs and Libraries
1952
1953 A large part of Automake's functionality is dedicated to making it easy
1954 to build programs and libraries.
1955
1956 @menu
1957 * A Program::                   Building a program
1958 * A Library::                   Building a library
1959 * A Shared Library::            Building a Libtool library
1960 * Program and Library Variables::  Variables controlling program and
1961                                 library builds
1962 * LIBOBJS::                     Special handling for LIBOBJS and ALLOCA
1963 * Program variables::           Variables used when building a program
1964 * Yacc and Lex::                Yacc and Lex support
1965 * C++ Support::
1966 * Assembly Support::
1967 * Fortran 77 Support::
1968 * Java Support::
1969 * Support for Other Languages::
1970 * ANSI::                        Automatic de-ANSI-fication
1971 * Dependencies::                Automatic dependency tracking
1972 * EXEEXT::                      Support for executable extensions
1973 @end menu
1974
1975
1976 @node A Program, A Library, Programs, Programs
1977 @section Building a program
1978
1979 In order to build a program, you need to tell Automake which sources
1980 are part of it, and which libraries it should be linked with.
1981
1982 This section also covers conditional compilation of sources or
1983 programs.  Most of the comments about these also apply to libraries
1984 (@pxref{A Library}) and Libtool libraries (@pxref{A Shared Library}).
1985
1986 @menu
1987 * Program Sources::             Defining program sources
1988 * Linking::                     Linking with libraries or extra objects
1989 * Conditional Sources::         Handling conditional sources
1990 * Conditional Programs::        Building program conditionally
1991 @end menu
1992
1993 @node Program Sources, Linking, A Program, A Program
1994 @subsection Defining program sources
1995
1996 @cindex PROGRAMS, bindir
1997 @vindex bin_PROGRAMS
1998 @vindex sbin_PROGRAMS
1999 @vindex libexec_PROGRAMS
2000 @vindex pkglib_PROGRAMS
2001 @vindex noinst_PROGRAMS
2002 @vindex check_PROGRAMS
2003
2004 In a directory containing source that gets built into a program (as
2005 opposed to a library or a script), the @samp{PROGRAMS} primary is used.
2006 Programs can be installed in @code{bindir}, @code{sbindir},
2007 @code{libexecdir}, @code{pkglibdir}, or not at all (@samp{noinst}).
2008 They can also be built only for @code{make check}, in which case the
2009 prefix is @samp{check}.
2010
2011 For instance:
2012
2013 @example
2014 bin_PROGRAMS = hello
2015 @end example
2016
2017 In this simple case, the resulting @file{Makefile.in} will contain code
2018 to generate a program named @code{hello}.
2019
2020 Associated with each program are several assisting variables which are
2021 named after the program.  These variables are all optional, and have
2022 reasonable defaults.  Each variable, its use, and default is spelled out
2023 below; we use the ``hello'' example throughout.
2024
2025 The variable @code{hello_SOURCES} is used to specify which source files
2026 get built into an executable:
2027
2028 @example
2029 hello_SOURCES = hello.c version.c getopt.c getopt1.c getopt.h system.h
2030 @end example
2031
2032 This causes each mentioned @samp{.c} file to be compiled into the
2033 corresponding @samp{.o}.  Then all are linked to produce @file{hello}.
2034
2035 @cindex _SOURCES primary, defined
2036 @cindex SOURCES primary, defined
2037 @cindex Primary variable, SOURCES
2038
2039 If @samp{hello_SOURCES} is not specified, then it defaults to the single
2040 file @file{hello.c}; that is, the default is to compile a single C file
2041 whose base name is the name of the program itself.  (This is a terrible
2042 default but we are stuck with it for historical reasons.)
2043 @vindex _SOURCES
2044 @vindex SOURCES
2045
2046 Multiple programs can be built in a single directory.  Multiple programs
2047 can share a single source file, which must be listed in each
2048 @samp{_SOURCES} definition.
2049
2050 @cindex Header files in _SOURCES
2051 @cindex _SOURCES and header files
2052
2053 Header files listed in a @samp{_SOURCES} definition will be included in
2054 the distribution but otherwise ignored.  In case it isn't obvious, you
2055 should not include the header file generated by @file{configure} in a
2056 @samp{_SOURCES} variable; this file should not be distributed.  Lex
2057 (@samp{.l}) and Yacc (@samp{.y}) files can also be listed; see @ref{Yacc
2058 and Lex}.
2059
2060
2061 @node Linking, Conditional Sources, Program Sources, A Program
2062 @subsection Linking the program
2063
2064 If you need to link against libraries that are not found by
2065 @code{configure}, you can use @code{LDADD} to do so.  This variable is
2066 used to specify additional objects or libraries to link with; it is
2067 inappropriate for specifying specific linker flags, you should use
2068 @code{AM_LDFLAGS} for this purpose.
2069 @vindex LDADD
2070 @vindex AM_LDFLAGS
2071
2072 @cindex prog_LDADD, defined
2073
2074 Sometimes, multiple programs are built in one directory but do not share
2075 the same link-time requirements.  In this case, you can use the
2076 @samp{@var{prog}_LDADD} variable (where @var{prog} is the name of the
2077 program as it appears in some @samp{_PROGRAMS} variable, and usually
2078 written in lowercase) to override the global @code{LDADD}.  If this
2079 variable exists for a given program, then that program is not linked
2080 using @code{LDADD}.
2081 @vindex _LDADD
2082
2083 For instance, in GNU cpio, @code{pax}, @code{cpio} and @code{mt} are
2084 linked against the library @file{libcpio.a}.  However, @code{rmt} is
2085 built in the same directory, and has no such link requirement.  Also,
2086 @code{mt} and @code{rmt} are only built on certain architectures.  Here
2087 is what cpio's @file{src/Makefile.am} looks like (abridged):
2088
2089 @example
2090 bin_PROGRAMS = cpio pax @@MT@@
2091 libexec_PROGRAMS = @@RMT@@
2092 EXTRA_PROGRAMS = mt rmt
2093
2094 LDADD = ../lib/libcpio.a @@INTLLIBS@@
2095 rmt_LDADD =
2096
2097 cpio_SOURCES = @dots{}
2098 pax_SOURCES = @dots{}
2099 mt_SOURCES = @dots{}
2100 rmt_SOURCES = @dots{}
2101 @end example
2102
2103 @cindex _LDFLAGS, defined
2104
2105 @samp{@var{prog}_LDADD} is inappropriate for passing program-specific
2106 linker flags (except for @samp{-l}, @samp{-L}, @samp{-dlopen} and
2107 @samp{-dlpreopen}).  So, use the @samp{@var{prog}_LDFLAGS} variable for
2108 this purpose.
2109 @vindex _LDFLAGS
2110
2111 @cindex _DEPENDENCIES, defined
2112
2113 It is also occasionally useful to have a program depend on some other
2114 target which is not actually part of that program.  This can be done
2115 using the @samp{@var{prog}_DEPENDENCIES} variable.  Each program depends
2116 on the contents of such a variable, but no further interpretation is
2117 done.
2118
2119 If @samp{@var{prog}_DEPENDENCIES} is not supplied, it is computed by
2120 Automake.  The automatically-assigned value is the contents of
2121 @samp{@var{prog}_LDADD}, with most configure substitutions, @samp{-l},
2122 @samp{-L}, @samp{-dlopen} and @samp{-dlpreopen} options removed.  The
2123 configure substitutions that are left in are only @samp{@@LIBOBJS@@} and
2124 @samp{@@ALLOCA@@}; these are left because it is known that they will not
2125 cause an invalid value for @samp{@var{prog}_DEPENDENCIES} to be
2126 generated.
2127
2128
2129 @node Conditional Sources, Conditional Programs, Linking, A Program
2130 @subsection Conditional compilation of sources
2131
2132 You can't put a configure substitution (e.g., @samp{@@FOO@@}) into a
2133 @samp{_SOURCES} variable.  The reason for this is a bit hard to explain,
2134 but suffice to say that it simply won't work.  Automake will give an
2135 error if you try to do this.
2136
2137 Fortunatly there are two other ways to achieve the same result.  One is
2138 to use configure substitutions in @code{_LDADD} variables, the other is
2139 to use an Automake conditional.
2140
2141 @subsubsection Conditional compilation using @code{_LDADD} substitutions
2142
2143 @cindex EXTRA_prog_SOURCES, defined
2144
2145 Automake must know all the source files that could possibly go into a
2146 program, even if not all the files are built in every circumstance.  Any
2147 files which are only conditionally built should be listed in the
2148 appropriate @samp{EXTRA_} variable.  For instance, if
2149 @file{hello-linux.c} or @file{hello-generic.c} were conditionally included
2150 in @code{hello}, the @file{Makefile.am} would contain:
2151
2152 @example
2153 bin_PROGRAMS = hello
2154 hello_SOURCES = hello-common.c
2155 EXTRA_hello_SOURCES = hello-linux.c hello-generic.c
2156 hello_LDADD = @@HELLO_SYSTEM@@
2157 hello_DEPENDENCIES = @@HELLO_SYSTEM@@
2158 @end example
2159
2160 @noindent
2161 You can then setup the @code{@@HELLO_SYSTEM@@} substitution from
2162 @file{configure.in}:
2163
2164 @example
2165 @dots{}
2166 case $host in
2167   *linux*) HELLO_SYSTEM='hello-linux.$(OBJEXT)' ;;
2168   *)       HELLO_SYSTEM='hello-generic.$(OBJEXT)' ;;
2169 esac
2170 AC_SUBST([HELLO_SYSTEM])
2171 @dots{}
2172 @end example
2173
2174 In this case, @code{HELLO_SYSTEM} should be replaced by
2175 @file{hello-linux.o} or @file{hello-bsd.o}, and added to
2176 @code{hello_DEPENDENCIES} and @code{hello_LDADD} in order to be built
2177 and linked in.
2178
2179 @subsubsection Conditional compilation using Automake conditionals
2180
2181 An often simpler way to compile source files conditionally is to use
2182 Automake conditionals.  For instance, you could use this
2183 @file{Makefile.am} construct to build the same @file{hello} example:
2184
2185 @example
2186 bin_PROGRAMS = hello
2187 if LINUX
2188 hello_SOURCES = hello-linux.c hello-common.c
2189 else
2190 hello_SOURCES = hello-generic.c hello-common.c
2191 endif
2192 @end example
2193
2194 In this case, your @file{configure.in} should setup the @code{LINUX}
2195 conditional using @code{AM_CONDITIONAL} (@pxref{Conditionals}).
2196
2197 When using conditionals like this you don't need to use the
2198 @samp{EXTRA_} variable, because Automake will examine the contents of
2199 each variable to construct the complete list of source files.
2200
2201 If your program uses a lot of files, you will probably prefer a
2202 conditional @code{+=}.
2203
2204 @example
2205 bin_PROGRAMS = hello
2206 hello_SOURCES = hello-common.c
2207 if LINUX
2208 hello_cond += hello-linux.c
2209 else
2210 hello_cond += hello-generic.c
2211 endif
2212 @end example
2213
2214 @node Conditional Programs,  , Conditional Sources, A Program
2215 @subsection Conditional compilation of programs
2216
2217 Sometimes it is useful to determine the programs that are to be built at
2218 configure time.  For instance, GNU @code{cpio} only builds @code{mt} and
2219 @code{rmt} under special circumstances.
2220
2221 @cindex EXTRA_PROGRAMS, defined
2222
2223 In this case, you must notify Automake of all the programs that can
2224 possibly be built, but at the same time cause the generated
2225 @file{Makefile.in} to use the programs specified by @code{configure}.
2226 This is done by having @code{configure} substitute values into each
2227 @samp{_PROGRAMS} definition, while listing all optionally built programs
2228 in @code{EXTRA_PROGRAMS}.
2229 @vindex EXTRA_PROGRAMS
2230
2231 Of course you can use Automake conditionals to determine the programs to
2232 be built.
2233
2234
2235 @node A Library, A Shared Library, A Program, Programs
2236 @section Building a library
2237
2238 @cindex _LIBRARIES primary, defined
2239 @cindex LIBRARIES primary, defined
2240 @cindex Primary variable, LIBRARIES
2241
2242 @vindex lib_LIBRARIES
2243 @vindex pkglib_LIBRARIES
2244 @vindex noinst_LIBRARIES
2245
2246 Building a library is much like building a program.  In this case, the
2247 name of the primary is @samp{LIBRARIES}.  Libraries can be installed in
2248 @code{libdir} or @code{pkglibdir}.
2249
2250 @xref{A Shared Library}, for information on how to build shared
2251 libraries using Libtool and the @samp{LTLIBRARIES} primary.
2252
2253 Each @samp{_LIBRARIES} variable is a list of the libraries to be built.
2254 For instance to create a library named @file{libcpio.a}, but not install
2255 it, you would write:
2256
2257 @example
2258 noinst_LIBRARIES = libcpio.a
2259 @end example
2260
2261 The sources that go into a library are determined exactly as they are
2262 for programs, via the @samp{_SOURCES} variables.  Note that the library
2263 name is canonicalized (@pxref{Canonicalization}), so the @samp{_SOURCES}
2264 variable corresponding to @file{liblob.a} is @samp{liblob_a_SOURCES},
2265 not @samp{liblob.a_SOURCES}.
2266
2267 @cindex _LIBADD primary, defined
2268 @cindex LIBADD primary, defined
2269 @cindex Primary variable, LIBADD
2270
2271 Extra objects can be added to a library using the
2272 @samp{@var{library}_LIBADD} variable.  This should be used for objects
2273 determined by @code{configure}.  Again from @code{cpio}:
2274 @vindex _LIBADD
2275 @vindex LIBADD
2276
2277 @example
2278 libcpio_a_LIBADD = @@LIBOBJS@@ @@ALLOCA@@
2279 @end example
2280
2281 In addition, sources for extra objects that will not exist until
2282 configure-time must be added to the @code{BUILT_SOURCES} variable
2283 (@pxref{Sources}).
2284
2285
2286 @node A Shared Library, Program and Library Variables, A Library, Programs
2287 @section Building a Shared Library
2288
2289 @cindex Shared libraries, support for
2290
2291 Building shared libraries is a relatively complex matter.  For this
2292 reason, GNU Libtool (@pxref{Top, , Introduction, libtool, The
2293 Libtool Manual}) was created to help build shared libraries in a
2294 platform-independent way.
2295
2296 @cindex _LTLIBRARIES primary, defined
2297 @cindex LTLIBRARIES primary, defined
2298 @cindex Primary variable, LTLIBRARIES
2299 @cindex Example of shared libraries
2300
2301 @cindex suffix .la, defined
2302
2303 Automake uses Libtool to build libraries declared with the
2304 @samp{LTLIBRARIES} primary.  Each @samp{_LTLIBRARIES} variable is a list
2305 of shared libraries to build.  For instance, to create a library named
2306 @file{libgettext.a} and its corresponding shared libraries, and install
2307 them in @samp{libdir}, write:
2308
2309 @example
2310 lib_LTLIBRARIES = libgettext.la
2311 @end example
2312
2313 @vindex lib_LTLIBRARIES
2314 @vindex pkglib_LTLIBRARIES
2315 @vindex noinst_LTLIBRARIES
2316 @vindex check_LTLIBRARIES
2317
2318 @cindex check_LTLIBRARIES, not allowed
2319
2320 Note that shared libraries @emph{must} be installed in order to work
2321 properly, so @code{check_LTLIBRARIES} is not allowed.  However,
2322 @code{noinst_LTLIBRARIES} is allowed.  This feature should be used for
2323 libtool ``convenience libraries''.
2324
2325 @cindex suffix .lo, defined
2326
2327 For each library, the @samp{@var{library}_LIBADD} variable contains the
2328 names of extra libtool objects (@file{.lo} files) to add to the shared
2329 library.  The @samp{@var{library}_LDFLAGS} variable contains any
2330 additional libtool flags, such as @samp{-version-info} or
2331 @samp{-static}.
2332
2333 @cindex @@LTLIBOBJS@@, special handling
2334
2335 Where an ordinary library might include @code{@@LIBOBJS@@}, a libtool
2336 library must use @code{@@LTLIBOBJS@@}.  This is required because the
2337 object files that libtool operates on do not necessarily end in
2338 @file{.o}.  The libtool manual contains more details on this topic.
2339
2340 For libraries installed in some directory, Automake will automatically
2341 supply the appropriate @samp{-rpath} option.  However, for libraries
2342 determined at configure time (and thus mentioned in
2343 @code{EXTRA_LTLIBRARIES}), Automake does not know the eventual
2344 installation directory; for such libraries you must add the
2345 @samp{-rpath} option to the appropriate @samp{_LDFLAGS} variable by
2346 hand.
2347
2348 Ordinarily, Automake requires that a shared library's name start with
2349 @samp{lib}.  However, if you are building a dynamically loadable module
2350 then you might wish to use a "nonstandard" name.  In this case, put
2351 @code{-module} into the @samp{_LDFLAGS} variable.
2352
2353 @xref{Using Automake, Using Automake with Libtool, The Libtool Manual,
2354 libtool, The Libtool Manual}, for more information.
2355
2356
2357 @node Program and Library Variables, LIBOBJS, A Shared Library, Programs
2358 @section Program and Library Variables
2359
2360 Associated with each program are a collection of variables which can be
2361 used to modify how that program is built.  There is a similar list of
2362 such variables for each library.  The canonical name of the program (or
2363 library) is used as a base for naming these variables.
2364
2365 In the list below, we use the name ``maude'' to refer to the program or
2366 library.  In your @file{Makefile.am} you would replace this with the
2367 canonical name of your program.  This list also refers to ``maude'' as a
2368 program, but in general the same rules apply for both static and dynamic
2369 libraries; the documentation below notes situations where programs and
2370 libraries differ.
2371
2372 @table @samp
2373 @item maude_SOURCES
2374 This variable, if it exists, lists all the source files which are
2375 compiled to build the program.  These files are added to the
2376 distribution by default.  When building the program, Automake will cause
2377 each source file to be compiled to a single @file{.o} file (or
2378 @file{.lo} when using libtool).  Normally these object files are named
2379 after the source file, but other factors can change this.  If a file in
2380 the @samp{_SOURCES} variable has an unrecognized extension, Automake
2381 will do one of two things with it.  If a suffix rule exists for turning
2382 files with the unrecognized extension into @file{.o} files, then
2383 automake will treat this file as it will any other source file
2384 (@pxref{Support for Other Languages}).  Otherwise, the file will be
2385 ignored as though it were a header file.
2386
2387 The prefixes @samp{dist_} and @samp{nodist_} can be used to control
2388 whether files listed in a @samp{_SOURCES} variable are distributed.
2389 @samp{dist_} is redundant, as sources are distributed by default, but it
2390 can be specified for clarity if desired.
2391
2392 It is possible to have both @samp{dist_} and @samp{nodist_} variants of
2393 a given @samp{_SOURCES} variable at once; this lets you easily
2394 distribute some files and not others, for instance:
2395
2396 @example
2397 nodist_maude_SOURCES = nodist.c
2398 dist_maude_SOURCES = dist-me.c
2399 @end example
2400
2401 By default the output file (on Unix systems, the @file{.o} file) will be
2402 put into the current build directory.  However, if the option
2403 @code{subdir-objects} is in effect in the current directory then the
2404 @file{.o} file will be put into the subdirectory named after the source
2405 file.  For instance, with @code{subdir-objects} enabled,
2406 @file{sub/dir/file.c} will be compiled to @file{sub/dir/file.o}.  Some
2407 people prefer this mode of operation.  You can specify
2408 @code{subdir-objects} in @code{AUTOMAKE_OPTIONS} (@pxref{Options}).
2409 @cindex Subdirectory, objects in
2410 @cindex Objects in subdirectory
2411
2412
2413 @item EXTRA_maude_SOURCES
2414 Automake needs to know the list of files you intend to compile
2415 @emph{statically}.  For one thing, this is the only way Automake has of
2416 knowing what sort of language support a given @file{Makefile.in}
2417 requires.  @footnote{There are other, more obscure reasons reasons for
2418 this limitation as well.}  This means that, for example, you can't put a
2419 configure substitution like @samp{@@my_sources@@} into a @samp{_SOURCES}
2420 variable.  If you intend to conditionally compile source files and use
2421 @file{configure} to substitute the appropriate object names into, e.g.,
2422 @samp{_LDADD} (see below), then you should list the corresponding source
2423 files in the @samp{EXTRA_} variable.
2424
2425 This variable also supports @samp{dist_} and @samp{nodist_} prefixes,
2426 e.g., @samp{nodist_EXTRA_maude_SOURCES}.
2427
2428 @item maude_AR
2429 A static library is created by default by invoking @code{$(AR) cru}
2430 followed by the name of the library and then the objects being put into
2431 the library.  You can override this by setting the @samp{_AR} variable.
2432 This is usually used with C++; some C++ compilers require a special
2433 invocation in order to instantiate all the templates which should go
2434 into a library.  For instance, the SGI C++ compiler likes this variable set
2435 like so:
2436 @example
2437 libmaude_a_AR = $(CXX) -ar -o
2438 @end example
2439
2440 @item maude_LIBADD
2441 Extra objects can be added to a static library using the @samp{_LIBADD}
2442 variable.  This should be used for objects determined by
2443 @code{configure}.  Note that @samp{_LIBADD} is not used for shared
2444 libraries; there you must use @samp{_LDADD}.
2445
2446 @item maude_LDADD
2447 Extra objects can be added to a shared library or a program by listing
2448 them in the @samp{_LDADD} variable.  This should be used for objects
2449 determined by @code{configure}.
2450
2451 @samp{_LDADD} and @samp{_LIBADD} are inappropriate for passing
2452 program-specific linker flags (except for @samp{-l}, @samp{-L},
2453 @samp{-dlopen} and @samp{-dlpreopen}).  Use the @samp{_LDFLAGS} variable
2454 for this purpose.
2455
2456 For instance, if your @file{configure.in} uses @code{AC_PATH_XTRA}, you
2457 could link your program against the X libraries like so:
2458
2459 @example
2460 maude_LDADD = $(X_PRE_LIBS) $(X_LIBS) $(X_EXTRA_LIBS)
2461 @end example
2462
2463 @item maude_LDFLAGS
2464 This variable is used to pass extra flags to the link step of a program
2465 or a shared library.
2466
2467 @item maude_LINK
2468 You can override the linker on a per-program basis.  By default the
2469 linker is chosen according to the languages used by the program.  For
2470 instance, a program that includes C++ source code would use the C++
2471 compiler to link.  The @samp{_LINK} variable must hold the name of a
2472 command which can be passed all the @file{.o} file names as arguments.
2473 Note that the name of the underlying program is @emph{not} passed to
2474 @samp{_LINK}; typically one uses @samp{$@@}:
2475
2476 @example
2477 maude_LINK = $(CCLD) -magic -o $@@
2478 @end example
2479
2480 @item maude_CCASFLAGS
2481 @itemx maude_CFLAGS
2482 @itemx maude_CPPFLAGS
2483 @itemx maude_CXXFLAGS
2484 @itemx maude_FFLAGS
2485 @itemx maude_GCJFLAGS
2486 @itemx maude_LFLAGS
2487 @itemx maude_OBJCFLAGS
2488 @itemx maude_RFLAGS
2489 @itemx maude_YFLAGS
2490 Automake allows you to set compilation flags on a per-program (or
2491 per-library) basis.  A single source file can be included in several
2492 programs, and it will potentially be compiled with different flags for
2493 each program.  This works for any language directly supported by
2494 Automake.  The flags are
2495 @samp{_CCASFLAGS},
2496 @samp{_CFLAGS},
2497 @samp{_CPPFLAGS},
2498 @samp{_CXXFLAGS},
2499 @samp{_FFLAGS},
2500 @samp{_GCJFLAGS},
2501 @samp{_LFLAGS},
2502 @samp{_OBJCFLAGS},
2503 @samp{_RFLAGS}, and
2504 @samp{_YFLAGS}.
2505
2506 When using a per-program compilation flag, Automake will choose a
2507 different name for the intermediate object files.  Ordinarily a file
2508 like @file{sample.c} will be compiled to produce @file{sample.o}.
2509 However, if the program's @samp{_CFLAGS} variable is set, then the
2510 object file will be named, for instance, @file{maude-sample.o}.
2511
2512 In compilations with per-program flags, the ordinary @samp{AM_} form of
2513 the flags variable is @emph{not} automatically included in the
2514 compilation (however, the user form of the variable @emph{is} included).
2515 So for instance, if you want the hypothetical @file{maude} compilations
2516 to also use the value of @samp{AM_CFLAGS}, you would need to write:
2517
2518 @example
2519 maude_CFLAGS = @dots{} your flags @dots{} $(AM_CFLAGS)
2520 @end example
2521
2522
2523 @item maude_DEPENDENCIES
2524 It is also occasionally useful to have a program depend on some other
2525 target which is not actually part of that program.  This can be done
2526 using the @samp{_DEPENDENCIES} variable.  Each program depends on the
2527 contents of such a variable, but no further interpretation is done.
2528
2529 If @samp{_DEPENDENCIES} is not supplied, it is computed by Automake.
2530 The automatically-assigned value is the contents of @samp{_LDADD} or
2531 @samp{_LIBADD}, with most configure substitutions, @samp{-l}, @samp{-L},
2532 @samp{-dlopen} and @samp{-dlpreopen} options removed.  The configure
2533 substitutions that are left in are only @samp{@@LIBOBJS@@} and
2534 @samp{@@ALLOCA@@}; these are left because it is known that they will not
2535 cause an invalid value for @samp{_DEPENDENCIES} to be generated.
2536
2537 @item maude_SHORTNAME
2538 On some platforms the allowable file names are very short.  In order to
2539 support these systems and per-program compilation flags at the same
2540 time, Automake allows you to set a ``short name'' which will influence
2541 how intermediate object files are named.  For instance, if you set
2542 @samp{maude_SHORTNAME} to @samp{m}, then in the above per-program
2543 compilation flag example the object file would be named
2544 @file{m-sample.o} rather than @file{maude-sample.o}.  This facility is
2545 rarely needed in practice, and we recommend avoiding it until you find
2546 it is required.
2547 @end table
2548
2549
2550 @node LIBOBJS, Program variables, Program and Library Variables, Programs
2551 @section Special handling for LIBOBJS and ALLOCA
2552
2553 @cindex @@LIBOBJS@@, special handling
2554 @cindex @@ALLOCA@@, special handling
2555
2556 Automake explicitly recognizes the use of @code{@@LIBOBJS@@} and
2557 @code{@@ALLOCA@@}, and uses this information, plus the list of
2558 @code{LIBOBJS} files derived from @file{configure.in} to automatically
2559 include the appropriate source files in the distribution (@pxref{Dist}).
2560 These source files are also automatically handled in the
2561 dependency-tracking scheme; see @xref{Dependencies}.
2562
2563 @code{@@LIBOBJS@@} and @code{@@ALLOCA@@} are specially recognized in any
2564 @samp{_LDADD} or @samp{_LIBADD} variable.
2565
2566
2567 @node Program variables, Yacc and Lex, LIBOBJS, Programs
2568 @section Variables used when building a program
2569
2570 Occasionally it is useful to know which @file{Makefile} variables
2571 Automake uses for compilations; for instance you might need to do your
2572 own compilation in some special cases.
2573
2574 Some variables are inherited from Autoconf; these are @code{CC},
2575 @code{CFLAGS}, @code{CPPFLAGS}, @code{DEFS}, @code{LDFLAGS}, and
2576 @code{LIBS}.
2577 @vindex CC
2578 @vindex CFLAGS
2579 @vindex CPPFLAGS
2580 @vindex DEFS
2581 @vindex LDFLAGS
2582 @vindex LIBS
2583
2584 There are some additional variables which Automake itself defines:
2585
2586 @vtable @code
2587 @item AM_CPPFLAGS
2588 The contents of this variable are passed to every compilation which invokes
2589 the C preprocessor; it is a list of arguments to the preprocessor.  For
2590 instance, @samp{-I} and @samp{-D} options should be listed here.
2591
2592 Automake already provides some @samp{-I} options automatically.  In
2593 particular it generates @samp{-I$(srcdir)}, @samp{-I.}, and a @samp{-I}
2594 pointing to the directory holding @file{config.h} (if you've used
2595 @code{AC_CONFIG_HEADERS} or @code{AM_CONFIG_HEADER}).  You can disable
2596 the default @samp{-I} options using the @samp{nostdinc} option.
2597
2598 @code{AM_CPPFLAGS} is ignored in preference to a per-executable (or
2599 per-library) @code{_CPPFLAGS} variable if it is defined.
2600
2601 @item INCLUDES
2602 This does the same job as @samp{AM_CPPFLAGS}.  It is an older name for
2603 the same functionality.  This variable is deprecated; we suggest using
2604 @samp{AM_CPPFLAGS} instead.
2605
2606 @item AM_CFLAGS
2607 This is the variable which the @file{Makefile.am} author can use to pass
2608 in additional C compiler flags.  It is more fully documented elsewhere.
2609 In some situations, this is not used, in preference to the
2610 per-executable (or per-library) @code{_CFLAGS}.
2611
2612 @item COMPILE
2613 This is the command used to actually compile a C source file.  The
2614 filename is appended to form the complete command line.
2615
2616 @item AM_LDFLAGS
2617 This is the variable which the @file{Makefile.am} author can use to pass
2618 in additional linker flags.  In some situations, this is not used, in
2619 preference to the per-executable (or per-library) @code{_LDFLAGS}.
2620
2621 @item LINK
2622 This is the command used to actually link a C program.  It already
2623 includes @samp{-o $@@} and the usual variable references (for instance,
2624 @code{CFLAGS}); it takes as ``arguments'' the names of the object files
2625 and libraries to link in.
2626 @end vtable
2627
2628
2629 @node Yacc and Lex, C++ Support, Program variables, Programs
2630 @section Yacc and Lex support
2631
2632 Automake has somewhat idiosyncratic support for Yacc and Lex.
2633
2634 Automake assumes that the @file{.c} file generated by @code{yacc} (or
2635 @code{lex}) should be named using the basename of the input file.  That
2636 is, for a yacc source file @file{foo.y}, Automake will cause the
2637 intermediate file to be named @file{foo.c} (as opposed to
2638 @file{y.tab.c}, which is more traditional).
2639
2640 The extension of a yacc source file is used to determine the extension
2641 of the resulting @samp{C} or @samp{C++} file.  Files with the extension
2642 @samp{.y} will be turned into @samp{.c} files; likewise, @samp{.yy} will
2643 become @samp{.cc}; @samp{.y++}, @samp{c++}; and @samp{.yxx},
2644 @samp{.cxx}.
2645
2646 Likewise, lex source files can be used to generate @samp{C} or
2647 @samp{C++}; the extensions @samp{.l}, @samp{.ll}, @samp{.l++}, and
2648 @samp{.lxx} are recognized.
2649
2650 You should never explicitly mention the intermediate (@samp{C} or
2651 @samp{C++}) file in any @samp{SOURCES} variable; only list the source
2652 file.
2653
2654 The intermediate files generated by @code{yacc} (or @code{lex}) will be
2655 included in any distribution that is made.  That way the user doesn't
2656 need to have @code{yacc} or @code{lex}.
2657
2658 If a @code{yacc} source file is seen, then your @file{configure.in} must
2659 define the variable @samp{YACC}.  This is most easily done by invoking
2660 the macro @samp{AC_PROG_YACC} (@pxref{Particular Programs, , Particular
2661 Program Checks, autoconf, The Autoconf Manual}).
2662
2663 When @code{yacc} is invoked, it is passed @samp{YFLAGS} and
2664 @samp{AM_YFLAGS}.  The former is a user variable and the latter is
2665 intended for the @file{Makefile.am} author.
2666
2667 Similarly, if a @code{lex} source file is seen, then your
2668 @file{configure.in} must define the variable @samp{LEX}.  You can use
2669 @samp{AC_PROG_LEX} to do this (@pxref{Particular Programs, , Particular
2670 Program Checks, autoconf, The Autoconf Manual}), but using
2671 @code{AM_PROG_LEX} macro (@pxref{Macros}) is recommended.
2672
2673 When @code{lex} is invoked, it is passed @samp{LFLAGS} and
2674 @samp{AM_LFLAGS}.  The former is a user variable and the latter is
2675 intended for the @file{Makefile.am} author.
2676
2677
2678
2679 @cindex ylwrap
2680 @cindex yacc, multiple parsers
2681 @cindex Multiple yacc parsers
2682 @cindex Multiple lex lexers
2683 @cindex lex, multiple lexers
2684
2685
2686 Automake makes it possible to include multiple @code{yacc} (or
2687 @code{lex}) source files in a single program.  Automake uses a small
2688 program called @code{ylwrap} to run @code{yacc} (or @code{lex}) in a
2689 subdirectory.  This is necessary because yacc's output filename is
2690 fixed, and a parallel make could conceivably invoke more than one
2691 instance of @code{yacc} simultaneously.  The @code{ylwrap} program is
2692 distributed with Automake.  It should appear in the directory specified
2693 by @samp{AC_CONFIG_AUX_DIR} (@pxref{Input, , Finding `configure' Input,
2694 autoconf, The Autoconf Manual}), or the current directory if that macro
2695 is not used in @file{configure.in}.
2696
2697 For @code{yacc}, simply managing locking is insufficient.  The output of
2698 @code{yacc} always uses the same symbol names internally, so it isn't
2699 possible to link two @code{yacc} parsers into the same executable.
2700
2701 We recommend using the following renaming hack used in @code{gdb}:
2702 @example
2703 #define yymaxdepth c_maxdepth
2704 #define yyparse c_parse
2705 #define yylex   c_lex
2706 #define yyerror c_error
2707 #define yylval  c_lval
2708 #define yychar  c_char
2709 #define yydebug c_debug
2710 #define yypact  c_pact
2711 #define yyr1    c_r1
2712 #define yyr2    c_r2
2713 #define yydef   c_def
2714 #define yychk   c_chk
2715 #define yypgo   c_pgo
2716 #define yyact   c_act
2717 #define yyexca  c_exca
2718 #define yyerrflag c_errflag
2719 #define yynerrs c_nerrs
2720 #define yyps    c_ps
2721 #define yypv    c_pv
2722 #define yys     c_s
2723 #define yy_yys  c_yys
2724 #define yystate c_state
2725 #define yytmp   c_tmp
2726 #define yyv     c_v
2727 #define yy_yyv  c_yyv
2728 #define yyval   c_val
2729 #define yylloc  c_lloc
2730 #define yyreds  c_reds
2731 #define yytoks  c_toks
2732 #define yylhs   c_yylhs
2733 #define yylen   c_yylen
2734 #define yydefred c_yydefred
2735 #define yydgoto c_yydgoto
2736 #define yysindex c_yysindex
2737 #define yyrindex c_yyrindex
2738 #define yygindex c_yygindex
2739 #define yytable  c_yytable
2740 #define yycheck  c_yycheck
2741 #define yyname   c_yyname
2742 #define yyrule   c_yyrule
2743 @end example
2744
2745 For each define, replace the @samp{c_} prefix with whatever you like.
2746 These defines work for @code{bison}, @code{byacc}, and traditional
2747 @code{yacc}s.  If you find a parser generator that uses a symbol not
2748 covered here, please report the new name so it can be added to the list.
2749
2750
2751 @node C++ Support, Assembly Support, Yacc and Lex, Programs
2752 @section C++ Support
2753
2754 @cindex C++ support
2755 @cindex Support for C++
2756
2757 Automake includes full support for C++.
2758
2759 Any package including C++ code must define the output variable
2760 @samp{CXX} in @file{configure.in}; the simplest way to do this is to use
2761 the @code{AC_PROG_CXX} macro (@pxref{Particular Programs, , Particular
2762 Program Checks, autoconf, The Autoconf Manual}).
2763
2764 A few additional variables are defined when a C++ source file is seen:
2765
2766 @vtable @code
2767 @item CXX
2768 The name of the C++ compiler.
2769
2770 @item CXXFLAGS
2771 Any flags to pass to the C++ compiler.
2772
2773 @item AM_CXXFLAGS
2774 The maintainer's variant of @code{CXXFLAGS}.
2775
2776 @item CXXCOMPILE
2777 The command used to actually compile a C++ source file.  The file name
2778 is appended to form the complete command line.
2779
2780 @item CXXLINK
2781 The command used to actually link a C++ program.
2782 @end vtable
2783
2784
2785 @node Assembly Support, Fortran 77 Support, C++ Support, Programs
2786 @section Assembly Support
2787
2788 Automake includes some support for assembly code.
2789
2790 The variable @code{CCAS} holds the name of the compiler used to build
2791 assembly code.  This compiler must work a bit like a C compiler; in
2792 particular it must accept @samp{-c} and @samp{-o}.  The value of
2793 @code{CCASFLAGS} is passed to the compilation.
2794 @vindex CCAS
2795 @vindex CCASFLAGS
2796
2797 You are required to set @code{CCAS} and @code{CCASFLAGS} via
2798 @file{configure.in}.  The autoconf macro @code{AM_PROG_AS} will do this
2799 for you.  Unless they are already set, it simply sets @code{CCAS} to the
2800 C compiler and @code{CCASFLAGS} to the C compiler flags.
2801
2802 Only the suffixes @samp{.s} and @samp{.S} are recognized by
2803 @code{automake} as being files containing assembly code.
2804
2805
2806 @node Fortran 77 Support, Java Support, Assembly Support, Programs
2807 @comment  node-name,  next,  previous,  up
2808 @section Fortran 77 Support
2809
2810 @cindex Fortran 77 support
2811 @cindex Support for Fortran 77
2812
2813 Automake includes full support for Fortran 77.
2814
2815 Any package including Fortran 77 code must define the output variable
2816 @samp{F77} in @file{configure.in}; the simplest way to do this is to use
2817 the @code{AC_PROG_F77} macro (@pxref{Particular Programs, , Particular
2818 Program Checks, autoconf, The Autoconf Manual}).  @xref{Fortran 77 and
2819 Autoconf}.
2820
2821 A few additional variables are defined when a Fortran 77 source file is
2822 seen:
2823
2824 @vtable @code
2825
2826 @item F77
2827 The name of the Fortran 77 compiler.
2828
2829 @item FFLAGS
2830 Any flags to pass to the Fortran 77 compiler.
2831
2832 @item AM_FFLAGS
2833 The maintainer's variant of @code{FFLAGS}.
2834
2835 @item RFLAGS
2836 Any flags to pass to the Ratfor compiler.
2837
2838 @item AM_RFLAGS
2839 The maintainer's variant of @code{RFLAGS}.
2840
2841 @item F77COMPILE
2842 The command used to actually compile a Fortran 77 source file.  The file
2843 name is appended to form the complete command line.
2844
2845 @item FLINK
2846 The command used to actually link a pure Fortran 77 program or shared
2847 library.
2848
2849 @end vtable
2850
2851 Automake can handle preprocessing Fortran 77 and Ratfor source files in
2852 addition to compiling them@footnote{Much, if not most, of the
2853 information in the following sections pertaining to preprocessing
2854 Fortran 77 programs was taken almost verbatim from @ref{Catalogue of
2855 Rules, , Catalogue of Rules, make, The GNU Make Manual}.}.  Automake
2856 also contains some support for creating programs and shared libraries
2857 that are a mixture of Fortran 77 and other languages (@pxref{Mixing
2858 Fortran 77 With C and C++}).
2859
2860 These issues are covered in the following sections.
2861
2862 @menu
2863 * Preprocessing Fortran 77::
2864 * Compiling Fortran 77 Files::
2865 * Mixing Fortran 77 With C and C++::
2866 * Fortran 77 and Autoconf::
2867 @end menu
2868
2869
2870 @node Preprocessing Fortran 77, Compiling Fortran 77 Files, Fortran 77 Support, Fortran 77 Support
2871 @comment  node-name,  next,  previous,  up
2872 @subsection Preprocessing Fortran 77
2873
2874 @cindex Preprocessing Fortran 77
2875 @cindex Fortran 77, Preprocessing
2876 @cindex Ratfor programs
2877
2878 @file{N.f} is made automatically from @file{N.F} or @file{N.r}.  This
2879 rule runs just the preprocessor to convert a preprocessable Fortran 77
2880 or Ratfor source file into a strict Fortran 77 source file.  The precise
2881 command used is as follows:
2882
2883 @table @file
2884
2885 @item .F
2886 @code{$(F77) -F $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)}
2887
2888 @item .r
2889 @code{$(F77) -F $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)}
2890
2891 @end table
2892
2893
2894 @node Compiling Fortran 77 Files, Mixing Fortran 77 With C and C++, Preprocessing Fortran 77, Fortran 77 Support
2895 @comment  node-name,  next,  previous,  up
2896 @subsection Compiling Fortran 77 Files
2897
2898 @file{N.o} is made automatically from @file{N.f}, @file{N.F} or
2899 @file{N.r} by running the Fortran 77 compiler.  The precise command used
2900 is as follows:
2901
2902 @table @file
2903
2904 @item .f
2905 @code{$(F77) -c $(AM_FFLAGS) $(FFLAGS)}
2906
2907 @item .F
2908 @code{$(F77) -c $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)}
2909
2910 @item .r
2911 @code{$(F77) -c $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)}
2912
2913 @end table
2914
2915
2916 @node Mixing Fortran 77 With C and C++, Fortran 77 and Autoconf, Compiling Fortran 77 Files, Fortran 77 Support
2917 @comment  node-name,  next,  previous,  up
2918 @subsection Mixing Fortran 77 With C and C++
2919
2920 @cindex Fortran 77, mixing with C and C++
2921 @cindex Mixing Fortran 77 with C and C++
2922 @cindex Linking Fortran 77 with C and C++
2923 @cindex cfortran
2924 @cindex Mixing Fortran 77 with C and/or C++
2925
2926 Automake currently provides @emph{limited} support for creating programs
2927 and shared libraries that are a mixture of Fortran 77 and C and/or C++.
2928 However, there are many other issues related to mixing Fortran 77 with
2929 other languages that are @emph{not} (currently) handled by Automake, but
2930 that are handled by other packages@footnote{For example,
2931 @uref{http://www-zeus.desy.de/~burow/cfortran/, the cfortran package}
2932 addresses all of these inter-language issues, and runs under nearly all
2933 Fortran 77, C and C++ compilers on nearly all platforms.  However,
2934 @code{cfortran} is not yet Free Software, but it will be in the next
2935 major release.}.
2936
2937 @page
2938 Automake can help in two ways:
2939
2940 @enumerate
2941 @item
2942 Automatic selection of the linker depending on which combinations of
2943 source code.
2944
2945 @item
2946 Automatic selection of the appropriate linker flags (e.g. @samp{-L} and
2947 @samp{-l}) to pass to the automatically selected linker in order to link
2948 in the appropriate Fortran 77 intrinsic and run-time libraries.
2949
2950 @cindex FLIBS, defined
2951 These extra Fortran 77 linker flags are supplied in the output variable
2952 @code{FLIBS} by the @code{AC_F77_LIBRARY_LDFLAGS} Autoconf macro
2953 supplied with newer versions of Autoconf (Autoconf version 2.13 and
2954 later).  @xref{Fortran 77 Compiler Characteristics, , , autoconf, The
2955 Autoconf}.
2956 @end enumerate
2957
2958 If Automake detects that a program or shared library (as mentioned in
2959 some @code{_PROGRAMS} or @code{_LTLIBRARIES} primary) contains source
2960 code that is a mixture of Fortran 77 and C and/or C++, then it requires
2961 that the macro @code{AC_F77_LIBRARY_LDFLAGS} be called in
2962 @file{configure.in}, and that either @code{$(FLIBS)} or @code{@@FLIBS@@}
2963 appear in the appropriate @code{_LDADD} (for programs) or @code{_LIBADD}
2964 (for shared libraries) variables.  It is the responsibility of the
2965 person writing the @file{Makefile.am} to make sure that @code{$(FLIBS)}
2966 or @code{@@FLIBS@@} appears in the appropriate @code{_LDADD} or
2967 @code{_LIBADD} variable.
2968
2969 @cindex Mixed language example
2970 @cindex Example, mixed language
2971
2972 For example, consider the following @file{Makefile.am}:
2973
2974 @example
2975 bin_PROGRAMS = foo
2976 foo_SOURCES  = main.cc foo.f
2977 foo_LDADD    = libfoo.la @@FLIBS@@
2978
2979 pkglib_LTLIBRARIES = libfoo.la
2980 libfoo_la_SOURCES  = bar.f baz.c zardoz.cc
2981 libfoo_la_LIBADD   = $(FLIBS)
2982 @end example
2983
2984 In this case, Automake will insist that @code{AC_F77_LIBRARY_LDFLAGS}
2985 is mentioned in @file{configure.in}.  Also, if @code{@@FLIBS@@} hadn't
2986 been mentioned in @code{foo_LDADD} and @code{libfoo_la_LIBADD}, then
2987 Automake would have issued a warning.
2988
2989
2990 @page
2991 @menu
2992 * How the Linker is Chosen::
2993 @end menu
2994
2995 @node How the Linker is Chosen,  , Mixing Fortran 77 With C and C++, Mixing Fortran 77 With C and C++
2996 @comment  node-name,  next,  previous,  up
2997 @subsubsection How the Linker is Chosen
2998
2999 @cindex Automatic linker selection
3000 @cindex Selecting the linker automatically
3001
3002 The following diagram demonstrates under what conditions a particular
3003 linker is chosen by Automake.
3004
3005 For example, if Fortran 77, C and C++ source code were to be compiled
3006 into a program, then the C++ linker will be used.  In this case, if the
3007 C or Fortran 77 linkers required any special libraries that weren't
3008 included by the C++ linker, then they must be manually added to an
3009 @code{_LDADD} or @code{_LIBADD} variable by the user writing the
3010 @file{Makefile.am}.
3011
3012 @example
3013                      \              Linker
3014           source      \
3015            code        \     C        C++     Fortran
3016      -----------------  +---------+---------+---------+
3017                         |         |         |         |
3018      C                  |    x    |         |         |
3019                         |         |         |         |
3020                         +---------+---------+---------+
3021                         |         |         |         |
3022          C++            |         |    x    |         |
3023                         |         |         |         |
3024                         +---------+---------+---------+
3025                         |         |         |         |
3026                Fortran  |         |         |    x    |
3027                         |         |         |         |
3028                         +---------+---------+---------+
3029                         |         |         |         |
3030      C + C++            |         |    x    |         |
3031                         |         |         |         |
3032                         +---------+---------+---------+
3033                         |         |         |         |
3034      C +       Fortran  |         |         |    x    |
3035                         |         |         |         |
3036                         +---------+---------+---------+
3037                         |         |         |         |
3038          C++ + Fortran  |         |    x    |         |
3039                         |         |         |         |
3040                         +---------+---------+---------+
3041                         |         |         |         |
3042      C + C++ + Fortran  |         |    x    |         |
3043                         |         |         |         |
3044                         +---------+---------+---------+
3045 @end example
3046
3047
3048 @node Fortran 77 and Autoconf,  , Mixing Fortran 77 With C and C++, Fortran 77 Support
3049 @comment  node-name,  next,  previous,  up
3050 @subsection Fortran 77 and Autoconf
3051
3052 The current Automake support for Fortran 77 requires a recent enough
3053 version of Autoconf that also includes support for Fortran 77.  Full
3054 Fortran 77 support was added to Autoconf 2.13, so you will want to use
3055 that version of Autoconf or later.
3056
3057
3058 @node Java Support, Support for Other Languages, Fortran 77 Support, Programs
3059 @comment  node-name,  next,  previous,  up
3060 @section Java Support
3061
3062 @cindex Java support
3063 @cindex Support for Java
3064
3065 Automake includes support for compiled Java, using @code{gcj}, the Java
3066 front end to the GNU Compiler Collection.
3067
3068 Any package including Java code to be compiled must define the output
3069 variable @samp{GCJ} in @file{configure.in}; the variable @samp{GCJFLAGS}
3070 must also be defined somehow (either in @file{configure.in} or
3071 @file{Makefile.am}).  The simplest way to do this is to use the
3072 @code{AM_PROG_GCJ} macro.
3073
3074 @vindex GCJFLAGS
3075
3076 By default, programs including Java source files are linked with
3077 @code{gcj}.
3078
3079 As always, the contents of @samp{AM_GCJFLAGS} are passed to every
3080 compilation invoking @code{gcj} (in its role as an ahead-of-time
3081 compiler -- when invoking it to create @file{.class} files,
3082 @samp{AM_JAVACFLAGS} is used instead).  If it is necessary to pass
3083 options to @code{gcj} from @file{Makefile.am}, this variable, and not
3084 the user variable @samp{GCJFLAGS}, should be used.
3085
3086 @vindex AM_GCJFLAGS
3087
3088 @code{gcj} can be used to compile @file{.java}, @file{.class},
3089 @file{.zip}, or @file{.jar} files.
3090
3091 When linking, @code{gcj} requires that the main class be specified
3092 using the @samp{--main=} option.  The easiest way to do this is to use
3093 the @code{_LDFLAGS} variable for the program.
3094
3095
3096 @node Support for Other Languages, ANSI, Java Support, Programs
3097 @comment  node-name,  next,  previous,  up
3098 @section Support for Other Languages
3099
3100 Automake currently only includes full support for C, C++ (@pxref{C++
3101 Support}), Fortran 77 (@pxref{Fortran 77 Support}), and Java
3102 (@pxref{Java Support}).  There is only rudimentary support for other
3103 languages, support for which will be improved based on user demand.
3104
3105 Some limited support for adding your own languages is available via the
3106 suffix rule handling; see @ref{Suffixes}.
3107
3108
3109 @node ANSI, Dependencies, Support for Other Languages, Programs
3110 @section Automatic de-ANSI-fication
3111
3112 @cindex de-ANSI-fication, defined
3113
3114 Although the GNU standards allow the use of ANSI C, this can have the
3115 effect of limiting portability of a package to some older compilers
3116 (notably the SunOS C compiler).
3117
3118 Automake allows you to work around this problem on such machines by
3119 @dfn{de-ANSI-fying} each source file before the actual compilation takes
3120 place.
3121
3122 @vindex AUTOMAKE_OPTIONS
3123 @opindex ansi2knr
3124
3125 If the @file{Makefile.am} variable @code{AUTOMAKE_OPTIONS}
3126 (@pxref{Options}) contains the option @code{ansi2knr} then code to
3127 handle de-ANSI-fication is inserted into the generated
3128 @file{Makefile.in}.
3129
3130 This causes each C source file in the directory to be treated as ANSI C.
3131 If an ANSI C compiler is available, it is used.  If no ANSI C compiler
3132 is available, the @code{ansi2knr} program is used to convert the source
3133 files into K&R C, which is then compiled.
3134
3135 The @code{ansi2knr} program is simple-minded.  It assumes the source
3136 code will be formatted in a particular way; see the @code{ansi2knr} man
3137 page for details.
3138
3139 Support for de-ANSI-fication requires the source files @file{ansi2knr.c}
3140 and @file{ansi2knr.1} to be in the same package as the ANSI C source;
3141 these files are distributed with Automake.  Also, the package
3142 @file{configure.in} must call the macro @code{AM_C_PROTOTYPES}
3143 (@pxref{Macros}).
3144 @cvindex AM_C_PROTOTYPES
3145
3146 Automake also handles finding the @code{ansi2knr} support files in some
3147 other directory in the current package.  This is done by prepending the
3148 relative path to the appropriate directory to the @code{ansi2knr}
3149 option.  For instance, suppose the package has ANSI C code in the
3150 @file{src} and @file{lib} subdirs.  The files @file{ansi2knr.c} and
3151 @file{ansi2knr.1} appear in @file{lib}.  Then this could appear in
3152 @file{src/Makefile.am}:
3153
3154 @example
3155 AUTOMAKE_OPTIONS = ../lib/ansi2knr
3156 @end example
3157
3158 If no directory prefix is given, the files are assumed to be in the
3159 current directory.
3160
3161 Files mentioned in @code{LIBOBJS} which need de-ANSI-fication will not
3162 be automatically handled.  That's because @code{configure} will generate
3163 an object name like @file{regex.o}, while @code{make} will be looking
3164 for @file{regex_.o} (when de-ANSI-fying).  Eventually this problem will
3165 be fixed via @code{autoconf} magic, but for now you must put this code
3166 into your @file{configure.in}, just before the @code{AC_OUTPUT} call:
3167
3168 @example
3169 # This is necessary so that .o files in LIBOBJS are also built via
3170 # the ANSI2KNR-filtering rules.
3171 LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'`
3172 @end example
3173 @c FIXME: Ask Akim how this should be handled in the upcoming Autoconf.
3174
3175 Note that automatic de-ANSI-fication will not work when the package is
3176 being built for a different host architecture.  That is because automake
3177 currently has no way to build @code{ansi2knr} for the build machine.
3178
3179
3180 @node Dependencies, EXEEXT, ANSI, Programs
3181 @section Automatic dependency tracking
3182
3183 As a developer it is often painful to continually update the
3184 @file{Makefile.in} whenever the include-file dependencies change in a
3185 project.  Automake supplies a way to automatically track dependency
3186 changes.
3187
3188 @cindex Dependency tracking
3189 @cindex Automatic dependency tracking
3190
3191 Automake always uses complete dependencies for a compilation, including
3192 system headers.  Automake's model is that dependency computation should
3193 be a side effect of the build.  To this end, dependencies are computed
3194 by running all compilations through a special wrapper program called
3195 @code{depcomp}.  @code{depcomp} understands how to coax many different C
3196 and C++ compilers into generating dependency information in the format
3197 it requires.  @code{automake -a} will install @code{depcomp} into your
3198 source tree for you.  If @code{depcomp} can't figure out how to properly
3199 invoke your compiler, dependency tracking will simply be disabled for
3200 your build.
3201
3202 @cindex depcomp
3203
3204 Experience with earlier versions of Automake @footnote{See
3205 @uref{http://sources.redhat.com/automake/dependencies.html} for more
3206 information on the history and experiences with automatic dependency
3207 tracking in Automake} taught us that it is not reliable to generate
3208 dependencies only on the maintainer's system, as configurations vary too
3209 much.  So instead Automake implements dependency tracking at build time.
3210
3211 Automatic dependency tracking can be suppressed by putting
3212 @code{no-dependencies} in the variable @code{AUTOMAKE_OPTIONS}, or
3213 passing @code{no-dependencies} as an argument to @code{AM_INIT_AUTOMAKE}
3214 (this should be the prefered way).  Or, you can invoke @code{automake}
3215 with the @code{-i} option.  Dependency tracking is enabled by default.
3216
3217 @vindex AUTOMAKE_OPTIONS
3218 @opindex no-dependencies
3219
3220 The person building your package also can choose to disable dependency
3221 tracking by configuring with @code{--disable-dependency-tracking}.
3222
3223 @cindex Disabling dependency tracking
3224 @cindex Dependency tracking, disabling
3225
3226
3227 @node EXEEXT,  , Dependencies, Programs
3228 @section Support for executable extensions
3229
3230 @cindex Executable extension
3231 @cindex Extension, executable
3232 @cindex Windows
3233
3234 On some platforms, such as Windows, executables are expected to have an
3235 extension such as @samp{.exe}.  On these platforms, some compilers (GCC
3236 among them) will automatically generate @file{foo.exe} when asked to
3237 generate @file{foo}.
3238
3239 Automake provides mostly-transparent support for this.  Unfortunately
3240 @emph{mostly} doesn't yet mean @emph{fully}.  Until the English
3241 dictionary is revised, you will have to assist Automake if your package
3242 must support those platforms.
3243
3244 One thing you must be aware of is that, internally, Automake rewrites
3245 something like this:
3246
3247 @example
3248 bin_PROGRAMS = liver
3249 @end example
3250
3251 to this:
3252
3253 @example
3254 bin_PROGRAMS = liver$(EXEEXT)
3255 @end example
3256
3257 The targets Automake generates are likewise given the @samp{$(EXEEXT)}
3258 extension.  @code{EXEEXT}
3259
3260 However, Automake cannot apply this rewriting to @code{configure}
3261 substitutions.  This means that if you are conditionally building a
3262 program using such a substitution, then your @file{configure.in} must
3263 take care to add @samp{$(EXEEXT)} when constructing the output variable.
3264
3265 With Autoconf 2.13 and earlier, you must explicitly use @code{AC_EXEEXT}
3266 to get this support.  With Autoconf 2.50, @code{AC_EXEEXT} is run
3267 automatically if you configure a compiler (say, through
3268 @code{AC_PROG_CC}).
3269
3270 Sometimes maintainers like to write an explicit link rule for their
3271 program.  Without executable extension support, this is easy---you
3272 simply write a target with the same name as the program.  However, when
3273 executable extension support is enabled, you must instead add the
3274 @samp{$(EXEEXT)} suffix.
3275
3276 Unfortunately, due to the change in Autoconf 2.50, this means you must
3277 always add this extension.  However, this is a problem for maintainers
3278 who know their package will never run on a platform that has executable
3279 extensions.  For those maintainers, the @code{no-exeext} option
3280 (@pxref{Options}) will disable this feature.  This works in a fairly
3281 ugly way; if @code{no-exeext} is seen, then the presence of a target
3282 named @code{foo} in @file{Makefile.am} will override an
3283 automake-generated target of the form @code{foo$(EXEEXT)}.  Without the
3284 @code{no-exeext} option, this use will give an error.
3285
3286
3287 @node Other objects, Other GNU Tools, Programs, Top
3288 @chapter Other Derived Objects
3289
3290 Automake can handle derived objects which are not C programs.  Sometimes
3291 the support for actually building such objects must be explicitly
3292 supplied, but Automake will still automatically handle installation and
3293 distribution.
3294
3295 @menu
3296 * Scripts::                     Executable scripts
3297 * Headers::                     Header files
3298 * Data::                        Architecture-independent data files
3299 * Sources::                     Derived sources
3300 @end menu
3301
3302
3303 @node Scripts, Headers, Other objects, Other objects
3304 @section Executable Scripts
3305
3306 @cindex _SCRIPTS primary, defined
3307 @cindex SCRIPTS primary, defined
3308 @cindex Primary variable, SCRIPTS
3309
3310 It is possible to define and install programs which are scripts.  Such
3311 programs are listed using the @samp{SCRIPTS} primary name.  Automake
3312 doesn't define any dependencies for scripts; the @file{Makefile.am}
3313 should include the appropriate rules.
3314 @vindex SCRIPTS
3315
3316 Automake does not assume that scripts are derived objects; such objects
3317 must be deleted by hand (@pxref{Clean}).
3318
3319 The @code{automake} program itself is a Perl script that is generated at
3320 configure time from @file{automake.in}.  Here is how this is handled:
3321
3322 @example
3323 bin_SCRIPTS = automake
3324 @end example
3325
3326 Since @code{automake} appears in the @code{AC_OUTPUT} macro, a target
3327 for it is automatically generated, and it is also automatically cleaned
3328 (despite the fact it's a script).
3329
3330 @cindex SCRIPTS, installation directories
3331 @cindex Installing scripts
3332
3333 @vindex bin_SCRIPTS
3334 @vindex sbin_SCRIPTS
3335 @vindex libexec_SCRIPTS
3336 @vindex pkgdata_SCRIPTS
3337 @vindex noinst_SCRIPTS
3338 @vindex check_SCRIPTS
3339
3340 Script objects can be installed in @code{bindir}, @code{sbindir},
3341 @code{libexecdir}, or @code{pkgdatadir}.
3342
3343 Scripts that need not being installed can be listed in
3344 @code{noinst_SCRIPTS}, and among them, those which are needed only by
3345 @code{make check} should go in @code{check_SCRIPTS}.
3346
3347
3348 @node Headers, Data, Scripts, Other objects
3349 @section Header files
3350
3351 @cindex _HEADERS primary, defined
3352 @cindex HEADERS primary, defined
3353 @cindex Primary variable, HEADERS
3354
3355 @vindex noinst_HEADERS
3356
3357 Header files are specified by the @samp{HEADERS} family of variables.
3358 Generally header files are not installed, so the @code{noinst_HEADERS}
3359 variable will be the most used.  @footnote{However, for the case of a
3360 non-installed header file that is actually used by a particular program,
3361 we recommend listing it in the program's @samp{_SOURCES} variable
3362 instead of in @code{noinst_HEADERS}.  We believe this is more clear.}
3363 @vindex HEADERS
3364
3365 All header files must be listed somewhere; missing ones will not appear
3366 in the distribution.  Often it is clearest to list uninstalled headers
3367 with the rest of the sources for a program.  @xref{A Program}.  Headers
3368 listed in a @samp{_SOURCES} variable need not be listed in any
3369 @samp{_HEADERS} variable.
3370
3371 @cindex HEADERS, installation directories
3372 @cindex Installing headers
3373
3374 @vindex include_HEADERS
3375 @vindex oldinclude_HEADERS
3376 @vindex pkginclude_HEADERS
3377
3378 Headers can be installed in @code{includedir}, @code{oldincludedir}, or
3379 @code{pkgincludedir}.
3380
3381
3382 @node Data, Sources, Headers, Other objects
3383 @section Architecture-independent data files
3384
3385 @cindex _DATA primary, defined
3386 @cindex DATA primary, defined
3387 @cindex Primary variable, DATA
3388
3389 Automake supports the installation of miscellaneous data files using the
3390 @samp{DATA} family of variables.
3391 @vindex DATA
3392
3393 @vindex data_DATA
3394 @vindex sysconf_DATA
3395 @vindex sharedstate_DATA
3396 @vindex localstate_DATA
3397 @vindex pkgdata_DATA
3398
3399 Such data can be installed in the directories @code{datadir},
3400 @code{sysconfdir}, @code{sharedstatedir}, @code{localstatedir}, or
3401 @code{pkgdatadir}.
3402
3403 By default, data files are @emph{not} included in a distribution.  Of
3404 course, you can use the @samp{dist_} prefix to change this on a
3405 per-variable basis.
3406
3407 Here is how Automake declares its auxiliary data files:
3408
3409 @example
3410 dist_pkgdata_DATA = clean-kr.am clean.am @dots{}
3411 @end example
3412
3413
3414 @node Sources,  , Data, Other objects
3415 @section Built sources
3416
3417 @cindex BUILT_SOURCES, defined
3418
3419 Occasionally a file which would otherwise be called @samp{source}
3420 (e.g. a C @samp{.h} file) is actually derived from some other file.
3421 Such files should be listed in the @code{BUILT_SOURCES} variable.
3422 @vindex BUILT_SOURCES
3423
3424 @code{BUILT_SOURCES} is actually a bit of a misnomer, as any file which
3425 must be created early in the build process can be listed in this
3426 variable.
3427
3428 A source file listed in @code{BUILT_SOURCES} is created before the other
3429 @code{all} targets are made.  However, such a source file is not
3430 compiled unless explicitly requested by mentioning it in some other
3431 @samp{_SOURCES} variable.
3432
3433 So, for instance, if you had header files which were created by a script
3434 run at build time, then you would list these headers in
3435 @code{BUILT_SOURCES}, to ensure that they would be built before any
3436 other compilations (perhaps ones using these headers) were started.
3437
3438
3439 @node Other GNU Tools, Documentation, Other objects, Top
3440 @chapter Other GNU Tools
3441
3442 Since Automake is primarily intended to generate @file{Makefile.in}s for
3443 use in GNU programs, it tries hard to interoperate with other GNU tools.
3444
3445 @menu
3446 * Emacs Lisp::                  Emacs Lisp
3447 * gettext::                     Gettext
3448 * Libtool::                     Libtool
3449 * Java::                        Java
3450 * Python::                      Python
3451 @end menu
3452
3453
3454 @node Emacs Lisp, gettext, Other GNU Tools, Other GNU Tools
3455 @section Emacs Lisp
3456
3457 @cindex _LISP primary, defined
3458 @cindex LISP primary, defined
3459 @cindex Primary variable, LISP
3460
3461 @vindex LISP
3462 @vindex lisp_LISP
3463 @vindex noinst_LISP
3464
3465 Automake provides some support for Emacs Lisp.  The @samp{LISP} primary
3466 is used to hold a list of @file{.el} files.  Possible prefixes for this
3467 primary are @samp{lisp_} and @samp{noinst_}.  Note that if
3468 @code{lisp_LISP} is defined, then @file{configure.in} must run
3469 @code{AM_PATH_LISPDIR} (@pxref{Macros}).
3470
3471 @vindex ELCFILES
3472
3473 By default Automake will byte-compile all Emacs Lisp source files using
3474 the Emacs found by @code{AM_PATH_LISPDIR}.  If you wish to avoid
3475 byte-compiling, simply define the variable @code{ELCFILES} to be empty.
3476 Byte-compiled Emacs Lisp files are not portable among all versions of
3477 Emacs, so it makes sense to turn this off if you expect sites to have
3478 more than one version of Emacs installed.  Furthermore, many packages
3479 don't actually benefit from byte-compilation.  Still, we recommend that
3480 you leave it enabled by default.  It is probably better for sites with
3481 strange setups to cope for themselves than to make the installation less
3482 nice for everybody else.
3483
3484
3485 @node gettext, Libtool, Emacs Lisp, Other GNU Tools
3486 @section Gettext
3487
3488 @cindex GNU Gettext support
3489 @cindex Gettext support
3490 @cindex Support for GNU Gettext
3491
3492 If @code{AM_GNU_GETTEXT} is seen in @file{configure.in}, then Automake
3493 turns on support for GNU gettext, a message catalog system for
3494 internationalization
3495 (@pxref{GNU Gettext, , , gettext, GNU gettext utilities}).
3496
3497 The @code{gettext} support in Automake requires the addition of two
3498 subdirectories to the package, @file{intl} and @file{po}.  Automake
3499 insures that these directories exist and are mentioned in
3500 @code{SUBDIRS}.
3501
3502
3503 @node Libtool, Java, gettext, Other GNU Tools
3504 @section Libtool
3505
3506 Automake provides support for GNU Libtool (@pxref{Top, , Introduction,
3507 libtool, The Libtool Manual}) with the @samp{LTLIBRARIES} primary.
3508 @xref{A Shared Library}.
3509
3510
3511 @node Java, Python, Libtool, Other GNU Tools
3512 @section Java
3513
3514 @cindex _JAVA primary, defined
3515 @cindex JAVA primary, defined
3516 @cindex Primary variable, JAVA
3517
3518 Automake provides some minimal support for Java compilation with the
3519 @samp{JAVA} primary.
3520
3521 Any @file{.java} files listed in a @samp{_JAVA} variable will be
3522 compiled with @code{JAVAC} at build time.  By default, @file{.class}
3523 files are not included in the distribution.
3524
3525 @cindex JAVA restrictions
3526 @cindex Restrictions for JAVA
3527
3528 Currently Automake enforces the restriction that only one @samp{_JAVA}
3529 primary can be used in a given @file{Makefile.am}.  The reason for this
3530 restriction is that, in general, it isn't possible to know which
3531 @file{.class} files were generated from which @file{.java} files -- so
3532 it would be impossible to know which files to install where.  For
3533 instance, a @file{.java} file can define multiple classes; the resulting
3534 @file{.class} file names cannot be predicted without parsing the
3535 @file{.java} file.
3536
3537 There are a few variables which are used when compiling Java sources:
3538
3539 @vtable @code
3540 @item JAVAC
3541 The name of the Java compiler.  This defaults to @samp{javac}.
3542
3543 @item JAVACFLAGS
3544 The flags to pass to the compiler.  This is considered to be a user
3545 variable (@pxref{User Variables}).
3546
3547 @item AM_JAVACFLAGS
3548 More flags to pass to the Java compiler.  This, and not
3549 @code{JAVACFLAGS}, should be used when it is necessary to put Java
3550 compiler flags into @file{Makefile.am}.
3551
3552 @item JAVAROOT
3553 The value of this variable is passed to the @samp{-d} option to
3554 @code{javac}.  It defaults to @samp{$(top_builddir)}.
3555
3556 @item CLASSPATH_ENV
3557 This variable is an @code{sh} expression which is used to set the
3558 @code{CLASSPATH} environment variable on the @code{javac} command line.
3559 (In the future we will probably handle class path setting differently.)
3560 @end vtable
3561
3562
3563 @node Python,  , Java, Other GNU Tools
3564 @section Python
3565
3566 @cindex _PYTHON primary, defined
3567 @cindex PYTHON primary, defined
3568 @cindex Primary variable, PYTHON
3569
3570
3571 Automake provides support for Python compilation with the @samp{PYTHON}
3572 primary.
3573
3574 Any files listed in a @samp{_PYTHON} variable will be byte-compiled with
3575 @code{py-compile} at install time.  @code{py-compile} actually creates
3576 both standard (@file{.pyc}) and byte-compiled (@file{.pyo}) versions of
3577 the source files.  Note that because byte-compilation occurs at install
3578 time, any files listed in @samp{noinst_PYTHON} will not be compiled.
3579 Python source files are included in the distribution by default.
3580
3581 Automake ships with an Autoconf macro called @code{AM_PATH_PYTHON} which
3582 will determine some Python-related directory variables (see below).  If
3583 you have called @code{AM_PATH_PYTHON} from @file{configure.in}, then you
3584 may use the following variables to list you Python source files in your
3585 variables: @samp{python_PYTHON}, @samp{pkgpython_PYTHON},
3586 @samp{pyexecdir_PYTHON}, @samp{pkgpyexecdir_PYTHON}, depending where you
3587 want your files installed.
3588
3589 @code{AM_PATH_PYTHON} takes a single optional argument.  This argument,
3590 if present, is the minimum version of Python which can be used for this
3591 package.  If the version of Python found on the system is older than the
3592 required version, then @code{AM_PATH_PYTHON} will cause an error.
3593
3594 @code{AM_PATH_PYTHON} creates several output variables based on the
3595 Python installation found during configuration.
3596
3597 @vtable @code
3598 @item PYTHON
3599 The name of the Python executable.
3600
3601 @item PYTHON_VERSION
3602 The Python version number, in the form @var{major}.@var{minor}
3603 (e.g. @samp{1.5}).  This is currently the value of
3604 @code{sys.version[:3]}.
3605
3606 @item PYTHON_PREFIX
3607 The string @code{$prefix}.  This term may be used in future work
3608 which needs the contents of Python's @code{sys.prefix}, but general
3609 consensus is to always use the value from configure.
3610
3611 @item PYTHON_EXEC_PREFIX
3612 The string @code{$exec_prefix}.  This term may be used in future work
3613 which needs the contents of Python's @code{sys.exec_prefix}, but general
3614 consensus is to always use the value from configure.
3615
3616 @item PYTHON_PLATFORM
3617 The canonical name used by Python to describe the operating system, as
3618 given by @code{sys.platform}.  This value is sometimes needed when
3619 building Python extensions.
3620
3621 @item pythondir
3622 The directory name for the @file{site-packages} subdirectory of the
3623 standard Python install tree.
3624
3625 @item pkgpythondir
3626 This is is the directory under @code{pythondir} which is named after the
3627 package.  That is, it is @samp{$(pythondir)/$(PACKAGE)}.  It is provided
3628 as a convenience.
3629
3630 @item pyexecdir
3631 This is the directory where Python extension modules (shared libraries)
3632 should be installed.
3633
3634 @item pkgpyexecdir
3635 This is a convenience variable which is defined as
3636 @samp{$(pyexecdir)/$(PACKAGE)}.
3637 @end vtable
3638
3639
3640 @node Documentation, Install, Other GNU Tools, Top
3641 @chapter Building documentation
3642
3643 Currently Automake provides support for Texinfo and man pages.
3644
3645 @menu
3646 * Texinfo::                     Texinfo
3647 * Man pages::                   Man pages
3648 @end menu
3649
3650
3651 @node Texinfo, Man pages, Documentation, Documentation
3652 @section Texinfo
3653
3654 @cindex _TEXINFOS primary, defined
3655 @cindex TEXINFOS primary, defined
3656 @cindex Primary variable, TEXINFOS
3657
3658 If the current directory contains Texinfo source, you must declare it
3659 with the @samp{TEXINFOS} primary.  Generally Texinfo files are converted
3660 into info, and thus the @code{info_TEXINFOS} variable is most commonly used
3661 here.  Any Texinfo source file must end in the @file{.texi},
3662 @file{.txi}, or @file{.texinfo} extension.  We recommend @file{.texi}
3663 for new manuals.
3664 @vindex TEXINFOS
3665 @vindex info_TEXINFOS
3666
3667 Automake generates rules to build @file{.info}, @file{.dvi}, @file{.ps},
3668 and @file{.pdf} files from your Texinfo sources.  The @file{.info} files
3669 are built by @code{make all} and installed by @code{make install}
3670 (unless you use @code{no-installinfo}, see below).  The other files can
3671 be built on request by @code{make dvi}, @code{make ps}, and @code{make
3672 pdf}.
3673
3674 @cindex Texinfo flag, VERSION
3675 @cindex Texinfo flag, UPDATED
3676 @cindex Texinfo flag, EDITION
3677 @cindex Texinfo flag, UPDATED-MONTH
3678
3679 @cindex VERSION Texinfo flag
3680 @cindex UPDATED Texinfo flag
3681 @cindex EDITION Texinfo flag
3682 @cindex UPDATED-MONTH Texinfo flag
3683
3684 @cindex mdate-sh
3685
3686 If the @file{.texi} file @code{@@include}s @file{version.texi}, then
3687 that file will be automatically generated.  The file @file{version.texi}
3688 defines four Texinfo flag you can reference using
3689 @code{@@value@{EDITION@}}, @code{@@value@{VERSION@}},
3690 @code{@@value@{UPDATED@}}, and @code{@@value@{UPDATED-MONTH@}}.
3691
3692 @table @code
3693 @item EDITION
3694 @itemx VERSION
3695 Both of these flags hold the version number of your program.  They are
3696 kept separate for clarity.
3697
3698 @item UPDATED
3699 This holds the date the primary @file{.texi} file was last modified.
3700
3701 @item UPDATED-MONTH
3702 This holds the name of the month in which the primary @file{.texi} file
3703 was last modified.
3704 @end table
3705
3706 The @file{version.texi} support requires the @code{mdate-sh} program;
3707 this program is supplied with Automake and automatically included when
3708 @code{automake} is invoked with the @code{--add-missing} option.
3709
3710 If you have multiple Texinfo files, and you want to use the
3711 @file{version.texi} feature, then you have to have a separate version
3712 file for each Texinfo file.  Automake will treat any include in a
3713 Texinfo file that matches @samp{vers*.texi} just as an automatically
3714 generated version file.
3715
3716 When an info file is rebuilt, the program named by the @code{MAKEINFO}
3717 variable is used to invoke it.  If the @code{makeinfo} program is found
3718 on the system then it will be used by default; otherwise @code{missing}
3719 will be used instead.  The flags in the variables @code{MAKEINFOFLAGS}
3720 and @code{AM_MAKEINFOFLAGS} will be passed to the @code{makeinfo}
3721 invocation; the first of these is intended for use by the user
3722 (@pxref{User Variables}) and the second by the @file{Makefile.am}
3723 writer.
3724 @vindex MAKEINFO
3725 @vindex MAKEINFOFLAGS
3726 @vindex AM_MAKEINFOFLAGS
3727
3728 Sometimes an info file actually depends on more than one @file{.texi}
3729 file.  For instance, in GNU Hello, @file{hello.texi} includes the file
3730 @file{gpl.texi}.  You can tell Automake about these dependencies using
3731 the @code{@var{texi}_TEXINFOS} variable.  Here is how GNU Hello does it:
3732 @vindex TEXINFOS
3733 @vindex _TEXINFOS
3734
3735 @example
3736 info_TEXINFOS = hello.texi
3737 hello_TEXINFOS = gpl.texi
3738 @end example
3739
3740 @cindex texinfo.tex
3741
3742 By default, Automake requires the file @file{texinfo.tex} to appear in
3743 the same directory as the Texinfo source.  However, if you used
3744 @code{AC_CONFIG_AUX_DIR} in @file{configure.in} (@pxref{Input, , Finding
3745 `configure' Input, autoconf, The Autoconf Manual}), then
3746 @file{texinfo.tex} is looked for there.  Automake supplies
3747 @file{texinfo.tex} if @samp{--add-missing} is given.
3748
3749 @vindex TEXINFO_TEX
3750
3751 If your package has Texinfo files in many directories, you can use the
3752 variable @code{TEXINFO_TEX} to tell Automake where to find the canonical
3753 @file{texinfo.tex} for your package.  The value of this variable should
3754 be the relative path from the current @file{Makefile.am} to
3755 @file{texinfo.tex}:
3756
3757 @example
3758 TEXINFO_TEX = ../doc/texinfo.tex
3759 @end example
3760
3761 @opindex no-texinfo.tex
3762
3763 The option @samp{no-texinfo.tex} can be used to eliminate the
3764 requirement for @file{texinfo.tex}.  Use of the variable
3765 @code{TEXINFO_TEX} is preferable, however, because that allows the
3766 @code{dvi}, @code{ps}, and @code{pdf} targets to still work.
3767
3768 @cindex Target, install-info
3769 @cindex Target, noinstall-info
3770 @cindex install-info target
3771 @cindex noinstall-info target
3772
3773 @opindex no-installinfo
3774 @trindex install-info
3775
3776 Automake generates an @code{install-info} target; some people apparently
3777 use this.  By default, info pages are installed by @samp{make install}.
3778 This can be prevented via the @code{no-installinfo} option.
3779
3780
3781 @node Man pages,  , Texinfo, Documentation
3782 @section Man pages
3783
3784 @cindex _MANS primary, defined
3785 @cindex MANS primary, defined
3786 @cindex Primary variable, MANS
3787
3788 A package can also include man pages (but see the GNU standards on this
3789 matter, @ref{Man Pages, , , standards, The GNU Coding Standards}.)  Man
3790 pages are declared using the @samp{MANS} primary.  Generally the
3791 @code{man_MANS} variable is used.  Man pages are automatically installed in
3792 the correct subdirectory of @code{mandir}, based on the file extension.
3793 @vindex MANS
3794 @vindex man_MANS
3795
3796 File extensions such as @samp{.1c} are handled by looking for the valid
3797 part of the extension and using that to determine the correct
3798 subdirectory of @code{mandir}.  Valid section names are the digits
3799 @samp{0} through @samp{9}, and the letters @samp{l} and @samp{n}.
3800
3801 Sometimes developers prefer to name a man page something like
3802 @file{foo.man} in the source, and then rename it to have the correct
3803 suffix, e.g. @file{foo.1}, when installing the file.  Automake also
3804 supports this mode.  For a valid section named @var{SECTION}, there is a
3805 corresponding directory named @samp{man@var{SECTION}dir}, and a
3806 corresponding @samp{_MANS} variable.  Files listed in such a variable
3807 are installed in the indicated section.  If the file already has a
3808 valid suffix, then it is installed as-is; otherwise the file suffix is
3809 changed to match the section.
3810
3811 For instance, consider this example:
3812 @example
3813 man1_MANS = rename.man thesame.1 alsothesame.1c
3814 @end example
3815
3816 In this case, @file{rename.man} will be renamed to @file{rename.1} when
3817 installed, but the other files will keep their names.
3818
3819 @cindex Target, install-man
3820 @cindex Target, noinstall-man
3821 @cindex install-man target
3822 @cindex noinstall-man target
3823
3824 @c Use @samp{make install} per documentation: (texi)code.
3825 By default, man pages are installed by @samp{make install}.  However,
3826 since the GNU project does not require man pages, many maintainers do
3827 not expend effort to keep the man pages up to date.  In these cases, the
3828 @code{no-installman} option will prevent the man pages from being
3829 installed by default.  The user can still explicitly install them via
3830 @samp{make install-man}.
3831 @opindex no-installman
3832 @trindex install-man
3833
3834 Here is how the man pages are handled in GNU @code{cpio} (which includes
3835 both Texinfo documentation and man pages):
3836
3837 @example
3838 man_MANS = cpio.1 mt.1
3839 EXTRA_DIST = $(man_MANS)
3840 @end example
3841
3842 Man pages are not currently considered to be source, because it is not
3843 uncommon for man pages to be automatically generated.  Therefore they
3844 are not automatically included in the distribution.  However, this can
3845 be changed by use of the @samp{dist_} prefix.
3846
3847 The @samp{nobase_} prefix is meaningless for man pages and is
3848 disallowed.
3849
3850
3851 @node Install, Clean, Documentation, Top
3852 @chapter What Gets Installed
3853
3854 @cindex Installation support
3855 @cindex make install support
3856
3857 @section Basics of installation
3858
3859 Naturally, Automake handles the details of actually installing your
3860 program once it has been built.  All files named by the various
3861 primaries are automatically installed in the appropriate places when the
3862 user runs @code{make install}.
3863
3864 A file named in a primary is installed by copying the built file into
3865 the appropriate directory.  The base name of the file is used when
3866 installing.
3867
3868 @example
3869 bin_PROGRAMS = hello subdir/goodbye
3870 @end example
3871
3872 In this example, both @samp{hello} and @samp{goodbye} will be installed
3873 in @code{$(bindir)}.
3874
3875 Sometimes it is useful to avoid the basename step at install time.  For
3876 instance, you might have a number of header files in subdirectories of
3877 the source tree which are laid out precisely how you want to install
3878 them.  In this situation you can use the @samp{nobase_} prefix to
3879 suppress the base name step.  For example:
3880
3881 @example
3882 nobase_include_HEADERS = stdio.h sys/types.h
3883 @end example
3884
3885 Will install @file{stdio.h} in @code{$(includedir)} and @file{types.h}
3886 in @code{$(includedir)/sys}.
3887
3888 @section The two parts of install
3889
3890 Automake generates separate @code{install-data} and @code{install-exec}
3891 targets, in case the installer is installing on multiple machines which
3892 share directory structure---these targets allow the machine-independent
3893 parts to be installed only once.  @code{install-exec} installs
3894 platform-dependent files, and @code{install-data} installs
3895 platform-independent files.  The @code{install} target depends on both
3896 of these targets.  While Automake tries to automatically segregate
3897 objects into the correct category, the @file{Makefile.am} author is, in
3898 the end, responsible for making sure this is done correctly.
3899 @trindex install-data
3900 @trindex install-exec
3901 @trindex install
3902 @cindex Install, two parts of
3903
3904 Variables using the standard directory prefixes @samp{data},
3905 @samp{info}, @samp{man}, @samp{include}, @samp{oldinclude},
3906 @samp{pkgdata}, or @samp{pkginclude} (e.g. @samp{data_DATA}) are
3907 installed by @samp{install-data}.
3908
3909 Variables using the standard directory prefixes @samp{bin}, @samp{sbin},
3910 @samp{libexec}, @samp{sysconf}, @samp{localstate}, @samp{lib}, or
3911 @samp{pkglib} (e.g. @samp{bin_PROGRAMS}) are installed by
3912 @samp{install-exec}.
3913
3914 Any variable using a user-defined directory prefix with @samp{exec} in
3915 the name (e.g. @samp{myexecbin_PROGRAMS} is installed by
3916 @samp{install-exec}.  All other user-defined prefixes are installed by
3917 @samp{install-data}.
3918
3919 @section Extending installation
3920
3921 It is possible to extend this mechanism by defining an
3922 @code{install-exec-local} or @code{install-data-local} target.  If these
3923 targets exist, they will be run at @samp{make install} time.  These
3924 rules can do almost anything; care is required.
3925 @trindex install-exec-local
3926 @trindex install-data-local
3927
3928 Automake also supports two install hooks, @code{install-exec-hook} and
3929 @code{install-data-hook}.  These hooks are run after all other install
3930 rules of the appropriate type, exec or data, have completed.  So, for
3931 instance, it is possible to perform post-installation modifications
3932 using an install hook.
3933 @cindex Install hook
3934
3935 @section Staged installs
3936
3937 @vindex DESTDIR
3938 Automake generates support for the @samp{DESTDIR} variable in all
3939 install rules.  @samp{DESTDIR} is used during the @samp{make install}
3940 step to relocate install objects into a staging area.  Each object and
3941 path is prefixed with the value of @samp{DESTDIR} before being copied
3942 into the install area.  Here is an example of typical DESTDIR usage:
3943
3944 @example
3945 make DESTDIR=/tmp/staging install
3946 @end example
3947
3948 This places install objects in a directory tree built under
3949 @file{/tmp/staging}.  If @file{/gnu/bin/foo} and
3950 @file{/gnu/share/aclocal/foo.m4} are to be installed, the above command
3951 would install @file{/tmp/staging/gnu/bin/foo} and
3952 @file{/tmp/staging/gnu/share/aclocal/foo.m4}.
3953
3954 This feature is commonly used to build install images and packages.  For
3955 more information, see @ref{Makefile Conventions, , , standards, The GNU
3956 Coding Standards}.
3957
3958 Support for @samp{DESTDIR} is implemented by coding it directly into the
3959 install rules.  If your @file{Makefile.am} uses a local install rule
3960 (e.g., @code{install-exec-local}) or an install hook, then you must
3961 write that code to respect @samp{DESTDIR}.
3962
3963 @section Rules for the user
3964
3965 Automake also generates an @code{uninstall} target, an
3966 @code{installdirs} target, and an @code{install-strip} target.
3967 @trindex uninstall
3968 @trindex installdirs
3969 @trindex install-strip
3970
3971 Automake supports @code{uninstall-local} and @code{uninstall-hook}.
3972 There is no notion of separate uninstalls for ``exec'' and ``data'', as
3973 these features would not provide additional functionality.
3974
3975 Note that @code{uninstall} is not meant as a replacement for a real
3976 packaging tool.
3977
3978
3979 @node Clean, Dist, Install, Top
3980 @chapter What Gets Cleaned
3981
3982 @cindex make clean support
3983
3984 The GNU Makefile Standards specify a number of different clean rules.
3985 See @xref{Standard Targets, , Standard Targets for Users, standards,
3986 The GNU Coding Standards}.
3987
3988 Generally the files that can be cleaned are determined automatically by
3989 Automake.  Of course, Automake also recognizes some variables that can
3990 be defined to specify additional files to clean.  These variables are
3991 @code{MOSTLYCLEANFILES}, @code{CLEANFILES}, @code{DISTCLEANFILES}, and
3992 @code{MAINTAINERCLEANFILES}.
3993 @vindex MOSTLYCLEANFILES
3994 @vindex CLEANFILES
3995 @vindex DISTCLEANFILES
3996 @vindex MAINTAINERCLEANFILES
3997
3998 As the GNU Standards aren't always explicit as to which files should be
3999 removed by which target, we've adopted a heuristic which we believe was
4000 first formulated by Fran@,{c}ois Pinard:
4001
4002 @itemize @bullet
4003 @item
4004 If @code{make} built it, and it is commonly something that one would
4005 want to rebuild (for instance, a @file{.o} file), then
4006 @code{mostlyclean} should delete it.
4007
4008 @item
4009 Otherwise, if @code{make} built it, then @code{clean} should delete it.
4010
4011 @item
4012 If @code{configure} built it, then @code{distclean} should delete it
4013
4014 @item
4015 If the maintainer built it, then @code{maintainer-clean} should
4016 delete it.
4017 @end itemize
4018
4019 We recommend that you follow this same set of heuristics in your
4020 @file{Makefile.am}.
4021
4022
4023 @node Dist, Tests, Clean, Top
4024 @chapter What Goes in a Distribution
4025
4026 @section Basics of distribution
4027
4028 @cindex make dist
4029
4030 The @code{dist} target in the generated @file{Makefile.in} can be used
4031 to generate a gzip'd @code{tar} file and other flavors of archive for
4032 distribution.  The files is named based on the @samp{PACKAGE} and
4033 @samp{VERSION} variables defined by @code{AM_INIT_AUTOMAKE}
4034 (@pxref{Macros}); more precisely the gzip'd @code{tar} file is named
4035 @samp{@var{package}-@var{version}.tar.gz}.
4036 @cvindex PACKAGE
4037 @cvindex VERSION
4038 @trindex dist
4039 You can use the @code{make} variable @samp{GZIP_ENV} to control how gzip
4040 is run.  The default setting is @samp{--best}.
4041
4042 For the most part, the files to distribute are automatically found by
4043 Automake: all source files are automatically included in a distribution,
4044 as are all @file{Makefile.am}s and @file{Makefile.in}s.  Automake also
4045 has a built-in list of commonly used files which are automatically
4046 included if they are found in the current directory (either physically,
4047 or as the target of a @file{Makefile.am} rule).  This list is printed by
4048 @samp{automake --help}.  Also, files which are read by @code{configure}
4049 (i.e. the source files corresponding to the files specified in various
4050 Autoconf macros such as @code{AC_CONFIG_FILES} and siblings) are
4051 automatically distributed.
4052
4053 Still, sometimes there are files which must be distributed, but which
4054 are not covered in the automatic rules.  These files should be listed in
4055 the @code{EXTRA_DIST} variable.  You can mention files from
4056 subdirectories in @code{EXTRA_DIST}.
4057
4058 You can also mention a directory in @code{EXTRA_DIST}; in this case the
4059 entire directory will be recursively copied into the distribution.
4060 Please note that this will also copy @emph{everything} in the directory,
4061 including CVS/RCS version control files.  We recommend against using
4062 this feature.
4063
4064 @vindex EXTRA_DIST
4065
4066 @section Fine-grained distribution control
4067
4068 Sometimes you need tighter control over what does @emph{not} go into the
4069 distribution; for instance you might have source files which are
4070 generated and which you do not want to distribute.  In this case
4071 Automake gives fine-grained control using the @samp{dist} and
4072 @samp{nodist} prefixes.  Any primary or @samp{_SOURCES} variable can be
4073 prefixed with @samp{dist_} to add the listed files to the distribution.
4074 Similarly, @samp{nodist_} can be used to omit the files from the
4075 distribution.
4076 @vindex dist_
4077 @vindex nodist_
4078
4079 As an example, here is how you would cause some data to be distributed
4080 while leaving some source code out of the distribution:
4081
4082 @example
4083 dist_data_DATA = distribute-this
4084 bin_PROGRAMS = foo
4085 nodist_foo_SOURCES = do-not-distribute.c
4086 @end example
4087
4088 @section The dist hook
4089
4090 Another way to to use this is for removing unnecessary files that get
4091 recursively included by specifying a directory in EXTRA_DIST:
4092
4093 @example
4094 EXTRA_DIST = doc
4095
4096 dist-hook:
4097         rm -rf `find $(distdir)/doc -name CVS`
4098 @end example
4099
4100 If you define @code{SUBDIRS}, Automake will recursively include the
4101 subdirectories in the distribution.  If @code{SUBDIRS} is defined
4102 conditionally (@pxref{Conditionals}), Automake will normally include all
4103 directories that could possibly appear in @code{SUBDIRS} in the
4104 distribution.  If you need to specify the set of directories
4105 conditionally, you can set the variable @code{DIST_SUBDIRS} to the exact
4106 list of subdirectories to include in the distribution.
4107 @vindex DIST_SUBDIRS
4108
4109 @trindex dist-hook
4110
4111 Occasionally it is useful to be able to change the distribution before
4112 it is packaged up.  If the @code{dist-hook} target exists, it is run
4113 after the distribution directory is filled, but before the actual tar
4114 (or shar) file is created.  One way to use this is for distributing
4115 files in subdirectories for which a new @file{Makefile.am} is overkill:
4116
4117 @example
4118 dist-hook:
4119         mkdir $(distdir)/random
4120         cp -p $(srcdir)/random/a1 $(srcdir)/random/a2 $(distdir)/random
4121 @end example
4122
4123 @section Checking the distribution
4124
4125 @cindex make distcheck
4126 @cindex make distcleancheck
4127 @vindex distcleancheck_listfiles
4128
4129 Automake also generates a @code{distcheck} target which can be of help
4130 to ensure that a given distribution will actually work.
4131 @code{distcheck} makes a distribution, then tries to do a @code{VPATH}
4132 build, run the testsuite, and finally make another tarfile to ensure the
4133 distribution is self-contained.
4134 @trindex distcheck
4135
4136 Building the package involves running @code{./configure}.  If you need
4137 to supply additional flags to @code{configure}, define them in the
4138 @code{DISTCHECK_CONFIGURE_FLAGS} variable, either in your top-level
4139 @file{Makefile.am}, or on the commande line when invoking @code{make}.
4140 @vindex DISTCHECK_CONFIGURE_FLAGS
4141
4142 If the target @code{distcheck-hook} is defined in your
4143 @file{Makefile.am}, then it will be invoked by @code{distcheck} after
4144 the new distribution has been unpacked, but before the unpacked copy is
4145 configured and built.  Your @code{distcheck-hook} can do almost
4146 anything, though as always caution is advised.  Generally this hook is
4147 used to check for potential distribution errors not caught by the
4148 standard mechanism.
4149
4150 Speaking about potential distribution errors, @code{distcheck} will also
4151 ensure that the @code{distclean} target actually removes all built
4152 files.  This is done by running @code{make distcleancheck} at the end of
4153 the @code{VPATH} build.  By default, @code{distcleancheck} will run
4154 @code{distclean} and then make sure the build tree has been emptied by
4155 running @code{$(distcleancheck_listfiles)}.  Usually this check will
4156 find generated files that you forgot to add to the @code{DISTCLEANFILES}
4157 variable (@pxref{Clean}).
4158 @trindex distcleancheck
4159
4160 The @code{distcleancheck} behaviour should be ok for most packages,
4161 otherwise you have the possibility to override the definitition of
4162 either the @code{distcleancheck} target, or the
4163 @code{$(distcleancheck_listfiles)} variable.  For instance to disable
4164 @code{distcleancheck} completely, add the following rule to your
4165 top-level @file{Makefile.am}:
4166 @vindex distcleancheck_listfiles
4167
4168 @example
4169 distcleancheck:
4170         @@:
4171 @end example
4172
4173 If you want @code{distcleancheck} to ignore built files which have not
4174 been cleaned because they are also part of the distribution, add the
4175 following definition instead:
4176
4177 @example
4178 distcleancheck_listfiles = \
4179   find -type f -exec sh -c 'test -f $(scrdir)/@{@} || echo @{@}'
4180 @end example
4181
4182 The above definition is not the default because it's usually an error if
4183 your Makefiles cause some distributed files to be rebuilt when the user
4184 build the package.  (Think about the user missing the tool required to
4185 build the file; or if the required tool is built by your package,
4186 consider the cross-compilation case where it can't be run.)
4187
4188 @section The types of distributions
4189
4190 @trindex dist-gzip
4191 Automake generates a @samp{.tar.gz} file when asked to create a
4192 distribution and other archives formats, @ref{Options}.  The target
4193 @code{dist-gzip} generates the @samp{.tar.gz} file only.
4194
4195
4196 @node Tests, Options, Dist, Top
4197 @chapter Support for test suites
4198
4199 @cindex Test suites
4200 @cindex make check
4201
4202 Automake supports two forms of test suites.
4203
4204 @section Simple Tests
4205
4206 If the variable @code{TESTS} is defined, its value is taken to be a list
4207 of programs to run in order to do the testing.  The programs can either
4208 be derived objects or source objects; the generated rule will look both
4209 in @code{srcdir} and @file{.}.  Programs needing data files should look
4210 for them in @code{srcdir} (which is both an environment variable and a
4211 make variable) so they work when building in a separate directory
4212 (@pxref{Build Directories, , Build Directories , autoconf, The Autoconf
4213 Manual}), and in particular for the @code{distcheck} target
4214 (@pxref{Dist}).
4215
4216 @cindex Exit status 77, special interpretation
4217
4218 The number of failures will be printed at the end of the run.  If a
4219 given test program exits with a status of 77, then its result is ignored
4220 in the final count.  This feature allows non-portable tests to be
4221 ignored in environments where they don't make sense.
4222
4223 The variable @code{TESTS_ENVIRONMENT} can be used to set environment
4224 variables for the test run; the environment variable @code{srcdir} is
4225 set in the rule.  If all your test programs are scripts, you can also
4226 set @code{TESTS_ENVIRONMENT} to an invocation of the shell (e.g.
4227 @samp{$(SHELL) -x}); this can be useful for debugging the tests.
4228 @vindex TESTS
4229 @vindex TESTS_ENVIRONMENT
4230
4231 @cindex Tests, expected failure
4232 @cindex Expected test failure
4233
4234 You may define the variable @code{XFAIL_TESTS} to a list of tests
4235 (usually a subset of @code{TESTS}) that are expected to fail.  This will
4236 reverse the result of those tests.
4237 @vindex XFAIL_TESTS
4238
4239 Automake ensures that each program listed in @code{TESTS} is built
4240 before any tests are run; you can list both source and derived programs
4241 in @code{TESTS}.  For instance, you might want to run a C program as a
4242 test.  To do this you would list its name in @code{TESTS} and also in
4243 @code{check_PROGRAMS}, and then specify it as you would any other
4244 program.
4245
4246 @section DejaGNU Tests
4247
4248 If @uref{ftp://ftp.gnu.org/gnu/dejagnu/, @samp{dejagnu}} appears in
4249 @code{AUTOMAKE_OPTIONS}, then a @code{dejagnu}-based test suite is
4250 assumed.  The variable @code{DEJATOOL} is a list of names which are
4251 passed, one at a time, as the @code{--tool} argument to @code{runtest}
4252 invocations; it defaults to the name of the package.
4253
4254 The variable @code{RUNTESTDEFAULTFLAGS} holds the @code{--tool} and
4255 @code{--srcdir} flags that are passed to dejagnu by default; this can be
4256 overridden if necessary.
4257 @vindex RUNTESTDEFAULTFLAGS
4258
4259 The variables @code{EXPECT} and @code{RUNTEST} can
4260 also be overridden to provide project-specific values.  For instance,
4261 you will need to do this if you are testing a compiler toolchain,
4262 because the default values do not take into account host and target
4263 names.
4264 @opindex dejagnu
4265 @vindex DEJATOOL
4266 @vindex EXPECT
4267 @vindex RUNTEST
4268
4269 The contents of the variable @code{RUNTESTFLAGS} are passed to the
4270 @code{runtest} invocation.  This is considered a ``user variable''
4271 (@pxref{User Variables}).  If you need to set @code{runtest} flags in
4272 @file{Makefile.am}, you can use @code{AM_RUNTESTFLAGS} instead.
4273 @vindex RUNTESTFLAGS
4274 @vindex AM_RUNTESTFLAGS
4275 @c FIXME xref dejagnu
4276
4277 @cindex @file{site.exp}
4278 Automake will generate rules to create a local @file{site.exp} file,
4279 defining various variables detected by @code{./configure}.  This file
4280 is automatically read by DejaGnu.  It is ok for the user of a package
4281 to edit this file in order to tune the test suite.  However this is
4282 not the place where the test suite author should define new variables:
4283 this should be done elsewhere in the real test suite code.
4284 Especially, @file{site.exp} should not be distributed.
4285
4286 In either case, the testing is done via @samp{make check}.
4287
4288 @section Install Tests
4289
4290 The @code{installcheck} target is available to the user as a way to run
4291 any tests after the package has been installed.  You can add tests to
4292 this by writing an @code{installcheck-local} target.
4293
4294
4295 @node Options, Miscellaneous, Tests, Top
4296 @chapter Changing Automake's Behavior
4297
4298 Various features of Automake can be controlled by options in the
4299 @file{Makefile.am}.  Such options are applied on a per-@file{Makefile}
4300 basis when listed in a special @file{Makefile} variable named
4301 @code{AUTOMAKE_OPTIONS}.  They are applied globally to all processed
4302 @file{Makefiles} when listed in the first argument of
4303 @code{AM_INIT_AUTOMAKE} in @file{configure.in}.  Currently understood
4304 options are:
4305 @vindex AUTOMAKE_OPTIONS
4306
4307 @table @asis
4308 @item @code{gnits}
4309 @itemx @code{gnu}
4310 @itemx @code{foreign}
4311 @itemx @code{cygnus}
4312 @cindex Option, gnits
4313 @cindex Option, gnu
4314 @cindex Option, foreign
4315 @cindex Option, cygnus
4316
4317 Set the strictness as appropriate.  The @code{gnits} option also implies
4318 @code{readme-alpha} and @code{check-news}.
4319
4320 @item @code{ansi2knr}
4321 @itemx @code{@var{path}/ansi2knr}
4322 @cindex Option, ansi2knr
4323 Turn on automatic de-ANSI-fication.  @xref{ANSI}.  If preceded by a
4324 path, the generated @file{Makefile.in} will look in the specified
4325 directory to find the @file{ansi2knr} program.  The path should be a
4326 relative path to another directory in the same distribution (Automake
4327 currently does not check this).
4328
4329 @item @code{check-news}
4330 @cindex Option, check-news
4331 Cause @code{make dist} to fail unless the current version number appears
4332 in the first few lines of the @file{NEWS} file.
4333
4334 @item @code{dejagnu}
4335 @cindex Option, dejagnu
4336 Cause @code{dejagnu}-specific rules to be generated.  @xref{Tests}.
4337
4338 @item @code{dist-bzip2}
4339 @cindex Option, dist-bzip2
4340 Generate a @code{dist-bzip2} target, creating a bzip2 tar archive of the
4341 distribution.  @code{dist} will create it in addition to the other
4342 formats.  bzip2 archives are frequently smaller than gzipped archives.
4343 @trindex dist-bzip2
4344
4345 @item @code{dist-shar}
4346 @cindex Option, dist-shar
4347 Generate a @code{dist-shar} target, creating a shar archive of the
4348 distribution.  @code{dist} will create it in addition to the other
4349 formats.
4350 @trindex dist-shar
4351
4352 @item @code{dist-zip}
4353 @cindex Option, dist-zip
4354 Generate a @code{dist-zip} target, creating a zip archive of the
4355 distribution.  @code{dist} will create it in addition to the other
4356 formats.
4357 @trindex dist-zip
4358
4359 @item @code{dist-tarZ}
4360 @cindex Option, dist-tarZ
4361 Generate a @code{dist-tarZ} target, creating a compressed tar archive of
4362 the distribution.  @code{dist} will create it in addition to the other
4363 formats.
4364 @trindex dist-tarZ
4365
4366 @item @code{no-define}
4367 @cindex Option, no-define
4368 This options is meaningful only when passed as an argument to
4369 AM_INIT_AUTOMAKE.  It will prevent the @code{PACKAGE} and @code{VERSION}
4370 variable to be @code{AC_DEFINE}d.
4371
4372 @item @code{no-dependencies}
4373 @cindex Option, no-dependencies
4374 This is similar to using @samp{--include-deps} on the command line, but
4375 is useful for those situations where you don't have the necessary bits
4376 to make automatic dependency tracking work @xref{Dependencies}.  In this
4377 case the effect is to effectively disable automatic dependency tracking.
4378
4379 @item @code{no-exeext}
4380 @cindex Option, no-exeext
4381 If your @file{Makefile.am} defines a target @samp{foo}, it will override
4382 a target named @samp{foo$(EXEEXT)}.  This is necessary when
4383 @code{EXEEXT} is found to be empty.  However, by default automake will
4384 generate an error for this use.  The @code{no-exeext} option will
4385 disable this error.  This is intended for use only where it is known in
4386 advance that the package will not be ported to Windows, or any other
4387 operating system using extensions on executables.
4388
4389 @item @code{no-installinfo}
4390 @cindex Option, no-installinfo
4391 The generated @file{Makefile.in} will not cause info pages to be built
4392 or installed by default.  However, @code{info} and @code{install-info}
4393 targets will still be available.  This option is disallowed at
4394 @samp{GNU} strictness and above.
4395 @trindex info
4396 @trindex install-info
4397
4398 @item @code{no-installman}
4399 @cindex Option, no-installman
4400 The generated @file{Makefile.in} will not cause man pages to be
4401 installed by default.  However, an @code{install-man} target will still
4402 be available for optional installation.  This option is disallowed at
4403 @samp{GNU} strictness and above.
4404 @trindex install-man
4405
4406 @item @code{nostdinc}
4407 @cindex Option, nostdinc
4408 This option can be used to disable the standard @samp{-I} options which
4409 are ordinarily automatically provided by Automake.
4410
4411 @item @code{no-texinfo.tex}
4412 @cindex Option, no-texinfo
4413 Don't require @file{texinfo.tex}, even if there are texinfo files in
4414 this directory.
4415
4416 @item @code{readme-alpha}
4417 @cindex Option, readme-alpha
4418 If this release is an alpha release, and the file @file{README-alpha}
4419 exists, then it will be added to the distribution.  If this option is
4420 given, version numbers are expected to follow one of two forms.  The
4421 first form is @samp{@var{MAJOR}.@var{MINOR}.@var{ALPHA}}, where each
4422 element is a number; the final period and number should be left off for
4423 non-alpha releases.  The second form is
4424 @samp{@var{MAJOR}.@var{MINOR}@var{ALPHA}}, where @var{ALPHA} is a
4425 letter; it should be omitted for non-alpha releases.
4426
4427 @item @code{std-options}
4428 @cindex Options, std-options
4429 @cindex make installcheck
4430 Make the @code{installcheck} target check that installed scripts and
4431 programs support the @code{--help} and @code{--version} options.
4432 This also provides a basic check that the program's
4433 run-time dependencies are satisfied after installation.
4434
4435 @vindex AM_INSTALLCHECK_STD_OPTIONS_EXEMPT
4436 In a few situations, programs (or scripts) have to be exempted from this
4437 test.  For instance @command{false} (from GNU sh-utils) is never
4438 successful, even for @code{--help} or @code{--version}.  You can
4439 list such programs in the variable @code{AM_INSTALLCHECK_STD_OPTIONS_EXEMPT}.
4440
4441 @item @code{subdir-objects}
4442 If this option is specified, then objects are placed into the
4443 subdirectory of the build directory corresponding to the subdirectory of
4444 the source file.  For instance if the source file is
4445 @file{subdir/file.cxx}, then the output file would be
4446 @file{subdir/file.o}.
4447
4448 @item @var{version}
4449 @cindex Option, version
4450 A version number (e.g. @samp{0.30}) can be specified.  If Automake is not
4451 newer than the version specified, creation of the @file{Makefile.in}
4452 will be suppressed.
4453
4454 @item @code{-W@var{category}} or @code{--warnings=@var{category}}
4455 @cindex Option, warnings
4456 These options behave exactly like their command-line counterpart
4457 (@pxref{Invoking Automake}).  This allows you to enable or disable some
4458 warning categories on a per-file basis.  You can also setup some warnings
4459 for your entire project; for instance try @code{AM_INIT_AUTOMAKE([-Wall])}
4460 in your @file{configure.in}.
4461
4462 @end table
4463
4464 Unrecognized options are diagnosed by @code{automake}.
4465
4466 If you want an option to apply to all the files in the tree, you can use
4467 the @code{AM_INIT_AUTOMAKE} macro in @file{configure.in}.
4468 @xref{Macros}.
4469
4470
4471 @node Miscellaneous, Include, Options, Top
4472 @chapter Miscellaneous Rules
4473
4474 There are a few rules and variables that didn't fit anywhere else.
4475
4476 @menu
4477 * Tags::                        Interfacing to etags and mkid
4478 * Suffixes::                    Handling new file extensions
4479 * Multilibs::                   Support for multilibbing.
4480 @end menu
4481
4482
4483 @node Tags, Suffixes, Miscellaneous, Miscellaneous
4484 @section Interfacing to @code{etags}
4485
4486 @cindex TAGS support
4487
4488 Automake will generate rules to generate @file{TAGS} files for use with
4489 GNU Emacs under some circumstances.
4490
4491 If any C, C++ or Fortran 77 source code or headers are present, then
4492 @code{tags} and @code{TAGS} targets will be generated for the directory.
4493 @trindex tags
4494
4495 At the topmost directory of a multi-directory package, a @code{tags}
4496 target file will be generated which, when run, will generate a
4497 @file{TAGS} file that includes by reference all @file{TAGS} files from
4498 subdirectories.
4499
4500 The @code{tags} target will also be generated if the variable
4501 @code{ETAGS_ARGS} is defined.  This variable is intended for use in
4502 directories which contain taggable source that @code{etags} does not
4503 understand.  The user can use the @code{ETAGSFLAGS} to pass additional
4504 flags to @code{etags}; @code{AM_ETAGSFLAGS} is also available for use in
4505 @file{Makefile.am}.
4506 @vindex ETAGS_ARGS
4507 @vindex ETAGSFLAGS
4508 @vindex AM_ETAGSFLAGS
4509
4510 Here is how Automake generates tags for its source, and for nodes in its
4511 Texinfo file:
4512
4513 @example
4514 ETAGS_ARGS = automake.in --lang=none \
4515  --regex='/^@@node[ \t]+\([^,]+\)/\1/' automake.texi
4516 @end example
4517
4518 If you add filenames to @samp{ETAGS_ARGS}, you will probably also
4519 want to set @samp{TAGS_DEPENDENCIES}.  The contents of this variable
4520 are added directly to the dependencies for the @code{tags} target.
4521 @vindex TAGS_DEPENDENCIES
4522
4523 Automake also generates a @code{ctags} target which can be used to
4524 build @command{vi}-style @file{tags} files.  The variable @code{CTAGS}
4525 is the name of the program to invoke (by default @samp{ctags});
4526 @code{CTAGSFLAGS} can be used by the user to pass additional flags,
4527 and @code{AM_CTAGSFLAGS} can be used by the @file{Makefile.am}.
4528
4529 Automake will also generate an @code{ID} target which will run
4530 @code{mkid} on the source.  This is only supported on a
4531 directory-by-directory basis.
4532 @trindex id
4533
4534 Automake also supports the @uref{http://www.gnu.org/software/global/,
4535 GNU Global Tags program}.  The @code{GTAGS} target runs Global Tags
4536 automatically and puts the result in the top build directory.  The
4537 variable @code{GTAGS_ARGS} holds arguments which are passed to
4538 @code{gtags}.
4539 @vindex GTAGS_ARGS
4540
4541
4542 @node Suffixes, Multilibs, Tags, Miscellaneous
4543 @section Handling new file extensions
4544
4545 @cindex Adding new SUFFIXES
4546 @cindex SUFFIXES, adding
4547 @vindex SUFFIXES
4548
4549 It is sometimes useful to introduce a new implicit rule to handle a file
4550 type that Automake does not know about.
4551
4552 For instance, suppose you had a compiler which could compile @samp{.foo}
4553 files to @samp{.o} files.  You would simply define an suffix rule for
4554 your language:
4555
4556 @example
4557 .foo.o:
4558         foocc -c -o $@@ $<
4559 @end example
4560
4561 Then you could directly use a @samp{.foo} file in a @samp{_SOURCES}
4562 variable and expect the correct results:
4563
4564 @example
4565 bin_PROGRAMS = doit
4566 doit_SOURCES = doit.foo
4567 @end example
4568
4569 This was the simpler and more common case.  In other cases, you will
4570 have to help Automake to figure which extensions you are defining your
4571 suffix rule for.  This usually happens when your extensions does not
4572 start with a dot.  Then, all you have to do is to put a list of new
4573 suffixes in the @code{SUFFIXES} variable @strong{before} you define your
4574 implicit rule.
4575
4576 For instance the following definition prevents Automake to misinterpret
4577 @samp{.idlC.cpp:} as an attemp to transform @samp{.idlC} into
4578 @samp{.cpp}.
4579
4580 @example
4581 SUFFIXES = .idl C.cpp
4582 .idlC.cpp:
4583         # whatever
4584 @end example
4585
4586 As you may have noted, the @code{SUFFIXES} variable behaves like the
4587 @code{.SUFFIXES} special target of @code{make}.  You should not touch
4588 @code{.SUFFIXES} yourself, but use @code{SUFFIXES} instead and let
4589 Automake generate the suffix list for @code{.SUFFIXES}.  Any given
4590 @code{SUFFIXES} go at the start of the generated suffixes list, followed
4591 by Automake generated suffixes not already in the list.
4592
4593 @node Multilibs,  , Suffixes, Miscellaneous
4594 @section Support for Multilibs
4595
4596 Automake has support for an obscure feature called multilibs.  A
4597 @dfn{multilib} is a library which is built for multiple different ABIs
4598 at a single time; each time the library is built with a different target
4599 flag combination.  This is only useful when the library is intended to
4600 be cross-compiled, and it is almost exclusively used for compiler
4601 support libraries.
4602
4603 The multilib support is still experimental.  Only use it if you are
4604 familiar with multilibs and can debug problems you might encounter.
4605
4606
4607 @node Include, Conditionals, Miscellaneous, Top
4608 @chapter Include
4609
4610 @cmindex include
4611 @cindex Including Makefile fragment
4612 @cindex Makefile fragment, including
4613
4614 Automake supports an @code{include} directive which can be used to
4615 include other @file{Makefile} fragments when @code{automake} is run.
4616 Note that these fragments are read and interpreted by @code{automake},
4617 not by @code{make}.  As with conditionals, @code{make} has no idea that
4618 @code{include} is in use.
4619
4620 There are two forms of @code{include}:
4621
4622 @table @code
4623 @item include $(srcdir)/file
4624 Include a fragment which is found relative to the current source
4625 directory.
4626
4627 @item include $(top_srcdir)/file
4628 Include a fragment which is found relative to the top source directory.
4629 @end table
4630
4631 Note that if a fragment is included inside a conditional, then the
4632 condition applies to the entire contents of that fragment.
4633
4634
4635 @node Conditionals, Gnits, Include, Top
4636 @chapter Conditionals
4637
4638 @cindex Conditionals
4639
4640 Automake supports a simple type of conditionals.
4641
4642 @cvindex AM_CONDITIONAL
4643 Before using a conditional, you must define it by using
4644 @code{AM_CONDITIONAL} in the @code{configure.in} file (@pxref{Macros}).
4645
4646 @defmac AM_CONDITIONAL (@var{conditional}, @var{condition})
4647 The conditional name, @var{conditional}, should be a simple string
4648 starting with a letter and containing only letters, digits, and
4649 underscores.  It must be different from @samp{TRUE} and @samp{FALSE}
4650 which are reserved by Automake.
4651
4652 The shell @var{condition} (suitable for use in a shell @code{if}
4653 statement) is evaluated when @code{configure} is run.  Note that you
4654 must arrange for @emph{every} @code{AM_CONDITIONAL} to be invoked every
4655 time @code{configure} is run -- if @code{AM_CONDITIONAL} is run
4656 conditionally (e.g., in a shell @code{if} statement), then the result
4657 will confuse automake.
4658 @end defmac
4659
4660 @cindex --enable-debug, example
4661 @cindex Example conditional --enable-debug
4662 @cindex Conditional example,  --enable-debug
4663
4664 Conditionals typically depend upon options which the user provides to
4665 the @code{configure} script.  Here is an example of how to write a
4666 conditional which is true if the user uses the @samp{--enable-debug}
4667 option.
4668
4669 @example
4670 AC_ARG_ENABLE(debug,
4671 [  --enable-debug    Turn on debugging],
4672 [case "$@{enableval@}" in
4673   yes) debug=true ;;
4674   no)  debug=false ;;
4675   *) AC_MSG_ERROR(bad value $@{enableval@} for --enable-debug) ;;
4676 esac],[debug=false])
4677 AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
4678 @end example
4679
4680 Here is an example of how to use that conditional in @file{Makefile.am}:
4681
4682 @cmindex if
4683 @cmindex endif
4684 @cmindex else
4685
4686 @example
4687 if DEBUG
4688 DBG = debug
4689 else
4690 DBG =
4691 endif
4692 noinst_PROGRAMS = $(DBG)
4693 @end example
4694
4695 This trivial example could also be handled using EXTRA_PROGRAMS
4696 (@pxref{Conditional Programs}).
4697
4698 You may only test a single variable in an @code{if} statement, possibly
4699 negated using @samp{!}.  The @code{else} statement may be omitted.
4700 Conditionals may be nested to any depth.  You may specify an argument to
4701 @code{else} in which case it must be the negation of the condition used
4702 for the current @code{if}.  Similarly you may specify the condition
4703 which is closed by an @code{end}:
4704
4705 @example
4706 if DEBUG
4707 DBG = debug
4708 else !DEBUG
4709 DBG =
4710 endif !DEBUG
4711 @end example
4712
4713 @noindent
4714 Unbalanced conditions are errors.
4715
4716 Note that conditionals in Automake are not the same as conditionals in
4717 GNU Make.  Automake conditionals are checked at configure time by the
4718 @file{configure} script, and affect the translation from
4719 @file{Makefile.in} to @file{Makefile}.  They are based on options passed
4720 to @file{configure} and on results that @file{configure} has discovered
4721 about the host system.  GNU Make conditionals are checked at @code{make}
4722 time, and are based on variables passed to the make program or defined
4723 in the @file{Makefile}.
4724
4725 Automake conditionals will work with any make program.
4726
4727
4728 @node Gnits, Cygnus, Conditionals, Top
4729 @chapter The effect of @code{--gnu} and @code{--gnits}
4730
4731 @cindex --gnu, required files
4732 @cindex --gnu, complete description
4733
4734 The @samp{--gnu} option (or @samp{gnu} in the @samp{AUTOMAKE_OPTIONS}
4735 variable) causes @code{automake} to check the following:
4736
4737 @itemize @bullet
4738 @item
4739 The files @file{INSTALL}, @file{NEWS}, @file{README}, @file{AUTHORS},
4740 and @file{ChangeLog}, plus one of @file{COPYING.LIB}, @file{COPYING.LESSER}
4741 or @file{COPYING}, are required at the topmost directory of the package.
4742
4743 @item
4744 The options @samp{no-installman} and @samp{no-installinfo} are
4745 prohibited.
4746 @end itemize
4747
4748 Note that this option will be extended in the future to do even more
4749 checking; it is advisable to be familiar with the precise requirements
4750 of the GNU standards.  Also, @samp{--gnu} can require certain
4751 non-standard GNU programs to exist for use by various maintainer-only
4752 targets; for instance in the future @code{pathchk} might be required for
4753 @samp{make dist}.
4754
4755 @cindex --gnits, complete description
4756
4757 The @samp{--gnits} option does everything that @samp{--gnu} does, and
4758 checks the following as well:
4759
4760 @itemize @bullet
4761 @item
4762 @samp{make installcheck} will check to make sure that the @code{--help}
4763 and @code{--version} really print a usage message and a version string,
4764 respectively.  This is the @code{std-options} option (@pxref{Options}).
4765
4766 @item
4767 @samp{make dist} will check to make sure the @file{NEWS} file has been
4768 updated to the current version.
4769
4770 @item
4771 @samp{VERSION} is checked to make sure its format complies with Gnits
4772 standards.
4773 @c FIXME xref when standards are finished
4774
4775 @item
4776 @cindex README-alpha
4777 If @samp{VERSION} indicates that this is an alpha release, and the file
4778 @file{README-alpha} appears in the topmost directory of a package, then
4779 it is included in the distribution.  This is done in @samp{--gnits}
4780 mode, and no other, because this mode is the only one where version
4781 number formats are constrained, and hence the only mode where Automake
4782 can automatically determine whether @file{README-alpha} should be
4783 included.
4784
4785 @item
4786 The file @file{THANKS} is required.
4787 @end itemize
4788
4789
4790 @node Cygnus, Extending, Gnits, Top
4791 @chapter The effect of @code{--cygnus}
4792
4793 @cindex Cygnus strictness
4794
4795 Some packages, notably GNU GCC and GNU gdb, have a build environment
4796 originally written at Cygnus Support (subsequently renamed Cygnus
4797 Solutions, and then later purchased by Red Hat).  Packages with this
4798 ancestry are sometimes referred to as ``Cygnus'' trees.
4799
4800 A Cygnus tree has slightly different rules for how a @file{Makefile.in}
4801 is to be constructed.  Passing @samp{--cygnus} to @code{automake} will
4802 cause any generated @file{Makefile.in} to comply with Cygnus rules.
4803
4804 Here are the precise effects of @samp{--cygnus}:
4805
4806 @itemize @bullet
4807 @item
4808 Info files are always created in the build directory, and not in the
4809 source directory.
4810
4811 @item
4812 @file{texinfo.tex} is not required if a Texinfo source file is
4813 specified.  The assumption is that the file will be supplied, but in a
4814 place that Automake cannot find.  This assumption is an artifact of how
4815 Cygnus packages are typically bundled.
4816
4817 @item
4818 @samp{make dist} is not supported, and the rules for it are not
4819 generated.  Cygnus-style trees use their own distribution mechanism.
4820
4821 @item
4822 Certain tools will be searched for in the build tree as well as in the
4823 user's @samp{PATH}.  These tools are @code{runtest}, @code{expect},
4824 @code{makeinfo} and @code{texi2dvi}.
4825
4826 @item
4827 @code{--foreign} is implied.
4828
4829 @item
4830 The options @samp{no-installinfo} and @samp{no-dependencies} are
4831 implied.
4832
4833 @item
4834 The macros @samp{AM_MAINTAINER_MODE} and @samp{AM_CYGWIN32} are
4835 required.
4836
4837 @item
4838 The @code{check} target doesn't depend on @code{all}.
4839 @end itemize
4840
4841 GNU maintainers are advised to use @samp{gnu} strictness in preference
4842 to the special Cygnus mode.  Some day, perhaps, the differences between
4843 Cygnus trees and GNU trees will disappear (for instance, as GCC is made
4844 more standards compliant).  At that time the special Cygnus mode will be
4845 removed.
4846
4847
4848 @node Extending, Distributing, Cygnus, Top
4849 @chapter When Automake Isn't Enough
4850
4851 Automake's implicit copying semantics means that many problems can be
4852 worked around by simply adding some @code{make} targets and rules to
4853 @file{Makefile.in}.  Automake will ignore these additions.
4854
4855 @cindex -local targets
4856 @cindex local targets
4857
4858 There are some caveats to doing this.  Although you can overload a
4859 target already used by Automake, it is often inadvisable, particularly
4860 in the topmost directory of a package with subdirectories.  However,
4861 various useful targets have a @samp{-local} version you can specify in
4862 your @file{Makefile.in}.  Automake will supplement the standard target
4863 with these user-supplied targets.
4864
4865 @trindex  all
4866 @trindex  all-local
4867 @trindex  info
4868 @trindex  info-local
4869 @trindex  dvi
4870 @trindex  dvi-local
4871 @trindex  ps
4872 @trindex  ps-local
4873 @trindex  pdf
4874 @trindex  pdf-local
4875 @trindex  check
4876 @trindex  check-local
4877 @trindex  install
4878 @trindex  install-data-local
4879 @trindex  install-exec
4880 @trindex  install-exec-local
4881 @trindex  uninstall
4882 @trindex  uninstall-local
4883 @trindex  mostlyclean
4884 @trindex  mostlyclean-local
4885 @trindex  clean
4886 @trindex  clean-local
4887 @trindex  distclean
4888 @trindex  distclean-local
4889 @trindex  installdirs
4890 @trindex  installdirs-local
4891 @trindex  installcheck
4892 @trindex  installcheck-local
4893
4894 The targets that support a local version are @code{all}, @code{info},
4895 @code{dvi}, @code{ps}, @code{pdf}, @code{check}, @code{install-data},
4896 @code{install-exec}, @code{uninstall}, @code{installdirs},
4897 @code{installcheck} and the various @code{clean} targets
4898 (@code{mostlyclean}, @code{clean}, @code{distclean}, and
4899 @code{maintainer-clean}).  Note that there are no
4900 @code{uninstall-exec-local} or @code{uninstall-data-local} targets; just
4901 use @code{uninstall-local}.  It doesn't make sense to uninstall just
4902
4903 For instance, here is one way to install a file in @file{/etc}:
4904
4905 @example
4906 install-data-local:
4907         $(INSTALL_DATA) $(srcdir)/afile $(DESTDIR)/etc/afile
4908 @end example
4909
4910 @cindex -hook targets
4911 @cindex hook targets
4912
4913 Some targets also have a way to run another target, called a @dfn{hook},
4914 after their work is done.  The hook is named after the principal target,
4915 with @samp{-hook} appended.  The targets allowing hooks are
4916 @code{install-data}, @code{install-exec}, @code{uninstall}, @code{dist},
4917 and @code{distcheck}.
4918 @trindex install-data-hook
4919 @trindex install-exec-hook
4920 @trindex uninstall-hook
4921 @trindex dist-hook
4922
4923 For instance, here is how to create a hard link to an installed program:
4924
4925 @example
4926 install-exec-hook:
4927         ln $(DESTDIR)$(bindir)/program $(DESTDIR)$(bindir)/proglink
4928 @end example
4929
4930 @c FIXME should include discussion of variables you can use in these
4931 @c rules
4932
4933 @node Distributing, API versioning, Extending, Top
4934 @chapter Distributing @file{Makefile.in}s
4935
4936 Automake places no restrictions on the distribution of the resulting
4937 @file{Makefile.in}s.  We still encourage software authors to distribute
4938 their work under terms like those of the GPL, but doing so is not
4939 required to use Automake.
4940
4941 Some of the files that can be automatically installed via the
4942 @code{--add-missing} switch do fall under the GPL.  However, these also
4943 have a special exception allowing you to distribute them with your
4944 package, regardless of the licensing you choose.
4945
4946
4947 @node API versioning, Macro and Variable Index, Distributing, Top
4948 @chapter Automake API versioning
4949
4950 New Automake releases usually include bug fixes and new features.
4951 Unfortunately they may also introduce new bugs and incompatibilities.
4952 This makes four reasons why a package may require a particular Automake
4953 version.
4954
4955 Things get worse when maintaining a large tree of packages, each one
4956 requiring a different version of Automake.  In the past, this meant that
4957 any developer (and sometime users) had to install several versions of
4958 Automake in different places, and switch @samp{$PATH} appropriately for
4959 each package.
4960
4961 Starting with version 1.6, Automake installs versioned binaries.  This
4962 means you can install several versions of Automake in the same
4963 @samp{$prefix}, and can select an arbitrary Automake version by running
4964 @samp{automake-1.6} or @samp{automake-1.7} without juggling with
4965 @samp{$PATH}.  Furthermore, @file{Makefile}'s generated by Automake 1.6
4966 will use @samp{automake-1.6} explicitely in their rebuild rules.
4967
4968 Note that @samp{1.6} in @samp{automake-1.6} is Automake's API version,
4969 not Automake's version.  If a bug fix release is made, for instance
4970 Automake 1.6.1, the API version will remain 1.6.  This means that a
4971 package which work with Automake 1.6 should also work with 1.6.1; after
4972 all, this is what people expect from bug fix releases.
4973
4974 Note that if your package relies on a feature or a bug fix introduced in
4975 a release, you can pass this version as an option to Automake to ensure
4976 older releases will not be used.  For instance, use this in your
4977 @file{configure.in}:
4978
4979 @example
4980   AM_INIT_AUTOMAKE(1.6.1)    dnl Require Automake 1.6.1 or better.
4981 @end example
4982 @noindent
4983 or, in a particular @file{Makefile.am}:
4984
4985 @example
4986   AUTOMAKE_OPTIONS = 1.6.1   # Require Automake 1.6.1 or better.
4987 @end example
4988 @noindent
4989 Automake will print an error message if its version is
4990 older than the requested version.
4991
4992
4993 @heading What is in the API
4994
4995 Automake's programing interface is not easy to define.  Basically it
4996 should include at least all @strong{documented} variables and targets
4997 that a @samp{Makefile.am} authors can use, the behaviours associated to
4998 them (e.g. the places where @samp{-hook}'s are run), the command line
4999 interface of @samp{automake} and @samp{aclocal}, @dots{}
5000
5001 @heading What is not in the API
5002
5003 Every undocumented variable, target, or command line option, is not part
5004 of the API.  You should avoid using them, as they could change from one
5005 version to the other (even in bug fix releases, if this helps to fix a
5006 bug).
5007
5008 If it turns out you need to use such a undocumented feature, contact
5009 @email{automake@@gnu.org} and try to get it documented and exercised by
5010 the test-suite.
5011
5012 @page
5013 @node Macro and Variable Index, General Index, API versioning, Top
5014 @unnumbered Macro and Variable Index
5015
5016 @printindex vr
5017
5018
5019 @page
5020 @node General Index,  , Macro and Variable Index, Top
5021 @unnumbered General Index
5022
5023 @printindex cp
5024
5025
5026 @page
5027 @contents
5028 @bye