Comment out *.sh used for testbenches as we have no more

This commit is contained in:
Eddie Hung 2019-08-28 12:36:20 -07:00
parent 87d5d9b8c8
commit b8a9f73089
1 changed files with 8 additions and 8 deletions

View File

@ -21,13 +21,13 @@ for x in *.ys; do
fi
done
for s in *.sh; do
if [ "$s" != "run-test.sh" ]; then
echo "all:: run-$s"
echo "run-$s:"
echo " @echo 'Running $s..'"
echo " @bash $s"
fi
done
#for s in *.sh; do
# if [ "$s" != "run-test.sh" ]; then
# echo "all:: run-$s"
# echo "run-$s:"
# echo " @echo 'Running $s..'"
# echo " @bash $s"
# fi
#done
} > run-test.mk
exec ${MAKE:-make} -f run-test.mk