snek time

This commit is contained in:
2024-12-23 22:38:16 +03:00
parent e58094787f
commit 6dafffb522
3 changed files with 274 additions and 8 deletions

6
snake/Makefile Normal file
View File

@@ -0,0 +1,6 @@
SRC := ../util.c snek.c
OUT := ../bin/snek
LIBS := -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
make all:
gcc $(SRC) -o $(OUT) $(LIBS)