Fix makefile
All checks were successful
Python tests (make) / test (push) Successful in 10s

This commit is contained in:
2025-08-15 12:59:00 -04:00
parent 51d8bb8c94
commit d462f82c8e

View File

@@ -9,7 +9,7 @@ LIBNAME := libchess
SRC := $(wildcard $(SRCDIR)/*.c) SRC := $(wildcard $(SRCDIR)/*.c)
OBJ := $(patsubst $(SRCDIR)/%.c,$(BUILDDIR)/%.o,$(SRC)) OBJ := $(patsubst $(SRCDIR)/%.c,$(BUILDDIR)/%.o,$(SRC))
LIB := $(BUILDDIR)/$(LIBNAME).$(SOEXT) LIB := $(BUILDDIR)/$(LIBNAME).so
.PHONY: all clean clean-pycache test .PHONY: all clean clean-pycache test