Started simplifying main.c by modularizing different subsystems

This commit is contained in:
2024-01-13 22:52:39 -05:00
parent 46bde19035
commit 922a02aa1c
17 changed files with 209 additions and 107 deletions

View File

@ -25,7 +25,7 @@ LDLIBS =
# add include paths (start with -I)
INC =
# finds all your objects that corrispond to your .cpp files, system agnostic version
# finds all your objects that corrispond to your .c files, system agnostic version
OBJECTS := $(patsubst $(SRC_DIR)/%.c, $(BUILD_DIR)/%.o, $(wildcard $(SRC_DIR)/*.c))
.PHONY: all