]> gitweb.michael.orlitzky.com - dunshire.git/blobdiff - makefile
Fix (or cover up) a bunch of pylint warnings.
[dunshire.git] / makefile
index 9f59a36bec439d23ab78cdb1bd24db1b531187af..813d7288fec49cb687e49b017145a51d50f74453 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,11 +1,21 @@
+SRCDIR := src/dunshire
+SRCS := $(SRCDIR)/*.py
+
+doc: $(SRCS) doc/source/conf.py doc/makefile
+       sphinx-apidoc -f -o doc/source $(SRCDIR)
+       cd doc && $(MAKE) html
+
 .PHONY: check
 check:
        python test/suite.py
 
 .PHONY: lint
 lint:
-       pylint --reports=n *.py
+       PYTHONPATH="$(SRCDIR)" pylint \
+               --reports=n \
+               --good-names='b,c,e1,e2,h,A,C,G,K,_K,L,L_matrix,_L,indented_L,M' \
+               $(SRCS)
 
 .PHONY: clean
 clean:
-       rm -r __pycache__
+       rm -rf $(SRCDIR)/__pycache__