c-tictactoe/build.sh
2022-05-21 22:36:57 +01:00

6 lines
86 B
Bash
Executable File

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