1.PHONY: all build test
2
3all: build test
4
5build:
6	go build
7
8test:
9	go test
10