Extra files to distribute must be listed in @code{DIST_OTHER} (the
ancestor of @code{EXTRA_DIST}). Also extra directories that are to be
distributed should appear in @code{DIST_SUBDIRS}, but the manual
-describes this as a temporary ugly hack (today extra directories should
+describes this as a temporary ugly hack. Today, extra directories should
also be listed in @code{EXTRA_DIST}, and @code{DIST_SUBDIRS} is used
-for another purpose, @pxref{Conditional Subdirectories, , Conditional
-Subdirectories, automake, GNU Automake}).
+for another purpose (@pxref{Conditional Subdirectories,,, automake,
+GNU Automake}).
@item 1995-11-26 Automake 0.21
@subsection Future Directions for Dependencies
Currently, only languages and compilers understood by Automake can
-have dependency tracking enabled. We would like to see if it is
-practical (and worthwhile) to let this support be extended by the user
-to languages unknown to Automake.
+have dependency tracking enabled. Although it would be worthwhile to
+support extensions by the user to languages unknown to Automake, there
+are no plans to implement this (patches welcome). Nevertheless,
+@pxref{Dependencies,,, automake, GNU Automake}, for information on
+how a user might do this now, albeit unofficially.
+
@node Releases
@chapter Release Statistics
@settitle automake
@documentencoding UTF-8
@documentlanguage en
-@setchapternewpage off
+@setchapternewpage on
@c %**end of header
@include version.texi
someone who is discovering the Autotools, it is a nice feature worthy
of mention in this small advertising tour.
-Autoconfiscated packages (that means packages whose build system have
+Autoconfiscated packages (meaning packages whose build system have
been created by Autoconf and friends) can be nested to arbitrary
depth.
@node Dependencies
@section Automatic dependency tracking
-As a developer it is often painful to continually update the
+As a developer it is painful to continually update the
@file{Makefile.am} whenever the include-file dependencies change in a
project. Automake supplies a way to automatically track dependency
changes (@pxref{Dependency Tracking}).
endif
@end example
+Automake does not have support for extending the dependency tracking
+at runtime, e.g., if you want to have dependencies for a new language.
+However, Nick Bowler sketched how to do this in a message to the
+@code{automake} mailing list:
+@url{https://lists.gnu.org/archive/html/automake/2025-07/msg00014.html}.
+Although this necessarily uses various implementation details of
+Automake, and thus can't be considered future-proof, we don't have any
+plans or expectations for changing the dependency implementation in
+any substantive way.
+
@node EXEEXT
@section Support for executable extensions
take care to add @samp{$(EXEEXT)} when constructing the output variable.
Sometimes maintainers like to write an explicit link rule for their
-program. Without executable extension support, this is easy---you
-simply write a rule whose target is the name of the program. However,
-when executable extension support is enabled, you must instead add the
+program. Without executable extension support, you can simply write a
+rule whose target is the name of the program. However, when
+executable extension support is enabled, you must instead add the
@samp{$(EXEEXT)} suffix.
This might be a nuisance for maintainers who know their package will