]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - makefile
Begin adding Sphinx crap for API doc generation.
[dunshire.git] / makefile
index fa29cf8d7dbb80cb81d3e10b3e6b86f1f871754a..63192024af65d6e4c544ec3f5d3e64281a022497 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,4 +1,9 @@
 SRCDIR := src/dunshire
+SRCS := $(SRCDIR)/*.py
+
+doc: $(SRCS) doc/source/conf.py doc/makefile
+       sphinx-apidoc -o doc/source $(SRCDIR)
+       cd doc && $(MAKE) html
 
 .PHONY: check
 check:
@@ -9,7 +14,7 @@ lint:
        PYTHONPATH="$(SRCDIR)" pylint \
                --reports=n \
                --good-names='b,c,e1,e2,h,A,C,G,K,_K,L,L_matrix,_L,indented_L' \
-               $(SRCDIR)/*.py
+               $(SRCS)
 
 .PHONY: clean
 clean: