summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3f72197..246bbfd 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CFLAGS=-g -Wall
all: snac
-snac: snac.o main.o data.o http.o httpd.o webfinger.o
+snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o
$(CC) -L/usr/local/lib *.o -lcurl -lcrypto -o $@
.c.o:
@@ -14,6 +14,7 @@ clean:
dep:
$(CC) -I/usr/local/include -MM *.c > makefile.depend
+activitypub.o: activitypub.c xs.h xs_encdec.h xs_json.h xs_curl.h snac.h
data.o: data.c xs.h xs_io.h xs_json.h xs_openssl.h snac.h
http.o: http.c xs.h xs_io.h xs_encdec.h xs_openssl.h xs_curl.h snac.h
httpd.o: httpd.c xs.h xs_io.h xs_encdec.h xs_json.h xs_socket.h \