wikilain/Makefile

13 lines
241 B
Makefile
Raw Normal View History

.PHONY: setup check install
setup:
! [ -d wikilain/static/mdi ] && ln -s ../../material-design-icons/iconfont/ wikilain/static/mdi || true
2019-05-29 00:40:02 +00:00
check:
@mypy . || true
@flake8 . || true
@pyflakes . || true
install:
pip install --user -e .