mirror of
https://github.com/fredrikr79/SnakeDL3.git
synced 2025-12-24 19:20:21 +01:00
11 lines
163 B
Makefile
11 lines
163 B
Makefile
clean:
|
|
rm -rf out/
|
|
mkdir out/
|
|
|
|
compile:
|
|
gcc -W -Wall -Wextra -pedantic -o out/main src/main.c -Iinclude -lpthread -Llib -lSDL3
|
|
|
|
run:
|
|
make compile
|
|
./out/main
|