xero/compile.sh

8 lines
89 B
Bash
Raw Normal View History

2023-09-20 07:51:31 -04:00
#!/bin/bash
set -xe
gcc -g -ansi -Wall -Wextra -Wpedantic -Werror -o xero xero.c
exit