From f481af7e7878085db2edc18905c9aae080f48da5 Mon Sep 17 00:00:00 2001 From: Quinn Date: Sat, 13 Sep 2025 21:16:33 +0200 Subject: [PATCH] fix: incorrect gl.c path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a6eb012..7596e2b 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ endif # find all the source files using wildcards # NOTE: MS-DOS and MS-Windows uses backslash `\`, this might break. RES := $(wildcard res/*) -SRC := $(wildcard src/*.c src/*/*.c src/*/*/*.c src/*/*/*/*.c src/*/*/*/*/*.c src/*/*/*/*/*/*.c src/*/*/*/*/*/*/*.c src/*/*/*/*/*/*/*/*.c) lib/glad/gl.c +SRC := $(wildcard src/*.c src/*/*.c src/*/*/*.c src/*/*/*/*.c src/*/*/*/*/*.c src/*/*/*/*/*/*.c src/*/*/*/*/*/*/*.c src/*/*/*/*/*/*/*/*.c) lib/glad/src/gl.c OBJ := $(SRC:%.c=obj/%.o) $(RES:%=obj/%.o) TSRC := $(wildcard test/*.c test/*/*.c test/*/*/*.c test/*/*/*/*.c test/*/*/*/*/*.c test/*/*/*/*/*/*.c test/*/*/*/*/*/*/*.c test/*/*/*/*/*/*/*/*.c) TOBJ := $(TSRC:%.c=obj/%.o)