This commit is contained in:
2025-04-20 16:05:10 -04:00
parent 4d7e7cdecc
commit 38a7285c2b
20 changed files with 14923 additions and 0 deletions

13
1-5/exercises/1/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)