summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-10-04 08:51:24 +0200
committerdefault <nobody@localhost>2022-10-04 08:51:24 +0200
commit4bb40857b23a57c5be581a5f33591954e2298344 (patch)
tree476205329eec92ff7ded1af31cb0e75ec517fb75 /Makefile
parent417be716e5d448879c5ae16f2e9bb723a8916077 (diff)
New function initdb().
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 87ff32d..1a3e6a6 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 activitypub.o html.o
+snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o html.o utils.o
$(CC) -L/usr/local/lib *.o -lcurl -lcrypto -pthread -o $@
.c.o:
@@ -27,4 +27,5 @@ main.o: main.c xs.h xs_io.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 xs_mime.h xs_regex.h xs_set.h xs_time.h xs_glob.h \
snac.h
+utils.o: utils.c xs.h xs_io.h xs_encdec.h xs_json.h snac.h
webfinger.o: webfinger.c xs.h xs_encdec.h xs_json.h xs_curl.h snac.h