move around - flatter.
[profile/ivi/ecore.git] / gendoc
1 #!/bin/sh
2 rm -rf ./doc/html ./doc/latex ./doc/man
3 mkdir -p ./doc/html ./doc/latex ./doc/man 2>/dev/null
4 doxygen
5 cp doc/img/*.png doc/html/
6 cp doc/img/*.gif doc/html/
7 rm -f ecore_docs.tar ecore_docs.tar.gz
8 tar -cvf ecore_docs.tar doc/html doc/man doc/latex
9 gzip -9 ecore_docs.tar
10 exit 0