Admin/reallymakeall
author nipkow
Mon, 29 Nov 2004 11:25:32 +0100
changeset 15340 cd18d7b73a64
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
obselete

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