Commit cd2f32fe authored by Dominik Charousset's avatar Dominik Charousset

update manual as well

parent 58e4e1b6
#!/bin/bash #!/bin/bash
doxygen libcppa.doxygen echo "build documentation ..."
cd ../gh-pages make doc &>/dev/null
rm -f *.tex *.html *.css *.png *.js
cd ../inetd/libcppa_manual/
if [ -f manual.pdf ]; then
echo "PDF manual found ..."
else
echo "no PDF manual found ... stop"
exit
fi
echo "build HTML manual ..."
# run hevea three times
for i in {1..3} ; do
hevea manual.tex &>/dev/null
done
echo "copy documentation into gh-pages ..."
cd ../../gh-pages
rm -rf *.tex *.html *.css *.png *.js manual
cp -R ../libcppa/html/* . cp -R ../libcppa/html/* .
mkdir manual
cp ../inetd/libcppa_manual/manual.pdf manual/
cp ../inetd/libcppa_manual/manual.html manual/index.html
echo "commit ..."
git add . git add .
git commit -a -m "documentation update" git commit -a -m "documentation update"
echo "push ..."
git push git push
cd ../libcppa cd ../libcppa
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment