summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4bc6cfa..ea3043c 100644
--- a/Makefile
+++ b/Makefile
@@ -36,9 +36,13 @@ MI_FLAGS = \
HASHMAP_DIR = $(WORK_DIR)/hashmap
HASHMAP_SOURCE = $(HASHMAP_DIR)/hashmap.c
+GLAD_DIR = $(WORK_DIR)/glad
+GLAD_SOURCE = $(GLAD_DIR)/glad.c
+
CSH_FLAGS += \
-I$(MI_INCLUDE) \
-I$(HASHMAP_DIR) \
+ -I$(GLAD_DIR)
MI_GENERATOR = "Unix Makefiles"
@@ -53,6 +57,7 @@ SOURCES = \
$(SRC_DIR)/events.c \
$(SRC_DIR)/window.c \
$(SRC_DIR)/graphics.cc \
+ $(GLAD_DIR)/glad.c \
$(HASHMAP_SOURCE)
OBJECTS := $(SOURCES:.cc=.o)