thrive/01_text_adventure/Makefile

9 lines
121 B
Makefile
Raw Normal View History

2024-08-28 17:27:35 -04:00
build:
gcc main.c input.c -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 -o game
run: build
./game
clean:
rm -f ./game