2012-03-23 04:01:33 +08:00
|
|
|
AM_CPPFLAGS += \
|
2007-03-08 04:03:40 +08:00
|
|
|
-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
|
|
|
|
|
2012-03-03 07:51:33 +08:00
|
|
|
if VISIBILITY
|
|
|
|
AM_CPPFLAGS += -DTESS_EXPORTS \
|
|
|
|
-fvisibility=hidden -fvisibility-inlines-hidden
|
|
|
|
endif
|
|
|
|
|
2012-03-03 21:22:51 +08:00
|
|
|
noinst_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 \
|
2012-02-02 11:01:38 +08:00
|
|
|
olutil.h outlines.h plotedges.h \
|
|
|
|
plotseg.h render.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)
|
2011-10-17 03:39:54 +08:00
|
|
|
libtesseract_wordrec_la_LIBADD = \
|
2012-03-23 04:01:33 +08:00
|
|
|
../ccstruct/libtesseract_ccstruct.la \
|
|
|
|
../ccutil/libtesseract_ccutil.la \
|
|
|
|
../cutil/libtesseract_cutil.la \
|
|
|
|
../classify/libtesseract_classify.la \
|
|
|
|
../image/libtesseract_image.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_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 \
|
2012-02-02 11:01:38 +08:00
|
|
|
tface.cpp wordclass.cpp wordrec.cpp
|