mirror of
https://github.com/fredrikr79/SnakeDL3.git
synced 2025-12-24 11:10:22 +01:00
14 lines
362 B
Makefile
14 lines
362 B
Makefile
clean:
|
|
rm -rf out/
|
|
mkdir out/
|
|
|
|
compile:
|
|
gcc -W -Wall -Wextra -pedantic -o out/main src/main.c src/utils/arena.c src/utils/vector.c -Iinclude -Iutils -lpthread -Llib -lSDL3
|
|
|
|
debug:
|
|
gcc -W -Wall -Wextra -pedantic -g -O0 -o out/main_debug src/main.c src/utils/arena.c src/utils/vector.c -Iinclude -Iutils -lpthread -Llib -lSDL3
|
|
|
|
run:
|
|
make compile
|
|
./out/main
|