Optimise diversification by implementing C2-GLS
[xapian.git] / xapian-letor / docs / Makefile.am
blobf7f6aff3f7ec167a495e96809f9faddbd937dbda
1 ## Process this file with automake to produce Makefile.in
3 if MAINTAINER_MODE
4 # Export these so that we run the locally installed autotools when building
5 # from a bootstrapped git tree.
6 export ACLOCAL AUTOCONF AUTOHEADER AUTOM4TE AUTOMAKE
7 endif
9 # Note: we don't want dist tarballs built with docs missing, so for simplicity
10 # this Makefile.am blindly assumes the tools are in place when "make dist" is
11 # being run.  For "make all", "make check", etc we carefully skip any docs
12 # which we don't have the tools to generate.
14 RSTDOCS = \
15         letor.rst
17 RSTHTML = $(RSTDOCS:.rst=.html)
19 # FIXME: doxygen docs?
21 MAINTAINERCLEANFILES = \
22         $(RSTHTML)
24 if DOCUMENTATION_RULES
25 .rst.html:
26         $(RST2HTML) --math-output=HTML --exit-status=warning $< $@
27 endif