From a820db4c9c61e91949d5358383e7abe8dd639093 Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Fri, 6 Jan 2023 03:26:31 +0100 Subject: [PATCH] fix(Makefile): build target we were not creating a shared library :( --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c0ccfb7..716122a 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,4 @@ build: - $(CC) -fPIC -c src/parser.c -o parser/http.so $(CFLAGS) + $(CC) -fPIC -c src/parser.c -o parser.o $(CFLAGS) + $(CC) -shared -o parser/http.so *.o