diff options
Diffstat (limited to 'ecore/gendoc')
-rw-r--r-- | ecore/gendoc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ecore/gendoc b/ecore/gendoc new file mode 100644 index 0000000..86a8f5b --- /dev/null +++ b/ecore/gendoc @@ -0,0 +1,9 @@ +#!/bin/sh +rm -rf ./doc/html ./doc/latex ./doc/man +mkdir -p ./doc/html ./doc/latex ./doc/man 2>/dev/null +doxygen +cp doc/img/*.png doc/html/ +rm -f ecore_docs.tar ecore_docs.tar.gz +tar -cvf ecore_docs.tar doc/html doc/man doc/latex +gzip -9 ecore_docs.tar +exit 0 |