Skip to content

Commit

Permalink
add clean step to makefile, shasum
Browse files Browse the repository at this point in the history
  • Loading branch information
bcicen committed Oct 13, 2021
1 parent 32a1594 commit 63facda
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 63facda

Please sign in to comment.