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