2012-03-23 04:01:33 +08:00
|
|
|
AM_CPPFLAGS += \
|
2007-03-08 04:03:40 +08:00
|
|
|
-I$(top_srcdir)/cutil -I$(top_srcdir)/ccutil \
|
|
|
|
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/dict \
|
2014-01-10 01:33:44 +08:00
|
|
|
-I$(top_srcdir)/viewer
|
2012-03-03 07:51:33 +08:00
|
|
|
|
|
|
|
if VISIBILITY
|
|
|
|
AM_CPPFLAGS += -DTESS_EXPORTS \
|
|
|
|
-fvisibility=hidden -fvisibility-inlines-hidden
|
|
|
|
endif
|
2009-07-11 10:17:36 +08:00
|
|
|
|
2012-03-03 21:22:51 +08:00
|
|
|
noinst_HEADERS = \
|
2013-09-23 23:15:06 +08:00
|
|
|
adaptive.h blobclass.h chartoname.h \
|
2009-07-11 10:17:36 +08:00
|
|
|
classify.h cluster.h clusttool.h cutoffs.h \
|
2012-02-02 10:57:42 +08:00
|
|
|
errorcounter.h extern.h extract.h \
|
2010-11-24 02:34:14 +08:00
|
|
|
featdefs.h flexfx.h float2int.h fpoint.h fxdefs.h \
|
2012-02-02 10:57:42 +08:00
|
|
|
intfeaturedist.h intfeaturemap.h intfeaturespace.h \
|
2010-11-24 02:34:14 +08:00
|
|
|
intfx.h intmatcher.h intproto.h kdtree.h \
|
2012-02-02 10:57:42 +08:00
|
|
|
mastertrainer.h mf.h mfdefs.h mfoutline.h mfx.h \
|
2009-07-11 10:17:36 +08:00
|
|
|
normfeat.h normmatch.h \
|
|
|
|
ocrfeatures.h outfeat.h picofeat.h protos.h \
|
2012-02-02 10:57:42 +08:00
|
|
|
sampleiterator.h shapeclassifier.h shapetable.h \
|
2013-09-23 23:15:06 +08:00
|
|
|
tessclassifier.h trainingsample.h trainingsampleset.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)
|
2011-10-17 03:39:54 +08:00
|
|
|
libtesseract_classify_la_LIBADD = \
|
2012-03-23 04:01:33 +08:00
|
|
|
../ccutil/libtesseract_ccutil.la \
|
|
|
|
../cutil/libtesseract_cutil.la \
|
|
|
|
../ccstruct/libtesseract_ccstruct.la \
|
|
|
|
../dict/libtesseract_dict.la \
|
|
|
|
../viewer/libtesseract_viewer.la
|
2011-08-30 05:28:28 +08:00
|
|
|
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 \
|
2012-02-02 10:57:42 +08:00
|
|
|
errorcounter.cpp extract.cpp \
|
2009-07-11 10:17:36 +08:00
|
|
|
featdefs.cpp flexfx.cpp float2int.cpp fpoint.cpp fxdefs.cpp \
|
2012-02-02 10:57:42 +08:00
|
|
|
intfeaturedist.cpp intfeaturemap.cpp intfeaturespace.cpp \
|
2010-11-24 02:34:14 +08:00
|
|
|
intfx.cpp intmatcher.cpp intproto.cpp kdtree.cpp \
|
2012-02-02 10:57:42 +08:00
|
|
|
mastertrainer.cpp mf.cpp mfdefs.cpp mfoutline.cpp mfx.cpp \
|
2009-07-11 10:17:36 +08:00
|
|
|
normfeat.cpp normmatch.cpp \
|
|
|
|
ocrfeatures.cpp outfeat.cpp picofeat.cpp protos.cpp \
|
2013-09-23 23:15:06 +08:00
|
|
|
sampleiterator.cpp shapeclassifier.cpp shapetable.cpp \
|
2012-02-02 10:57:42 +08:00
|
|
|
tessclassifier.cpp trainingsample.cpp trainingsampleset.cpp xform2d.cpp
|
2010-05-26 22:20:20 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
|