mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-11 05:27:49 +08:00
a905548ed6
Libtool's convenience libraries should never be installed. Fixes #985.
19 lines
537 B
Makefile
19 lines
537 B
Makefile
AM_CPPFLAGS += -I$(top_srcdir)/ccutil -I$(top_srcdir)/viewer -DUSE_STD_NAMESPACE
|
|
|
|
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 globals.h \
|
|
oldlist.h structures.h
|
|
|
|
noinst_LTLIBRARIES = libtesseract_cutil.la
|
|
|
|
libtesseract_cutil_la_SOURCES = \
|
|
bitvec.cpp callcpp.cpp cutil.cpp cutil_class.cpp danerror.cpp efio.cpp \
|
|
emalloc.cpp \
|
|
oldlist.cpp structures.cpp
|