py3x/Makefile

21 lines
224 B
Makefile
Raw Normal View History

2019-07-03 16:14:35 +00:00
all:
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