aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 9ace5fa64c6eb8ee50f843e77c46a057cddac535 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
check:
	sh aux/assert-shellcheck.sh
	sh aux/assert-todos.sh
	sh aux/assert-nixfmt.sh
	sh sh/templates/aux/assert-clang-format.sh

dev-check: check

clean:
	rm -rf public/

public:
	mkdir -p public

.PHONY: clean check dev-check