From b216a0ec776dd85414032aeacd2055c0015c6c73 Mon Sep 17 00:00:00 2001 From: Matthew Burket Date: Wed, 18 Mar 2026 13:27:07 -0500 Subject: [PATCH] Add make clean target Fixes #71 --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) 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