From b249d969faeb8afd953f4a8423f6707dde1e314a Mon Sep 17 00:00:00 2001 From: ColleagueRiley Date: Mon, 6 Jan 2025 17:11:39 -0500 Subject: [PATCH] make links even more minimal --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 75e2f388..cbf15e8a 100644 --- a/Makefile +++ b/Makefile @@ -190,7 +190,7 @@ else ifeq ($(detected_OS),Linux) else ifeq ($(detected_OS),windows) $(CC) $(CFLAGS) $(WARNINGS) -I. $< -lkernel32 -lgdi32 -lshell32 -lUser32 -nostdlib -o $@$(EXT) else ifeq ($(detected_OS),Darwin) - $(CC) $(CFLAGS) -fno-stack-protector $(WARNINGS) -I. $< -framework Foundation -framework AppKit -framework CoreServices -o $@$(EXT) + $(CC) $(CFLAGS) -fno-stack-protector $(WARNINGS) -I. $< -framework Cocoa -o $@$(EXT) else @echo nostl is not supported on this platform endif