2007-03-08 04:03:40 +08:00
|
|
|
SUBDIRS =
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/ccutil \
|
|
|
|
-I$(top_srcdir)/cutil -I$(top_srcdir)/classify \
|
|
|
|
-I$(top_srcdir)/image -I$(top_srcdir)/dict \
|
|
|
|
-I$(top_srcdir)/viewer
|
|
|
|
|
2007-03-31 08:37:26 +08:00
|
|
|
include_HEADERS = \
|
2010-11-24 02:34:14 +08:00
|
|
|
associate.h bestfirst.h chop.h \
|
2009-07-11 10:46:01 +08:00
|
|
|
chopper.h closed.h drawfx.h findseam.h gradechop.h \
|
2010-11-24 02:34:14 +08:00
|
|
|
language_model.h makechop.h matchtab.h measure.h \
|
|
|
|
olutil.h outlines.h pieces.h plotedges.h \
|
|
|
|
plotseg.h render.h tally.h \
|
2009-07-11 10:46:01 +08:00
|
|
|
wordclass.h wordrec.h
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
if !USING_MULTIPLELIBS
|
|
|
|
noinst_LTLIBRARIES = libtesseract_wordrec.la
|
|
|
|
else
|
2010-05-26 22:20:20 +08:00
|
|
|
lib_LTLIBRARIES = libtesseract_wordrec.la
|
2011-08-30 05:28:28 +08:00
|
|
|
libtesseract_wordrec_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
|
|
|
endif
|
|
|
|
|
2010-05-26 22:20:20 +08:00
|
|
|
libtesseract_wordrec_la_SOURCES = \
|
2010-11-24 02:34:14 +08:00
|
|
|
associate.cpp bestfirst.cpp chop.cpp chopper.cpp \
|
2009-07-11 10:46:01 +08:00
|
|
|
closed.cpp drawfx.cpp findseam.cpp gradechop.cpp \
|
2010-11-24 02:34:14 +08:00
|
|
|
heuristic.cpp language_model.cpp makechop.cpp matchtab.cpp \
|
|
|
|
olutil.cpp outlines.cpp pieces.cpp \
|
|
|
|
plotedges.cpp plotseg.cpp render.cpp segsearch.cpp \
|
|
|
|
tally.cpp tface.cpp wordclass.cpp wordrec.cpp
|
2011-08-30 05:28:28 +08:00
|
|
|
|
|
|
|
|