Chris@69: ## Process this file with automake to produce Makefile.in Chris@69: Chris@69: DOCINPUTS = $(top_srcdir)/include/opus.h \ Chris@69: $(top_srcdir)/include/opus_multistream.h \ Chris@69: $(top_srcdir)/include/opus_defines.h \ Chris@69: $(top_srcdir)/include/opus_types.h \ Chris@69: $(top_srcdir)/include/opus_custom.h \ Chris@69: $(top_srcdir)/doc/header.html \ Chris@69: $(top_srcdir)/doc/footer.html \ Chris@69: $(top_srcdir)/doc/customdoxygen.css Chris@69: Chris@69: EXTRA_DIST = customdoxygen.css Doxyfile.in footer.html header.html \ Chris@69: opus_logo.svg trivial_example.c Chris@69: Chris@69: Chris@69: if HAVE_DOXYGEN Chris@69: Chris@69: all-local: doxygen-build.stamp Chris@69: Chris@69: doxygen-build.stamp: Doxyfile $(DOCINPUTS) Chris@69: doxygen Chris@69: touch $@ Chris@69: Chris@69: install-data-local: Chris@69: $(INSTALL) -d $(DESTDIR)$(docdir)/html/search Chris@69: for f in `find html -type f \! -name "installdox"`; do \ Chris@69: $(INSTALL_DATA) $$f $(DESTDIR)$(docdir)/$$f; \ Chris@69: done Chris@69: Chris@69: $(INSTALL) -d $(DESTDIR)$(mandir)/man3 Chris@69: cd man && find man3 -type f -name opus_*.3 \ Chris@69: -exec $(INSTALL_DATA) \{} $(DESTDIR)$(mandir)/man3 \; Chris@69: Chris@69: clean-local: Chris@69: $(RM) -r html Chris@69: $(RM) -r latex Chris@69: $(RM) -r man Chris@69: $(RM) doxygen-build.stamp Chris@69: $(RM) doxygen_sqlite3.db Chris@69: Chris@69: uninstall-local: Chris@69: $(RM) -r $(DESTDIR)$(docdir)/html Chris@69: $(RM) $(DESTDIR)$(mandir)/man3/opus_*.3 $(DESTDIR)$(mandir)/man3/opus.h.3 Chris@69: Chris@69: endif