summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-09-23 17:33:33 +0200
committerdefault <nobody@localhost>2022-09-23 17:33:33 +0200
commitbdc166111df38377e0fdcffe386715d1c33c7ef2 (patch)
treeb13a3ec860b38abe4b599e4f6a8f65f5031c8e60 /Makefile
parent6281ef2c92ef8b28e688a99908c4372bd9ba7777 (diff)
[activitypub.c] New file.
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 \