X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=e619d42b0c5ac2d09e3e62ce10f752df961d60de;hb=48059b8aba0445d1ab3b01dd81d67fbb80f9d916;hp=2ef17ef883fcd4175057c6e1a0481354e44d01d8;hpb=56ea961887d507114174af5f92b8c3c77b0b7a50;p=dunshire.git diff --git a/makefile b/makefile index 2ef17ef..e619d42 100644 --- a/makefile +++ b/makefile @@ -1,11 +1,16 @@ +SRCDIR := src/dunshire + .PHONY: check check: python test/suite.py .PHONY: lint lint: - PYTHONPATH="src/dunshire" pylint --reports=n src/dunshire/*.py + PYTHONPATH="$(SRCDIR)" pylint \ + --reports=n \ + --good-names='b,c,h,A,C,G,_K,_L' \ + $(SRCDIR)/*.py .PHONY: clean clean: - rm -r __pycache__ + rm -rf $(SRCDIR)/__pycache__