mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 02:59:07 +08:00
67f9af58b8
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@944 d0cd1f9f-072b-0410-8dd7-cf729c803f20
31 lines
827 B
Makefile
31 lines
827 B
Makefile
AM_CPPFLAGS += -I$(top_srcdir)/cutil -I$(top_srcdir)/ccutil \
|
|
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/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
|
|
|
|
if !USING_MULTIPLELIBS
|
|
noinst_LTLIBRARIES = libtesseract_dict.la
|
|
else
|
|
lib_LTLIBRARIES = libtesseract_dict.la
|
|
libtesseract_dict_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
|
libtesseract_dict_la_LIBADD = \
|
|
../ccutil/libtesseract_ccutil.la \
|
|
../cutil/libtesseract_cutil.la \
|
|
../ccstruct/libtesseract_ccstruct.la \
|
|
../viewer/libtesseract_viewer.la
|
|
endif
|
|
|
|
libtesseract_dict_la_SOURCES = \
|
|
context.cpp \
|
|
dawg.cpp dawg_cache.cpp dict.cpp hyphen.cpp \
|
|
permdawg.cpp stopper.cpp trie.cpp
|
|
|
|
|