Admin/reallymakeall
author nipkow
Sat, 08 Jan 2005 09:30:16 +0100
changeset 15429 b08a5eaf22e3
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
new citation

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