Makefile

 1.PHONY: build clean stop start restart test
 2
 3build:
 4	go build -o srv ./cmd/srv
 5
 6clean:
 7	rm -f srv
 8
 9test:
10	go test ./...