* doc/automake.texi (Complete, Extending aclocal, Public macros)
[platform/upstream/automake.git] / NEWS
1 New in 1.9a:
2
3   - Autoconf 2.59a is required.
4
5   - Perl 5.6 or greater is required.
6
7   - The new AC_REQUIRE_AUX_FILE Autoconf macro is supported.
8
9   - The rebuild rules for distributed Yacc and Lex output will avoid
10     overwriting existing files if AM_MAINTAINER_MODE and maintainer-mode
11     is not enabled.
12
13   - Preprocessed assembler (*.S) compilation now honnors CPPFLAGS,
14     AM_CPPFLAGS and per-target _CPPFLAGS, and supports dependency
15     tracking, unlike non-preprocessed assembler (*.s).
16
17   - Libtool generic flags (those that go before the --mode=MODE option)
18     can be specified using AM_LIBTOOLFLAGS and target_LIBTOOLFLAGS.
19
20   - aclocal now also supports -Wmumble and -Wno-mumble options.
21
22   - aclocal supports an --install option, that will cause system-wide
23     third-party macros to be installed in the local directory
24     specified with the first -I flag.  This option also uses #serial
25     lines in M4 files to upgrade local macros.
26
27     The new aclocal options --dry-run and --diff help to review changes
28     before they are installed.
29
30   - Per-target flags are now correctly handled in link rules.
31
32     For instance maude_CFLAGS correctly overrides AM_CFLAGS; likewise
33     for maude_LDFLAGS and AM_LDFLAGS.  Previous versions bogusly
34     preferred AM_CFLAGS over maude_CFLAGS while linking, and they
35     used both AM_LDFLAGS and maude_LDFLAGS on the same link command.
36
37     The fix for compiler flags (i.e., using maude_CFLAGS instead of
38     AM_CFLAGS) should not hurt any package since that is how _CFLAGS
39     is expected to work (and actually works during compilation).
40
41     However using maude_LDFLAGS "instead of" AM_LDFLAGS rather than
42     "in addition to" breaks backward compatibility with older versions.
43     If your package used both variables, as in
44
45       AM_LDFLAGS = common flags
46       bin_PROGRAMS = a b c
47       a_LDFLAGS = more flags
48       ...
49
50     and assumed *_LDFLAGS would sum up, you should rewrite it as
51
52       AM_LDFLAGS = common flags
53       bin_PROGRAMS = a b c
54       a_LDFLAGS = $(AM_LDFLAGS) more flags
55       ...
56
57     This new behavior of *_LDFLAGS is more coherent with other
58     per-target variables, and the way *_LDFLAGS variables were
59     considered internally.
60
61   - New targets mandated by GNU Coding Standards:
62       install-dvi
63       install-html
64       install-ps
65       install-pdf
66     By default they will only install Texinfo manuals.
67     You can customize them with *-local variants:
68       install-dvi-local
69       install-html-local
70       install-ps-local
71       install-pdf-local
72
73   - The undocumented recursive target `uninstall-info' no longer exists.
74     (`uninstall' is in charge of removing all possible documentation
75     flavors, including optional formats such as dvi, ps, or info even
76     when `no-installinfo' is used.)
77
78   - Automake no longer complains if input files for AC_CONFIG_FILES
79     are specified using shell variables.
80
81   - clean, distribution, or rebuild rules are normally disabled for
82     inputs and outputs of AC_CONFIG_FILES, AC_CONFIG_HEADERS, and
83     AC_CONFIG_LINK specified using shell variable.  However if these
84     variables are used as ${VAR}, and AC_SUBSTed, then Automake will
85     be able to output rules anyway.
86     (See the Automake documentation for AC_CONFIG_FILES.)
87
88   - If `subdir-objects' is set, and AC_CONFIG_LIBOBJ_DIR is specified,
89     $(LIBOBJS), $(LTLIBOBJS), $(ALLOCA), and $(LTALLOCA) can be used
90     in different directories.
91
92   - $(EXEEXT) is automatically appended to filenames of TESTS and
93     that have been declared as programs in the same Makefile.
94     This is mostly useful when some check_PROGRAMS are listed in TESTS.
95
96 \f
97 New in 1.9:
98
99 * Makefile.in bloat reduction:
100
101   - Inference rules are used to compile sources in subdirectories when
102     the `subdir-objects' option is used and no per-target flags are
103     used.  This should reduce the size of some projects a lot, because
104     Automake used to output an explicit rule for each such object in
105     the past.
106
107   - Automake no longer outputs three rules (.o, .obj, .lo) for each
108     object that must be built with explicit rules.  It just outputs
109     the rules required to build the kind of object considered: either
110     the two .o and .obj rules for usual objects, or the .lo rule for
111     libtool objects.
112
113 * Change to Libtool support:
114
115   - Libtool tags are used with libtool versions that support them.
116     (I.e., with Libtool 1.5 or greater.)
117
118   - Automake is now able to handle setups where a libtool library is
119     conditionally installed in different directories, as in
120
121       if COND
122         lib_LTLIBRARIES = liba.la
123       else
124         pkglib_LTLIBRARIES = liba.la
125       endif
126       liba_la_SOURCES = ...
127
128 * Changes to aclocal:
129
130   - aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are
131     really evaluated, before it decides to include them in aclocal.m4.
132     This solves nasty problems with conditional redefinitions of
133     Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous
134     *.m4 files to be included in any project using these macros.
135     (Calls to AC_PROG_EGREP causing libtool.m4 to be included is the
136     most famous instance of this bug.)
137
138   - Do not complain about missing conditionally AC_REQUIREd macros
139     that are not actually used.  In 1.8.x aclocal would correctly
140     determine which of these macros were really needed (and include
141     only these in the package); unfortunately it would also require
142     all of them to be present in order to run.  This created
143     situations were aclocal would not work on a tarball distributing
144     all the macros it uses.  For instance running aclocal on a project
145     containing only the subset of the Gettext macros in use by the
146     project did not work, because gettext conditionally requires other
147     macros.
148
149 * Portability improvements:
150
151   - Tar format can be chosen with the new options tar-v7, tar-ustar, and
152     tar-pax.  The new option filename-length-max=99 helps diagnosing
153     filenames that are too long for tar-v7.  (PR/414)
154
155   - Variables aumented with `+=' are now automatically flattened (i.e.,
156     trailing backslashes removed) and then wrapped around 80 colummns
157     (adding trailing backslashes).  In previous versions, a long series
158     of
159       VAR += value1
160       VAR += value2
161       VAR += value3
162       ...
163     would result in a single-line definition of VAR that could possibly
164     exceed the maximum line length of some make implementations.
165
166     Non-augmented variables are still output as they are defined in
167     the Makefile.am.
168
169 * Miscellaneous:
170
171   - Support Fortran 90/95 with the new "fc" and "ppfc" languages.
172     Works the same as the old Fortran 77 implementation; just replace
173     F77 with FC everywhere (exception: FFLAGS becomes FCFLAGS).
174     Requires a version of autoconf which provides AC_PROG_FC (>=2.59).
175
176   - Support for conditional _LISP.
177
178   - Support for conditional -hook and -local rules (PR/428).
179
180   - Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49)
181
182   - Automake will not write any Makefile.ins after the first error it
183     encounters.  The previous Makefile.ins (if any) will be left in
184     place.  (Warnings will not prevent output, but remember they can
185     be turned into errors with -Werror.)
186
187   - The restriction that SUBDIRS must contain direct children is gone.
188     Do not abuse.
189
190   - The manual tells more about SUBDIRS vs. DIST_SUBDIRS.
191     It also gives an example of nested packages using AC_CONFIG_SUBDIRS.
192 \f
193 Bugs fixed in 1.8.5:
194
195 * Long standing bugs:
196
197   - Define DIST_SUBDIRS even when the `no-dist' or `cygnus' options are used
198     so that `make distclean' and `make maintainer-clean' can work.
199
200   - Define AR and ARFLAGS even when only EXTRA_LIBRARIES are defined.
201
202   - Fix many rules to please FreeBSD make, which runs commands with `sh -e'.
203
204   - Polish diagnostic when no input file is found.
205 \f
206 Bugs fixed in 1.8.4:
207
208 * Long standing bugs:
209
210   - Fix AM_PATH_PYTHON to correctly display $PYTHON when it has been
211     overridden by the user.
212
213   - Honor PATH_SEPARATOR in various places of the Automake package, for
214     the sake of OS/2.
215
216   - Adjust dependency tracking mode detection to ICC 8.0's new output.
217     (PR/416)
218
219   - Fix install-sh so it can install the `mv' binary... using `mv'.
220
221   - Fix tru64 dependency tracking for libtool objects.
222
223   - Work around Exuberant Ctags when creating a TAGS files in a directory
224     without files to scan but with subdirectories to include.
225
226 * Bugs introduced by 1.8:
227
228   - Fix an "internal error" when @LIBOBJS@ is used in a variable that is
229     not defined in the same conditions as the _LDADD that uses it.
230
231   - Do not warn when JAVAROOT is overridden, this is legitimate.
232 \f
233 Bugs fixed in 1.8.3:
234
235 * Long standing bugs:
236
237   - Quote filenames in installation rules, in case $DESTDIR, $prefix,
238     or any of the other *dir variables contain a space.
239
240     Please note that Automake does not and cannot support spaces in
241     filenames that are involved during the build.  This change affects
242     only installation paths, so that `make install' does not bomb out
243     in packages configured with
244       ./configure --prefix '/c/Program Files'
245
246   - Fix the depfiles output so it works with GNU sed (<4.1) even when
247     POSIXLY_CORRECT is set.
248
249   - Do not AC_SUBST(LIBOBJS) in AM_WITH_REGEX.  This macro was unusable
250     since Autoconf 2.54, which defines LIBOBJS itself.
251
252   - Fix a potential (but unlikely) race condition in parallel elisp
253     builds.  (Introduced in 1.7.3.)
254
255   - Do not assume that users override _DEPENDENCIES in all conditions
256     where Automake will try to define them.
257
258   - Do not use `mkdir -p' in mkinstalldirs, unless this is GNU mkdir.
259     Solaris 8's `mkdir -p' is not thread-safe and can break parallel
260     builds.
261
262     This fix also affects the $(mkdir_p) variable defined since
263     Automake 1.8.  It will be set to `mkdir -p' only if mkdir is GNU
264     mkdir, and to `mkinstalldirs' or `install-sh -d' otherwise.
265
266   - Secure temporary directory creation in `make distcheck'. (PR/413)
267
268   - Do not generate two build rules for `parser.h' when the
269     parser appears in two different conditionals.
270
271   - Work around a Solaris 8 /bin/sh bug in the test for dependency
272     checking.  Usually ./configure will not pick this shell; so this
273     fix only helps cases where the shell is forced to /bin/sh.
274
275 * Bugs introduced by 1.8:
276
277   - In some situations (hand-written `m4_include's), aclocal would
278     call the `File::Spec->rel2abs' method, which was only introduced
279     in Perl 5.6.  This new version reestablish support Perl 5.005.
280
281     It is likely that the next major Automake releases will require at
282     least Perl 5.6.  Consider upgrading your development environment
283     if you are still using the five-year-old Perl 5.005.
284
285   - Automake would sometimes fail to define rules for targets listed
286     in variables defined in multiple conditions.  For instance on
287       if C1
288         bin_PROGRAMS = a
289       else
290         bin_PROGRAMS = b
291       endif
292     it would define only the `a.$(OBJEXT): a.c' rule and omit the
293     `b.$(OBJEXT): b.c' rule.
294
295 * New sections in manual:
296
297   - Third-Party Makefiles: how to interface third party Makefiles.
298   - Upgrading: upgrading packages to newer Automake versions.
299   - Multiple Outputs: handling tools that produce many outputs.
300 \f
301 Bug fixed in 1.8.2:
302
303 * A (well known) portability bug slipped in the changes made to
304   install-sh in Automake 1.8.1.  The broken install-sh would refuse to
305   install anything on Tru64.
306
307 * Fix install rules for conditionally built python files.  (This never
308   really worked.)
309 \f
310 Bug fixed in 1.8.1:
311
312 * Bugs introduced by 1.8:
313
314   - Fix Config.pm import error with old Perl versions (at least
315     5.005_03).  One symptom is that aclocal could not find its macro
316     directory.
317
318   - Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
319     created by `make install' are always world readable, even if the
320     installer happens to have an overly restrictive umask (e.g. 077).
321     This was a mistake and has been reverted.  There are at least two
322     reasons why we must not use `-m 0755':
323       - it causes special bits like SGID to be ignored,
324       - it may be too restrictive (some setups expect 775 directories).
325
326   - Fix aclocal to honor definitions located in files which have been
327     m4_included manually.  aclocal 1.8 had been updated to check
328     m4_included files for new requirements, but forgot that these
329     m4_included files can also provide new definitions.
330
331     Note that if you have such a setup, we recommend you get rid of
332     it.  In the past, there was a reason to m4_include files manually:
333     aclocal used to duplicate entire M4 files into aclocal.m4, even
334     files that were distributed.  Some packages were therefore
335     m4_including the distributed file directly, and playing some
336     tricks to ensure aclocal would not copy that file to aclocal.m4,
337     in order to limit the amount of duplication.  Since aclocal 1.8.x
338     will precisely output m4_includes for local M4 files, we recommend
339     that you clean up your setup, removing all manual m4_includes and
340     letting aclocal output them.
341
342   - Output detailed menus in the Info version if the Automake manual,
343     so that Emacs can locate the indexes.
344
345   - configure.ac and configure were listed twice in DIST_COMMON (an
346     internal variable where Automake lists configury files to
347     distribute).  This was harmless, but unaesthetic.
348
349   - Use `chmod a-w' instead of `chmod -w' as the latter honors umask.
350     This was an issue only in the Automake package itself, not in
351     its output.
352
353   - Automake assumed that all AC_CONFIG_LINKS arguments had the form
354     DEST:SRC.  This was wrong, as some packages do
355     AC_CONFIG_LINKS($computedlinks).  This version no longer abort in
356     that situation.
357
358   - Contrary to mkinstalldirs, $(mkdir_p) was expecting exactly one
359     argument.  This caused two kinds of failures:
360       - Rules installing data in a conditionally defined directory
361         failed when that directory was undefined.  In this case no
362         argument was supplied.
363       - `make installdirs' failed, because several directories were
364         passed to $(mkdir_p).  This was an issue only on platform
365         were $(mkdir_p) is implemented with `install-sh -d'.
366     $(mkdir_p) as been changed to accept 0 or more arguments, as
367     mkinstalldirs did.
368
369 * Long-standing bugs:
370
371   - Fix an unexpected diagnostic occurring when users attempt
372     to override some internal variables that Automake appends to.
373
374   - aclocal now scans configure.ac for macro definitions (PR/319).
375
376   - Fix a portability issue with OSF1/Tru64 Make.  If a directory
377     distributes files which are outside itself (this usually occurs
378     when using AC_CONFIG_AUX_DIR([../dir]) to use auxiliary files
379     from a parent package), then `make distcheck' fails due to an
380     optimization performed by OSF1/Tru64 Make in its VPATH handling.
381     (tests/subpkg2.test failure)
382
383   - Fix another portability issue with Sun and OSF1/Tru64 Make.
384     In a VPATH-build configuration, `make install' would install
385     nobase_ files to wrong locations.
386
387   - Fix a Perl `uninitialized value' diagnostic occurring when
388     automake complains that a Texinfo file does not have a
389     @setfilename statement.
390
391   - Erase config.status.lineno during `make distclean'.  This file
392     can be created by config.status.  Automake already knew about
393     configure.lineno, but forgot config.status.lineno.
394
395   - Distribute all files, even those which are built and installed
396     conditionally.  This change affects files listed in conditionally
397     defined *_HEADERS and *_PYTHON variable (unless they are nodist_*)
398     as well as those listed in conditionally defined dist_*_DATA,
399     dist_*_JAVA, dist_*_LISP, and dist_*_SCRIPTS variables.
400
401   - Fix AM_PATH_LISPDIR to avoid \? in sed regular expressions; it
402     doesn't conform to POSIX.
403
404   - Normalize help strings for configure variables and options added
405     by Automake macros.
406
407 * Anticipation:
408
409   - Check for python2.4 in AM_PATH_PYTHON.
410
411 * Spurious failures in test suite:
412
413   - tests/libtool5.test, tests/ltcond.test, tests/ltcond2.test,
414     tests/ltconv.test: fix failures with CVS Libtool.
415   - tests/aclocal6.test: fix failure if autom4te.cache is disabled.
416   - tests/txinfo24.test, tests/txinfo25.test, tests/txinfo28.test:
417     fix failures with old Texinfo versions.
418 \f
419 New in 1.8:
420
421 * Meta-News
422
423   - The NEWS file is more verbose.
424
425 * Requirements
426
427   - Autoconf 2.58 or greater is required.
428
429 * New features
430
431   - Default source file names in the absence of a _SOURCES declaration
432     are made by removing any target extension before appending `.c', so
433     to make the libtool module `foo.la' from `foo.c', you only need to
434     do this:
435
436         lib_LTLIBRARIES = foo.la
437         foo_la_LDFLAGS  = -module
438
439     For backward compatibility, foo_la.c will be used instead of
440     foo.c if this file exists or is the explicit target of a rule.
441     However -Wobsolete will warn about this deprecated naming.
442
443   - AR's `cru' flags are now set in a global ARFLAGS variable instead
444     of being hard-coded in each $(AR) invocation, so they can be
445     substituted from configure.ac.  This has been requested by people
446     dealing with non-POSIX ar implementations.
447
448   - New warning option: -Woverride.  This will warn about any user
449     target or variable definitions which override Automake
450     definitions.
451
452   - Texinfo rules back up and restore info files when makeinfo fails.
453
454   - Texinfo rules now support the `html' target.
455     Running this requires Texinfo 4.0 or greater.
456
457     `html' is a new recursive target, so if your package mixes
458     hand-crafted `Makefile.in's with Automake-generated
459     `Makefile.in's, you should adjust the former to support (or
460     ignore) this target so that `make html' recurses successfully.  If
461     you had a custom `html' rule in your `Makefile.am', it's better to
462     rename it as `html-local', otherwise your rule will override
463     Automake's new rule (you can check that by running `automake
464     -Woverride') and that will stop the recursion to subdirectories.
465
466     Last but not least, this `html' rule is declared PHONY, even when
467     overridden.  Fortunately, it appears that few packages use a
468     non-PHONY `html' rule.
469
470   - Any file which is m4_included from configure.ac will appear as a
471     configure and Makefile.in dependency, and will be automatically
472     distributed.
473
474   - The rules for rebuilding Makefiles and Makefile.ins will now
475     rebuild all Makefiles and all Makefile.ins at once when one of
476     configure's dependencies has changed.  This is considerably faster
477     than previous implementations, where config.status and automake
478     were run separately in each directory (this still happens when you
479     change a Makefile.am locally, without touching configure.ac or
480     friends).  Doing this also solves a longstanding issue: these
481     rebuild rules failed to work when adding new directories to the
482     tree, forcing you to run automake manually.
483
484   - For similar reasons, the rules to rebuild configure,
485     config.status, and aclocal.m4 are now defined in all directories.
486     Note that if you were using the CONFIG_STATUS_DEPENDENCIES and
487     CONFIGURE_DEPENDENCIES (formerly undocumented) variables, you
488     should better define them in all directories.  This is easily done
489     using an AC_SUBST (make sure you prefix these dependencies with
490     $(top_srcdir) since this variable will appear at different
491     levels of the build tree).
492
493   - aclocal will now use `m4_include' instead of copying local m4
494     files into aclocal.m4.  (Local m4 files are those you ship with
495     your project, other files will be copied as usual.)
496
497     Because m4_included files are automatically distributed, it means
498     for most projects there is no point in EXTRA_DISTing the list of
499     m4 files which are used.  (You can probably get rid of
500     m4/Makefile.am if you had one.)
501
502   - aclocal will avoid touching aclocal.m4 when possible, so that
503     Autom4te's cache isn't needlessly invalidated.  This behavior can
504     be switched off with the new `--force' option.
505
506   - aclocal now uses Autoconf's --trace to detect macros which are
507     actually used and will no longer include unused macros simply
508     because they where mentioned.  This was often the case for macros
509     called conditionally.
510
511   - New options no-dist and no-dist-gzip.
512
513   - compile, depcomp, elisp-comp, install-sh, mdate-sh, mkinstalldirs,
514     py-compile, and ylwrap, now all understand --version and --help.
515
516   - Automake will now recognize AC_CONFIG_LINKS so far as removing created
517     links as part of the distclean target and including source files in
518     distributions.
519
520   - AM_PATH_PYTHON now supports ACTION-IF-FOUND and ACTION-IF-NOT-FOUND
521     argument.  The latter can be used to override the default behavior
522     (which is to abort).
523
524   - Automake will exit with $? = 63 on version mismatch.  (So does
525     Autoconf 2.58)  missing knows this, and in this case it will
526     emulate the tools as if they were absent.  Because older versions
527     of Automake and Autoconf did not use this exit code, this change
528     will only be useful in projects generated with future versions of
529     these tools.
530
531   - When using AC_CONFIG_FILES with multiple input files, Automake
532     generates the first ".in" input file for which a ".am" exists.
533     (Former versions would try to use only the first input file.)
534
535   - lisp_DATA is now allowed.  If you are using the empty ELCFILES
536     idiom to disable byte-compilation of lisp_LISP files, it is
537     recommended that you switch to using lisp_DATA.  Note that
538     this is not strictly equivalent: lisp_DATA will install elisp
539     files even if emacs is not installed, while *_LISP do not
540     install anything unless emacs is found.
541
542   - Makefiles will prefer `mkdir -p' over mkinstalldirs if it is
543     available.  This selection is achieved through the Makefile
544     variable $(mkdir_p) that is set by AM_INIT_AUTOMAKE to either
545     `mkdir -m 0755 -p --', `$(mkinstalldirs) -m 0755', or
546     `$(install_sh) -m 0755 -d'.
547
548 * Obsolete features
549
550   - Because `mkdir -p' is available on most platforms, and we can use
551     `install-sh -d' when it is not, the use of the mkinstalldirs
552     script is being phased out.  `automake --add-missing' no longer
553     installs it, and if you remove mkinstalldirs from your package,
554     automake will define $(mkinstalldirs) as an alias for $(mkdir_p).
555
556     Gettext 0.12.1 still requires mkinstalldirs.  Fortunately
557     gettextize and autopoint will install it when needed.  Automake
558     will continue to define the $(mkinstalldirs) and to distribute
559     mkinstalldirs when this script is in the source tree.
560
561   - AM_PROG_CC_STDC is now empty.  The content of this macro was
562     merged in AC_PROG_CC.  If your code uses $am_cv_prog_cc_stdc, you
563     should adjust it to use $ac_cv_prog_cc_stdc instead.  (This
564     renaming should be safe, even if you have to support several,
565     versions of Automake, because AC_PROG_CC defines this variable
566     since Autoconf 2.54.)
567
568   - Some users where using the undocumented ACLOCAL_M4_SOURCES
569     variable to override the aclocal.m4 dependencies computed
570     (inaccurately) by older versions of Automake.  Because Automake
571     now tracks configure's m4 dependencies accurately (see m4_include
572     above), the use of ACLOCAL_M4_SOURCES should be considered
573     obsolete and will be flagged as such when running `automake
574     -Wobsolete'.
575
576 * Bug fixes
577
578   - Defining programs conditionally using Automake conditionals no
579     longer leads to a combinatorial explosion.  The following
580     construct used to be troublesome when used with dozens of
581     conditions.
582
583       bin_PROGRAMS = a
584       if COND1
585         bin_PROGRAMS += a1
586       endif
587       if COND2
588         bin_PROGRAMS += a2
589       endif
590       if COND3
591         bin_PROGRAMS += a3
592       endif
593       ...
594
595     Likewise for _SOURCES, _LDADD, and _LIBADD variables.
596
597   - Due to implementation constraints, previous versions of Automake
598     proscribed multiple conditional definitions of some variables
599     like bin_PROGRAMS:
600
601       if COND1
602         bin_PROGRAMS = a1
603       endif
604       if COND2
605         bin_PROGRAMS = a2
606       endif
607
608     All _PROGRAMS, _LDADD, and _LIBADD variables were affected.
609     This restriction has been lifted, and these variables now
610     support multiple conditional definitions as do other variables.
611
612   - Cleanup the definitions of $(distdir) and $(top_distdir).
613     $(top_distdir) now points to the root of the distribution
614     directory created during `make dist', as it did in Automake 1.4,
615     not to the root of the build tree as it did in intervening
616     versions.  Furthermore these two variables are now only defined in
617     the top level Makefile, and passed to sub-directories when running
618     `make dist'.
619
620   - The --no-force option now correctly checks the Makefile.in's
621     dependencies before deciding not to update it.
622
623   - Do not assume that make files are called Makefile in cleaning rules.
624
625   - Update .info files in the source tree, not in the build tree.  This
626     is what the GNU Coding Standard recommend.  Only Automake 1.7.x
627     used to update these files in the build tree (previous versions did
628     it in the source tree too), and it caused several problems, varying
629     from mere annoyance to portability issues.
630
631   - COPYING, COPYING.LIB, and COPYING.LESSER are no longer overwritten
632     when --add-missing and --force-missing are used.  For backward
633     compatibility --add-missing will continue to install COPYING (in
634     `gnu' strictness) when none of these three files exist, but this
635     use is deprecated: you should better choose a license yourself and
636     install it once for all in your source tree (and in your code
637     management system).
638
639   - Fix ylwrap so that it does not overwrite header files that haven't
640     changed, as the inline rule already does.
641
642   - User-defined rules override automake-defined rules for the same
643     targets, even when rules do not have commands.  This is not new
644     (and was documented), however some of the automake-generated
645     rules have escaped this principle in former Automake versions.
646     Rules for the following targets are affected by this fix:
647
648        clean, clean-am, dist-all, distclean, distclean-am, dvi, dvi-am,
649        info, info-am, install-data-am, install-exec-am, install-info,
650        install-info-am, install-man, installcheck-am, maintainer-clean,
651        maintainer-clean-am, mostlyclean, mostlyclean-am, pdf, pdf-am,
652        ps, ps-am, uninstall-am, uninstall-info, uninstall-man
653
654     Practically it means that an attempt to supplement the dependencies
655     of some target, as in
656
657        clean: my-clean-rule
658
659     will now *silently override* the automake definition of the
660     rule for this target.  Running `automake -Woverride' will diagnose
661     all such overriding definitions.
662
663     It should be noted that almost all these targets support a *-local
664     variant that is meant to supplement the automake-defined rule
665     (See node `Extending' in the manual).  The above rule should
666     be rewritten as
667
668       clean-local: my-clean-rule
669
670     These *-local targets have been documented since at least
671     Automake 1.2, so you should not fear the change if you have
672     to support multiple automake versions.
673
674 * Miscellaneous
675
676   - The Automake manual is now distributed under the terms of the GNU FDL.
677
678   - Targets dist-gzip, dist-bzip2, dist-tarZ, dist-zip are always defined.
679
680   - core dumps are no longer removed by the cleaning rules.  There are
681     at least three reasons for this:
682       1. These files should not be created by any build step,
683          so their removal do not fit any of the cleaning rules.
684          Actually, they may be precious to the developer.
685       2. If such file is created during a build, then it's clearly a
686          bug Automake should not hide.  Not removing the file will
687          cause `make distcheck' to complain about its presence.
688       3. Operating systems have different naming conventions for
689          core dump files.  A core file on one system might be a
690          completely legitimate data file on another system.
691
692   - RUNTESTFLAGS, CTAGSFLAGS, ETAGSFLAGS, JAVACFLAGS are no longer
693     defined by Automake.  This means that any definition in the
694     environment will be used, unless overridden in the Makefile.am or
695     on the command line.  The old behavior, where these variables were
696     defined empty in each Makefile, can be obtained by AC_SUBSTing or
697     AC_ARG_VARing each variable from configure.ac.
698
699   - CONFIGURE_DEPENDENCIES and CONFIG_STATUS_DEPENDENCIES are now
700     documented.  (The is not a new feature, these variables have
701     been there since at least Automake 1.4.)
702 \f
703 Bugs fixed in 1.7.9:
704 * Fix install-strip to work with nobase_ binaries.
705 * Fix renaming of #line directives in ylwrap.
706 * Rebuild with Autoconf 2.59.  (1.7.8 was not installable with pdksh.)
707 \f
708 Bugs fixed in 1.7.8:
709 * Remove spurious blank lines in cleaning rules introduced in 1.7.7.
710 * Fix detection of Debian's install-info, broken since version 1.5.
711   (Debian bug #213524).
712 * Honor -module if it appears in AM_LDFLAGS (i.e., relax name checking)
713   This was only done for libfoo_LDFLAGS and LDFLAGS in previous versions.
714 \f
715 Bugs fixed in 1.7.7:
716 * The implementation of automake's --no-force option is unreliable,
717   so this option is ignored in this version.  A real fix will appear in
718   Automake 1.8.  (Debian Bug #206299)
719 * AM_PATH_PYTHON: really check the whole list of interpreters if no
720   argument is given.  (PR/399)
721 * Do not warn about leading `_' in variable names, even with -Wportability.
722 * Support user redefinitions of TEXINFO_TEX.
723 * depcomp: support AIX Compiler version 6.
724 * Fix missing rebuilds during `make dist' with BSD make.
725   (Could produce tarballs containing out-of-date files.)
726 * Resurrect multilib support.
727 * Noteworthy manual updates:
728   - Extending aclocal: how to write m4 macros that won't trigger warnings
729     with Automake 1.8.
730   - A Shared Library: Rewrite and split into subsections.
731 \f
732 Bugs fixed in 1.7.6:
733 * Fix depcomp's icc mode for ICC 7.1.
734 * Diagnose calls to AC_CONFIG_FILES and friends with not enough arguments.
735 * Fix maintainer-clean's removal of autom4te.cache in VPATH builds.
736 * Fix AM_PATH_LISPDIR to work with POSIXLY_CORRECT=1.
737 * Fix the location reported in some diagnostics related to AUTOMAKE_OPTIONS.
738 * Remove Latin-1 characters from elisp-comp.
739 * Update the manual's @dircategory to match the Free Software Directory.
740 \f
741 Bugs fixed in 1.7.5:
742 * Update install-sh's license to remove an advertising clause.
743   (Debian bug #191717)
744 * Fix a bug introduced in 1.7.4, related to BUILT_SOURCE handling,
745   that caused invalid Makefile.ins to be generated.
746 * Make sure AM_MAKE_INCLUDE doesn't fail when a `doit' file exists.
747 * New FAQ entry: renamed objects.
748 \f
749 Bugs fixed in 1.7.4:
750 * Tweak the TAGS rule to support Exuberant Ctags (in addition to
751   the Emacs implementation)
752 * Fix output of aclocal.m4 dependencies in subdirectories.
753 * Use `mv -f' instead of `mv' in fastdep rules.
754 * Upgrade mdate-sh to work on OS/2.
755 * Don't byte-compile elisp files when ELCFILES is set empty.
756   (this documented feature was broken by 1.7.3)
757 * Diagnose trailing backslashes on last line of Makefile.am.
758 * Diagnose whitespace following trailing backslashes.
759 * Multiple tests are now correctly supported in DEJATOOL. (PR/388)
760 * Fix rebuilt rules for AC_CONFIG_FILES([Makefile:Makefile.in:Makefile.bot])
761   Makefiles. (PR/389)
762 * `make install' will build `BUILT_SOURCES' first.
763 * Minor documentation fixes.
764 \f
765 Bugs fixed in 1.7.3:
766 * Fix stamp files numbering (when using multiple AC_CONFIG_HEADERS).
767 * Query distutils for `pythondir' and `pythonexecdir', instead of
768   using an hardcoded path.  This should allow builds on 64-bit
769   distributions that usually use lib64/ instead of lib/.
770 * AM_PATH_PYTHON will also search for python2.3.
771 * elisp files are now built all at once instead of one by one. Besides
772   incurring a speed-up, this is required to support interdependent elisp files.
773 * Support for DJGPP:
774   - `make distcheck' will now work in `_inst/' and `_build' instead
775     of `=inst/' and `=build/'
776   - use `_dirstamp' when the file-system doesn't support `.dirstamp'
777   - install/uninstall `*.i[0-9][0-9]'-style info files
778   - more changes that affect only the Automake package (not its output)
779 * Fix some incompatibilities with upcoming perl-5.10.
780 * Properly quote AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION when defining
781   PACKAGE and VERSION.
782 * depcomp fixes:
783   - dashmstdout and dashXmstdout modes: don't use `-o /dev/null', this
784     is troublesome with gcc and Solaris compilers. (PR/385)
785   - makedepend mode: work with Libtool. (PR/385 too)
786   - support for ICC.
787 * better support for unusual gettext setups, such as multiple po/ directories
788   (PR/381):
789   - Flag missing po/ and intl/ directories as warnings, not errors.
790   - Disable these warnings if po/ does not exist.
791 * Noteworthy manual updates:
792   - New FAQ chapter.
793   - Document how AC_CONFIG_AUX_DIR interacts with missing files.
794     (Debian Bug #39542)
795   - Document `AM_YFLAGS = -d'.  (PR/382)
796 \f
797 Bugs fixed in 1.7.2:
798 * Fix installation and uninstallation of Info files built in subdirectories.
799 * Do not run `./configure --with-included-gettext' during `make distcheck'
800   if AM_GNU_GETTEXT([external]) is used.
801 * Correctly uninstall renamed man pages.
802 * Do not strip escaped newline in variables defined in one condition
803   and augmented in another condition.
804 * Fix ansi2knr rules for LIBOBJS sources.
805 * Clean all known Texinfo index files, not only those which appear to
806   be used, because we cannot know wich indexes are used in included files.
807   (PR/375, Debian Bug #168671)
808 * Honor only the first @setfilename seen in a Texinfo file.
809 * Treat "required file X not found" diagnostics as errors (exit status 1).
810 * Don't complain that a required file is not found when it is a Makefile
811   target. (PR/357)
812 * Don't use single suffix inference rules when building `.info'-less
813   Info files, for the sake of Solaris make.
814 * The `check' target now depends on `$(BUILT_SOURCES)'. (PR/359)
815 * Recognize multiple inference rules such as `.a.b .c.d:'. (PR/371)
816 * Warn about multiple inference rules when -Wportability is used. (PR/372)
817 * Fix building of deansified files from subdirectories. (PR/370)
818 * Add missing `fi' in the .c->.obj rules.
819 * Improve install-sh to work even when names contain spaces or certain
820   (but not all) shell metachars.
821 * Fix the following spurious failures in the test suite:
822   depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test
823 * Noteworthy manual updates:
824   - Augment the section about BUILT_SOURCES.
825   - Mention that AM_PROG_CC_STDC is a relic that is better avoided today.
826 \f
827 Bugs fixed in 1.7.1:
828 * Honor `ansi2knr' for files built in subdirectories, or using per-targets
829   flags.
830 * Aclocal should now recognize macro names containing parentheses, e.g.
831   AC_DEFUN([AC_LANG_PREPROC(Fortran 90)], [...]).
832 * Erase *.sum and *.log files created by DejaGnu, during `make distclean'.
833   (Debian Bug#153697)
834 * Install Python files even if they were built.  (PR/369)
835 * Have stamp-vti dependent upon configure instead of configure.ac, as the
836   version might not be defined in the latter. (PR/358)
837 * Reorder arguments passed to a couple of commands, so things works
838   when POSIXLY_CORRECT=1.
839 * Fix a regex that can cause Perl to segfault on large input.
840   (Debian Bug#162583)
841 * Fix distribution of packages that have some sources defined conditionally,
842   as in the `Conditional compilation using Automake conditionals' example
843   of the manual.
844 * Fix spurious test suite failures on IRIX.
845 * Don't report a required variable as undefined if it has been
846   defined conditionally for the "right" conditions.
847 * Fix cleaning of the /tmp subdirectory used by `make distcheck', in case
848   `make distcheck' fails.
849 * Fix distribution of included Makefile fragment, so we don't create
850   spurious directories in the distribution. (PR/366)
851 * Don't complain that a target lacks `.$(EXEEXT)' when it has it.
852 \f
853 New in 1.7:
854 * Autoconf 2.54 is required.
855 * `aclocal' and `automake' will no longer warn about obsolete
856   configure macros.  This is done by `autoconf -Wobsolete'.
857 * AM_CONFIG_HEADER, AM_SYS_POSIX_TERMIOS and
858   AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL are obsolete (although still
859   supported).  You should use AC_CONFIG_HEADERS, AC_SYS_POSIX_TERMIOS,
860   and AC_HEADER_TIOCGWINSZ instead.  `autoupdate' can upgrade
861   `configure.ac' for you.
862 * Support for per-program and per-library `_CPPFLAGS'.
863 * New `ctags' target (builds CTAGS files).
864 * Support for -Wmumble and -Wno-mumble, where mumble is a warning category
865   (see `automake --help' or the manual for a list of them).
866 * Honor the WARNINGS environment variable.
867 * Omit the call to depcomp when using gcc3: call the compiler directly.
868 * A new option, std-options, tests that programs support --help and --version
869   when `make installcheck' is run.  This is enabled by --gnits.
870 * Texinfo rules now support the `ps' and `pdf' targets.
871 * Info files are now created in the build directory, not the source directory.
872 * info_TEXINFOS supports files in subdirectories (this requires Texinfo 4.1
873   or greater).
874 * `make distcheck' will enforce DESTDIR support by attempting
875   a DESTDIR install.
876 * `+=' can be used in conditionals, even if the augmented variable
877   was defined for another condition.
878 * Makefile fragments (inserted with `include') are always distributed.
879 * Use Autoconf's --trace interface to inspect configure.ac and get
880   a more accurate view of it.
881 * Add support for extending aclocal's default macro search path
882   using a `dirlist' file within the aclocal directory.
883 * automake --output-dir is deprecated.
884 * The part of the distcheck target that checks whether uninstall actually
885   removes all installed files has been moved in a separate target,
886   distuninstallcheck, so it can be overridden easily.
887 * Many bug fixes.
888 \f
889 New in 1.6.3:
890 * Support for AM_INIT_GETTEXT([external])
891 * Bug fixes, including:
892   - Fix Automake's own `make install' so it works even if `ln' doesn't.
893   - nobase_ programs and scripts honor --program-transform correctly.
894   - Erase configure.lineno during `make distclean'.
895   - Erase YACC and LEX outputs during `make maintainer-clean'.
896 \f
897 New in 1.6.2:
898 * Many bug fixes, including:
899   - Requiring the current version works.
900   - Fix "$@" portability issues (for Zsh).
901   - Fix output of dummy dependency files in presence of post-processed
902     Makefile.in's.
903   - Don't compute dependencies in background to avoid races with libtool.
904   - Fix handling of _OBJECTS variables for targets sharing source variables.
905   - Check dependency mode for Java when AM_PROG_GCJ is used.
906 \f
907 New in 1.6.1:
908 * automake --output-dir is deprecated
909 * Many bug fixes, including:
910   - Don't choke on AM_LDFLAGS definitions.
911   - Clean libtool objects from subdirectories.
912   - Allow configure variables with reserved suffix and unknown prefix
913     (e.g. AC_SUBST(mumble_LDFLAGS) when 'mumble' is not a target).
914   - Fix the definition of AUTOMAKE and ACLOCAL in configure.
915 \f
916 New in 1.6:
917 * Autoconf 2.52 is required.
918 * automake no longer run libtoolize.
919   This is the job of autoreconf (from GNU Autoconf).
920 * `dist' generates all the archive flavors, as did `dist-all'.
921 * `dist-gzip' generates the Gzip tar file only.
922 * Combining Automake Makefile conditionals no longer lead to a combinatorial
923   explosion.  Makefile.in's keep a reasonable size.
924 * AM_FUNC_ERROR_AT_LINE, AM_FUNC_STRTOD, AM_FUNC_OBSTACK, AM_PTRDIFF_T
925   are no longer shipped, since Autoconf 2.52 provides them (both as AM_
926   and AC_).
927 * `#line' of Lex and Yacc files are properly set.
928 * EXTRA_DIST can contain generated directories.
929 * Support for dot-less extensions in suffix rules.
930 * The part of the distcheck target that checks whether distclean actually
931   cleans all built files has been moved in a separate target, distcleancheck,
932   so it can be overridden easily.
933 * `make distcheck' will pass additional options defined in
934   $(DISTCHECK_CONFIGURE_FLAGS) to configure.
935 * Fixed CDPATH portability problems, in particular for MacOS X.
936 * Fixed handling of nobase_ targets.
937 * Fixed support of implicit rules leading to .lo objects.
938 * Fixed late inclusion of --add-missing files (e.g. depcomp) in DIST_COMMON
939 * Added uninstall-hook target
940 * `AC_INIT AM_INIT_AUTOMAKE(tarname,version)' is an obsolete construct.
941   You can now use `AC_INIT(pkgname,version) AM_INIT_AUTOMAKE' instead.
942   (Note that "pkgname" is not "tarname", see the manual for details.)
943   It is also possible to pass a list of global Automake options as
944   first argument to this new form of AM_INIT_AUTOMAKE.
945 * Compiler-based assembler is now called `CCAS'; people expected `AS'
946   to be a real assembler.
947 * AM_INIT_AUTOMAKE will set STRIP itself when it needs it.  Adding
948   AC_CHECK_TOOL([STRIP], [strip]) manually is no longer required.
949 * aclocal and automake are also installed with the version number
950   appended, and some of the install directory names have changed.
951   This lets you have multiple versions installed simultaneously.
952 * Support for parsers and lexers in subdirectories.
953 \f
954 New in 1.5:
955 * Support for `configure.ac'.
956 * Support for `else COND', `endif COND' and negated conditions `!COND'.
957 * `make dist-all' is much faster.
958 * Allows '@' AC_SUBSTs in macro names.
959 * Faster AM_INIT_AUTOMAKE (requires update of `missing' script)
960 * User-side dependency tracking.  Developers no longer need GNU make
961 * Python support
962 * Uses DIST_SUBDIRS in some situations when SUBDIRS is conditional
963 * Most files are correctly handled if they appear in subdirs
964   For instance, a _DATA file can appear in a subdir
965 * GNU tar is no longer required for `make dist'
966 * Added support for `dist_' and `nodist_' prefixes
967 * Added support for `nobase_' prefix
968 * Compiled Java support
969 * Support for per-executable and per-library compilation flags
970 * Many bug fixes
971 \f
972 New in 1.4:
973 * Added support for the Fortran 77 programming language.
974 * Re-indexed the Automake Texinfo manual.
975 * Added `AM_FOOFLAGS' variable for each compiler invocation;
976   e.g. AM_CFLAGS can be used in Makefile.am to set C compiler flags
977 * Support for latest autoconf, including support for objext
978 * Can now put `.' in SUBDIRS to control build order
979 * `include' command and `+=' support for macro assignment
980 * Dependency tracking no long susceptible to deleted header file problem
981 * Maintainer mode now a conditional.  @MAINT@ is now an anachronism.
982 * Bug fixes
983 \f
984 New in 1.3:
985 * Bug fixes
986 * Better Cygwin32 support
987 * Support for suffix rules with _SOURCES variables
988 * New options `readme-alpha' and `check-news'; Gnits mode sets these
989 * @LEXLIB@ no longer required when lex source seen
990   Lex support in `missing', and new lex macro.  Update your missing script.
991 * Built-in support for assembly
992 * aclocal gives error if `AM_' macro not found
993 * Passed YFLAGS, not YACCFLAGS, to yacc
994 * AM_PROG_CC_STDC does not have to come before AC_PROG_CPP
995 * Dependencies computed as a side effect of compilation
996 * Preliminary support for Java
997 * DESTDIR support at "make install" time
998 * Improved ansi2knr support; you must use the latest ansi2knr.c (included)
999 \f
1000 New in 1.2:
1001 * Bug fixes
1002 * Better DejaGnu support
1003 * Added no-installinfo option
1004 * Added Emacs Lisp support
1005 * Added --no-force option
1006 * Included `aclocal' program
1007 * Automake will now generate rules to regenerate aclocal.m4, if appropriate
1008 * Now uses `AM_' macro names everywhere
1009 * ansi2knr option can have directory prefix (eg `../lib/ansi2knr')
1010   ansi2knr now works correctly on K&R sources
1011 * Better C++, yacc, lex support
1012 * Will compute _DEPENDENCIES variables automatically if not supplied
1013 * Will interpolate $(...) and ${...} when examining contents of a variable
1014 * .deps files now in build directory, not source directory; dependency
1015   handling generally rewritten
1016 * DATA, MANS and BUILT_SOURCES no longer included in distribution
1017 * can now put config.h into a subdir
1018 * Added dist-all target
1019 * Support for install-info program (see texinfo 3.9)
1020 * Support for "yacc -d"
1021 * configure substitutions are automatically discovered and included
1022   in generated Makefile.in
1023 * Special --cygnus mode
1024 * OMIT_DEPENDENCIES can now hold list of dependencies to be omitted
1025   when making distribution.  Some dependencies are auto-ignored.
1026 * Changed how libraries are specified in _LIBRARIES variable
1027 * Full libtool support, from Gord Matzigkeit
1028 * No longer have to explicitly touch stamp-h when using AC_CONFIG_HEADER;
1029   AM_CONFIG_HEADER handles it automatically
1030 * Texinfo output files no longer need .info extension
1031 * Added `missing' support
1032 * Cygwin32 support
1033 * Conditionals in Makefile.am, from Ian Taylor
1034 \f
1035 New in 1.0:
1036 * Bug fixes
1037 * distcheck target runs install and installcheck targets
1038 * Added preliminary support for DejaGnu.
1039 \f
1040 New in 0.33:
1041 * More bug fixes
1042 * More checking
1043 * More libtool fixes from Gord Matzigkeit; libtool support is still
1044   preliminary however
1045 * Added support for jm_MAINTAINER_MODE
1046 * dist-zip support
1047 * New "distcheck" target
1048 \f
1049 New in 0.32:
1050 * Many bug fixes
1051 * mkinstalldirs and mdate-sh now appear in directory specified by
1052   AC_CONFIG_AUX_DIR.
1053 * Removed DIST_SUBDIRS, DIST_OTHER
1054 * AC_ARG_PROGRAM only required when an actual program exists
1055 * dist-hook target now run before distribution packaged up; idea from
1056   Dieter Baron.  Other hooks exist, too.
1057 * Preliminary (unfinished) support for libtool
1058 * Added short option names.
1059 * Better "dist" support when gluing together multiple packages
1060 \f
1061 New in 0.31:
1062 * Bug fixes
1063 * Documentation updates (many from François Pinard)
1064 * strictness `normal' now renamed to `foreign'
1065 * Renamed --install-missing to --add-missing
1066 * Now handles AC_CONFIG_AUX_DIR
1067 * Now handles TESTS macro
1068 * DIST_OTHER renamed to EXTRA_DIST
1069 * DIST_SUBDIRS is deprecated
1070 * @ALLOCA@ and @LIBOBJS@ now work in _LDADD variables
1071 * Better error messages in many cases
1072 * Program names are canonicalized
1073 * Added "check" prefix; from Gord Matzigkeit
1074 \f
1075 New in 0.30:
1076 * Bug fixes
1077 * configure.in scanner knows about AC_PATH_XTRA, AC_OUTPUT ":" syntax
1078 * Beginnings of a test suite
1079 * Automatically adds -I options for $(srcdir), ".", and path to config.h
1080 * Doesn't print anything when running
1081 * Beginnings of MAINT_CHARSET support
1082 * Can specify version in AUTOMAKE_OPTIONS
1083 * Most errors recognizable by Emacs' M-x next-error
1084 * Added --verbose option
1085 * All "primary" variables now obsolete; use EXTRA_PRIMARY to supply
1086   configure-generated names
1087 * Required macros now distributed in aclocal.m4
1088 * New documentation
1089 * --strictness=gnu is default
1090 \f
1091 New in 0.29:
1092 * Many bug fixes
1093 * More sophisticated configure.in scanning; now understands ALLOCA and
1094   LIBOBJS directly, handles AC_CONFIG_HEADER more precisely, etc.
1095 * TEXINFOS and MANS now obsolete; use info_TEXINFOS and man_MANS instead.
1096 * CONFIG_HEADER variable now obsolete
1097 * Can handle multiple Texinfo sources
1098 * Allow hierarchies deeper than 2.  From Gord Matzigkeit.
1099 * HEADERS variable no longer needed; now can put .h files directly into
1100   foo_SOURCES variable.
1101 * Automake automatically rebuilds files listed in AC_OUTPUT.  The
1102   corresponding ".in" files are included in the distribution.
1103 \f
1104 New in 0.28:
1105 * Added --gnu and --gnits options
1106 * More standards checking
1107 * Bug fixes
1108 * Cleaned up 'dist' targets
1109 * Added AUTOMAKE_OPTIONS variable and several options
1110 * Now scans configure.in to get some information (preliminary)
1111 \f
1112 New in 0.27:
1113 * Works with Perl 4 again
1114 \f
1115 New in 0.26:
1116 * Added --install-missing option.
1117 * Pretty-prints generated macros and rules
1118 * Comments in Makefile.am are placed more intelligently in Makefile.in
1119 * Generates .PHONY target
1120 * Rule or macro in Makefile.am now overrides contents of Automake file
1121 * Substantial cleanups from François Pinard
1122 \f
1123 New in 0.25:
1124 * Bug fixes.
1125 * Works with Perl 4 again.
1126 \f
1127 New in 0.24:
1128 * New uniform naming scheme.
1129 * --strictness option
1130 * Works with Perl 5
1131 * '.c' files corresponding to '.y' or '.l' files are automatically
1132   distributed.
1133 * Many bug fixes and cleanups
1134 \f
1135 New in 0.23:
1136 * Allow objects to be conditionally included in libraries via lib_LIBADD.
1137 \f
1138 New in 0.22:
1139 * Bug fixes in 'clean' code.
1140 * Now generates 'installdirs' target.
1141 * man page installation reworked.
1142 * 'make dist' no longer re-creates all Makefile.in's.
1143 \f
1144 New in 0.21:
1145 * Reimplemented in Perl
1146 * Added --amdir option (for debugging)
1147 * Texinfo support cleaned up.
1148 * Automatic de-ANSI-fication cleaned up.
1149 * Cleaned up 'clean' targets.
1150 \f
1151 New in 0.20:
1152 * Automatic dependency tracking
1153 * More documentation
1154 * New variables DATA and PACKAGEDATA
1155 * SCRIPTS installed using $(INSTALL_SCRIPT)
1156 * No longer uses double-colon rules
1157 * Bug fixes
1158 * Changes in advance of internationalization
1159
1160 -----
1161
1162 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
1163 2004, 2005  Free Software Foundation, Inc.
1164
1165 This file is part of GNU Automake.
1166
1167 GNU Automake is free software; you can redistribute it and/or modify
1168 it under the terms of the GNU General Public License as published by
1169 the Free Software Foundation; either version 2, or (at your option)
1170 any later version.
1171
1172 GNU Automake is distributed in the hope that it will be useful,
1173 but WITHOUT ANY WARRANTY; without even the implied warranty of
1174 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1175 GNU General Public License for more details.
1176
1177 You should have received a copy of the GNU General Public License
1178 along with GNU Automake; see the file COPYING.  If not, write to
1179 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1180 Boston, MA 02110-1301, USA.