* doc/automake.texi (multiple outputs): New node.
[automake.git] / NEWS
blob50f38c97ddd28c4c7514eaad680ea9e6dd69b9ec
1 New in 1.8a:
3 * Libtool tags are used with libtool versions that support them.
4   (I.e., with Libtool 1.5 or greater.)
6 * Makefile.in bloat reduction.
8   - Inference rules are used to compile sources in subdirectories when
9     the `subdir-objects' option is used and no per-target flags are
10     used.  This should reduce the size of some projects a lot, because
11     Automake used to output an explicit rule for each such object in
12     the past.
14   - Automake no longer outputs three rules (.o, .obj, .lo) for each
15     object that must be built with explicit rules.  It just outputs
16     the rules required to build the kind of object considered: either
17     the two .o and .obj rules for usual objects, or the .lo rule for
18     libtool objects.
20 * Bug fixes.
22   - Distribute all files, even those which are built and installed
23     conditionally.  This change affects files listed in conditionally
24     defined *_HEADERS and *_PYTHON variable (unless they are nodist_*)
25     as well as those listed in conditionally defined dist_*_DATA,
26     dist_*_JAVA, dist_*_LISP, and dist_*_SCRIPTS variables.
29 New in 1.8:
31 * Meta-News
33   - The NEWS file is more verbose.
35 * Requirements
37   - Autoconf 2.58 or greater is required.
39 * New features
41   - Default source file names in the absence of a _SOURCES declaration
42     are made by removing any target extension before appending `.c', so
43     to make the libtool module `foo.la' from `foo.c', you only need to
44     do this:
46         lib_LTLIBRARIES = foo.la
47         foo_la_LDFLAGS  = -module
49     For backward compatibility, foo_la.c will be used instead of
50     foo.c if this file exists or is the explicit target of a rule.
51     However -Wobsolete will warn about this deprecated naming.
53   - AR's `cru' flags are now set in a global ARFLAGS variable instead
54     of being hard-coded in each $(AR) invocation, so they can be
55     substituted from configure.ac.  This has been requested by people
56     dealing with non-POSIX ar implementations.
58   - New warning option: -Woverride.  This will warn about any user
59     target or variable definitions which override Automake
60     definitions.
62   - Texinfo rules back up and restore info files when makeinfo fails.
64   - Texinfo rules now support the `html' target.
65     Running this requires Texinfo 4.0 or greater.
67     `html' is a new recursive target, so if your package mixes
68     hand-crafted `Makefile.in's with Automake-generated
69     `Makefile.in's, you should adjust the former to support (or
70     ignore) this target so that `make html' recurses successfully.  If
71     you had a custom `html' rule in your `Makefile.am', it's better to
72     rename it as `html-local', otherwise your rule will override
73     Automake's new rule (you can check that by running `automake
74     -Woverride') and that will stop the recursion to subdirectories.
76     Last but not least, this `html' rule is declared PHONY, even when
77     overridden.  Fortunately, it appears that few packages use a
78     non-PHONY `html' rule.
80   - Any file which is m4_included from configure.ac will appear as a
81     configure and Makefile.in dependency, and will be automatically
82     distributed.
84   - The rules for rebuilding Makefiles and Makefile.ins will now
85     rebuild all Makefiles and all Makefile.ins at once when one of
86     configure's dependencies has changed.  This is considerably faster
87     than previous implementations, where config.status and automake
88     were run separately in each directory (this still happens when you
89     change a Makefile.am locally, without touching configure.ac or
90     friends).  Doing this also solves a longstanding issue: these
91     rebuild rules failed to work when adding new directories to the
92     tree, forcing you to run automake manually.
94   - For similar reasons, the rules to rebuild configure,
95     config.status, and aclocal.m4 are now defined in all directories.
96     Note that if you were using the CONFIG_STATUS_DEPENDENCIES and
97     CONFIGURE_DEPENDENCIES (formerly undocumented) variables, you
98     should better define them in all directories.  This is easily done
99     using an AC_SUBST (make sure you prefix these dependencies with
100     $(top_srcdir) since this variable will appear at different
101     levels of the build tree).
103   - aclocal will now use `m4_include' instead of copying local m4
104     files into aclocal.m4.  (Local m4 files are those you ship with
105     your project, other files will be copied as usual.)
107     Because m4_included files are automatically distributed, it means
108     for most projects there is no point in EXTRA_DISTing the list of
109     m4 files which are used.  (You can probably get rid of
110     m4/Makefile.am if you had one.)
112   - aclocal will avoid touching aclocal.m4 when possible, so that
113     Autom4te's cache isn't needlessly invalidated.  This behavior can
114     be switched off with the new `--force' option.
116   - aclocal now uses Autoconf's --trace to detect macros which are
117     actually used and will no longer include unused macros simply
118     because they where mentioned.  This was often the case for macros
119     called conditionally.
121   - New options no-dist and no-dist-gzip.
123   - compile, depcomp, elisp-comp, install-sh, mdate-sh, mkinstalldirs,
124     py-compile, and ylwrap, now all understand --version and --help.
126   - Automake will now recognize AC_CONFIG_LINKS so far as removing created
127     links as part of the distclean target and including source files in
128     distributions.
130   - AM_PATH_PYTHON now supports ACTION-IF-FOUND and ACTION-IF-NOT-FOUND
131     argument.  The latter can be used to override the default behavior
132     (which is to abort).
134   - Automake will exit with $? = 63 on version mismatch.  (So does
135     Autoconf 2.58)  missing knows this, and in this case it will
136     emulate the tools as if they were absent.  Because older versions
137     of Automake and Autoconf did not use this exit code, this change
138     will only be useful in projects generated with future versions of
139     these tools.
141   - When using AC_CONFIG_FILES with multiple input files, Automake
142     generates the first ".in" input file for which a ".am" exists.
143     (Former versions would try to use only the first input file.)
145   - lisp_DATA is now allowed.  If you are using the empty ELCFILES
146     idiom to disable byte-compilation of lisp_LISP files, it is
147     recommended that you switch to using lisp_DATA.  Note that
148     this is not strictly equivalent: lisp_DATA will install elisp
149     files even if emacs is not installed, while *_LISP do not
150     install anything unless emacs is found.
152   - Makefiles will prefer `mkdir -p' over mkinstalldirs if it is
153     available.  This selection is achieved through the Makefile
154     variable $(mkdir_p) that is set by AM_INIT_AUTOMAKE to either
155     `mkdir -m 0755 -p --', `$(mkinstalldirs) -m 0755', or
156     `$(install_sh) -m 0755 -d'.
158 * Obsolete features
160   - Because `mkdir -p' is available on most platforms, and we can use
161     `install-sh -d' when it is not, the use of the mkinstalldirs
162     script is being phased out.  `automake --add-missing' no longer
163     installs it, and if you remove mkinstalldirs from your package,
164     automake will define $(mkinstalldirs) as an alias for $(mkdir_p).
166     Gettext 0.12.1 still requires mkinstalldirs.  Fortunately
167     gettextize and autopoint will install it when needed.  Automake
168     will continue to define the $(mkinstalldirs) and to distribute
169     mkinstalldirs when this script is in the source tree.
171   - AM_PROG_CC_STDC is now empty.  The content of this macro was
172     merged in AC_PROG_CC.  If your code uses $am_cv_prog_cc_stdc, you
173     should adjust it to use $ac_cv_prog_cc_stdc instead.  (This
174     renaming should be safe, even if you have to support several,
175     versions of Automake, because AC_PROG_CC defines this variable
176     since Autoconf 2.54.)
178   - Some users where using the undocumented ACLOCAL_M4_SOURCES
179     variable to override the aclocal.m4 dependencies computed
180     (inaccurately) by older versions of Automake.  Because Automake
181     now tracks configure's m4 dependencies accurately (see m4_include
182     above), the use of ACLOCAL_M4_SOURCES should be considered
183     obsolete and will be flagged as such when running `automake
184     -Wobsolete'.
186 * Bug fixes
188   - Defining programs conditionally using Automake conditionals no
189     longer leads to a combinatorial explosion.  The following
190     construct used to be troublesome when used with dozens of
191     conditions.
193       bin_PROGRAMS = a
194       if COND1
195         bin_PROGRAMS += a1
196       endif
197       if COND2
198         bin_PROGRAMS += a2
199       endif
200       if COND3
201         bin_PROGRAMS += a3
202       endif
203       ...
205     Likewise for _SOURCES, _LDADD, and _LIBADD variables.
207   - Due to implementation constraints, previous versions of Automake
208     proscribed multiple conditional definitions of some variables
209     like bin_PROGRAMS:
211       if COND1
212         bin_PROGRAMS = a1
213       endif
214       if COND2
215         bin_PROGRAMS = a2
216       endif
218     All _PROGRAMS, _LDADD, and _LIBADD variables were affected.
219     This restriction has been lifted, and these variables now
220     support multiple conditional definitions as do other variables.
222   - Cleanup the definitions of $(distdir) and $(top_distdir).
223     $(top_distdir) now points to the root of the distribution
224     directory created during `make dist', as it did in Automake 1.4,
225     not to the root of the build tree as it did in intervening
226     versions.  Furthermore these two variables are now only defined in
227     the top level Makefile, and passed to sub-directories when running
228     `make dist'.
230   - The --no-force option now correctly checks the Makefile.in's
231     dependencies before deciding not to update it.
233   - Do not assume that make files are called Makefile in cleaning rules.
235   - Update .info files in the source tree, not in the build tree.  This
236     is what the GNU Coding Standard recommend.  Only Automake 1.7.x
237     used to update these files in the build tree (previous versions did
238     it in the source tree too), and it caused several problems, varying
239     from mere annoyance to portability issues.
241   - COPYING, COPYING.LIB, and COPYING.LESSER are no longer overwritten
242     when --add-missing and --force-missing are used.  For backward
243     compatibility --add-missing will continue to install COPYING (in
244     `gnu' strictness) when none of these three files exist, but this
245     use is deprecated: you should better choose a license yourself and
246     install it once for all in your source tree (and in your code
247     management system).
249   - Fix ylwrap so that it does not overwrite header files that haven't
250     changed, as the inline rule already does.
252   - User-defined rules override automake-defined rules for the same
253     targets, even when rules do not have commands.  This is not new
254     (and was documented), however some of the automake-generated
255     rules have escaped this principle in former Automake versions.
256     Rules for the following targets are affected by this fix:
258        clean, clean-am, dist-all, distclean, distclean-am, dvi, dvi-am,
259        info, info-am, install-data-am, install-exec-am, install-info,
260        install-info-am, install-man, installcheck-am, maintainer-clean,
261        maintainer-clean-am, mostlyclean, mostlyclean-am, pdf, pdf-am,
262        ps, ps-am, uninstall-am, uninstall-info, uninstall-man
264     Practically it means that an attempt to supplement the dependencies
265     of some target, as in
267        clean: my-clean-rule
269     will now *silently override* the automake definition of the
270     rule for this target.  Running `automake -Woverride' will diagnose
271     all such overriding definitions.
273     It should be noted that almost all these targets support a *-local
274     variant that is meant to supplement the automake-defined rule
275     (See node `Extending' in the manual).  The above rule should
276     be rewritten as
278       clean-local: my-clean-rule
280     These *-local targets have been documented since at least
281     Automake 1.2, so you should not fear the change if you have
282     to support multiple automake versions.
284 * Miscellaneous
286   - The Automake manual is now distributed under the terms of the GNU FDL.
288   - Targets dist-gzip, dist-bzip2, dist-tarZ, dist-zip are always defined.
290   - core dumps are no longer removed by the cleaning rules.  There are
291     at least three reasons for this:
292       1. These files should not be created by any build step,
293          so their removal do not fit any of the cleaning rules.
294          Actually, they may be precious to the developer.
295       2. If such file is created during a build, then it's clearly a
296          bug Automake should not hide.  Not removing the file will
297          cause `make distcheck' to complain about its presence.
298       3. Operating systems have different naming conventions for
299          core dump files.  A core file on one system might be a
300          completely legitimate data file on another system.
302   - RUNTESTFLAGS, CTAGSFLAGS, ETAGSFLAGS, JAVACFLAGS are no longer
303     defined by Automake.  This means that any definition in the
304     environment will be used, unless overridden in the Makefile.am or
305     on the command line.  The old behavior, where these variables were
306     defined empty in each Makefile, can be obtained by AC_SUBSTing or
307     AC_ARG_VARing each variable from configure.ac.
309   - CONFIGURE_DEPENDENCIES and CONFIG_STATUS_DEPENDENCIES are now
310     documented.  (The is not a new feature, these variables have
311     been there since at least Automake 1.4.)
313 Bugs fixed in 1.7.9:
314 * Fix install-strip to work with nobase_ binaries.
315 * Fix renaming of #line directives in ylwrap.
316 * Rebuild with Autoconf 2.59.  (1.7.8 was not installable with pdksh.)
318 Bugs fixed in 1.7.8:
319 * Remove spurious blank lines in cleaning rules introduced in 1.7.7.
320 * Fix detection of Debian's install-info, broken since version 1.5.
321   (Debian bug #213524).
322 * Honor -module if it appears in AM_LDFLAGS (i.e., relax name checking)
323   This was only done for libfoo_LDFLAGS and LDFLAGS in previous versions.
325 Bugs fixed in 1.7.7:
326 * The implementation of automake's --no-force option is unreliable,
327   so this option is ignored in this version.  A real fix will appear in
328   Automake 1.8.  (Debian Bug #206299)
329 * AM_PATH_PYTHON: really check the whole list of interpreters if no
330   argument is given.  (PR/399)
331 * Do not warn about leading `_' in variable names, even with -Wportability.
332 * Support user redefinitions of TEXINFO_TEX.
333 * depcomp: support AIX Compiler version 6.
334 * Fix missing rebuilds during `make dist' with BSD make.
335   (Could produce tarballs containing out-of-date files.)
336 * Resurrect multilib support.
337 * Noteworthy manual updates:
338   - Extending aclocal: how to write m4 macros that won't trigger warnings
339     with Automake 1.8.
340   - A Shared Library: Rewrite and split into subsections.
342 Bugs fixed in 1.7.6:
343 * Fix depcomp's icc mode for ICC 7.1.
344 * Diagnose calls to AC_CONFIG_FILES and friends with not enough arguments.
345 * Fix maintainer-clean's removal of autom4te.cache in VPATH builds.
346 * Fix AM_PATH_LISPDIR to work with POSIXLY_CORRECT=1.
347 * Fix the location reported in some diagnostics related to AUTOMAKE_OPTIONS.
348 * Remove Latin-1 characters from elisp-comp.
349 * Update the manual's @dircategory to match the Free Software Directory.
351 Bugs fixed in 1.7.5:
352 * Update install-sh's license to remove an advertising clause.
353   (Debian bug #191717)
354 * Fix a bug introduced in 1.7.4, related to BUILT_SOURCE handling,
355   that caused invalid Makefile.ins to be generated.
356 * Make sure AM_MAKE_INCLUDE doesn't fail when a `doit' file exists.
357 * New FAQ entry: renamed objects.
359 Bugs fixed in 1.7.4:
360 * Tweak the TAGS rule to support Exuberant Ctags (in addition to
361   the Emacs implementation)
362 * Fix output of aclocal.m4 dependencies in subdirectories.
363 * Use `mv -f' instead of `mv' in fastdep rules.
364 * Upgrade mdate-sh to work on OS/2.
365 * Don't byte-compile elisp files when ELCFILES is set empty.
366   (this documented feature was broken by 1.7.3)
367 * Diagnose trailing backslashes on last line of Makefile.am.
368 * Diagnose whitespace following trailing backslashes.
369 * Multiple tests are now correctly supported in DEJATOOL. (PR/388)
370 * Fix rebuilt rules for AC_CONFIG_FILES([Makefile:Makefile.in:Makefile.bot])
371   Makefiles. (PR/389)
372 * `make install' will build `BUILT_SOURCES' first.
373 * Minor documentation fixes.
375 Bugs fixed in 1.7.3:
376 * Fix stamp files numbering (when using multiple AC_CONFIG_HEADERS).
377 * Query distutils for `pythondir' and `pythonexecdir', instead of
378   using an hardcoded path.  This should allow builds on 64-bit
379   distributions that usually use lib64/ instead of lib/.
380 * AM_PATH_PYTHON will also search for python2.3.
381 * elisp files are now built all at once instead of one by one. Besides
382   incurring a speed-up, this is required to support interdependent elisp files.
383 * Support for DJGPP:
384   - `make distcheck' will now work in `_inst/' and `_build' instead
385     of `=inst/' and `=build/'
386   - use `_dirstamp' when the file-system doesn't support `.dirstamp'
387   - install/uninstall `*.i[0-9][0-9]'-style info files
388   - more changes that affect only the Automake package (not its output)
389 * Fix some incompatibilities with upcoming perl-5.10.
390 * Properly quote AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION when defining
391   PACKAGE and VERSION.
392 * depcomp fixes:
393   - dashmstdout and dashXmstdout modes: don't use `-o /dev/null', this
394     is troublesome with gcc and Solaris compilers. (PR/385)
395   - makedepend mode: work with Libtool. (PR/385 too)
396   - support for ICC.
397 * better support for unusual gettext setups, such as multiple po/ directories
398   (PR/381):
399   - Flag missing po/ and intl/ directories as warnings, not errors.
400   - Disable these warnings if po/ does not exist.
401 * Noteworthy manual updates:
402   - New FAQ chapter.
403   - Document how AC_CONFIG_AUX_DIR interacts with missing files.
404     (Debian Bug #39542)
405   - Document `AM_YFLAGS = -d'.  (PR/382)
407 Bugs fixed in 1.7.2:
408 * Fix installation and uninstallation of Info files built in subdirectories.
409 * Do not run `./configure --with-included-gettext' during `make distcheck'
410   if AM_GNU_GETTEXT([external]) is used.
411 * Correctly uninstall renamed man pages.
412 * Do not strip escaped newline in variables defined in one condition
413   and augmented in another condition.
414 * Fix ansi2knr rules for LIBOBJS sources.
415 * Clean all known Texinfo index files, not only those which appear to
416   be used, because we cannot know wich indexes are used in included files.
417   (PR/375, Debian Bug #168671)
418 * Honor only the first @setfilename seen in a Texinfo file.
419 * Treat "required file X not found" diagnostics as errors (exit status 1).
420 * Don't complain that a required file is not found when it is a Makefile
421   target. (PR/357)
422 * Don't use single suffix inference rules when building `.info'-less
423   Info files, for the sake of Solaris make.
424 * The `check' target now depends on `$(BUILT_SOURCES)'. (PR/359)
425 * Recognize multiple inference rules such as `.a.b .c.d:'. (PR/371)
426 * Warn about multiple inference rules when -Wportability is used. (PR/372)
427 * Fix building of deansified files from subdirectories. (PR/370)
428 * Add missing `fi' in the .c->.obj rules.
429 * Improve install-sh to work even when names contain spaces or certain
430   (but not all) shell metachars.
431 * Fix the following spurious failures in the test suite:
432   depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test
433 * Noteworthy manual updates:
434   - Augment the section about BUILT_SOURCES.
435   - Mention that AM_PROG_CC_STDC is a relic that is better avoided today.
437 Bugs fixed in 1.7.1:
438 * Honor `ansi2knr' for files built in subdirectories, or using per-targets
439   flags.
440 * Aclocal should now recognize macro names containing parentheses, e.g.
441   AC_DEFUN([AC_LANG_PREPROC(Fortran 90)], [...]).
442 * Erase *.sum and *.log files created by DejaGnu, during `make distclean'.
443   (Debian Bug#153697)
444 * Install Python files even if they were built.  (PR/369)
445 * Have stamp-vti dependent upon configure instead of configure.ac, as the
446   version might not be defined in the latter. (PR/358)
447 * Reorder arguments passed to a couple of commands, so things works
448   when POSIXLY_CORRECT=1.
449 * Fix a regex that can cause Perl to segfault on large input.
450   (Debian Bug#162583)
451 * Fix distribution of packages that have some sources defined conditionally,
452   as in the `Conditional compilation using Automake conditionals' example
453   of the manual.
454 * Fix spurious test suite failures on IRIX.
455 * Don't report a required variable as undefined if it has been
456   defined conditionally for the "right" conditions.
457 * Fix cleaning of the /tmp subdirectory used by `make distcheck', in case
458   `make distcheck' fails.
459 * Fix distribution of included Makefile fragment, so we don't create
460   spurious directories in the distribution. (PR/366)
461 * Don't complain that a target lacks `.$(EXEEXT)' when it has it.
463 New in 1.7:
464 * Autoconf 2.54 is required.
465 * `aclocal' and `automake' will no longer warn about obsolete
466   configure macros.  This is done by `autoconf -Wobsolete'.
467 * AM_CONFIG_HEADER, AM_SYS_POSIX_TERMIOS and
468   AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL are obsolete (although still
469   supported).  You should use AC_CONFIG_HEADERS, AC_SYS_POSIX_TERMIOS,
470   and AC_HEADER_TIOCGWINSZ instead.  `autoupdate' can upgrade
471   `configure.ac' for you.
472 * Support for per-program and per-library `_CPPFLAGS'.
473 * New `ctags' target (builds CTAGS files).
474 * Support for -Wmumble and -Wno-mumble, where mumble is a warning category
475   (see `automake --help' or the manual for a list of them).
476 * Honor the WARNINGS environment variable.
477 * Omit the call to depcomp when using gcc3: call the compiler directly.
478 * A new option, std-options, tests that programs support --help and --version
479   when `make installcheck' is run.  This is enabled by --gnits.
480 * Texinfo rules now support the `ps' and `pdf' targets.
481 * Info files are now created in the build directory, not the source directory.
482 * info_TEXINFOS supports files in subdirectories (this requires Texinfo 4.1
483   or greater).
484 * `make distcheck' will enforce DESTDIR support by attempting
485   a DESTDIR install.
486 * `+=' can be used in conditionals, even if the augmented variable
487   was defined for another condition.
488 * Makefile fragments (inserted with `include') are always distributed.
489 * Use Autoconf's --trace interface to inspect configure.ac and get
490   a more accurate view of it.
491 * Add support for extending aclocal's default macro search path
492   using a `dirlist' file within the aclocal directory.
493 * automake --output-dir is deprecated.
494 * The part of the distcheck target that checks whether uninstall actually
495   removes all installed files has been moved in a separate target,
496   distuninstallcheck, so it can be overridden easily.
497 * Many bug fixes.
499 New in 1.6.3:
500 * Support for AM_INIT_GETTEXT([external])
501 * Bug fixes, including:
502   - Fix Automake's own `make install' so it works even if `ln' doesn't.
503   - nobase_ programs and scripts honor --program-transform correctly.
504   - Erase configure.lineno during `make distclean'.
505   - Erase YACC and LEX outputs during `make maintainer-clean'.
507 New in 1.6.2:
508 * Many bug fixes, including:
509   - Requiring the current version works.
510   - Fix "$@" portability issues (for Zsh).
511   - Fix output of dummy dependency files in presence of post-processed
512     Makefile.in's.
513   - Don't compute dependencies in background to avoid races with libtool.
514   - Fix handling of _OBJECTS variables for targets sharing source variables.
515   - Check dependency mode for Java when AM_PROG_GCJ is used.
517 New in 1.6.1:
518 * automake --output-dir is deprecated
519 * Many bug fixes, including:
520   - Don't choke on AM_LDFLAGS definitions.
521   - Clean libtool objects from subdirectories.
522   - Allow configure variables with reserved suffix and unknown prefix
523     (e.g. AC_SUBST(mumble_LDFLAGS) when 'mumble' is not a target).
524   - Fix the definition of AUTOMAKE and ACLOCAL in configure.
526 New in 1.6:
527 * Autoconf 2.52 is required.
528 * automake no longer run libtoolize.
529   This is the job of autoreconf (from GNU Autoconf).
530 * `dist' generates all the archive flavors, as did `dist-all'.
531 * `dist-gzip' generates the Gzip tar file only.
532 * Combining Automake Makefile conditionals no longer lead to a combinatorial
533   explosion.  Makefile.in's keep a reasonable size.
534 * AM_FUNC_ERROR_AT_LINE, AM_FUNC_STRTOD, AM_FUNC_OBSTACK, AM_PTRDIFF_T
535   are no longer shipped, since Autoconf 2.52 provides them (both as AM_
536   and AC_).
537 * `#line' of Lex and Yacc files are properly set.
538 * EXTRA_DIST can contain generated directories.
539 * Support for dot-less extensions in suffix rules.
540 * The part of the distcheck target that checks whether distclean actually
541   cleans all built files has been moved in a separate target, distcleancheck,
542   so it can be overridden easily.
543 * `make distcheck' will pass additional options defined in
544   $(DISTCHECK_CONFIGURE_FLAGS) to configure.
545 * Fixed CDPATH portability problems, in particular for MacOS X.
546 * Fixed handling of nobase_ targets.
547 * Fixed support of implicit rules leading to .lo objects.
548 * Fixed late inclusion of --add-missing files (e.g. depcomp) in DIST_COMMON
549 * Added uninstall-hook target
550 * `AC_INIT AM_INIT_AUTOMAKE(tarname,version)' is an obsolete construct.
551   You can now use `AC_INIT(pkgname,version) AM_INIT_AUTOMAKE' instead.
552   (Note that "pkgname" is not "tarname", see the manual for details.)
553   It is also possible to pass a list of global Automake options as
554   first argument to this new form of AM_INIT_AUTOMAKE.
555 * Compiler-based assembler is now called `CCAS'; people expected `AS'
556   to be a real assembler.
557 * AM_INIT_AUTOMAKE will set STRIP itself when it needs it.  Adding
558   AC_CHECK_TOOL([STRIP], [strip]) manually is no longer required.
559 * aclocal and automake are also installed with the version number
560   appended, and some of the install directory names have changed.
561   This lets you have multiple versions installed simultaneously.
562 * Support for parsers and lexers in subdirectories.
564 New in 1.5:
565 * Support for `configure.ac'.
566 * Support for `else COND', `endif COND' and negated conditions `!COND'.
567 * `make dist-all' is much faster.
568 * Allows '@' AC_SUBSTs in macro names.
569 * Faster AM_INIT_AUTOMAKE (requires update of `missing' script)
570 * User-side dependency tracking.  Developers no longer need GNU make
571 * Python support
572 * Uses DIST_SUBDIRS in some situations when SUBDIRS is conditional
573 * Most files are correctly handled if they appear in subdirs
574   For instance, a _DATA file can appear in a subdir
575 * GNU tar is no longer required for `make dist'
576 * Added support for `dist_' and `nodist_' prefixes
577 * Added support for `nobase_' prefix
578 * Compiled Java support
579 * Support for per-executable and per-library compilation flags
580 * Many bug fixes
582 New in 1.4:
583 * Added support for the Fortran 77 programming language.
584 * Re-indexed the Automake Texinfo manual.
585 * Added `AM_FOOFLAGS' variable for each compiler invocation;
586   e.g. AM_CFLAGS can be used in Makefile.am to set C compiler flags
587 * Support for latest autoconf, including support for objext
588 * Can now put `.' in SUBDIRS to control build order
589 * `include' command and `+=' support for macro assignment
590 * Dependency tracking no long susceptible to deleted header file problem
591 * Maintainer mode now a conditional.  @MAINT@ is now an anachronism.
592 * Bug fixes
594 New in 1.3:
595 * Bug fixes
596 * Better Cygwin32 support
597 * Support for suffix rules with _SOURCES variables
598 * New options `readme-alpha' and `check-news'; Gnits mode sets these
599 * @LEXLIB@ no longer required when lex source seen
600   Lex support in `missing', and new lex macro.  Update your missing script.
601 * Built-in support for assembly
602 * aclocal gives error if `AM_' macro not found
603 * Passed YFLAGS, not YACCFLAGS, to yacc
604 * AM_PROG_CC_STDC does not have to come before AC_PROG_CPP
605 * Dependencies computed as a side effect of compilation
606 * Preliminary support for Java
607 * DESTDIR support at "make install" time
608 * Improved ansi2knr support; you must use the latest ansi2knr.c (included)
610 New in 1.2:
611 * Bug fixes
612 * Better DejaGnu support
613 * Added no-installinfo option
614 * Added Emacs Lisp support
615 * Added --no-force option
616 * Included `aclocal' program
617 * Automake will now generate rules to regenerate aclocal.m4, if appropriate
618 * Now uses `AM_' macro names everywhere
619 * ansi2knr option can have directory prefix (eg `../lib/ansi2knr')
620   ansi2knr now works correctly on K&R sources
621 * Better C++, yacc, lex support
622 * Will compute _DEPENDENCIES variables automatically if not supplied
623 * Will interpolate $(...) and ${...} when examining contents of a variable
624 * .deps files now in build directory, not source directory; dependency
625   handling generally rewritten
626 * DATA, MANS and BUILT_SOURCES no longer included in distribution
627 * can now put config.h into a subdir
628 * Added dist-all target
629 * Support for install-info program (see texinfo 3.9)
630 * Support for "yacc -d"
631 * configure substitutions are automatically discovered and included
632   in generated Makefile.in
633 * Special --cygnus mode
634 * OMIT_DEPENDENCIES can now hold list of dependencies to be omitted
635   when making distribution.  Some dependencies are auto-ignored.
636 * Changed how libraries are specified in _LIBRARIES variable
637 * Full libtool support, from Gord Matzigkeit
638 * No longer have to explicitly touch stamp-h when using AC_CONFIG_HEADER;
639   AM_CONFIG_HEADER handles it automatically
640 * Texinfo output files no longer need .info extension
641 * Added `missing' support
642 * Cygwin32 support
643 * Conditionals in Makefile.am, from Ian Taylor
645 New in 1.0:
646 * Bug fixes
647 * distcheck target runs install and installcheck targets
648 * Added preliminary support for DejaGnu.
650 New in 0.33:
651 * More bug fixes
652 * More checking
653 * More libtool fixes from Gord Matzigkeit; libtool support is still
654   preliminary however
655 * Added support for jm_MAINTAINER_MODE
656 * dist-zip support
657 * New "distcheck" target
659 New in 0.32:
660 * Many bug fixes
661 * mkinstalldirs and mdate-sh now appear in directory specified by
662   AC_CONFIG_AUX_DIR.
663 * Removed DIST_SUBDIRS, DIST_OTHER
664 * AC_ARG_PROGRAM only required when an actual program exists
665 * dist-hook target now run before distribution packaged up; idea from
666   Dieter Baron.  Other hooks exist, too.
667 * Preliminary (unfinished) support for libtool
668 * Added short option names.
669 * Better "dist" support when gluing together multiple packages
671 New in 0.31:
672 * Bug fixes
673 * Documentation updates (many from François Pinard)
674 * strictness `normal' now renamed to `foreign'
675 * Renamed --install-missing to --add-missing
676 * Now handles AC_CONFIG_AUX_DIR
677 * Now handles TESTS macro
678 * DIST_OTHER renamed to EXTRA_DIST
679 * DIST_SUBDIRS is deprecated
680 * @ALLOCA@ and @LIBOBJS@ now work in _LDADD variables
681 * Better error messages in many cases
682 * Program names are canonicalized
683 * Added "check" prefix; from Gord Matzigkeit
685 New in 0.30:
686 * Bug fixes
687 * configure.in scanner knows about AC_PATH_XTRA, AC_OUTPUT ":" syntax
688 * Beginnings of a test suite
689 * Automatically adds -I options for $(srcdir), ".", and path to config.h
690 * Doesn't print anything when running
691 * Beginnings of MAINT_CHARSET support
692 * Can specify version in AUTOMAKE_OPTIONS
693 * Most errors recognizable by Emacs' M-x next-error
694 * Added --verbose option
695 * All "primary" variables now obsolete; use EXTRA_PRIMARY to supply
696   configure-generated names
697 * Required macros now distributed in aclocal.m4
698 * New documentation
699 * --strictness=gnu is default
701 New in 0.29:
702 * Many bug fixes
703 * More sophisticated configure.in scanning; now understands ALLOCA and
704   LIBOBJS directly, handles AC_CONFIG_HEADER more precisely, etc.
705 * TEXINFOS and MANS now obsolete; use info_TEXINFOS and man_MANS instead.
706 * CONFIG_HEADER variable now obsolete
707 * Can handle multiple Texinfo sources
708 * Allow hierarchies deeper than 2.  From Gord Matzigkeit.
709 * HEADERS variable no longer needed; now can put .h files directly into
710   foo_SOURCES variable.
711 * Automake automatically rebuilds files listed in AC_OUTPUT.  The
712   corresponding ".in" files are included in the distribution.
714 New in 0.28:
715 * Added --gnu and --gnits options
716 * More standards checking
717 * Bug fixes
718 * Cleaned up 'dist' targets
719 * Added AUTOMAKE_OPTIONS variable and several options
720 * Now scans configure.in to get some information (preliminary)
722 New in 0.27:
723 * Works with Perl 4 again
725 New in 0.26:
726 * Added --install-missing option.
727 * Pretty-prints generated macros and rules
728 * Comments in Makefile.am are placed more intelligently in Makefile.in
729 * Generates .PHONY target
730 * Rule or macro in Makefile.am now overrides contents of Automake file
731 * Substantial cleanups from François Pinard
733 New in 0.25:
734 * Bug fixes.
735 * Works with Perl 4 again.
737 New in 0.24:
738 * New uniform naming scheme.
739 * --strictness option
740 * Works with Perl 5
741 * '.c' files corresponding to '.y' or '.l' files are automatically
742   distributed.
743 * Many bug fixes and cleanups
745 New in 0.23:
746 * Allow objects to be conditionally included in libraries via lib_LIBADD.
748 New in 0.22:
749 * Bug fixes in 'clean' code.
750 * Now generates 'installdirs' target.
751 * man page installation reworked.
752 * 'make dist' no longer re-creates all Makefile.in's.
754 New in 0.21:
755 * Reimplemented in Perl
756 * Added --amdir option (for debugging)
757 * Texinfo support cleaned up.
758 * Automatic de-ANSI-fication cleaned up.
759 * Cleaned up 'clean' targets.
761 New in 0.20:
762 * Automatic dependency tracking
763 * More documentation
764 * New variables DATA and PACKAGEDATA
765 * SCRIPTS installed using $(INSTALL_SCRIPT)
766 * No longer uses double-colon rules
767 * Bug fixes
768 * Changes in advance of internationalization
770 -----
772 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
773 Free Software Foundation, Inc.
775 This file is part of GNU Automake.
777 GNU Automake is free software; you can redistribute it and/or modify
778 it under the terms of the GNU General Public License as published by
779 the Free Software Foundation; either version 2, or (at your option)
780 any later version.
782 GNU Automake is distributed in the hope that it will be useful,
783 but WITHOUT ANY WARRANTY; without even the implied warranty of
784 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
785 GNU General Public License for more details.
787 You should have received a copy of the GNU General Public License
788 along with GNU Automake; see the file COPYING.  If not, write to
789 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
790 Boston, MA 02111-1307, USA.