mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-28 13:49:35 +08:00
4523ce9f7d
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@526 d0cd1f9f-072b-0410-8dd7-cf729c803f20
38 lines
1.4 KiB
Makefile
38 lines
1.4 KiB
Makefile
SUBDIRS =
|
|
AM_CPPFLAGS = \
|
|
-DUSE_STD_NAMESPACE \
|
|
-I$(top_srcdir)/ccutil -I$(top_srcdir)/ccstruct \
|
|
-I$(top_srcdir)/image -I$(top_srcdir)/viewer \
|
|
-I$(top_srcdir)/ccops -I$(top_srcdir)/dict \
|
|
-I$(top_srcdir)/classify \
|
|
-I$(top_srcdir)/wordrec -I$(top_srcdir)/cutil \
|
|
-I$(top_srcdir)/neural_networks/runtime -I$(top_srcdir)/cube \
|
|
-I$(top_srcdir)/textord
|
|
|
|
EXTRA_DIST = tessembedded.cpp
|
|
|
|
include_HEADERS = \
|
|
charcut.h control.h cube_reco_context.h \
|
|
docqual.h fixspace.h \
|
|
imgscale.h osdetect.h output.h \
|
|
paramsd.h pgedit.h reject.h scaleimg.h \
|
|
tessbox.h tessedit.h tessembedded.h tesseractclass.h \
|
|
tesseract_cube_combiner.h \
|
|
tessvars.h tfacep.h tfacepp.h thresholder.h tstruct.h \
|
|
werdit.h
|
|
|
|
lib_LTLIBRARIES = libtesseract_main.la
|
|
libtesseract_main_la_SOURCES = \
|
|
adaptions.cpp applybox.cpp \
|
|
charcut.cpp control.cpp cube_control.cpp cube_reco_context.cpp \
|
|
docqual.cpp fixspace.cpp fixxht.cpp \
|
|
imgscale.cpp osdetect.cpp output.cpp pagesegmain.cpp \
|
|
pagewalk.cpp paramsd.cpp pgedit.cpp reject.cpp scaleimg.cpp \
|
|
recogtraining.cpp tesseract_cube_combiner.cpp \
|
|
tessbox.cpp tessedit.cpp tesseractclass.cpp tessvars.cpp \
|
|
tfacepp.cpp thresholder.cpp tstruct.cpp \
|
|
werdit.cpp
|
|
libtesseract_main_la_LIBADD = \
|
|
../wordrec/libtesseract_wordrec.la
|
|
libtesseract_main_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|