Files
game-of-life/make
iceyrazor 9f87173d43 - license and readme
- removed make file inplace of make shell script
2026-02-06 03:57:48 -06:00

7 lines
213 B
Bash
Executable File

#!/bin/sh
if [[ "$1" == "debug" ]]; then
clang -O3 -o game-of-life main.c `sdl2-config --cflags --libs` -lm -Wall -fsanitize=address -g
else
clang -O3 -o game-of-life main.c `sdl2-config --cflags --libs` -lm
fi