blob: cac4d7a00fc9d530e9aba43c6c22eaaf41edc31a [file] [log] [blame]
clean:
go clean -testcache && rm -r ./bin
buildfoma:
cd src && \
foma -e "source tokenizer.xfst" \
-e "save stack ../testdata/tokenizer.fst" -q -s && \
cd ..
buildmatok: buildfoma build
./bin/datok convert -i ./testdata/tokenizer.fst -o ./testdata/tokenizer.matok
builddatok: buildfoma build
./bin/datok convert -i ./testdata/tokenizer.fst -o ./testdata/tokenizer.datok -d
test:
go test ./...
build:
go build -v -o ./bin/datok ./cmd/datok.go