tesseract/src/classify/Makefile.am
Stefan Weil 55901a480f Remove classify/cutoffs.h
It only defined CLASS_CUTOFF_ARRAY and some unused definitions.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
2019-05-25 13:54:44 +02:00

94 lines
1.8 KiB
Makefile

AM_CPPFLAGS += \
-I$(top_srcdir)/src/cutil \
-I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/src/dict \
-I$(top_srcdir)/src/viewer
if DISABLED_LEGACY_ENGINE
AM_CPPFLAGS += -DDISABLED_LEGACY_ENGINE
endif
if VISIBILITY
AM_CPPFLAGS += -DTESS_EXPORTS \
-fvisibility=hidden -fvisibility-inlines-hidden
endif
noinst_HEADERS = \
blobclass.h \
classify.h
if !DISABLED_LEGACY_ENGINE
noinst_HEADERS += \
adaptive.h \
cluster.h \
clusttool.h \
errorcounter.h \
featdefs.h \
float2int.h \
fpoint.h \
intfeaturedist.h \
intfeaturemap.h \
intfeaturespace.h \
intfx.h intmatcher.h \
intproto.h kdtree.h \
mastertrainer.h mf.h \
mfdefs.h \
mfoutline.h \
mfx.h \
normfeat.h \
normmatch.h \
ocrfeatures.h \
outfeat.h \
picofeat.h \
protos.h \
sampleiterator.h \
shapeclassifier.h \
shapetable.h \
tessclassifier.h \
trainingsample.h \
trainingsampleset.h
endif
noinst_LTLIBRARIES = libtesseract_classify.la
libtesseract_classify_la_SOURCES = \
blobclass.cpp \
classify.cpp
if !DISABLED_LEGACY_ENGINE
libtesseract_classify_la_SOURCES += \
adaptive.cpp \
adaptmatch.cpp \
cluster.cpp \
clusttool.cpp \
cutoffs.cpp \
errorcounter.cpp \
featdefs.cpp \
float2int.cpp \
fpoint.cpp \
intfeaturedist.cpp \
intfeaturemap.cpp \
intfeaturespace.cpp \
intfx.cpp \
intmatcher.cpp \
intproto.cpp \
kdtree.cpp \
mastertrainer.cpp \
mf.cpp mfdefs.cpp \
mfoutline.cpp \
mfx.cpp \
normfeat.cpp \
normmatch.cpp \
ocrfeatures.cpp \
outfeat.cpp \
picofeat.cpp \
protos.cpp \
sampleiterator.cpp \
shapeclassifier.cpp \
shapetable.cpp \
tessclassifier.cpp \
trainingsample.cpp \
trainingsampleset.cpp
endif