mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-12 15:39:04 +08:00
6e37389fcd
Even with installed asciidoc and xsltproc the build will fail if xsltproc cannot find the required stylesheet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl. Ignore such errors until there is a better check in configure. Signed-off-by: Stefan Weil <sw@weilnetz.de>
49 lines
827 B
Makefile
49 lines
827 B
Makefile
# doc/Makefile.am
|
|
|
|
if ASCIIDOC
|
|
|
|
man_MANS = \
|
|
combine_lang_model.1 \
|
|
combine_tessdata.1 \
|
|
dawg2wordlist.1 \
|
|
lstmeval.1 \
|
|
lstmtraining.1 \
|
|
merge_unicharsets.1 \
|
|
set_unicharset_properties.1 \
|
|
tesseract.1 \
|
|
text2image.1 \
|
|
unicharambigs.5 \
|
|
unicharset_extractor.1 \
|
|
wordlist2dawg.1
|
|
|
|
if !DISABLED_LEGACY_ENGINE
|
|
man_MANS += \
|
|
ambiguous_words.1 \
|
|
classifier_tester.1 \
|
|
cntraining.1 \
|
|
mftraining.1 \
|
|
shapeclustering.1 \
|
|
unicharset.5
|
|
endif
|
|
|
|
man_xslt = http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
|
|
|
|
EXTRA_DIST = $(man_MANS) Doxyfile
|
|
|
|
.PHONY: html
|
|
|
|
html: ${man_MANS:%=%.html}
|
|
|
|
SUFFIXES = .asc .html
|
|
|
|
.asc:
|
|
-asciidoc -b docbook -d manpage -o - $< | \
|
|
xsltproc --nonet $(man_xslt) -
|
|
|
|
.asc.html:
|
|
asciidoc -b html5 -o $@ $<
|
|
|
|
MAINTAINERCLEANFILES = $(man_MANS) Doxyfile
|
|
|
|
endif
|