Files
raylib_game/Makefile
T

12 lines
231 B
Makefile
Raw Normal View History

2026-07-06 13:12:17 +07:00
all: build/game
2026-07-03 20:17:31 +03:00
build/game: src/*
2026-07-03 23:36:51 +07:00
mkdir -p build
2026-07-03 23:39:36 +07:00
gcc -o build/game src/* \
2026-07-03 23:36:51 +07:00
-I./raylib-6.0_linux_amd64/include \
-L./raylib-6.0_linux_amd64/lib \
-l:libraylib.a -lm -lX11
2026-07-06 13:12:17 +07:00
format:
find src/ -type f | xargs clang-format -i