Admin/reallymakeall
author paulson
Fri, 17 May 2002 16:47:24 +0200
changeset 13160 eca781285662
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
deleting the obsolete theorem lt_succ_iff

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