- license and readme

- removed make file inplace of make shell script
This commit is contained in:
2026-02-06 03:57:48 -06:00
parent 536087b7c7
commit 9f87173d43
4 changed files with 30 additions and 7 deletions

6
make Executable file
View File

@@ -0,0 +1,6 @@
#!/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