Admin/reallymakeall
author wenzelm
Wed, 07 Aug 2002 17:36:05 +0200
changeset 13472 2529a53514e6
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
section on "Rule declarations and methods";

#/!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