thrive/01_text_adventure/Makefile

9 lines
127 B
Makefile
Raw Normal View History

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