blob: e0f4d6b501552f48dd798df6dd2765c547beb69d (
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
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
|