X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=83b8d8ff1c30ed575fbd91d0db8e877da402f89f;hb=6aff913423ca1f1ec2434650a6065d18a2f6415f;hp=fa29cf8d7dbb80cb81d3e10b3e6b86f1f871754a;hpb=2c440d0cb6dfaacbaa0a8de725ac73d73893aace;p=dunshire.git diff --git a/makefile b/makefile index fa29cf8..83b8d8f 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 -f -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: