Update to 2.0.0 tree from current Fremantle build
[opencv] / doc / plastex / go
1 #!/bin/bash
2
3 tput clear
4
5 #cd .. && make && cd -
6 mkdir -p _build/html/python
7
8 if false
9 then
10   rm -f *.rst
11   cp index-c.rst.copy index.rst
12   TEXINPUTS=../: python renderer.py c > a || exit
13   TEXINPUTS=$PWD: sphinx-build -b html -D 'html_title=OpenCV 1.1 C Reference' -d _build/doctrees . _build/html
14 fi
15
16 if true
17 then
18   rm -f *.rst
19   cp index-py.rst.copy index.rst
20   TEXINPUTS=../: python renderer.py py > a || exit
21   TEXINPUTS=$PWD: sphinx-build -b html -D 'highlight_language=python' -D 'html_title=OpenCV 1.1 Python Reference' -d _build/doctrees . _build/html/python
22 fi