We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a42808 commit c1678ecCopy full SHA for c1678ec
Makefile
@@ -24,13 +24,13 @@ watch_test:
24
if command -v entr > /dev/null; then ${PY_FILES} | entr -c $(MAKE) test; else $(MAKE) test entr_warn; fi
25
26
build_docs:
27
- poetry run mkdocs build
+ $(MAKE) -C docs html
28
29
watch_docs:
30
if command -v entr > /dev/null; then ${DOC_FILES} | entr -c $(MAKE) build_docs; else $(MAKE) build_docs entr_warn; fi
31
32
serve_docs:
33
- python -m http.server --directory site
+ $(MAKE) -C docs serve
34
35
dev_docs:
36
$(MAKE) -j watch_docs serve_docs
0 commit comments