12 lines
231 B
Makefile
12 lines
231 B
Makefile
all: build/game
|
|
|
|
build/game: src/*
|
|
mkdir -p build
|
|
gcc -o build/game src/* \
|
|
-I./raylib-6.0_linux_amd64/include \
|
|
-L./raylib-6.0_linux_amd64/lib \
|
|
-l:libraylib.a -lm -lX11
|
|
|
|
format:
|
|
find src/ -type f | xargs clang-format -i
|