blob: 2a0250b6c65ce97fd0019f305696707221251d2f [file] [log] [blame]
Yavor Goulishev3aa430d2011-05-23 11:54:45 -07001EXTRA_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