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