diff --git a/Makefile b/Makefile index 4465e50..80507a7 100644 --- a/Makefile +++ b/Makefile @@ -10,3 +10,8 @@ build: cvetool VERSION ?= $(shell git describe --tags --match 'v*' --always --dirty 2>/dev/null || echo dev) cvetool: vendor go build -ldflags "-X main.Version=${VERSION}" ./cmd/... + +.PHONY: clean +clean: + rm cvetool + rm -rf vendor