Admin/reallymakeall
changeset 9522 bf459ea9a523
equal deleted inserted replaced
9521:c396d1092430 9522:bf459ea9a523
       
     1 #/!bin/bash
       
     2 
       
     3 ISATOOL=${ISATOOL:-isatool}
       
     4 type -p "$ISATOOL" >/dev/null || { echo "isatool not found!" >&2; exit 2; }
       
     5 
       
     6 for FILE in $(find . -name IsaMakefile -print)
       
     7 do
       
     8   DIR=$(dirname "$FILE")
       
     9   echo "Entering $DIR ..."
       
    10   ( cd "$DIR"; $ISATOOL make "$@"; )
       
    11 done