Admin/reallymakeall
author paulson
Fri, 17 Sep 2004 16:08:52 +0200
changeset 15201 d73f9d49d835
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
converted ZF/Induct/Multiset to Isar script

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