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