mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 23:23:13 +00:00
19 lines
335 B
Bash
Executable File
19 lines
335 B
Bash
Executable File
#! /bin/sh
|
|
|
|
basedir=$1
|
|
shift
|
|
manuals="develenv hppa1_1 i386 i960 m68k relnotes sparc c_user ka9q"
|
|
# posix_test_plan manual left out in 4.1.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
|