mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-11 15:09:03 +08:00
f9157fd91d
That macro disables automated updates when configure.ac or a Makefile.am changes. Normally those updates are wanted because users typically forget running ./autogen.sh. See also the GNU documentation why AM_MAINTAINER_MODE should not be used: https://www.gnu.org/software/automake/manual/html_node/maintainer_002dmode.html Signed-off-by: Stefan Weil <sw@weilnetz.de>
31 lines
558 B
Makefile
31 lines
558 B
Makefile
# doc/Makefile.am
|
|
|
|
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
|