blob: 05ab341fd8e40d526686e3253934e127669b6ce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
SUBDIRS=. aspell ispell uspell myspell hspell applespell voikko zemberek
INCLUDES=-I$(top_srcdir) $(ENCHANT_CFLAGS) -DENCHANT_GLOBAL_MODULE_DIR=\"$(libdir)/enchant\" -DENCHANT_GLOBAL_ORDERING=\"$(datadir)/enchant\" -D_ENCHANT_BUILD=1
lib_LTLIBRARIES = libenchant.la
if WITH_BINRELOC
libenchant_la_LIBADD= $(ENCHANT_LIBS) -lpthread
else
libenchant_la_LIBADD= $(ENCHANT_LIBS)
endif
libenchant_la_LDFLAGS = -version-info $(VERSION_INFO) -no-undefined
libenchant_la_SOURCES = prefix.c enchant.c pwl.c enchant.h prefix.h pwl.h
libenchant_includedir = $(includedir)/enchant/
libenchant_include_HEADERS = enchant.h enchant-provider.h enchant++.h
EXTRA_DIST=enchant.i
|