Initial commit

This commit is contained in:
rendo 2026-03-10 09:02:44 +05:00
commit c4fc4b2a65
4 changed files with 15 additions and 0 deletions

8
makefile Normal file
View file

@ -0,0 +1,8 @@
CFLAGS=$(cat compiler_flags.txt//"\n"/" ")
build/raylib-test-linux.x86_64 : main.cpp
mkdir -p build
clang main.cpp $(CFLAGS) -o build/raylib-test-linux.x86_64
clean :
rm -r build/*