diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,7 @@ CFLAGS=-g -Wall all: snac -snac: snac.o main.o data.o http.o httpd.o webfinger.o +snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -o $@ .c.o: @@ -14,6 +14,7 @@ clean: dep: $(CC) -I/usr/local/include -MM *.c > makefile.depend +activitypub.o: activitypub.c xs.h xs_encdec.h xs_json.h xs_curl.h snac.h data.o: data.c xs.h xs_io.h xs_json.h xs_openssl.h snac.h http.o: http.c xs.h xs_io.h xs_encdec.h xs_openssl.h xs_curl.h snac.h httpd.o: httpd.c xs.h xs_io.h xs_encdec.h xs_json.h xs_socket.h \ |