This commit is contained in:
2025-04-20 15:46:26 -04:00
commit 4d7e7cdecc
5 changed files with 4963 additions and 0 deletions

13
glfw/Makefile Normal file
View File

@ -0,0 +1,13 @@
CC=g++
CFLAGS= -Wall
LDLIBS = -lglfw
TARGET := test
build:
$(CC) $(LDLIBS) src/*.c src/*.cpp -o $(TARGET)
.PHONY: clean
clean:
rm -rf $(BUILD_DIR)