thrive/01_text_adventure/Makefile
2024-08-28 17:27:35 -04:00

9 lines
121 B
Makefile

build:
gcc main.c input.c -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 -o game
run: build
./game
clean:
rm -f ./game