From 0e169a1dc4869b79559c20e499d807ef5e2975de Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Thu, 12 Sep 2024 16:41:45 +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)