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

12 lines
275 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
build:
go build -trimpath -ldflags "-s -w -X main.version=`git tag --sort=-version:refname | head -n 1`" cmd/HellPot/*.go