Admin/reallymakeall
changeset 9522 bf459ea9a523
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Admin/reallymakeall	Fri Aug 04 11:47:28 2000 +0200
@@ -0,0 +1,11 @@
+#/!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