Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « doc - gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b135dd366391a12c705cf80a92e173aa6cf0f34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## Process this file with automake to produce Makefile.in

DOCINPUTS = $(top_srcdir)/src/opus.h \
            $(top_srcdir)/src/opus_multistream.h \
            $(top_srcdir)/libcelt/opus_defines.h \
            $(top_srcdir)/libcelt/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