2012-03-23 04:01:33 +08:00
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/ccutil -I$(top_srcdir)/viewer
|
2007-03-08 04:03:40 +08:00
|
|
|
|
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 = \
|
2009-07-11 10:19:04 +08:00
|
|
|
bitvec.h callcpp.h const.h cutil.h cutil_class.h danerror.h efio.h \
|
2010-11-24 02:34:14 +08:00
|
|
|
emalloc.h freelist.h globals.h listio.h \
|
2013-09-23 23:26:50 +08:00
|
|
|
oldlist.h structures.h
|
2007-03-08 04:03:40 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
if !USING_MULTIPLELIBS
|
|
|
|
noinst_LTLIBRARIES = libtesseract_cutil.la
|
|
|
|
else
|
2010-05-26 22:20:20 +08:00
|
|
|
lib_LTLIBRARIES = libtesseract_cutil.la
|
2011-08-30 05:28:28 +08:00
|
|
|
libtesseract_cutil_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
2011-10-17 03:39:54 +08:00
|
|
|
libtesseract_cutil_la_LIBADD = \
|
|
|
|
../ccutil/libtesseract_ccutil.la \
|
|
|
|
../viewer/libtesseract_viewer.la
|
2011-08-30 05:28:28 +08:00
|
|
|
endif
|
|
|
|
|
2010-05-26 22:20:20 +08:00
|
|
|
libtesseract_cutil_la_SOURCES = \
|
2011-08-11 22:04:20 +08:00
|
|
|
bitvec.cpp callcpp.cpp cutil.cpp cutil_class.cpp danerror.cpp efio.cpp \
|
2013-09-23 23:26:50 +08:00
|
|
|
emalloc.cpp freelist.cpp listio.cpp \
|
|
|
|
oldlist.cpp structures.cpp
|
2010-05-26 22:20:20 +08:00
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
|