py3x/Makefile

21 lines
226 B
Makefile

build:
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