From 81c59fd5d1fbe4551af67b20efa267e2b5519892 Mon Sep 17 00:00:00 2001 From: Niklas Larsson Date: Sat, 23 May 2020 18:05:55 +0200 Subject: [PATCH] Fix Windows build --- support/c/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/c/Makefile b/support/c/Makefile index f0110ffe7..e05e0b839 100644 --- a/support/c/Makefile +++ b/support/c/Makefile @@ -27,7 +27,7 @@ $(LIBTARGET): $(OBJS) $(RANLIB) $@ $(DYLIBTARGET): $(OBJS) - $(CC) -shared $(LDFLAGS) -o $@ $^ + $(CC) -shared -o $@ $^ $(LDFLAGS) -include $(DEPS)