1.PHONY: test
2
3default: test
4
5test:
6	go vet && go test
7install: test
8	go install
9