# Doxygen will generate html latex man and rtf format document.  Use the main
# html page as the target.
TARGET=html/index.html
LATEX=pdflatex

$(TARGET): ../src/*.hpp Doxyfile
	doxygen

userGuide:
	$(LATEX) userGuide.tex

clean:
	rm -rf html latex man rtf *.aux *.log
