Admin/reallymakeall
author kleing
Tue, 20 May 2003 11:52:42 +0200
changeset 14040 8a2c8f762837
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
be less verbose about simplification depth

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