1.PHONY: vet test bench coverage23vet:4 go vet5 go vet -tags test_sha25667test:8 go test -v -cover -race9 go test -tags test_sha256 -v -cover -race1011bench:12 go test -v -cover -test.bench=. -test.benchmem1314coverage:15 go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out16 go test -tags test_sha256 -coverprofile=c.out && go tool cover -html=c.out && rm c.out