Admin/reallymakeall
author wenzelm
Mon, 01 Oct 2001 14:44:00 +0200
changeset 11647 0538cb0f7999
parent 9522 bf459ea9a523
permissions -rwxr-xr-x
initial setup for chapter on document preparation;

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