pominal/Makefile

14 lines
192 B
Makefile
Raw Normal View History

2019-06-29 22:11:25 +01:00
.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