-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.am
113 lines (90 loc) · 3.79 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
###############################################################################
## Makefile for apertium-nno
###############################################################################
LANG1=nno
BASENAME=apertium-$(LANG1)
TARGETS_COMMON = $(LANG1).automorf.bin \
$(LANG1).autogen.bin \
$(LANG1).autogen.att.gz \
$(LANG1).autopgen.bin \
$(LANG1).automorf.att.gz \
$(LANG1).rlx.bin \
$(LANG1).seg.rlx.bin \
$(LANG1).e_vi_prefs.rlx.bin \
$(LANG1).prefs.rlx.bin \
$(LANG1).syn.rlx.bin
# This include defines goals for install-modes, .deps/.d and .mode files:
@ap_include@
###############################################################################
## Norwegian Nynorsk transducer
###############################################################################
.deps/%.autogen.bin: $(BASENAME).%.dix .deps/.d
apertium-validate-dictionary $<
lt-comp rl $< $@
$(LANG1).autogen.bin: .deps/$(LANG1).autogen.bin .deps/proper-$(LANG1).autogen.bin
lt-append $^ $@
# .deps/improper-$(LANG1).automorf.bin and .deps/$(LANG1).automorf.bin:
.deps/%.automorf.bin: $(BASENAME).%.dix $(BASENAME).$(LANG1).acx .deps/.d
apertium-validate-dictionary $<
apertium-validate-acx $(BASENAME).$(LANG1).acx
lt-comp lr $< $@ $(BASENAME).$(LANG1).acx
$(LANG1).automorf.bin: .deps/$(LANG1).automorf.bin .deps/proper-$(LANG1).automorf.bin
lt-append $^ $@
$(LANG1).autogen.att.gz: $(LANG1).autogen.bin
lt-print $< | gzip -9 -c -n > $@
$(LANG1).automorf.att.gz: $(LANG1).automorf.bin
lt-print $< | gzip -9 -c -n > $@
$(LANG1).autopgen.bin: $(BASENAME).post-$(LANG1).dix
lt-comp lr $< $@
###############################################################################
## Distribution
###############################################################################
EXTRA_DIST=$(BASENAME).$(LANG1).dix \
$(BASENAME).post-$(LANG1).dix \
$(BASENAME).proper-$(LANG1).dix \
$(BASENAME).$(LANG1).rlx \
$(BASENAME).$(LANG1).seg.rlx \
$(BASENAME).$(LANG1).syn.rlx \
$(LANG1).prob \
$(BASENAME).$(LANG1).tsx \
$(LANG1).preferences.xml \
modes.xml
###############################################################################
## Installation stuff
###############################################################################
#
# apertium_nno_dir: This is where the compiled binaries go
# apertium_nno_srcdir: This is where the source files go
apertium_nnodir=$(prefix)/share/apertium/$(BASENAME)/
apertium_nno_srcdir=$(prefix)/share/apertium/$(BASENAME)/
apertium_nno_DATA=$(TARGETS_COMMON) $(LANG1).prob \
$(LANG1).preferences.xml \
$(BASENAME).$(LANG1).dix \
$(BASENAME).post-$(LANG1).dix \
$(BASENAME).proper-$(LANG1).dix \
$(BASENAME).$(LANG1).rlx \
$(BASENAME).$(LANG1).seg.rlx \
$(BASENAME).$(LANG1).syn.rlx \
$(BASENAME).$(LANG1).tsx
pkgconfigdir = $(prefix)/share/pkgconfig
pkgconfig_DATA = $(BASENAME).pc
noinst_DATA=modes/$(LANG1)-morph.mode
install-data-local: install-modes
uninstall-local: uninstall-modes
###############################################################################
## Cleanup
###############################################################################
CLEANFILES = $(TARGETS_COMMON)
clean-local:
-rm -rf .deps modes
###############################################################################
## Test
###############################################################################
.PHONY: test
test: all
@grep -nE 'lm=".*/([a-zæøå]+)_(\\[^_]+|)_' $(BASENAME).*$(LANG1).dix \
| grep -vE '<i?g/?>' \
| grep -vE 'lm="(.*)(.*)".*/\2_(\\[^_]+|)_' \
| sed 's%^%WARNING: lemma vs par/tail inconsistency in %'
apertium-regtest test
test -e apertium-lint && apertium-lint $(BASENAME).$(LANG1).dix