forked from Imagelibrary/rtems
31 lines
587 B
Bash
Executable File
31 lines
587 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
basedir=$1
|
|
shift
|
|
public_docs="user develenv ka9q posix_users"
|
|
support_docs="hppa1_1 i386 i960 m68k sparc"
|
|
partners_docs="posix1003.1"
|
|
|
|
extra_manuals="hwapi"
|
|
|
|
# relnotes is obsolete
|
|
# posix_users manual left out until finished
|
|
# ada_user manual left out until bindings released
|
|
manuals="$public_docs"
|
|
#manuals="$public_docs $support_docs $partners_docs $extra_manuals"
|
|
|
|
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
|