From c808ad9bfb125ed9cbbae4536940364d4acbe931 Mon Sep 17 00:00:00 2001 From: Olivier Bellone Date: Wed, 16 Oct 2019 11:13:47 -0700 Subject: [PATCH] Add clean make target (#240) --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 3a737646b..c9d8fab06 100644 --- a/Makefile +++ b/Makefile @@ -97,4 +97,11 @@ release: git push --tags .PHONY: release +clean: + go clean ./... + rm -f stripe stripe-darwin stripe-linux stripe-windows.exe + rm -f coverage.txt + rm -rf dist/ +.PHONY: clean + .DEFAULT_GOAL := build