mirror of
https://github.com/wahyd4/go-pinyin.git
synced 2026-08-09 04:35:55 +10:00
13 lines
261 B
Makefile
13 lines
261 B
Makefile
help:
|
|
@echo "test run test"
|
|
@echo "gen_pinyin_dict gen pinyin dict"
|
|
|
|
.PHONY: test
|
|
test:
|
|
@echo "run test"
|
|
@go test -v -cover
|
|
|
|
.PHONY: gen_pinyin_dict
|
|
gen_pinyin_dict:
|
|
@go run tools/gen_pinyin_dict.go tools/pinyin-data/pinyin.txt pinyin_dict.go
|