未验证 提交 3c269c9a 编写于 作者: Z zdenop 提交者: GitHub

Merge pull request #1529 from stweil/fix

Partial fix for autotools configuration after source tree reorganisation
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
ACLOCAL_AMFLAGS = -I m4 ACLOCAL_AMFLAGS = -I m4
if ENABLE_TRAINING if ENABLE_TRAINING
TRAINING_SUBDIR = training TRAINING_SUBDIR = src/training
training: all training: all
@$(MAKE) -C training @$(MAKE) -C src/training
training-install: training training-install: training
@$(MAKE) -C training install @$(MAKE) -C src/training install
training-uninstall: training-uninstall:
@$(MAKE) -C training uninstall @$(MAKE) -C src/training uninstall
clean-local: clean-local:
@$(MAKE) -C training clean @$(MAKE) -C src/training clean
else else
training: training:
@echo "Need to reconfigure project, so there are no errors" @echo "Need to reconfigure project, so there are no errors"
...@@ -18,8 +18,9 @@ endif ...@@ -18,8 +18,9 @@ endif
.PHONY: doc install-langs ScrollView.jar install-jars training .PHONY: doc install-langs ScrollView.jar install-jars training
SUBDIRS = arch ccutil viewer cutil opencl ccstruct dict classify wordrec textord lstm SUBDIRS = src/arch src/ccutil src/viewer src/cutil src/opencl src/ccstruct
SUBDIRS += ccmain api . tessdata doc unittest SUBDIRS += src/dict src/classify src/wordrec src/textord src/lstm
SUBDIRS += src/ccmain src/api . tessdata doc unittest
EXTRA_DIST = README.md\ EXTRA_DIST = README.md\
aclocal.m4 config configure.ac autogen.sh contrib \ aclocal.m4 config configure.ac autogen.sh contrib \
......
AM_CPPFLAGS += -DLOCALEDIR=\"$(localedir)\"\ AM_CPPFLAGS += -DLOCALEDIR=\"$(localedir)\" \
-I$(top_srcdir)/arch -I$(top_srcdir)/lstm \ -I$(top_srcdir)/src/arch \
-I$(top_srcdir)/ccutil -I$(top_srcdir)/ccstruct \ -I$(top_srcdir)/src/lstm \
-I$(top_srcdir)/viewer \ -I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/textord -I$(top_srcdir)/dict \ -I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/classify -I$(top_srcdir)/ccmain \ -I$(top_srcdir)/src/viewer \
-I$(top_srcdir)/wordrec -I$(top_srcdir)/cutil \ -I$(top_srcdir)/src/textord \
-I$(top_srcdir)/opencl -I$(top_builddir)/api -I$(top_srcdir)/src/dict \
-I$(top_srcdir)/src/classify \
-I$(top_srcdir)/src/ccmain \
-I$(top_srcdir)/src/wordrec \
-I$(top_srcdir)/src/cutil \
-I$(top_srcdir)/src/opencl \
-I$(top_builddir)/api
AM_CPPFLAGS += $(OPENCL_CPPFLAGS) AM_CPPFLAGS += $(OPENCL_CPPFLAGS)
......
AM_CPPFLAGS += -I$(top_srcdir)/ccstruct -I$(top_srcdir)/ccutil -I$(top_srcdir)/viewer AM_CPPFLAGS += -I$(top_srcdir)/src/ccstruct -I$(top_srcdir)/src/ccutil -I$(top_srcdir)/src/viewer
SUBDIRS = SUBDIRS =
AM_CXXFLAGS = AM_CXXFLAGS =
......
AM_CPPFLAGS += \ AM_CPPFLAGS += \
-I$(top_srcdir)/ccutil -I$(top_srcdir)/ccstruct \ -I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/arch -I$(top_srcdir)/lstm \ -I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/viewer \ -I$(top_srcdir)/src/arch \
-I$(top_srcdir)/classify -I$(top_srcdir)/dict \ -I$(top_srcdir)/src/lstm \
-I$(top_srcdir)/wordrec -I$(top_srcdir)/cutil \ -I$(top_srcdir)/src/viewer \
-I$(top_srcdir)/textord -I$(top_srcdir)/opencl -I$(top_srcdir)/src/classify \
-I$(top_srcdir)/src/dict \
-I$(top_srcdir)/src/wordrec \
-I$(top_srcdir)/src/cutil \
-I$(top_srcdir)/src/textord \
-I$(top_srcdir)/src/opencl
AM_CPPFLAGS += $(OPENCL_CPPFLAGS) AM_CPPFLAGS += $(OPENCL_CPPFLAGS)
AM_CPPFLAGS += $(OPENMP_CXXFLAGS) AM_CPPFLAGS += $(OPENMP_CXXFLAGS)
......
AM_CPPFLAGS += \ AM_CPPFLAGS += \
-I$(top_srcdir)/ccutil -I$(top_srcdir)/cutil \ -I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/viewer \ -I$(top_srcdir)/src/cutil \
-I$(top_srcdir)/opencl -I$(top_srcdir)/src/viewer \
-I$(top_srcdir)/src/opencl
AM_CPPFLAGS += $(OPENCL_CPPFLAGS) AM_CPPFLAGS += $(OPENCL_CPPFLAGS)
if VISIBILITY if VISIBILITY
......
AM_CPPFLAGS += \ AM_CPPFLAGS += \
-I$(top_srcdir)/cutil -I$(top_srcdir)/ccutil \ -I$(top_srcdir)/src/cutil \
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/dict \ -I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/viewer -I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/src/dict \
-I$(top_srcdir)/src/viewer
if VISIBILITY if VISIBILITY
AM_CPPFLAGS += -DTESS_EXPORTS \ AM_CPPFLAGS += -DTESS_EXPORTS \
......
AM_CPPFLAGS += -I$(top_srcdir)/ccutil -I$(top_srcdir)/viewer AM_CPPFLAGS += \
-I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/src/viewer
if VISIBILITY if VISIBILITY
AM_CPPFLAGS += -DTESS_EXPORTS \ AM_CPPFLAGS += -DTESS_EXPORTS \
......
AM_CPPFLAGS += -I$(top_srcdir)/cutil -I$(top_srcdir)/ccutil \ AM_CPPFLAGS += \
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/viewer -I$(top_srcdir)/src/cutil \
-I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/src/viewer
if VISIBILITY if VISIBILITY
AM_CPPFLAGS += -DTESS_EXPORTS \ AM_CPPFLAGS += -DTESS_EXPORTS \
......
AM_CPPFLAGS += \ AM_CPPFLAGS += \
-I$(top_srcdir)/ccutil -I$(top_srcdir)/cutil -I$(top_srcdir)/ccstruct \ -I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/arch -I$(top_srcdir)/viewer -I$(top_srcdir)/classify \ -I$(top_srcdir)/src/cutil \
-I$(top_srcdir)/dict -I$(top_srcdir)/lstm -I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/src/arch \
-I$(top_srcdir)/src/viewer \
-I$(top_srcdir)/src/classify \
-I$(top_srcdir)/src/dict \
-I$(top_srcdir)/src/lstm
SUBDIRS = SUBDIRS =
AM_CXXFLAGS = $(OPENMP_CXXFLAGS) AM_CXXFLAGS = $(OPENMP_CXXFLAGS)
......
AM_CPPFLAGS += -I$(top_srcdir)/ccutil -I$(top_srcdir)/ccstruct -I$(top_srcdir)/ccmain $(OPENCL_CFLAGS) AM_CPPFLAGS += $(OPENCL_CFLAGS) \
-I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/src/ccmain
noinst_HEADERS = \ noinst_HEADERS = \
openclwrapper.h oclkernels.h opencl_device_selection.h openclwrapper.h oclkernels.h opencl_device_selection.h
......
AM_CPPFLAGS += \ AM_CPPFLAGS += \
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/ccutil \ -I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/viewer \ -I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/ccmain -I$(top_srcdir)/wordrec -I$(top_srcdir)/api \ -I$(top_srcdir)/src/viewer \
-I$(top_srcdir)/cutil -I$(top_srcdir)/classify -I$(top_srcdir)/dict \ -I$(top_srcdir)/src/ccmain \
-I$(top_srcdir)/opencl -I$(top_srcdir)/src/wordrec \
-I$(top_srcdir)/src/api \
-I$(top_srcdir)/src/cutil \
-I$(top_srcdir)/src/classify \
-I$(top_srcdir)/src/dict \
-I$(top_srcdir)/src/opencl
AM_CPPFLAGS += $(OPENCL_CPPFLAGS) AM_CPPFLAGS += $(OPENCL_CPPFLAGS)
......
AM_CPPFLAGS += \ AM_CPPFLAGS += \
-DPANGO_ENABLE_ENGINE \ -DPANGO_ENABLE_ENGINE \
-I$(top_srcdir)/ccmain -I$(top_srcdir)/api \ -I$(top_builddir)/src/api \
-I$(top_srcdir)/ccutil -I$(top_srcdir)/ccstruct \ -I$(top_srcdir)/src/api \
-I$(top_srcdir)/lstm -I$(top_srcdir)/arch \ -I$(top_srcdir)/src/ccmain \
-I$(top_srcdir)/viewer \ -I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/textord -I$(top_srcdir)/dict \ -I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/classify -I$(top_srcdir)/display \ -I$(top_srcdir)/src/lstm \
-I$(top_srcdir)/wordrec -I$(top_srcdir)/cutil \ -I$(top_srcdir)/src/arch \
-I$(top_builddir)/api -I$(top_srcdir)/src/viewer \
-I$(top_srcdir)/src/textord \
-I$(top_srcdir)/src/dict \
-I$(top_srcdir)/src/classify \
-I$(top_srcdir)/src/display \
-I$(top_srcdir)/src/wordrec \
-I$(top_srcdir)/src/cutil
EXTRA_DIST = language-specific.sh tesstrain.sh tesstrain_utils.sh EXTRA_DIST = language-specific.sh tesstrain.sh tesstrain_utils.sh
......
AM_CPPFLAGS += -I$(top_srcdir)/ccutil AM_CPPFLAGS += -I$(top_srcdir)/src/ccutil
if VISIBILITY if VISIBILITY
AM_CPPFLAGS += -DTESS_EXPORTS \ AM_CPPFLAGS += -DTESS_EXPORTS \
......
AM_CPPFLAGS += \ AM_CPPFLAGS += \
-I$(top_srcdir)/ccstruct -I$(top_srcdir)/ccutil \ -I$(top_srcdir)/src/ccstruct \
-I$(top_srcdir)/cutil -I$(top_srcdir)/classify \ -I$(top_srcdir)/src/ccutil \
-I$(top_srcdir)/dict \ -I$(top_srcdir)/src/cutil \
-I$(top_srcdir)/viewer -I$(top_srcdir)/src/classify \
-I$(top_srcdir)/src/dict \
-I$(top_srcdir)/src/viewer
if VISIBILITY if VISIBILITY
AM_CPPFLAGS += -DTESS_EXPORTS \ AM_CPPFLAGS += -DTESS_EXPORTS \
......
...@@ -9,20 +9,20 @@ TESTING_DIR=$(shell cd $(top_srcdir) && pwd)/testing ...@@ -9,20 +9,20 @@ TESTING_DIR=$(shell cd $(top_srcdir) && pwd)/testing
AM_CPPFLAGS += -DTESSDATA_DIR="\"$(TESSDATA_DIR)\"" AM_CPPFLAGS += -DTESSDATA_DIR="\"$(TESSDATA_DIR)\""
AM_CPPFLAGS += -DTESTING_DIR="\"$(TESTING_DIR)\"" AM_CPPFLAGS += -DTESTING_DIR="\"$(TESTING_DIR)\""
AM_CPPFLAGS += -DPANGO_ENABLE_ENGINE AM_CPPFLAGS += -DPANGO_ENABLE_ENGINE
AM_CPPFLAGS += -I$(top_builddir)/api AM_CPPFLAGS += -I$(top_builddir)/src/api
AM_CPPFLAGS += -I$(top_srcdir)/api AM_CPPFLAGS += -I$(top_srcdir)/src/api
AM_CPPFLAGS += -I$(top_srcdir)/arch AM_CPPFLAGS += -I$(top_srcdir)/src/arch
AM_CPPFLAGS += -I$(top_srcdir)/ccmain AM_CPPFLAGS += -I$(top_srcdir)/src/ccmain
AM_CPPFLAGS += -I$(top_srcdir)/ccstruct AM_CPPFLAGS += -I$(top_srcdir)/src/ccstruct
AM_CPPFLAGS += -I$(top_srcdir)/ccutil AM_CPPFLAGS += -I$(top_srcdir)/src/ccutil
AM_CPPFLAGS += -I$(top_srcdir)/classify AM_CPPFLAGS += -I$(top_srcdir)/src/classify
AM_CPPFLAGS += -I$(top_srcdir)/cutil AM_CPPFLAGS += -I$(top_srcdir)/src/cutil
AM_CPPFLAGS += -I$(top_srcdir)/dict AM_CPPFLAGS += -I$(top_srcdir)/src/dict
AM_CPPFLAGS += -I$(top_srcdir)/display AM_CPPFLAGS += -I$(top_srcdir)/src/display
AM_CPPFLAGS += -I$(top_srcdir)/lstm AM_CPPFLAGS += -I$(top_srcdir)/src/lstm
AM_CPPFLAGS += -I$(top_srcdir)/textord AM_CPPFLAGS += -I$(top_srcdir)/src/textord
AM_CPPFLAGS += -I$(top_srcdir)/viewer AM_CPPFLAGS += -I$(top_srcdir)/src/viewer
AM_CPPFLAGS += -I$(top_srcdir)/wordrec AM_CPPFLAGS += -I$(top_srcdir)/src/wordrec
# Build googletest: # Build googletest:
check_LTLIBRARIES = libgtest.la libgtest_main.la check_LTLIBRARIES = libgtest.la libgtest_main.la
...@@ -33,7 +33,7 @@ libgtest_main_la_SOURCES = ../googletest/googletest/src/gtest_main.cc ...@@ -33,7 +33,7 @@ libgtest_main_la_SOURCES = ../googletest/googletest/src/gtest_main.cc
# Build unittests # Build unittests
GTEST_LIBS = libgtest.la libgtest_main.la GTEST_LIBS = libgtest.la libgtest_main.la
TESS_LIBS = $(top_builddir)/api/libtesseract.la TESS_LIBS = $(top_builddir)/src/api/libtesseract.la
AM_CPPFLAGS += -isystem $(top_srcdir)/googletest/googletest/include AM_CPPFLAGS += -isystem $(top_srcdir)/googletest/googletest/include
check_PROGRAMS = \ check_PROGRAMS = \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册