Admin/reallymakeall
author wenzelm
Sat, 03 Feb 2001 15:20:55 +0100
changeset 11043 2e3bbac8763b
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
HOL: inductive package no longer splits induction rule aggressively, but only as far as specified by the introductions given; the old format may recovered via ML function complete_split_rule or attribute 'split_rule (complete)';

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