Skip to content

Commit ddf4619

Browse files
authored
Merge pull request #80 from Mab879/add_make_clean
Add make clean target
2 parents ab3d865 + ef18938 commit ddf4619

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ build: cvetool
1010
VERSION ?= $(shell git describe --tags --match 'v*' --always --dirty 2>/dev/null || echo dev)
1111
cvetool: vendor
1212
go build -ldflags "-X main.Version=${VERSION}" ./cmd/...
13+
14+
.PHONY: clean
15+
clean:
16+
rm -f cvetool
17+
rm -rf vendor

0 commit comments

Comments
 (0)