source: rtems/doc/do_docs @ 1f552a0

4.104.114.84.95
Last change on this file since 1f552a0 was 60593076, checked in by Joel Sherrill <joel.sherrill@…>, on 07/31/97 at 18:59:59

Corrected problem where directories where not being properly created.

Change path to indicate expected snapshot date.

  • Property mode set to 100755
File size: 439 bytes
Line 
1#! /bin/sh
2#
3#  $Id$
4#
5
6basedir=$1
7shift
8manuals="develenv hppa1_1 i386 i960 m68k relnotes powerpc sparc user ka9q \
9  posix_test_plan ada_user"
10# posix_test_plan manual left out until finished
11# ada_user manual left out until bindings released
12
13for action in $*
14do
15  for manual in $manuals
16  do
17    echo
18    echo "*** make $action on ${basedir}/${manual} ***"
19    echo
20    cd ${basedir}/${manual}
21    gmake $action || exit $?
22  done
23done
Note: See TracBrowser for help on using the repository browser.