diff options
| author | 2025-01-05 12:16:27 +0000 | |
|---|---|---|
| committer | 2025-01-05 12:16:27 +0000 | |
| commit | fced3aa3abae94c97d71ed60bd617c3de47a835d (patch) | |
| tree | 204900c59f112272a759858e9b7641750f97c330 /Makefile | |
| parent | Moved post language setting to msg_note(), where it really belongs. (diff) | |
| parent | update landloc.h (diff) | |
| download | snac2-fced3aa3abae94c97d71ed60bd617c3de47a835d.tar.gz snac2-fced3aa3abae94c97d71ed60bd617c3de47a835d.tar.xz snac2-fced3aa3abae94c97d71ed60bd617c3de47a835d.zip | |
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 | |||
| 4 | 4 | ||
| 5 | all: snac | 5 | all: snac |
| 6 | 6 | ||
| 7 | snac: snac.o main.o data.o http.o httpd.o webfinger.o \ | 7 | snac: snac.o main.o sandbox.o data.o http.o httpd.o webfinger.o \ |
| 8 | activitypub.o html.o utils.o format.o upgrade.o mastoapi.o | 8 | activitypub.o html.o utils.o format.o upgrade.o mastoapi.o |
| 9 | $(CC) $(CFLAGS) -L$(PREFIX)/lib *.o -lcurl -lcrypto $(LDFLAGS) -pthread -o $@ | 9 | $(CC) $(CFLAGS) -L$(PREFIX)/lib *.o -lcurl -lcrypto $(LDFLAGS) -pthread -o $@ |
| 10 | 10 | ||
| @@ -36,6 +36,9 @@ uninstall: | |||
| 36 | activitypub.o: activitypub.c xs.h xs_json.h xs_curl.h xs_mime.h \ | 36 | activitypub.o: activitypub.c xs.h xs_json.h xs_curl.h xs_mime.h \ |
| 37 | xs_openssl.h xs_regex.h xs_time.h xs_set.h xs_match.h snac.h \ | 37 | xs_openssl.h xs_regex.h xs_time.h xs_set.h xs_match.h snac.h \ |
| 38 | http_codes.h | 38 | http_codes.h |
| 39 | sandbox.o: sandbox.c xs.h xs_hex.h xs_io.h xs_json.h xs_openssl.h \ | ||
| 40 | xs_glob.h xs_set.h xs_time.h xs_regex.h xs_match.h xs_unicode.h \ | ||
| 41 | landloc.h snac.h | ||
| 39 | data.o: data.c xs.h xs_hex.h xs_io.h xs_json.h xs_openssl.h xs_glob.h \ | 42 | data.o: data.c xs.h xs_hex.h xs_io.h xs_json.h xs_openssl.h xs_glob.h \ |
| 40 | xs_set.h xs_time.h xs_regex.h xs_match.h xs_unicode.h xs_random.h snac.h \ | 43 | xs_set.h xs_time.h xs_regex.h xs_match.h xs_unicode.h xs_random.h snac.h \ |
| 41 | http_codes.h | 44 | http_codes.h |