X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=e619d42b0c5ac2d09e3e62ce10f752df961d60de;hb=48059b8aba0445d1ab3b01dd81d67fbb80f9d916;hp=eb080e72dc6f67ccbf4a13422142c368f9d0012f;hpb=814799cbabf73a2551532afa7f9e7128d9ae7bba;p=dunshire.git diff --git a/makefile b/makefile index eb080e7..e619d42 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 + $(SRCDIR)/*.py .PHONY: clean clean: - rm -rf src/dunshire/__pycache__ + rm -rf $(SRCDIR)/__pycache__