diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b883a3a --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +# Depends: mkdocs + +all: docs + +docs: docs-prep + mkdocs build + +docs-prep: + mkdir -p docs + ln -sf ../README.md docs/index.md + ln -sf ../USE.md docs/use.md + ln -sf ../ADMIN.md docs/admin.md + +clean: + rm -rf site + rm -rf docs + +PHONY: all clean |