From 88b6f6cf0e6b743ad747de6c2ab79782c66af58c Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 11 Aug 2025 10:04:27 +0200 Subject: [PATCH] modify includes --- lib/glad/{ => include/glad}/gl.h | 0 makefile | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename lib/glad/{ => include/glad}/gl.h (100%) diff --git a/lib/glad/gl.h b/lib/glad/include/glad/gl.h similarity index 100% rename from lib/glad/gl.h rename to lib/glad/include/glad/gl.h diff --git a/makefile b/makefile index 5cf3ff6..8182dcb 100644 --- a/makefile +++ b/makefile @@ -14,7 +14,8 @@ VERSION := 0.0.0 DEBUG ?= 0 CC ?= cc LD ?= ld -CFLAGS += -c -std=gnu99 -Wall -Wextra -Wpedantic -Ilib -MMD -MP +CFLAGS += -c -std=gnu99 -Wall -Wextra -Wpedantic -MMD -MP +CFLAGS += -Ilib/glad/include -Ilib/glfw/include -Ilib/libarchive/include LDFLAGS += -flto -lm MARCH ?= $(shell uname -m) KERNEL ?= $(shell uname -s | tr '[:upper:]' '[:lower:]')