This is not essential, but maybe a precursor to removing
the script-building rules in man/Makefile.am. With this,
they are no longer needed, since SUBDIRS are built sequentially:
Build in man/ only *after* building in bin/ and tests/.
* Makefile.am (SUBDIRS): The man-page-creation process runs $(MAKE)
in both bin/ and tests/.
Signed-off-by: Jim Meyering <[EMAIL PROTECTED]>
---
ChangeLog | 6 ++++++
Makefile.am | 3 ++-
2 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index aaf50a8..14b47ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-11-11 Jim Meyering <[EMAIL PROTECTED]>
+
+ Build in man/ only *after* building in bin/ and tests/.
+ * Makefile.am (SUBDIRS): The man-page-creation process runs $(MAKE)
+ in both bin/ and tests/.
+
2007-11-10 Jim Meyering <[EMAIL PROTECTED]>
Generate package.m4 in build-dir, not srcdir.
diff --git a/Makefile.am b/Makefile.am
index d243ed7..730291c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -18,7 +18,8 @@
# bin/ must be run first, as it builds executables needed for tests.
# autom4te uses autotest.m4f to generate `testsuite', so build tests last.
-SUBDIRS = bin . lib man doc tests
+# Rules in man/ use scripts from both bin/ and tests/, so *it* goes last.
+SUBDIRS = bin . lib doc tests man
ACLOCAL_AMFLAGS = -I m4
--
1.5.3.5.622.g6fd7a