thrive/01_text_adventure/Makefile

9 lines
127 B
Makefile

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