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
|
ACLOCAL_AMFLAGS=-I m4
SUBDIRS = $(PACKAGE_NAME) scripts tests
DIST_SUBDIRS = $(PACKAGE_NAME) scripts tests
modesdir=$(prefix)/share/apertium/modes
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = apertium.pc
aclocaldir = $(datadir)/aclocal
aclocal_DATA = apertium.m4
if HAVE_PYTHON_BINDINGS
SUBDIRS += python
endif
EXTRA_DIST=autogen.sh README-MODES apertium.m4 tests
install-data-local:
mkdir -p $(DESTDIR)$(modesdir)
$(INSTALL_DATA) README-MODES $(DESTDIR)$(modesdir)/README
# just a synonym:
test: check
|