Makefile.am 663 字节
Newer Older
T
tmbdev 已提交
1
SUBDIRS =
2
AM_CPPFLAGS = -I$(top_srcdir)/ccutil -I$(top_srcdir)/viewer
T
tmbdev 已提交
3

4
include_HEADERS = \
T
theraysmith 已提交
5
    bitvec.h callcpp.h const.h cutil.h cutil_class.h danerror.h efio.h \
6
    emalloc.h freelist.h globals.h listio.h \
T
theraysmith 已提交
7
    oldheap.h oldlist.h structures.h tessarray.h
T
tmbdev 已提交
8

9 10 11
if !USING_MULTIPLELIBS
noinst_LTLIBRARIES = libtesseract_cutil.la
else
J
joregan 已提交
12
lib_LTLIBRARIES = libtesseract_cutil.la
13 14 15
libtesseract_cutil_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
endif

J
joregan 已提交
16
libtesseract_cutil_la_SOURCES = \
17
    bitvec.cpp callcpp.cpp cutil.cpp cutil_class.cpp danerror.cpp efio.cpp \
18
    emalloc.cpp freelist.cpp listio.cpp oldheap.cpp \
T
theraysmith 已提交
19
    oldlist.cpp structures.cpp tessarray.cpp
J
joregan 已提交
20

21