1include $(top_srcdir)/config/common.am
2
3EXTRA_DIST = Doxyfile.in CMakeLists.txt
4
5OUTPUT_DIR = .
6
7doxydoc: Doxyfile
8	cd $(OUTPUT_DIR) ; doxygen ./Doxyfile
9
10distclean-local:
11	rm -rf $(OUTPUT_DIR)/html $(OUTPUT_DIR)/latex $(OUTPUT_DIR)/main
12
13.PHONY: doxydoc
14