From 083dccfa948d50c33624a1dccdaa9874a25a81e3 Mon Sep 17 00:00:00 2001 From: boypt Date: Wed, 19 Dec 2018 17:54:10 +0800 Subject: [PATCH] Makefile: clean exe too --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6759e46..da8ccd6 100644 --- a/Makefile +++ b/Makefile @@ -8,4 +8,4 @@ $(bin): CGO_ENABLED=0 GOARCH=amd64 GOOS=darwin go build -o $(bin)_darwin -ldflags "-s -w -X main.VERSION=git-$$(git rev-parse --short HEAD)"; \ clean: - rm -fv $(bin)_* + rm -fv $(bin).exe $(bin)_*