Admin/reallymakeall
author wenzelm
Sun, 18 Sep 2005 15:20:08 +0200
changeset 17481 75166ebb619b
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
converted to Isar theory format;

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