Admin/reallymakeall
author nipkow
Fri, 31 May 2002 07:53:37 +0200
changeset 13189 81ed5c6de890
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
Now arith can deal with div/mod arbitrary nat numerals.

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