summaryrefslogtreecommitdiffstats
path: root/doc/do_docs
blob: 4f5ce200163c2e2f64da71431c3c45ff22d5998a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh
#
#  $Id$
#

basedir=$1
shift
manuals="develenv hppa1_1 i386 i960 m68k relnotes sparc user ka9q"
# posix_test_plan manual left out until finished
# ada_user manual left out until bindings released

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