This commit is contained in:
2026-02-05 00:41:41 -06:00
commit 269e06dae5
3 changed files with 201 additions and 0 deletions

7
Makefile Executable file
View File

@@ -0,0 +1,7 @@
LIBS="-I/home/iceyrazor/stuff/scripts/c/my_utils"
main: main.c
clang -O3 -o game-of-life main.c ${LIBS} `sdl2-config --cflags --libs` -lm
debug: main.c
clang -O3 -o game-of-life main.c ${LIBS} `sdl2-config --cflags --libs` -Wall -lm -fsanitize=address -g