summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-09-21 21:12:49 +0200
committerdefault <nobody@localhost>2022-09-21 21:12:49 +0200
commit6e4294f8e8a9efd7e5e5670554fe18d7462c5fe3 (patch)
tree5f0d3ba0dd8b629fa03b3294f1dd3e3b21a6c513 /Makefile
parenta19d509b87e4f3472f0ac4ae058f9d32384215e7 (diff)
Added a webfinger handler.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8fc8eb1..eec1008 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
+snac: snac.o main.o data.o http.o httpd.o webfinger.o
$(CC) -L/usr/local/lib *.o -lcurl -lcrypto -o $@
.c.o:
@@ -21,3 +21,4 @@ httpd.o: httpd.c xs.h xs_io.h xs_encdec.h xs_json.h xs_socket.h \
main.o: main.c xs.h xs_encdec.h xs_json.h snac.h
snac.o: snac.c xs.h xs_io.h xs_encdec.h xs_json.h xs_curl.h \
xs_openssl.h xs_socket.h xs_httpd.h snac.h
+webfinger.o: webfinger.c xs.h xs_encdec.h xs_json.h snac.h