2012-03-23 04:01:33 +08:00
|
|
|
AM_CPPFLAGS += \
|
2010-11-24 02:34:14 +08:00
|
|
|
-DUSE_STD_NAMESPACE \
|
|
|
|
-I$(top_srcdir)/cutil -I$(top_srcdir)/ccutil \
|
|
|
|
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/dict \
|
|
|
|
-I$(top_srcdir)/image -I$(top_srcdir)/viewer
|
|
|
|
|
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 = \
|
2010-11-24 02:34:14 +08:00
|
|
|
input_file_buffer.h neural_net.h neuron.h
|
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
if !USING_MULTIPLELIBS
|
|
|
|
noinst_LTLIBRARIES = libtesseract_neural.la
|
|
|
|
else
|
2010-11-24 02:34:14 +08:00
|
|
|
lib_LTLIBRARIES = libtesseract_neural.la
|
2011-08-30 05:28:28 +08:00
|
|
|
libtesseract_neural_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
|
|
|
endif
|
|
|
|
|
2010-11-24 02:34:14 +08:00
|
|
|
libtesseract_neural_la_SOURCES = \
|
|
|
|
input_file_buffer.cpp neural_net.cpp neuron.cpp sigmoid_table.cpp
|
|
|
|
|
2011-08-30 05:28:28 +08:00
|
|
|
|