c-connect-four/build.sh
2022-05-23 15:36:13 +01:00

7 lines
79 B
Bash
Executable File

#!/bin/bash
set -xe
CFLAGS="-Wall -Werror -ggdb"
gcc $CFLAGS -o four main.c