mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-04 01:39:16 +08:00
67f47008c7
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@631 d0cd1f9f-072b-0410-8dd7-cf729c803f20
21 lines
541 B
Makefile
21 lines
541 B
Makefile
SUBDIRS =
|
|
AM_CPPFLAGS = -I$(top_srcdir)/ccutil -I$(top_srcdir)/viewer
|
|
|
|
include_HEADERS = \
|
|
image.h img.h imgerrs.h imgs.h \
|
|
imgtiff.h imgunpk.h svshowim.h
|
|
|
|
if !USING_MULTIPLELIBS
|
|
noinst_LTLIBRARIES = libtesseract_image.la
|
|
else
|
|
lib_LTLIBRARIES = libtesseract_image.la
|
|
libtesseract_image_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
|
|
libtesseract_image_la_LIBADD = \
|
|
../ccutil/libtesseract_ccutil.la \
|
|
../viewer/libtesseract_viewer.la
|
|
endif
|
|
|
|
libtesseract_image_la_SOURCES = \
|
|
image.cpp imgs.cpp imgtiff.cpp svshowim.cpp
|
|
|