build:
	go build -v
.PHONY: build

test:
	go test -v -cover
.PHONY: test

clean:
	go clean
.PHONY: clean

all: clean build test
.PHONY: all
