summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--html.c9
2 files changed, 10 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 246bbfd..df5c2ce 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CFLAGS=-g -Wall
2 2
3all: snac 3all: snac
4 4
5snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.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 -o $@
7 7
8.c.o: 8.c.o:
diff --git a/html.c b/html.c
new file mode 100644
index 0000000..2646e7d
--- /dev/null
+++ b/html.c
@@ -0,0 +1,9 @@
1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 grunfink - MIT license */
3
4#include "xs.h"
5#include "xs_io.h"
6#include "xs_json.h"
7
8#include "snac.h"
9