8 lines
259 B
Makefile
Executable File
8 lines
259 B
Makefile
Executable File
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
|