-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.am
321 lines (241 loc) · 8.88 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
###############################################################################
## Makefile for Spanish--Catalan
###############################################################################
LANG1=spa
LANG2=cat
VAR1=#leave empty
VAR2=_valencia
VAR3=_valencia_gva
VAR4=_valencia_uni
LANG2C=$(LANG2)$(VAR1)
LANG2V=$(LANG2)$(VAR2)
LANG2G=$(LANG2)$(VAR3)
LANG2U=$(LANG2)$(VAR4)
PREFIX1=$(LANG1)-$(LANG2)
PREFIX1C=$(LANG1)-$(LANG2C)
PREFIX1V=$(LANG1)-$(LANG2V)
PREFIX1G=$(LANG1)-$(LANG2G)
PREFIX1U=$(LANG1)-$(LANG2U)
PREFIX2=$(LANG2)-$(LANG1)
PREFIX2C=$(LANG2C)-$(LANG1)
PREFIX2V=$(LANG2V)-$(LANG1)
PREFIX2G=$(LANG2G)-$(LANG1)
PREFIX2U=$(LANG2U)-$(LANG1)
BASENAME=apertium-$(PREFIX1)
TARGETS_PREFS = prefs/$(PREFIX1).xml
TARGETS_COMMON = \
$(PREFIX1).automorf.bin \
$(PREFIX1).rlx.bin \
$(PREFIX2).rlx.bin \
$(PREFIX1).prob \
$(PREFIX1).autobil.bin \
$(PREFIX1).autolex.bin \
$(PREFIX1).biprefs.rlx.bin \
$(PREFIX1V).biprefs.rlx.bin \
$(PREFIX1G).biprefs.rlx.bin \
$(PREFIX1U).biprefs.rlx.bin \
$(PREFIX1).autogen.bin \
$(PREFIX1).autopgen.bin \
$(PREFIX1V).autopgen.bin \
$(PREFIX1G).autopgen.bin \
$(PREFIX1U).autopgen.bin \
$(PREFIX2).automorf.bin \
$(PREFIX2).prob \
$(PREFIX2).autobil.bin \
$(PREFIX2).autolex.bin \
$(PREFIX2).autogen.bin \
$(PREFIX2).autopgen.bin \
$(PREFIX1C).t1x.bin \
$(PREFIX1V).t1x.bin \
$(PREFIX1G).t1x.bin \
$(PREFIX1U).t1x.bin \
$(PREFIX2).t1x.bin \
$(PREFIX1C).prefs.rlx.bin \
$(PREFIX1V).prefs.rlx.bin \
$(PREFIX1G).prefs.rlx.bin \
$(PREFIX1U).prefs.rlx.bin \
$(PREFIX1).pre2017_prefs.rlx.bin \
prefs/$(PREFIX1).xml
# This include defines goals for install-modes, .deps/.d, autobil.prefixes and .mode files:
@ap_include@
###############################################################################
## Monolingual transducers
###############################################################################
# -------------------
# Spanish analysis:
# -------------------
$(PREFIX1).automorf.bin: $(AP_SRC1)/$(LANG1).automorf.bin $(PREFIX1).autobil.bin
lt-trim $^ $@
# -------------------
# Spanish generation:
# ---------------------
$(PREFIX2).autogen.bin: $(AP_SRC1)/$(LANG1).autogen.bin
cp $< $@
$(PREFIX2).autopgen.bin: $(AP_SRC1)/$(LANG1).autopgen.bin
cp $< $@
# -------------------
# Catalan analysis:
# -------------------
$(PREFIX2).automorf.bin: $(AP_SRC2)/$(LANG2).automorf.bin $(PREFIX2).autobil.bin
lt-trim $^ $@
# -------------------
# Catalan generation:
# ---------------------
$(PREFIX1).autogen.bin: $(AP_SRC2)/$(LANG2).autogen.bin
cp $< $@
$(PREFIX1).autopgen.bin: $(AP_SRC2)/$(LANG2).autopgen.bin
cp $< $@
$(PREFIX1V).autopgen.bin: $(AP_SRC2)/$(LANG2V).autopgen.bin
cp $< $@
$(PREFIX1G).autopgen.bin: $(AP_SRC2)/$(LANG2G).autopgen.bin
cp $< $@
$(PREFIX1U).autopgen.bin: $(AP_SRC2)/$(LANG2U).autopgen.bin
cp $< $@
###############################################################################
## Variant preferences
###############################################################################
$(PREFIX1).biprefs.rlx.bin: $(BASENAME).$(PREFIX1).biprefs.rlx
cg-comp $< $@
$(PREFIX1V).biprefs.rlx.bin: $(BASENAME).$(PREFIX1V).biprefs.rlx
cg-comp $< $@
$(PREFIX1G).biprefs.rlx.bin: $(BASENAME).$(PREFIX1G).biprefs.rlx
cg-comp $< $@
$(PREFIX1U).biprefs.rlx.bin: $(BASENAME).$(PREFIX1U).biprefs.rlx
cg-comp $< $@
$(PREFIX1).pre2017_prefs.rlx.bin: $(AP_SRC2)/$(LANG2).pre2017_prefs.rlx.bin
cp $< $@
$(PREFIX1C).prefs.rlx.bin: $(AP_SRC2)/$(LANG2C).prefs.rlx.bin
cp $< $@
$(PREFIX1V).prefs.rlx.bin: $(AP_SRC2)/$(LANG2V).prefs.rlx.bin
cp $< $@
$(PREFIX1G).prefs.rlx.bin: $(AP_SRC2)/$(LANG2G).prefs.rlx.bin
cp $< $@
$(PREFIX1U).prefs.rlx.bin: $(AP_SRC2)/$(LANG2U).prefs.rlx.bin
cp $< $@
###############################################################################
## Disambiguation models
###############################################################################
$(PREFIX1).prob: $(AP_SRC1)/$(LANG1).prob
cp $< $@
$(PREFIX1).rlx.bin: $(AP_SRC1)/apertium-$(LANG1).$(LANG1).rlx
cg-comp $< $@
$(PREFIX2).prob: $(AP_SRC2)/$(LANG2).prob
cp $< $@
$(PREFIX2).rlx.bin: $(AP_SRC2)/apertium-$(LANG2).$(LANG2).rlx
cg-comp $< $@
###############################################################################
## Bilingual dictionaries
###############################################################################
.deps/$(BASENAME).$(PREFIX1).dix: $(BASENAME).$(PREFIX1).metadix .deps/.d
python3 convert-metadix-dix.py $< $@
apertium-validate-dictionary $@
$(PREFIX1).autobil.bin: .deps/$(BASENAME).$(PREFIX1).dix
apertium-validate-dictionary $<
lt-comp lr $< $@
$(PREFIX2).autobil.bin: .deps/$(BASENAME).$(PREFIX1).dix
apertium-validate-dictionary $<
lt-comp rl $< $@
###############################################################################
## Lexical selection rules
###############################################################################
$(PREFIX1).autolex.bin: $(BASENAME).$(PREFIX1).lrx
apertium-validate-lrx $<
lrx-comp $< $@
$(PREFIX2).autolex.bin: $(BASENAME).$(PREFIX2).lrx
apertium-validate-lrx $<
lrx-comp $< $@
###############################################################################
## Structural transfer rules
###############################################################################
$(PREFIX1C).t1x.bin: $(PREFIX1C).t1x
apertium-validate-transfer $<
apertium-preprocess-transfer $< $@
$(PREFIX1V).t1x.bin: $(PREFIX1V).t1x
apertium-validate-transfer $<
apertium-preprocess-transfer $< $@
$(PREFIX1G).t1x.bin: $(PREFIX1G).t1x
apertium-validate-transfer $<
apertium-preprocess-transfer $< $@
$(PREFIX1U).t1x.bin: $(PREFIX1U).t1x
apertium-validate-transfer $<
apertium-preprocess-transfer $< $@
.deps/$(BASENAME).$(PREFIX1).cat.t1x: $(BASENAME).$(PREFIX1).t1x
python3 gent1x.py cat $< >$@
.deps/$(BASENAME).$(PREFIX1).val.t1x: $(BASENAME).$(PREFIX1).t1x
python3 gent1x.py val_gva $< >$@
.deps/$(BASENAME).$(PREFIX1).val_gva.t1x: $(BASENAME).$(PREFIX1).t1x
python3 gent1x.py val_gva $< >$@
.deps/$(BASENAME).$(PREFIX1).val_uni.t1x: $(BASENAME).$(PREFIX1).t1x
python3 gent1x.py val_uni $< >$@
$(PREFIX1C).t1x: .deps/$(BASENAME).$(PREFIX1).cat.t1x
xsltproc --stringparam alt cat alt.xsl $< >$@
$(PREFIX1V).t1x: .deps/$(BASENAME).$(PREFIX1).val.t1x
xsltproc --stringparam alt val_gva alt.xsl $< >$@
$(PREFIX1G).t1x: .deps/$(BASENAME).$(PREFIX1).val_gva.t1x
xsltproc --stringparam alt val_gva alt.xsl $< >$@
$(PREFIX1U).t1x: .deps/$(BASENAME).$(PREFIX1).val_uni.t1x
xsltproc --stringparam alt val_uni alt.xsl $< >$@
$(PREFIX2).t1x.bin: $(BASENAME).$(PREFIX2).t1x
apertium-validate-transfer $<
apertium-preprocess-transfer $< $@
###############################################################################
## Preferences
###############################################################################
prefs/$(LANG2).preferences.xml: $(AP_SRC2)/$(LANG2).preferences.xml
$(MKDIR_P) prefs
cp $< $@
define mergePrefs =
$(MKDIR_P) prefs
echo '<preferences>' >[email protected]
for f in $^; do xmllint --xpath '/preferences/preference' "$$f"; done >>[email protected]
echo '</preferences>' >>[email protected]
mv [email protected] $@
endef
prefs/$(PREFIX1).xml: prefs/$(LANG2).preferences.xml $(PREFIX1).preferences.xml
$(mergePrefs)
###############################################################################
## Distribution
###############################################################################
EXTRA_DIST= \
$(BASENAME).$(PREFIX1).lrx \
$(BASENAME).$(PREFIX2).lrx \
$(BASENAME).$(PREFIX1).metadix \
$(BASENAME).$(PREFIX1).metadix \
$(PREFIX1C).t1x \
$(PREFIX1V).t1x \
$(PREFIX1G).t1x \
$(PREFIX1U).t1x \
$(BASENAME).$(PREFIX2).t1x \
modes.xml \
alt.xsl \
$(PREFIX1).preferences.xml
###############################################################################
## Installation
###############################################################################
apertium_spa_catdir=$(prefix)/share/apertium/$(BASENAME)/
# Files which should be installed to $(prefix)/share/apertium/$(BASENAME)/:
apertium_spa_cat_DATA= \
$(TARGETS_COMMON) \
$(BASENAME).$(PREFIX1).arx \
$(BASENAME).$(PREFIX2).arx \
$(PREFIX1C).t1x \
$(PREFIX1V).t1x \
$(PREFIX1G).t1x \
$(PREFIX1U).t1x \
$(BASENAME).$(PREFIX2).t1x
# All modes are created by the same goal, listing several will just give problems with make -j2
noinst_DATA=modes/$(PREFIX1).mode $(TARGETS_PREFS)
install-data-local: install-modes
$(MKDIR_P) $(DESTDIR)$(apertium_modesdir)/../prefs
$(INSTALL_DATA) $(TARGETS_PREFS) $(DESTDIR)$(apertium_modesdir)/../prefs
###############################################################################
## Cleanup
###############################################################################
CLEANFILES = $(TARGETS_COMMON)
clean-local:
-rm -rf .deps modes
###############################################################################
## Test
###############################################################################
test: all
apertium-regtest test