summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-09-20 20:12:21 +0200
committerdefault <nobody@localhost>2022-09-20 20:12:21 +0200
commit9a38cfb70f40dcfd1c2980448bf4c6f594f8db64 (patch)
tree8113d0499047a68c1d2479fafb2a6381c990c361 /Makefile
parent2766fbd49cfba346dbaea1914adc4118e1176e1e (diff)
[http.c] new file.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01a21de..f539c75 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CFLAGS=-g -Wall
all: snac
-snac: snac.o main.o data.o
+snac: snac.o main.o data.o http.o
$(CC) -L/usr/local/lib *.o -lcurl -lcrypto -o $@
.c.o:
@@ -17,3 +17,5 @@ snac.o: snac.c snac.h \
main.o: main.c snac.h xs.h
data.o: data.c snac.h xs.h xs_json.h
+
+http.o: http.c snac.h xs.h xs_io.h xs_encdec.h xs_openssl.h xs_curl.h