#!/bin/sh
#
# Creates the whole documentation
#
# Author: Markus Janich
#

echo 'Deleting old documentation'
rm -rf html/
rm -rf man/man3
mkdir html

echo 'Creating tagfile for Qt-2.0'
doxytag -t qt.tag $QTDIR/doc/

echo 'Now running doxygen'
doxygen qglviewer.conf

cd html
echo 'Adjusting Qt links'
./installdox -l qt.tag@$QTDIR/doc >/dev/null
	    
cd ..
