summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar default2022-10-01 20:57:06 +0200
committerGravatar default2022-10-01 20:57:06 +0200
commit8bb758206289ad85ebd4624c2673eef42660df9f (patch)
tree40525be70f3ff396b308adf9eb018ca1a3756c5e /Makefile
parentUpdated TODO. (diff)
downloadpenes-snac2-8bb758206289ad85ebd4624c2673eef42660df9f.tar.gz
penes-snac2-8bb758206289ad85ebd4624c2673eef42660df9f.tar.xz
penes-snac2-8bb758206289ad85ebd4624c2673eef42660df9f.zip
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
3all: snac 3all: snac
4 4
5snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o html.o 5snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o html.o
6 $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -o $@ 6 $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -pthread -o $@
7 7
8.c.o: 8.c.o:
9 $(CC) $(CFLAGS) -I/usr/local/include -c $< 9 $(CC) $(CFLAGS) -I/usr/local/include -c $<