blob: b2b2f57b96dae4437df8068014d25aa7799b781c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
all:
LC_ALL=C.UTF-8 LANG=C.UTF-8 mkdocs build --clean --quiet
cp -af htaccess site/.htaccess
.PHONY: clean
clean:
rm -Rf site
.PHONY: test
test:
curl -sSf -o /dev/null https://nuetzlich.net/gocryptfs
# These should redirect to the new names
curl -sSf -o /dev/null https://nuetzlich.net/gocryptfs/security
curl -sSf -o /dev/null https://nuetzlich.net/gocryptfs/reverse_mode
|