started pong game

This commit is contained in:
2024-12-21 16:07:48 +03:00
parent fe4c82aaaa
commit 91a0bf8b9b
2 changed files with 118 additions and 0 deletions

6
pong/Makefile Normal file
View File

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