pominal/Makefile

13 lines
192 B
Makefile

.PHONY: all test build clean
all: test build
test:
go test -v -cover ./...
build:
go build -a -v -o bin/pominal
clean:
go clean
find bin -type f -not -iname .gitkeep | xargs -I v rm v