From 8737b9bb43dacf8a5caf2978d935277bbd139bf0 Mon Sep 17 00:00:00 2001 From: HugoBroudeur Date: Wed, 27 May 2026 16:37:01 +0100 Subject: [PATCH] Fix Makefile to support Windows OS Updated Makefile to handle Windows OS without error. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ebfe5768..88ee1aa2 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,8 @@ else ifneq ($(findstring MSYS_NT,$(UNAME)),) OS := windows EXT := dll else - $(error Unsupported operating system: $(UNAME)) + OS := windows + EXT := dll endif LUA_VERSIONS := luajit lua51