annotate src/opus-1.3/doc/Makefile.am @ 83:ae30d91d2ffe

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam
date Fri, 07 Feb 2020 11:51:13 +0000
parents 7aeed7906520
children
rev   line source
Chris@69 1 ## Process this file with automake to produce Makefile.in
Chris@69 2
Chris@69 3 DOCINPUTS = $(top_srcdir)/include/opus.h \
Chris@69 4 $(top_srcdir)/include/opus_multistream.h \
Chris@69 5 $(top_srcdir)/include/opus_defines.h \
Chris@69 6 $(top_srcdir)/include/opus_types.h \
Chris@69 7 $(top_srcdir)/include/opus_custom.h \
Chris@69 8 $(top_srcdir)/doc/header.html \
Chris@69 9 $(top_srcdir)/doc/footer.html \
Chris@69 10 $(top_srcdir)/doc/customdoxygen.css
Chris@69 11
Chris@69 12 EXTRA_DIST = customdoxygen.css Doxyfile.in footer.html header.html \
Chris@69 13 opus_logo.svg trivial_example.c
Chris@69 14
Chris@69 15
Chris@69 16 if HAVE_DOXYGEN
Chris@69 17
Chris@69 18 all-local: doxygen-build.stamp
Chris@69 19
Chris@69 20 doxygen-build.stamp: Doxyfile $(DOCINPUTS)
Chris@69 21 doxygen
Chris@69 22 touch $@
Chris@69 23
Chris@69 24 install-data-local:
Chris@69 25 $(INSTALL) -d $(DESTDIR)$(docdir)/html/search
Chris@69 26 for f in `find html -type f \! -name "installdox"`; do \
Chris@69 27 $(INSTALL_DATA) $$f $(DESTDIR)$(docdir)/$$f; \
Chris@69 28 done
Chris@69 29
Chris@69 30 $(INSTALL) -d $(DESTDIR)$(mandir)/man3
Chris@69 31 cd man && find man3 -type f -name opus_*.3 \
Chris@69 32 -exec $(INSTALL_DATA) \{} $(DESTDIR)$(mandir)/man3 \;
Chris@69 33
Chris@69 34 clean-local:
Chris@69 35 $(RM) -r html
Chris@69 36 $(RM) -r latex
Chris@69 37 $(RM) -r man
Chris@69 38 $(RM) doxygen-build.stamp
Chris@69 39 $(RM) doxygen_sqlite3.db
Chris@69 40
Chris@69 41 uninstall-local:
Chris@69 42 $(RM) -r $(DESTDIR)$(docdir)/html
Chris@69 43 $(RM) $(DESTDIR)$(mandir)/man3/opus_*.3 $(DESTDIR)$(mandir)/man3/opus.h.3
Chris@69 44
Chris@69 45 endif