aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 6f808d75a6e1779294e1b9a1c11623a70b249b54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.POSIX:

check-guile:
	guile tests/unit-tests.scm

check-shellcheck:
	sh aux/assert-shellcheck.sh

check-todos:
	sh aux/workflow/assert-todos.sh

check: check-guile check-shellcheck check-todos

clean:
	rm -rf public/ *.log

dev-check: check

public:
	sh aux/workflow/public.sh Servers servers public-inbox

.PHONY: check clean dev-check