summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-09-21 18:27:30 +0200
committerdefault <nobody@localhost>2022-09-21 18:27:30 +0200
commite7c886beb77a570cdac02bc36077e247618e2e20 (patch)
treeb308aa531635b9237699abadb541d1a99cab7d4a /Makefile
parent7efb6d5833c20a82ccb4bf2c89e5ce43831db540 (diff)
More httpd work.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cc3fc0b..2a47479 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CFLAGS=-g -Wall
all: snac
-snac: snac.o main.o data.o http.o
+snac: snac.o main.o data.o http.o httpd.o
$(CC) -L/usr/local/lib *.o -lcurl -lcrypto -o $@
.c.o:
@@ -19,3 +19,5 @@ main.o: main.c snac.h xs.h
data.o: data.c snac.h xs.h xs_json.h xs_openssl.h
http.o: http.c snac.h xs.h xs_io.h xs_encdec.h xs_openssl.h xs_curl.h
+
+httpd.o: http.c snac.h xs.h xs_encdec.h xs_socket.h xs_httpd.h