1EXTRA_DIST=Doxyfile.in examples.h mainpage.h
2
3if HAVE_DOXYGEN
4pkgdocdir=$(datadir)/doc/$(PACKAGE)-$(VERSION)
5htmldocdir=$(pkgdocdir)/html
6
7all-local:
8	doxygen
9
10install-data-local:
11	$(INSTALL) -d $(DESTDIR)$(htmldocdir)
12	$(INSTALL_DATA) html/* $(DESTDIR)$(htmldocdir)
13
14uninstall-local:
15	$(RM) -r $(DESTDIR)$(htmldocdir)
16	$(RM) -r $(DESTDIR)$(pkgdocdir)
17
18clean-local:
19	$(RM) -r html latex man
20endif
21