commit c4fc4b2a65fc3e3913ce7c28d65bd19cb0f4be60 Author: rendo Date: Tue Mar 10 09:02:44 2026 +0500 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dc84959 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +build/ + diff --git a/compiler_flags.txt b/compiler_flags.txt new file mode 100644 index 0000000..66713b8 --- /dev/null +++ b/compiler_flags.txt @@ -0,0 +1,2 @@ +-Wall +-lraylib diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..cb3f748 --- /dev/null +++ b/main.cpp @@ -0,0 +1,3 @@ +int main() { + return 0; +} diff --git a/makefile b/makefile new file mode 100644 index 0000000..36263c7 --- /dev/null +++ b/makefile @@ -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/*