mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-07 01:37:50 +08:00
6a28cce96b
* Remove whitespace (blanks, tabs, cr) at line endings Signed-off-by: Stefan Weil <sw@weilnetz.de>
22 lines
522 B
Makefile
22 lines
522 B
Makefile
AM_CPPFLAGS += \
|
|
-I$(top_srcdir)/src/cutil \
|
|
-I$(top_srcdir)/src/ccutil \
|
|
-I$(top_srcdir)/src/ccstruct \
|
|
-I$(top_srcdir)/src/viewer
|
|
|
|
if VISIBILITY
|
|
AM_CPPFLAGS += -DTESS_EXPORTS \
|
|
-fvisibility=hidden -fvisibility-inlines-hidden
|
|
endif
|
|
|
|
noinst_HEADERS = \
|
|
dawg.h dawg_cache.h dict.h matchdefs.h \
|
|
stopper.h trie.h
|
|
|
|
noinst_LTLIBRARIES = libtesseract_dict.la
|
|
|
|
libtesseract_dict_la_SOURCES = \
|
|
context.cpp \
|
|
dawg.cpp dawg_cache.cpp dict.cpp hyphen.cpp \
|
|
permdawg.cpp stopper.cpp trie.cpp
|