Move makefile to root

This commit is contained in:
2023-02-18 10:33:40 +01:00
parent 3bf5d68074
commit 76d93bb1cf
2 changed files with 9 additions and 9 deletions

9
execute-all.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
programs=$(ls test/*.out)
for p in $programs; do
echo "Running $p ..."
./$p
echo ""
done;