diff options
author | Alexandre Duret-Lutz <adl@gnu.org> | 2004-12-30 23:10:52 +0000 |
---|---|---|
committer | Alexandre Duret-Lutz <adl@gnu.org> | 2004-12-30 23:10:52 +0000 |
commit | ae6b80f3f00c7f06f1eb9d7143fa00b24b7c62d3 (patch) | |
tree | 506de8e148728313eb01a1b535259cbfaf9cb089 /lib/Automake/Rule.pm | |
parent | 7c3a688e9b9e747a161d9d20f6b87327e7741dfe (diff) | |
download | automake-ae6b80f3f00c7f06f1eb9d7143fa00b24b7c62d3.tar.gz |
Support for `install-dvi', `install-html', `install-ps', and
`install-pdf', as recently introduced into the GNU Coding
Standard.
* automake.in (handle_factored_dependencies): Reject
uninstall-dvi-local, uninstall-html-local, uninstall-info-local,
uninstall-ps-local, and uninstall-pdf-local. Allow
install-info-local even when no-installinfo is not used.
(handle_data): Allow datarootdir, dvidir, htmldir, pdfdir, and psdir.
(%standard_prefix): Declare these new standard directory variables.
* doc/automake.texi (Texinfo, Third-Party Makefiles): Document
install-dvi, install-html, install-pdf, and install-ps.
(Extending): Document install-local-dvi, install-local-html,
install-local-info, install-local-pdf, and install-local-ps.
* lib/Automake/Rule.pm (%dependencies): Add new install rules,
and remove uninstall-info.
* /cvs/automake/automake/lib/am/texinfos.am (install-dvi,
install-dvi-am, install-dvi-recursive, install-html,
install-html-am, install-html-recursive, install-pdf,
install-pdf-am, install-pdf-recursive, install-ps, install-ps-am,
install-ps-recursive, uninstall-dvi-am, uninstall-html-am,
uninstall-pdf-am, uninstall-ps-am): New rules.
(uninstall-info): Delete.
* tests/txinfo21.test: Augment to check for these new rules.
* tests/exdir2.test: Do not use `htmldir' as example of
undefined directory.
* tests/overrid.test: Do not be fooled by install-ps and
install-html.
* tests/txinfo10.test: Do not grep for uninstall-info-recursive.
Diffstat (limited to 'lib/Automake/Rule.pm')
-rw-r--r-- | lib/Automake/Rule.pm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/Automake/Rule.pm b/lib/Automake/Rule.pm index 25372e5cf..8911993c9 100644 --- a/lib/Automake/Rule.pm +++ b/lib/Automake/Rule.pm @@ -328,9 +328,16 @@ sub reset() 'install-man' => [], 'uninstall-man' => [], + 'install-dvi' => [], + 'install-dvi-am' => [], + 'install-html' => [], + 'install-html-am' => [], 'install-info' => [], 'install-info-am' => [], - 'uninstall-info' => [], + 'install-pdf' => [], + 'install-pdf-am' => [], + 'install-ps' => [], + 'install-ps-am' => [], 'installcheck-am' => [], |