Added glad

This commit is contained in:
k
2024-12-06 12:28:35 -05:00
parent d1403cd681
commit b045b1e2d3
6 changed files with 3590 additions and 2 deletions

View File

@@ -4,8 +4,8 @@ CFLAGS := -Wall -Wextra -I headers -ggdb
CXXFLAGS := -Wall -Wextra -I headers -l glfw -ggdb
# List all the source files
C_FILES := $(wildcard *.c)
CPP_FILES := $(wildcard *.cpp)
C_FILES := $(wildcard src/*.c)
CPP_FILES := $(wildcard src/*.cpp)
# Generate corresponding object file names
OBJ_FILES := $(C_FILES:.c=.o) $(CPP_FILES:.cpp=.o)