From d88373b2b64e49504c5da755cd30907a4bce1571 Mon Sep 17 00:00:00 2001 From: arianaw66 Date: Wed, 22 Jul 2020 12:07:49 -0400 Subject: [PATCH] add make clean (#15) * add make clean --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b6a52c7..2bbd612 100644 --- a/Makefile +++ b/Makefile @@ -67,4 +67,8 @@ generated-code: go mod tidy GO111MODULE=on go generate ./... gofmt -w $(SUBDIRS) - PATH=$(DEPSGOBIN):$$PATH goimports -w $(SUBDIRS) \ No newline at end of file + PATH=$(DEPSGOBIN):$$PATH goimports -w $(SUBDIRS) + +.PHONY: clean +clean: + rm -rf _output \ No newline at end of file