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