diff options
| author | grunfink <grunfink@noreply.codeberg.org> | 2025-01-05 12:16:27 +0000 |
|---|---|---|
| committer | grunfink <grunfink@noreply.codeberg.org> | 2025-01-05 12:16:27 +0000 |
| commit | fced3aa3abae94c97d71ed60bd617c3de47a835d (patch) | |
| tree | 204900c59f112272a759858e9b7641750f97c330 /Makefile | |
| parent | 3a1cae73265aebdbe678d94fbdc16edf3ccc643f (diff) | |
| parent | a0ca57cc670c9c6dad633ba55a73d810ed61e5ce (diff) | |
Merge pull request 'Port sandboxing to linux via landlock' (#226) from shtrophic/snac2:master into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/226
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ CFLAGS?=-g -Wall -Wextra -pedantic all: snac -snac: snac.o main.o data.o http.o httpd.o webfinger.o \ +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 $(CC) $(CFLAGS) -L$(PREFIX)/lib *.o -lcurl -lcrypto $(LDFLAGS) -pthread -o $@ @@ -36,6 +36,9 @@ uninstall: activitypub.o: activitypub.c xs.h xs_json.h xs_curl.h xs_mime.h \ xs_openssl.h xs_regex.h xs_time.h xs_set.h xs_match.h snac.h \ http_codes.h +sandbox.o: sandbox.c xs.h xs_hex.h xs_io.h xs_json.h xs_openssl.h \ + xs_glob.h xs_set.h xs_time.h xs_regex.h xs_match.h xs_unicode.h \ + landloc.h snac.h data.o: data.c xs.h xs_hex.h xs_io.h xs_json.h xs_openssl.h xs_glob.h \ xs_set.h xs_time.h xs_regex.h xs_match.h xs_unicode.h xs_random.h snac.h \ http_codes.h |