2007-03-08 04:03:40 +08:00
|
|
|
SUBDIRS =
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/cutil -I$(top_srcdir)/ccutil \
|
|
|
|
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/dict \
|
2009-07-11 10:17:36 +08:00
|
|
|
-I$(top_srcdir)/image -I$(top_srcdir)/viewer
|
|
|
|
|
2007-03-31 08:37:26 +08:00
|
|
|
include_HEADERS = \
|
2010-11-24 02:34:14 +08:00
|
|
|
adaptive.h baseline.h blobclass.h chartoname.h \
|
2009-07-11 10:17:36 +08:00
|
|
|
classify.h cluster.h clusttool.h cutoffs.h \
|
|
|
|
extern.h extract.h \
|
2010-11-24 02:34:14 +08:00
|
|
|
featdefs.h flexfx.h float2int.h fpoint.h fxdefs.h \
|
|
|
|
intfx.h intmatcher.h intproto.h kdtree.h \
|
2009-07-11 10:17:36 +08:00
|
|
|
mf.h mfdefs.h mfoutline.h mfx.h \
|
|
|
|
normfeat.h normmatch.h \
|
|
|
|
ocrfeatures.h outfeat.h picofeat.h protos.h \
|
|
|
|
speckle.h xform2d.h
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
if !USING_MULTIPLELIBS
|
|
|
|
noinst_LTLIBRARIES = libtesseract_classify.la
|
|
|
|
else
|
2010-05-26 22:20:20 +08:00
|
|
|
lib_LTLIBRARIES = libtesseract_classify.la
|
2011-08-30 05:28:28 +08:00
|
|
|
libtesseract_classify_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
|
|
|
endif
|
|
|
|
|
2010-05-26 22:20:20 +08:00
|
|
|
libtesseract_classify_la_SOURCES = \
|
2010-11-24 02:34:14 +08:00
|
|
|
adaptive.cpp adaptmatch.cpp blobclass.cpp \
|
2009-07-11 10:17:36 +08:00
|
|
|
chartoname.cpp classify.cpp cluster.cpp clusttool.cpp cutoffs.cpp \
|
|
|
|
extract.cpp \
|
|
|
|
featdefs.cpp flexfx.cpp float2int.cpp fpoint.cpp fxdefs.cpp \
|
2010-11-24 02:34:14 +08:00
|
|
|
intfx.cpp intmatcher.cpp intproto.cpp kdtree.cpp \
|
2009-07-11 10:17:36 +08:00
|
|
|
mf.cpp mfdefs.cpp mfoutline.cpp mfx.cpp \
|
|
|
|
normfeat.cpp normmatch.cpp \
|
|
|
|
ocrfeatures.cpp outfeat.cpp picofeat.cpp protos.cpp \
|
|
|
|
speckle.cpp xform2d.cpp
|
2010-05-26 22:20:20 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
|