From dd22d86abe0df1db0b8b0eb50ddac09e7f96aac5 Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Tue, 19 Jan 2021 13:57:35 +0900 Subject: [PATCH] If we are going to link the modules back to libkuroko, it needs to be built first... --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bc84aaf..725fdfe 100644 --- a/Makefile +++ b/Makefile @@ -51,10 +51,10 @@ kuroko: ${KUROKO_LIBS} %.o: *.h -modules/%.so: src/%.c +modules/%.so: src/%.c libkuroko.so ${CC} ${CFLAGS} -shared -o $@ $< ${LDLIBS} -modules/math.so: src/math.c +modules/math.so: src/math.c libkuroko.so ${CC} ${CFLAGS} -shared -o $@ $< -lm ${LDLIBS} libkuroko.so: ${OBJS}