xighlight/compile.sh

8 lines
99 B
Bash
Raw Normal View History

2023-08-25 17:04:01 -04:00
#!/bin/bash
set -xe
gcc -g -ansi -Wall -Wextra -Wpedantic -Werror -o xighlight xighlight.c
2023-08-25 17:04:01 -04:00
exit