mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 02:59:07 +08:00
06b2156a99
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@685 d0cd1f9f-072b-0410-8dd7-cf729c803f20
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
SUBDIRS =
|
|
AM_CXXFLAGS = -DTESSDATA_PREFIX=@datadir@/
|
|
|
|
EXTRA_DIST = mfcpch.cpp
|
|
|
|
include_HEADERS = \
|
|
ambigs.h basedir.h bits16.h bitvector.h \
|
|
tesscallback.h ccutil.h clst.h \
|
|
elst2.h elst.h errcode.h \
|
|
fileerr.h genericvector.h globaloc.h \
|
|
hashfn.h helpers.h host.h hosthplb.h indexmapbidi.h lsterr.h \
|
|
memry.h mfcpch.h \
|
|
ndminx.h notdll.h nwmain.h \
|
|
ocrclass.h platform.h qrsequence.h \
|
|
secname.h serialis.h sorthelper.h stderr.h strngs.h \
|
|
tessdatamanager.h tprintf.h \
|
|
unichar.h unicharmap.h unicharset.h unicity_table.h unicodes.h \
|
|
params.h
|
|
|
|
if !USING_MULTIPLELIBS
|
|
noinst_LTLIBRARIES = libtesseract_ccutil.la
|
|
else
|
|
lib_LTLIBRARIES = libtesseract_ccutil.la
|
|
libtesseract_ccutil_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
|
endif
|
|
|
|
libtesseract_ccutil_la_SOURCES = \
|
|
ambigs.cpp basedir.cpp bits16.cpp bitvector.cpp \
|
|
ccutil.cpp clst.cpp \
|
|
elst2.cpp elst.cpp errcode.cpp \
|
|
globaloc.cpp hashfn.cpp indexmapbidi.cpp \
|
|
mainblk.cpp memry.cpp \
|
|
serialis.cpp strngs.cpp \
|
|
tessdatamanager.cpp tprintf.cpp \
|
|
unichar.cpp unicharmap.cpp unicharset.cpp unicodes.cpp \
|
|
params.cpp
|
|
|
|
if EMBEDDED
|
|
include_HEADERS += scanutils.h
|
|
libtesseract_ccutil_la_SOURCES += scanutils.cpp
|
|
endif
|