Admin/reallymakeall
author wenzelm
Sat, 29 May 2004 15:11:43 +0200
changeset 14845 345934d5bc1a
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
\<^bsub>/\<^esub> syntax: unbreakable block;

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