#!/bin/bash

# Remove the directories to make sure that we don't have rebuild problems
# that can sometimes happen with doxygen

rm -r ../browser/doc/html

rm -r html

# Create new directories manually since the doxygen exe under windows
# seems to be messing this up.

mkdir ../browser/doc/html

mkdir html

# Build the documentation

./build_docs_guts
