mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 11:09:06 +08:00
4d514d5a60
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@878 d0cd1f9f-072b-0410-8dd7-cf729c803f20
29 lines
814 B
Makefile
29 lines
814 B
Makefile
AM_CPPFLAGS += -I$(top_srcdir)/ccutil -I$(top_srcdir)/viewer
|
|
|
|
if VISIBILITY
|
|
AM_CPPFLAGS += -DTESS_EXPORTS \
|
|
-fvisibility=hidden -fvisibility-inlines-hidden
|
|
endif
|
|
|
|
noinst_HEADERS = \
|
|
bitvec.h callcpp.h const.h cutil.h cutil_class.h danerror.h efio.h \
|
|
emalloc.h freelist.h globals.h listio.h \
|
|
oldlist.h structures.h
|
|
|
|
if !USING_MULTIPLELIBS
|
|
noinst_LTLIBRARIES = libtesseract_cutil.la
|
|
else
|
|
lib_LTLIBRARIES = libtesseract_cutil.la
|
|
libtesseract_cutil_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
|
libtesseract_cutil_la_LIBADD = \
|
|
../ccutil/libtesseract_ccutil.la \
|
|
../viewer/libtesseract_viewer.la
|
|
endif
|
|
|
|
libtesseract_cutil_la_SOURCES = \
|
|
bitvec.cpp callcpp.cpp cutil.cpp cutil_class.cpp danerror.cpp efio.cpp \
|
|
emalloc.cpp freelist.cpp listio.cpp \
|
|
oldlist.cpp structures.cpp
|
|
|
|
|