diff options
| author | Ruben Beltran del Rio <rbdr@bravo-i.local> | 2026-04-15 16:59:19 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <rbdr@bravo-i.local> | 2026-04-15 16:59:19 +0200 |
| commit | 6fc748933ad263ba0e8c78eb9ae1e085a2b0dfb2 (patch) | |
| tree | e82d7cf345ed9c0e4b40e6156c509eb48aef13ee /Makefile | |
| parent | 5e1dbb58904ad39f20cd8e90c5d8dded2a6ca2ad (diff) | |
Add neighborhood featuremaster
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -5,7 +5,8 @@ CFLAGS?=-g -Wall -Wextra -pedantic all: snac snac: snac.o main.o sandbox.o data.o http.o httpd.o webfinger.o \ - activitypub.o html.o utils.o format.o upgrade.o mastoapi.o rss.o + activitypub.o html.o utils.o format.o upgrade.o mastoapi.o rss.o \ + neighborhood.o $(CC) $(CFLAGS) -L$(PREFIX)/lib *.o -lcurl -lcrypto $(LDFLAGS) -pthread -o $@ test: tests/smtp @@ -81,3 +82,6 @@ utils.o: utils.c xs.h xs_io.h xs_json.h xs_time.h xs_openssl.h \ xs_list_tools.h xs_set.h snac.h webfinger.o: webfinger.c xs.h xs_json.h xs_curl.h xs_mime.h xs_http.h \ xs_http_codes.h snac.h +# BEGIN neighborhood +neighborhood.o: neighborhood.c xs.h xs_set.h snac.h +# END neighborhood |