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

3 4 5 6 7
if VISIBILITY
AM_CPPFLAGS += -DTESS_EXPORTS \
    -fvisibility=hidden -fvisibility-inlines-hidden
endif

8
noinst_HEADERS = \
T
theraysmith 已提交
9
    bitvec.h callcpp.h const.h cutil.h cutil_class.h danerror.h efio.h \
10
    emalloc.h freelist.h globals.h listio.h \
T
theraysmith 已提交
11
    oldheap.h oldlist.h structures.h tessarray.h
T
tmbdev 已提交
12

13 14 15
if !USING_MULTIPLELIBS
noinst_LTLIBRARIES = libtesseract_cutil.la
else
J
joregan 已提交
16
lib_LTLIBRARIES = libtesseract_cutil.la
17
libtesseract_cutil_la_LDFLAGS = -version-info $(GENERIC_LIBRARY_VERSION)
18 19 20
libtesseract_cutil_la_LIBADD = \
	../ccutil/libtesseract_ccutil.la \
	../viewer/libtesseract_viewer.la	
21 22
endif

J
joregan 已提交
23
libtesseract_cutil_la_SOURCES = \
24
    bitvec.cpp callcpp.cpp cutil.cpp cutil_class.cpp danerror.cpp efio.cpp \
25
    emalloc.cpp freelist.cpp listio.cpp oldheap.cpp \
T
theraysmith 已提交
26
    oldlist.cpp structures.cpp tessarray.cpp
J
joregan 已提交
27

28