9 lines
184 B
Bash
Executable File
9 lines
184 B
Bash
Executable File
set -euo pipefail
|
|
|
|
if [ ! -e build ]; then
|
|
mkdir build
|
|
fi
|
|
cd build
|
|
clang ../src/main.c -g -Wextra -Werror -Wall -std=c11 -lSDL3 -lSDL3_ttf -lm -fdiagnostics-absolute-paths
|
|
./a.out
|