Files
games-collection/3d-test/Makefile
2024-12-24 15:08:39 +03:00

7 lines
131 B
Makefile

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