Admin/reallymakeall
author nipkow
Mon, 17 Dec 2001 14:24:11 +0100
changeset 12525 4ad978c8f550
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
mods due to improved 1-point simprocs (quantifier1).

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