initial commit for coom in opengl

This commit is contained in:
2026-02-25 21:52:48 -05:00
commit 328f839da8
1692 changed files with 304900 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
CC = clang++
CFLAGS = -Wall -Wextra -Iinclude
LIBS = -lglfw -lX11 -lXi -lXcursor -lGL -lasound -ldl -lm
default:
mkdir -p build
$(CC) $(CFLAGS) main.cpp glad.c stb_image.cpp -o build/main $(LIBS)
run:
cd build && prime-run ./main
full:
make && make run
clean:
rm -f build/main