X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=95eb2075a047c007a046684e3790c711ba27132c;hb=d88f8b35c30a8782e7be407bfd1ffdcdae5ed4a6;hp=9f59a36bec439d23ab78cdb1bd24db1b531187af;hpb=ab6aa9c36bc06ae0f14f404bd73d8865b161eb0f;p=dunshire.git diff --git a/makefile b/makefile index 9f59a36..95eb207 100644 --- a/makefile +++ b/makefile @@ -1,11 +1,16 @@ +SRCDIR := src/dunshire + .PHONY: check check: python test/suite.py .PHONY: lint lint: - pylint --reports=n *.py + PYTHONPATH="$(SRCDIR)" pylint \ + --reports=n \ + --good-names='b,c,h,A,C,G,_K,_L,indented_L' \ + $(SRCDIR)/*.py .PHONY: clean clean: - rm -r __pycache__ + rm -rf $(SRCDIR)/__pycache__