From 291088ec38861086801d1854de39d4fb2d79040a Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 29 Nov 1995 21:09:41 +0000 Subject: [PATCH] (handle_installdirs): Handle installdirs-recursive. (handle_man_pages): 'all' depends on $(MANS) --- automake.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/automake.in b/automake.in index ea355446..cf97b034 100755 --- a/automake.in +++ b/automake.in @@ -593,6 +593,7 @@ sub handle_man_pages push (@install_data, 'install-man'); push (@uninstall, 'uninstall-man'); + push (@all, '$(MANS)'); } # Handle DATA and PACKAGEDATA. @@ -801,7 +802,11 @@ sub handle_installdirs # GNU Makefile standards recommend this. FIXME prettyprint rule # here. - $output_rules .= ("installdirs:\n\t\$(top_srcdir)/mkinstalldirs " + $output_rules .= ("installdirs:" + . ($recursive_install + ? " installdirs-recursive\n" + : "\n") + . "\t\$(top_srcdir)/mkinstalldirs " . join (' ', @installdirs) . "\n\n"); } -- 2.43.5