Admin/reallymakeall
author wenzelm
Tue, 02 Jul 2002 15:41:02 +0200
changeset 13277 ca2511db144d
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
these_facts: refrain from put_thmss (2nd time!);

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