From d8e42552ee2ccd8d59af2e6f474075f03c2f845b Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 10 Aug 2025 15:45:25 -0400 Subject: [PATCH] Remove os check --- makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/makefile b/makefile index c2c9531..0e4d9f7 100644 --- a/makefile +++ b/makefile @@ -7,13 +7,6 @@ INCDIR := engine/include BUILDDIR := build LIBNAME := libchess -UNAME_S := $(shell uname -s) -ifeq ($(UNAME_S),Darwin) - SOEXT := dylib -else - SOEXT := so -endif - SRC := $(wildcard $(SRCDIR)/*.c) OBJ := $(patsubst $(SRCDIR)/%.c,$(BUILDDIR)/%.o,$(SRC)) LIB := $(BUILDDIR)/$(LIBNAME).$(SOEXT)