Admin/reallymakeall
author webertj
Tue, 15 Jun 2004 00:06:40 +0200
changeset 14942 78ddcbebace1
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
entries for ZChaff and BerkMin added/modified

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