blob: aaf5ea18ebe775a225c659158f7228496b446728 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 docs/documentation.rst
html: docs/documentation.rst README.rst
$(RST) docs/documentation.rst
rst2html README.rst docs/index.html
pdf: docs/documentation.rst
rst2pdf docs/documentation.rst -o docs/documentation.pdf
upload: documentation.pdf
git clean -f
python3 setup.py register sdist bdist_wheel upload upload_docs
|