From 63facda35286d33699cce96dbd74b675f9bfcc1d Mon Sep 17 00:00:00 2001 From: Bradley Cicenas Date: Wed, 13 Oct 2021 12:06:13 +0000 Subject: [PATCH] add clean step to makefile, shasum --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 42537d2..eabd7f5 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,14 @@ NAME=grmon VERSION=0.1 +clean: + rm -rf _build _release + build: mkdir _build go mod download CGO_ENABLED=0 go build -ldflags "-w" -o _build/$(NAME) + cd _build; sha256sum * > sha256sums.txt install: make build