From d87b7aee66168d72200e5a40731d501049850a4b Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Thu, 12 Sep 2024 16:41:08 +0200 Subject: [PATCH] Fix deps --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 668809d..fdf2e86 100644 --- a/Makefile +++ b/Makefile @@ -82,7 +82,7 @@ ifeq ($(UNAME_S),Linux) $(CXX) -g -shared -Wl,-soname,$(SONAME) -o $(OUTDIR)/$(REALNAME) $(LDFLAGS) $(OBJS) $(LDLIBS) endif --include $(addprefix $(BUILDDIR), $(DEPS)) +-include $(DEPS) $(OUTDIR)/$(STATICLIB): $(OBJS) ar r $(OUTDIR)/$(STATICLIB) $(OBJS)