From 9920e06c20d4091a1114fc2c26f2e7f008ba9a7e Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Tue, 9 Dec 2025 17:15:58 -0600 Subject: [PATCH] Makefile: no GLFW check on Darwin --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 1431427..0671796 100644 --- a/Makefile +++ b/Makefile @@ -38,9 +38,11 @@ endif OBJCOPY ?= objcopy +ifneq ($(shell uname),Darwin) ifndef GLFW $(error GLFW undefined) endif +endif ifdef I386 ARCH='-m32'