]> gitweb.michael.orlitzky.com - dunshire.git/blob - makefile
Add a unit test for the ice cream cone solution.
[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,e1,e2,h,A,C,G,K,_K,L,L_matrix,_L,indented_L' \
12 $(SRCDIR)/*.py
13
14 .PHONY: clean
15 clean:
16 rm -rf $(SRCDIR)/__pycache__