File: Makefile

package info (click to toggle)
apertium-kaz 0.1.0~r61338-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 21,440 kB
  • sloc: python: 368; sh: 203; makefile: 154; xml: 94
file content (11 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
LANG1=kaz
STAMP=$(shell date)
DATE=$(shell date +%Y-%m-%d.%H:%M)
LOG=history.log
SRC=src.1000.txt
REF=ref.1000.txt
TST=tst.1000.txt.$(DATE)
all:
	cat $(SRC) | lt-proc -w ../$(LANG1).automorf.bin > $(TST)
	echo -ne $(STAMP)"\t" >> $(LOG)
	python3 evaluate-morph.py $(TST) $(REF) 2>> $(LOG)