ref: 14d14998c28c492e98cb589e24e5e8afb71c577c
dir: /doc/Makefile.am/
## Process this file with automake to produce Makefile.in
DOCINPUTS = $(top_srcdir)/include/opus.h \
$(top_srcdir)/include/opus_multistream.h \
$(top_srcdir)/include/opus_defines.h \
$(top_srcdir)/include/opus_types.h
doc_DATA = doxygen-build.stamp
EXTRA_DIST = Doxyfile.in
if HAVE_DOXYGEN
doxygen-build.stamp: Doxyfile $(DOCINPUTS)
doxygen
touch $@
else
doxygen-build.stamp: Doxyfile $(DOCINPUTS)
@echo "*** Warning: Doxygen not found; API documentation will not be built."
touch $@
endif
# delete doxygen subdirs
clean-local:
-rm -rf html
-rm -rf latex
-rm -rf man
-rm doxygen-build.stamp