-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
454 lines (388 loc) · 11.6 KB
/
Makefile
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
SHELL = /bin/sh
#!/usr/bin/make
#
# This is a makefile to automatise most of the testing.
# It is language independent within the framework of the S�mi language
# technology project. See further user documentation (and technical as well)
# in $CVSROOT/gt/doc/docu-testing.html
# VARIABLE DEFINITIONS
# ====================
# Tools used when compiling
XFST = xfst -utf8
# Where all the perl scripts are:
#BINDIR = ../../script/testing
#BINDIR = ../../../gt/script/testing
BINDIR = ../../../gt/script/testing
# Directory where all the compiled fst's are:
FSTDIR = ../bin
# Directory for the source files (which compile into fst's):
SRCDIR = ../src
# The temp directory:
TEMP = ../../tmp
# This variable is holding the filename of the save file:
# (makes the Makefile truly language independent for
# the Sami languages)
SAVEFILE = $(wildcard $(FSTDIR)/tgl.save)
# Copied from old LS makefile:
# Bond, James Bond
UMASK=@umask 007
# Empty variable to be overridden by the user when
# generating paradigms:
WORD =
# These variables define the relationship between the source files
# and the final output files (the reports), such that one can con-
# struct a list of targets for the main target
NGenFiles := $(patsubst %.txt,%.greport,$(wildcard n-*.txt))
NAnaFiles := $(patsubst %.txt,%.areport,$(wildcard n-*.txt))
VGenFiles := $(patsubst %.txt,%.greport,$(wildcard v-*.txt))
VAnaFiles := $(patsubst %.txt,%.areport,$(wildcard v-*.txt))
AGenFiles := $(patsubst %.txt,%.greport,$(wildcard a-*.txt))
AAnaFiles := $(patsubst %.txt,%.areport,$(wildcard a-*.txt))
# MAJOR TARGETS, HOUSEKEEPING TARGETS
# ===================================
# Default target:
# Remove the comments in front of the verb and adjective
# targets when you have codes and test cases for them
.PHONY: all
all: n-g.summary \
n-a.summary \
v-g.summary \
v-a.summary \
# a-g.summary \
# a-a.summary
# If you only want to test nouns:
.PHONY: all-n
all-n: n-g.summary n-a.summary
# If you only want to test verbs:
.PHONY: all-v
all-v: v-g.summary v-a.summary
# If you only want to test adjectives:
.PHONY: all-a
all-a: a-g.summary a-a.summary
# If you only want to test verbal generation, use v-g.summary
# as target. Etc. for the other cases. And do you only want to
# test a specific word or inflection class, type the name of
# the file containing the infl. word, but replace the suffix
# .txt with .greport for generation, and .areport for analysis.
# Clean up all the mess created during a test pass, to prepare for new tests:
# *.tgz \ # just to remove archive files used for file transfering
# *~ # to remove backup copies that may clutter the directory
.PHONY: clean
clean:
@echo
@echo "*** Now deleting ALL the generated files ***"
@echo
@rm -f *.testbase \
*.gtest \
*.atest \
*.gfacit \
*.afacit \
*.greport \
*.areport \
*.gresult \
*.aresult \
*.summary \
*.ptest \
*paradigm \
*.tgz \
*~ \
$(TEMP)/*test-script
.PHONY: almost-clean
almost-clean:
@echo
@echo "*** Now deleting all generated files but the summary & parad. files ***"
@echo
@rm -f *.testbase \
*.gtest \
*.atest \
*.gfacit \
*.afacit \
*.greport \
*.areport \
*.gresult \
*.aresult \
*.ptest \
*.tgz \
*~ \
$(TEMP)/*test-script
# POS SPECIFIC SECTIONS
# =====================
# NOUNS
# =====
# Create all the noun test file bases:
n-%.testbase: n-%.txt noun-codes.txt
@echo
@echo "*** Creating the test base for n-$*.txt ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/merge-codesNforms.pl noun-codes.txt $< > $@
@chmod 660 $@
# Finally, we concatenate all *.greports
n-g.summary: $(NGenFiles)
@cat $^ > $@
@echo
@echo "*** All noun word form generation testing is done. ***"
@echo "*** The concatenated reports are stored in $@. ***"
@echo
# @less $@
# Finally, we concatenate all *.areports:
n-a.summary: $(NAnaFiles)
@cat $^ > $@
@echo
@echo "*** All noun word form analysis testing is done. ***"
@echo "*** The concatenated reports are stored in $@. ***"
@echo
# @less $@
# Create noun paradigm generation input file:
n-para.ptest: noun-codes.txt
@echo
@echo "*** Creating the noun paradigm input file for '$(WORD)' ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/merge-codesNword.pl $< $(WORD) > $@
@chmod 660 $@
# Paradigm generation:
n-paradigm: n-para.ptest savefile
@echo
@echo "*** Running the paradigm generator for '$(WORD)' ***"
@echo
@printf "load $(SAVEFILE) \n\
apply down <$< \n\
quit \n" > $(TEMP)/$@-gtest-script
$(XFST) < $(TEMP)/$@-gtest-script > $(WORD).paradigm
@rm -f $(TEMP)/$@-gtest-script
@rm -f $<
@less $(WORD).paradigm
# VERBS
# =====
# Create all the verb test file bases:
v-%.testbase: v-%.txt verb-codes.txt
@echo
@echo "*** Creating the test base for v-$*.txt ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/merge-codesNforms.pl verb-codes.txt $< > $@
@chmod 660 $@
# Finally, we concatenate all *.greports:
v-g.summary: $(VGenFiles)
@cat $^ > $@
@echo
@echo "*** All verb word form generation testing is done. ***"
@echo "*** The concatenated reports are stored in $@. ***"
@echo
# @less $@
# Finally, we concatenate all *.areports:
v-a.summary: $(VAnaFiles)
@cat $^ > $@
@echo
@echo "*** All verb word form analysis testing is done. ***"
@echo "*** The concatenated reports are stored in $@. ***"
@echo
# @less $@
# Create verb paradigm generation input file:
v-para.ptest: verb-codes.txt
@echo
@echo "*** Creating the verb paradigm input file for '$(WORD)' ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/merge-codesNword.pl $< $(WORD) > $@
@chmod 660 $@
# Paradigm generation:
v-paradigm: v-para.ptest savefile
@echo
@echo "*** Running the paradigm generator for '$(WORD)' ***"
@echo
@printf "load $(SAVEFILE) \n\
apply down <$< \n\
quit \n" > $(TEMP)/$@-gtest-script
$(XFST) < $(TEMP)/$@-gtest-script > $(WORD).paradigm
@rm -f $(TEMP)/$@-gtest-script
@rm -f $<
@less $(WORD).paradigm
# ADJECTIVES
# ==========
# Create all the adjective test file bases:
a-%.testbase: a-%.txt adj-codes.txt
@echo
@echo "*** Creating the test base for a-$*.txt ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/merge-codesNforms.pl adj-codes.txt $< > $@
@chmod 660 $@
# Finally, we concatenate all *.greports:
a-g.summary: $(AGenFiles)
@cat $^ > $@
@echo
@echo "*** All noun word form generation testing is done. ***"
@echo "*** The concatenated reports are stored in $@. ***"
@echo
# @less $@
# Finally, we concatenate all *.areports:
a-a.summary: $(AAnaFiles)
@cat $^ > $@
@echo
@echo "*** All noun word form analysis testing is done. ***"
@echo "*** The concatenated reports are stored in $@. ***"
@echo
# @less $@
# Create adjective paradigm generation input file:
a-para.ptest: adj-codes.txt
@echo
@echo "*** Creating the adjective paradigm input file for '$(WORD)' ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/merge-codesNword.pl $< $(WORD) > $@
@chmod 660 $@
# Paradigm generation:
a-paradigm: a-para.ptest savefile
@echo
@echo "*** Running the paradigm generator for '$(WORD)' ***"
@echo
@printf "load $(SAVEFILE) \n\
apply down <$< \n\
quit \n" > $(TEMP)/$@-gtest-script
$(XFST) < $(TEMP)/$@-gtest-script > $(WORD).paradigm
@rm -f $(TEMP)/$@-gtest-script
@rm -f $<
@less $(WORD).paradigm
# POS-independent parts:
# ======================
# Make sure there is an available smX.save in the parent directory:
savefile:
@cd $(SRCDIR)/ && $(MAKE)
# Word form generation:
# ---------------------
# Make test cases for word form generation tests,
# based on the test file bases:
%.gtest: %.testbase
@echo
@echo "*** Creating test cases for word form generation for $*.txt ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/make-gen-test.pl $< > $@
@chmod 660 $@
# Make facit files containing the expected output from the
# word form generation test run:
%.gfacit: %.testbase
@echo
@echo "*** Creating facit file for word form generation for $*.txt ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/make-gen-test-facit.pl $< > $@
@chmod 660 $@
# Here we run the actual generation test:
%.gresult: %.gtest savefile
@echo
@echo "*** Running the word form generator test for $*.txt ***"
@echo
@printf "load $(SAVEFILE) \n\
apply down <$< \n\
quit \n" > $(TEMP)/$*-gtest-script
$(XFST) < $(TEMP)/$*-gtest-script > $@
@rm -f $(TEMP)/$*-gtest-script
# Then we compare with the facit, and report any differences:
%.greport: %.gresult %.gfacit
@echo
@echo "*** Diffing the test result and the facit file for ***"
@echo "*** word form generation for $*.txt ***"
@echo "*** \"Error 1 (ignored)\" means that there were diffs. ***"
@echo
@rm -f $@
-$(UMASK) && \
diff --side-by-side --width=70 $< $*.gfacit > $@
@chmod 660 $@
# Word form analysis:
# -------------------
# First, create the needed test file
# NB! The sorting specified does not work completely as intended!
# This will lead to small differences between the facit file and
# the analysis output. This happens when one input string gives
# more than one analysis. The expected output is according to the
# order in the inflection lexicon, but the tags in the facit file
# are sorted alphabetically (due to the way sorting is performed -
# there is no way to tell GNU sort to ONLY sort on a specified key).
# For a completely satisfactory result we need a different solution.
# The present solution will have to be good enough for now.
%.atest: %.testbase
@echo
@echo "*** Creating test cases for word form analysis for $*.txt ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/make-ana-test.pl $< \
| sort -t '\t' -k 1 | cut -f 1 | uniq > $@
@chmod 660 $@
# Make facit files containing the expected output from the
# word form analysis test run:
%.afacit: %.testbase
@echo
@echo "*** Creating facit file for word form analysis for $*.txt ***"
@echo
@rm -f $@
$(UMASK) && \
$(BINDIR)/make-ana-test.pl $< \
| sort -t '\t' -k 1 | cut -f 2 > $@
@chmod 660 $@
# Here we run the actual analysis test:
%.aresult: %.atest savefile
@echo
@echo "*** Running the word form analysis test for verbs ***"
@echo
@printf "load $(SAVEFILE) \n\
apply up <$< \n\
quit \n" > $(TEMP)/$*-atest-script
$(XFST) < $(TEMP)/$*-atest-script > $@
@rm -f $(TEMP)/$*-atest-script
# Finally, we compare with the facit, and report any differences:
# Due to the sorting problems mentioned above, there will always (?)
# be (small) differences.
%.areport: %.aresult %.afacit
@echo
@echo "*** Diffing the test result and the facit file for ***"
@echo "*** word form analysis for $*.txt ***"
@echo "*** \"Error 1 (ignored)\" means that there were diffs. ***"
@echo
-@diff --side-by-side --width=70 $< $*.afacit > $@
# TWOL-testing :
#===============
# Usage:
# make twol-test (extracts the test words from src/twol-sme.txt)
# make twol-pos (tests for the positive test pairs, prints output to twol-pos.out)
# make twol-neg (tests for the positive test pairs, prints output to twol-neg.out)
# make twol-test FILE=filename.txt (test for pairs in filename.txt)
# make twol (when the rules themselves are changed, will recompile the binary)
TWOLC = twolc
TYPE = pos
FILE =
FILEPOS = twol-pos.in
FILENEG = twol-neg.in
twol-extract: ../src/twol-tgl.txt
@echo
@echo "*** Extracting twol tests ***"
@echo
@grep '^!€' $< > $(FILEPOS)
@grep '^!\$$' $< > $(FILENEG)
twol-test: ../bin/twol-tgl.bin twol-extract
@echo
@echo "*** Testing twolc rules ***"
@echo
@printf "install-binary $< \n\
pair-test-file $(FILE) twol-$(TYPE).out \n\
quit \n" > $(TEMP)/twol-test-script
$(TWOLC) < $(TEMP)/twol-test-script
@rm -f $(TEMP)/twol-test-script
twol-pos: TYPE=pos
twol-pos: FILE=$(FILEPOS)
twol-pos: twol-test
twol-neg: TYPE=neg
twol-neg: FILE=$(FILENEG)
twol-neg: twol-test
twol-both: twol-pos twol-neg