py3x/Makefile

21 lines
226 B
Makefile
Raw Normal View History

2019-07-04 09:23:42 +00:00
build:
2019-07-03 16:14:35 +00:00
python3 setup.py build
clean:
rm -rf dist build py3x.egg-info
zip:
zip -r py3x * -i *.py py3x/*.py
html:
make -C docs html
pdf:
make -C docs latexpdf
tests:
py.test-3 tests
.PHONY: clean zip html pdf tests