1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
pkgincludedir = $(includedir)/datrie
pkginclude_HEADERS = \
typedefs.h \
triedefs.h \
alpha-map.h \
trie.h
EXTRA_DIST = libdatrie.map libdatrie.def
AM_CPPFLAGS = -I$(top_srcdir)
lib_LTLIBRARIES = libdatrie.la
libdatrie_la_SOURCES = \
typedefs.h \
triedefs.h \
trie-private.h \
dstring.h \
dstring-private.h \
dstring.c \
trie-string.h \
trie-string.c \
fileutils.h \
fileutils.c \
darray.h \
darray.c \
tail.h \
tail.c \
trie.h \
trie.c \
alpha-map.h \
alpha-map-private.h \
alpha-map.c
if LD_HAS_VERSION_SCRIPT
EXPORTS_FLAGS = -Wl,-version-script -Wl,$(srcdir)/libdatrie.map
EXPORTS_DEPS = libdatrie.map
else
EXPORTS_FLAGS = -export-symbols $(srcdir)/libdatrie.def
EXPORTS_DEPS = libdatrie.def
endif
libdatrie_la_LDFLAGS = -no-undefined \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
$(EXPORTS_FLAGS)
libdatrie_la_DEPENDENCIES = $(EXPORTS_DEPS)
|