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

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
build/

2
compiler_flags.txt Normal file
View file

@ -0,0 +1,2 @@
-Wall
-lraylib

3
main.cpp Normal file
View file

@ -0,0 +1,3 @@
int main() {
return 0;
}

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/*