Admin/reallymakeall
author kleing
Fri, 24 Jun 2005 04:18:48 +0200
changeset 16559 2916415680b9
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
shortened time out by 3h (gives up at 12:00h now). test should be finished by 10:00h usually.

#/!bin/bash

ISATOOL=${ISATOOL:-isatool}
type -p "$ISATOOL" >/dev/null || { echo "isatool not found!" >&2; exit 2; }

for FILE in $(find . -name IsaMakefile -print)
do
  DIR=$(dirname "$FILE")
  echo "Entering $DIR ..."
  ( cd "$DIR"; $ISATOOL make "$@"; )
done