You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
403 B
20 lines
403 B
help: |
|
@echo "test run test" |
|
@echo "lint run lint" |
|
@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 |
|
|
|
.PHONY: lint |
|
lint: |
|
gofmt -s -w . pinyin tools |
|
golint . |
|
golint pinyin |
|
golint tools
|
|
|