blob: 1adf343b4ec68bb8ecf114efaa2c24dc1f47f182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
RST=python $(S)/ms/tools/rst.py
rst: src/tests/documentation.py
PYTHONPATH=src:$(S) python3 $(S)/minidoc3.py -d tests.documentation
cp /tmp/tests.documentation.rst documentation.rst
html: documentation.rst README.rst
$(RST) documentation.rst
rst2html README.rst index.html
pdf: documentation.rst
rst2pdf documentation.rst -o documentation.pdf
upload: documentation.pdf
git clean -f; python3 setup.py register sdist bdist_wheel upload
|