Makefile.am 640 B

12345678910111213141516171819202122232425262728
  1. ## Process this file with automake to produce Makefile.in
  2. DOCINPUTS = $(top_srcdir)/include/opus.h \
  3. $(top_srcdir)/include/opus_multistream.h \
  4. $(top_srcdir)/include/opus_defines.h \
  5. $(top_srcdir)/include/opus_types.h
  6. doc_DATA = doxygen-build.stamp
  7. EXTRA_DIST = Doxyfile.in
  8. if HAVE_DOXYGEN
  9. doxygen-build.stamp: Doxyfile $(DOCINPUTS)
  10. doxygen
  11. touch $@
  12. else
  13. doxygen-build.stamp: Doxyfile $(DOCINPUTS)
  14. @echo "*** Warning: Doxygen not found; API documentation will not be built."
  15. touch $@
  16. endif
  17. # delete doxygen subdirs
  18. clean-local:
  19. -rm -rf html
  20. -rm -rf latex
  21. -rm -rf man
  22. -rm doxygen-build.stamp