8 lines
97 B
Bash
8 lines
97 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
gcc -ansi -Wall -Wextra -Wpedantic -Werror -Ofast -o xerbia xerbia.c
|
|
|
|
exit
|