tesseract/doc/Makefile.am
Stefan Weil ef31eaa7d7 Don't try to build manpages if asciidoc is missing
Commit f9157fd91d changed the rules for
the documentation, so make always tried to build it and failed if
asciidoc was missing since that commit.

Now configure tests whether asciidoc is available and builds the
documentation conditionally. It also reports that to the user.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
2018-04-09 19:07:54 +02:00

35 lines
578 B
Makefile

# doc/Makefile.am
if ASCIIDOC
asciidoc=asciidoc -d manpage
man_MANS = \
ambiguous_words.1 \
classifier_tester.1 \
cntraining.1 \
combine_lang_model.1 \
combine_tessdata.1 \
dawg2wordlist.1 \
lstmeval.1 \
lstmtraining.1 \
merge_unicharsets.1 \
mftraining.1 \
set_unicharset_properties.1 \
shapeclustering.1 \
tesseract.1 \
text2image.1 \
unicharambigs.5 \
unicharset.5 \
unicharset_extractor.1 \
wordlist2dawg.1
EXTRA_DIST = $(man_MANS) Doxyfile
%: %.asc
$(asciidoc) -o $@ $<
MAINTAINERCLEANFILES = $(man_MANS) Doxyfile
endif