summaryrefslogtreecommitdiffstats
path: root/doc/do_docs
diff options
context:
space:
mode:
Diffstat (limited to 'doc/do_docs')
-rwxr-xr-xdoc/do_docs18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/do_docs b/doc/do_docs
new file mode 100755
index 0000000000..debf0b3cbb
--- /dev/null
+++ b/doc/do_docs
@@ -0,0 +1,18 @@
+#! /bin/sh
+
+basedir=$1
+shift
+manuals="develenv hppa1_1 i386 i960 m68k relnotes sparc user"
+# posix_test_plan manual left out in 4.0.0
+
+for action in $*
+do
+ for manual in $manuals
+ do
+ echo
+ echo "*** make $action on ${basedir}/${manual} ***"
+ echo
+ cd ${basedir}/${manual}
+ gmake $action || exit $?
+ done
+done