summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-10-01 20:57:06 +0200
committerdefault <nobody@localhost>2022-10-01 20:57:06 +0200
commit8bb758206289ad85ebd4624c2673eef42660df9f (patch)
tree40525be70f3ff396b308adf9eb018ca1a3756c5e /Makefile
parent31f29258a144f02b59a4f7d76a120eca415a826d (diff)
Implemented the helper thread.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d0e09d2..9f729b5 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CFLAGS=-g -Wall
all: snac
snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o html.o
- $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -o $@
+ $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -pthread -o $@
.c.o:
$(CC) $(CFLAGS) -I/usr/local/include -c $<