From 0c4532831ae2aa54e4447c6f7789ee7867275797 Mon Sep 17 00:00:00 2001 From: Ivan Polyakov Date: Mon, 10 Oct 2022 21:55:47 +0300 Subject: [PATCH] fixed compilation of server module --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 89ac9c6..e000e7e 100644 --- a/Makefile +++ b/Makefile @@ -62,6 +62,9 @@ librapida.a: $(COBJ) librapidaxx.a: $(COBJ) $(CXXOBJ) ar rvs $@ $^ +servers/%.o: servers/%.c + $(CC) $(CFLAGS) -fPIC $< -c -o $@ + c/%.o: c/%.c $(CC) $(CFLAGS) -fPIC $< -c -o $@