Admin/reallymakeall
author wenzelm
Wed, 26 Sep 2001 22:25:23 +0200
changeset 11573 4f85af77038f
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
bold symbols;

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