htmldir = $(datadir)/doc/$(PACKAGE)/html
EXTRA_DIST += \
doc/html \
doc/icons/geom/ftv2doc.png \
doc/icons/geom/ftv2folderclosed.png \
doc/icons/geom/ftv2folderopen.png \
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/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
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
.PHONY: doc doc-clean