From 1140bd97bf8624116acaddc64816479b6bd96516 Mon Sep 17 00:00:00 2001 From: Quinn Date: Sat, 13 Sep 2025 21:32:33 +0200 Subject: [PATCH] fix: linking library glfw, whilst the library compilation produces libglfw3. This slight discrepancy is a tad annoying, since it doesn't work backwards so it uses my system's version. But we'll figure something for that out later... probably. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7864c43..a9d9696 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ LDFLAGS += -fsanitize=address -ftrapv endif CPPFLAGS += -Iinclude -Ilib/glad/include -Ilib/glfw/include -Ilib/libarchive/libarchive LDFLAGS += -Llib/obj/glfw/src -Llib/obj/libarchive/libarchive -LDLIBS += -lm -lglfw -larchive +LDLIBS += -lm -lglfw3 -larchive # detect if we're compiling on Windows, meaning # a lot of things considered "standard" are unavailable.