X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;fp=makefile;h=63192024af65d6e4c544ec3f5d3e64281a022497;hb=839939c0d080dfe1c3adeee1e6565aac13c545bf;hp=fa29cf8d7dbb80cb81d3e10b3e6b86f1f871754a;hpb=920c93e69916d70c293c8ab0caccb0b4d8ffb073;p=dunshire.git diff --git a/makefile b/makefile index fa29cf8..6319202 100644 --- 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: