2007-03-08 04:03:40 +08:00
|
|
|
SUBDIRS =
|
2009-07-11 10:20:33 +08:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/cutil -I$(top_srcdir)/ccutil \
|
|
|
|
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/viewer -I$(top_srcdir)/image
|
|
|
|
|
2007-03-31 08:37:26 +08:00
|
|
|
include_HEADERS = \
|
2009-07-11 10:20:33 +08:00
|
|
|
dawg.h dict.h matchdefs.h \
|
2011-03-19 06:14:53 +08:00
|
|
|
permute.h states.h stopper.h trie.h
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
if !USING_MULTIPLELIBS
|
|
|
|
noinst_LTLIBRARIES = libtesseract_dict.la
|
|
|
|
else
|
2010-05-26 22:20:20 +08:00
|
|
|
lib_LTLIBRARIES = libtesseract_dict.la
|
2011-08-30 05:28:28 +08:00
|
|
|
libtesseract_dict_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
2011-10-17 03:39:54 +08:00
|
|
|
libtesseract_dict_la_LIBADD = \
|
|
|
|
../ccutil/libtesseract_ccutil.la \
|
|
|
|
../cutil/libtesseract_cutil.la \
|
|
|
|
../ccstruct/libtesseract_ccstruct.la \
|
|
|
|
../image/libtesseract_image.la \
|
|
|
|
../viewer/libtesseract_viewer.la
|
2011-08-30 05:28:28 +08:00
|
|
|
endif
|
|
|
|
|
2010-05-26 22:20:20 +08:00
|
|
|
libtesseract_dict_la_SOURCES = \
|
2010-11-24 02:34:14 +08:00
|
|
|
context.cpp \
|
2009-07-11 10:20:33 +08:00
|
|
|
dawg.cpp dict.cpp hyphen.cpp \
|
2011-03-19 06:14:53 +08:00
|
|
|
permdawg.cpp permute.cpp states.cpp stopper.cpp trie.cpp
|
2010-05-26 22:20:20 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
|