1
4
mirror of https://github.com/yunginnanet/HellPot synced 2024-06-27 08:18:03 +00:00
HellPot/Makefile

14 lines
307 B
Makefile

all: deps check build
format :
find . -iname "*.go" -exec gofmt -s -l -w {} \;
check :
go vet ./...
run :
go run cmd/HellPot/*.go
deps:
go mod tidy -v
test :
go test -v ./...
build :
go build -x -trimpath -ldflags "-s -w -X main.version=`git tag --sort=-version:refname | head -n 1`" cmd/HellPot/*.go