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