-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathMakefile.am
29 lines (22 loc) · 811 Bytes
/
Makefile.am
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
## Process this file with automake to produce Makefile.in
## Author: Tommi A Pirinen <flammie@iki.fi>
## Licence: GPL v3 (not newer)
## N.B. GNU standards COPYING AUTHORS INSTALL README NEWS need not be declared
SUBDIRS = src man test docs
ACLOCAL_AMFLAGS = -I m4
pkgconfigdir=$(datarootdir)/pkgconfig
pkgconfig_DATA=omorfi.pc
omorfi-hfst-models-$(PACKAGE_VERSION).tar.xz:
tar -C src/generated -cJvf omorfi-models-$(PACKAGE_VERSION).tar.xz \
omorfi.accept.hfst omorfi.analyse.hfst omorfi.describe.hfst \
omorfi.generate.hfst omorfi_recased.analyse.hfst \
omorfi_recased.describe.hfst omorfi.segment.hfst \
omorfi.labelsegment.hfst
conversions:
$(MAKE) -C src conversions
test:
$(MAKE) check
clean-local:
if test -d com ; then \
find com/github/flammie/omorfi -name '*.class' -delete ;\
fi