14 lines
190 B
Bash
14 lines
190 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
# WIP
|
|
|
|
rm -rf *.o *.ali
|
|
|
|
gnatmake -o xabina main.adb
|
|
|
|
stty raw -echo && valgrind --show-leak-kinds=all --leak-check=full --log-file=log.txt ./xabina && stty sane
|
|
|
|
exit
|