emotion: add some help to debug the pipeline.
[profile/ivi/emotion.git] / gendoc
1 #!/bin/sh
2 cp ./emotion.c.in ./emotion.c
3 for I in `find ./src/lib -name "Emotion.h" -print`; do
4   cat $I >> ./emotion.c
5 done
6 #for I in `find ./src/lib -name "*.c" -print`; do
7 #  cat $I >> ./emotion.c
8 #done
9 rm -rf ./doc/html ./doc/latex ./doc/man
10 doxygen
11 cp doc/img/*.png doc/html/
12 cp doc/img/*.gif doc/html/
13 rm -f emotion_docs.tar emotion_docs.tar.gz
14 tar -cvf emotion_docs.tar doc/html doc/man doc/latex
15 gzip -9 emotion_docs.tar
16 exit 0