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
|
|
|
|
|
2019-07-04 08:52:15 +00:00
|
|
|
html:
|
|
|
|
make -C docs html
|
|
|
|
|
|
|
|
pdf:
|
|
|
|
make -C docs latexpdf
|
|
|
|
|
2019-07-04 08:55:22 +00:00
|
|
|
tests:
|
|
|
|
py.test-3 tests
|
|
|
|
|
|
|
|
.PHONY: clean zip html pdf tests
|
|
|
|
|