diff options
| author | 2022-10-04 08:51:24 +0200 | |
|---|---|---|
| committer | 2022-10-04 08:51:24 +0200 | |
| commit | 4bb40857b23a57c5be581a5f33591954e2298344 (patch) | |
| tree | 476205329eec92ff7ded1af31cb0e75ec517fb75 /Makefile | |
| parent | Updated TODO. (diff) | |
| download | snac2-4bb40857b23a57c5be581a5f33591954e2298344.tar.gz snac2-4bb40857b23a57c5be581a5f33591954e2298344.tar.xz snac2-4bb40857b23a57c5be581a5f33591954e2298344.zip | |
New function initdb().
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -2,7 +2,7 @@ CFLAGS=-g -Wall | |||
| 2 | 2 | ||
| 3 | all: snac | 3 | all: snac |
| 4 | 4 | ||
| 5 | snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o html.o | 5 | snac: snac.o main.o data.o http.o httpd.o webfinger.o activitypub.o html.o utils.o |
| 6 | $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -pthread -o $@ | 6 | $(CC) -L/usr/local/lib *.o -lcurl -lcrypto -pthread -o $@ |
| 7 | 7 | ||
| 8 | .c.o: | 8 | .c.o: |
| @@ -27,4 +27,5 @@ main.o: main.c xs.h xs_io.h xs_encdec.h xs_json.h snac.h | |||
| 27 | snac.o: snac.c xs.h xs_io.h xs_encdec.h xs_json.h xs_curl.h xs_openssl.h \ | 27 | snac.o: snac.c xs.h xs_io.h xs_encdec.h xs_json.h xs_curl.h xs_openssl.h \ |
| 28 | xs_socket.h xs_httpd.h xs_mime.h xs_regex.h xs_set.h xs_time.h xs_glob.h \ | 28 | xs_socket.h xs_httpd.h xs_mime.h xs_regex.h xs_set.h xs_time.h xs_glob.h \ |
| 29 | snac.h | 29 | snac.h |
| 30 | utils.o: utils.c xs.h xs_io.h xs_encdec.h xs_json.h snac.h | ||
| 30 | webfinger.o: webfinger.c xs.h xs_encdec.h xs_json.h xs_curl.h snac.h | 31 | webfinger.o: webfinger.c xs.h xs_encdec.h xs_json.h xs_curl.h snac.h |