Files
rtems/doc/do_docs
Joel Sherrill 60593076c8 Corrected problem where directories where not being properly created.
Change path to indicate expected snapshot date.
1997-07-31 18:59:59 +00:00

24 lines
439 B
Bash
Executable File

#! /bin/sh
#
# $Id$
#
basedir=$1
shift
manuals="develenv hppa1_1 i386 i960 m68k relnotes powerpc sparc user ka9q \
posix_test_plan ada_user"
# 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