8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-22 11:23:10 +00:00
This commit is contained in:
Hugo LEVY-FALK 2018-03-22 10:29:03 +01:00
parent 309cc60ef1
commit b109126c4f

View file

@ -43,6 +43,7 @@ help:
@echo " doctest to run all doctests embedded in the documentation (if enabled)" @echo " doctest to run all doctests embedded in the documentation (if enabled)"
@echo " coverage to run coverage check of the documentation (if enabled)" @echo " coverage to run coverage check of the documentation (if enabled)"
@echo " dummy to check syntax errors of document sources" @echo " dummy to check syntax errors of document sources"
@echo " apidoc to generate autodoc"
.PHONY: clean .PHONY: clean
clean: clean:
@ -223,3 +224,9 @@ dummy:
$(SPHINXBUILD) -b dummy $(ALLSPHINXOPTS) $(BUILDDIR)/dummy $(SPHINXBUILD) -b dummy $(ALLSPHINXOPTS) $(BUILDDIR)/dummy
@echo @echo
@echo "Build finished. Dummy builder generates no files." @echo "Build finished. Dummy builder generates no files."
.PHONY: apidoc
apidoc:
sphinx-apidoc -o source ../
@echo
@echo "Generated autodoc"