htmldir = $(datadir)/doc/$(PACKAGE)/html EXTRA_DIST += \ doc/Makefile \ doc/Doxyfile.in \ doc/html \ doc/icons/geom/ftv2doc.png \ doc/icons/geom/ftv2folderclosed.png \ doc/icons/geom/ftv2folderopen.png \ doc/algorithms.dox \ doc/coding_style.dox \ doc/developers_interface.dox \ doc/dirs.dox \ doc/getstart.dox \ doc/graph-adaptors.dox \ doc/graph_io.dox \ doc/graphs.dox \ doc/groups.dox \ doc/license.dox \ doc/mainpage.dox \ doc/maps.dox \ doc/maps1.dox \ doc/maps2.dox \ doc/named-param.dox \ doc/namespaces.dox \ doc/quicktour.dox \ doc/ugraphs.dox doc: if test ${doxygen_found} = yes; then \ cd doc; \ doxygen Doxyfile; \ cd ..; \ cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \ fi doc-clean: if test ${doxygen_found} = yes; then \ rm -rf doc/html; \ rm -f doc/doxygen.log; \ cd doc; \ doxygen Doxyfile; \ cd ..; \ cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \ fi clean-local: -rm -rf doc/html -rm -f doc/doxygen.log doc/html: $(MAKE) $(AM_MAKEFLAGS) doc-clean if WANT_DOC install-data-local: doc/html @$(NORMAL_INSTALL) $(mkinstalldirs) $(DESTDIR)$(htmldir) @dir='doc/html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \ f="`echo $$p | sed -e 's|^.*/||'`"; \ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \ $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f; \ done uninstall-local: doc/html @$(NORMAL_UNINSTALL) @dir='doc/html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \ f="`echo $$p | sed -e 's|^.*/||'`"; \ echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \ rm -f $(DESTDIR)$(htmldir)/$$f; \ done endif WANT_DOC .PHONY: doc doc-clean