Files
games-collection/pong/Makefile
2024-12-21 16:07:48 +03:00

7 lines
136 B
Makefile

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