]> gitweb.michael.orlitzky.com - dunshire.git/blob - makefile
Add one more variable exception to the `make lint` target.
[dunshire.git] / makefile
1 SRCDIR := src/dunshire
2
3 .PHONY: check
4 check:
5 python test/suite.py
6
7 .PHONY: lint
8 lint:
9 PYTHONPATH="$(SRCDIR)" pylint \
10 --reports=n \
11 --good-names='b,c,h,A,C,G,_K,_L,indented_L' \
12 $(SRCDIR)/*.py
13
14 .PHONY: clean
15 clean:
16 rm -rf $(SRCDIR)/__pycache__