This commit is contained in:
2025-04-20 17:42:24 -04:00
parent 38a7285c2b
commit 61c1ac5fb0
32 changed files with 20114 additions and 0 deletions

13
6/exercises/1/Makefile Normal file
View File

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