9 lines
121 B
Makefile
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
|