Makefile.am 1.2 KB
Newer Older
T
tmbdev 已提交
1 2 3 4
SUBDIRS =
AM_CPPFLAGS = \
    -I$(top_srcdir)/cutil -I$(top_srcdir)/ccutil \
    -I$(top_srcdir)/ccstruct -I$(top_srcdir)/dict \
T
theraysmith 已提交
5 6
    -I$(top_srcdir)/image -I$(top_srcdir)/viewer

7
include_HEADERS = \
8
    adaptive.h baseline.h blobclass.h chartoname.h \
T
theraysmith 已提交
9 10
    classify.h cluster.h clusttool.h cutoffs.h \
    extern.h extract.h \
11 12
    featdefs.h flexfx.h float2int.h fpoint.h fxdefs.h \
    intfx.h intmatcher.h intproto.h kdtree.h \
T
theraysmith 已提交
13 14 15 16
    mf.h mfdefs.h mfoutline.h mfx.h \
    normfeat.h normmatch.h \
    ocrfeatures.h outfeat.h picofeat.h protos.h \
    speckle.h xform2d.h
T
tmbdev 已提交
17

18 19 20
if !USING_MULTIPLELIBS
noinst_LTLIBRARIES = libtesseract_classify.la
else
J
joregan 已提交
21
lib_LTLIBRARIES = libtesseract_classify.la
22 23 24
libtesseract_classify_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
endif

J
joregan 已提交
25
libtesseract_classify_la_SOURCES = \
26
    adaptive.cpp adaptmatch.cpp blobclass.cpp \
T
theraysmith 已提交
27 28 29
    chartoname.cpp classify.cpp cluster.cpp clusttool.cpp cutoffs.cpp \
    extract.cpp \
    featdefs.cpp flexfx.cpp float2int.cpp fpoint.cpp fxdefs.cpp \
30
    intfx.cpp intmatcher.cpp intproto.cpp kdtree.cpp \
T
theraysmith 已提交
31 32 33 34
    mf.cpp mfdefs.cpp mfoutline.cpp mfx.cpp \
    normfeat.cpp normmatch.cpp \
    ocrfeatures.cpp outfeat.cpp picofeat.cpp protos.cpp \
    speckle.cpp xform2d.cpp
J
joregan 已提交
35

36