werc/mkfile
Sam Therapy c510a1b05c
template stuff
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-07-30 16:33:02 +02:00

20 lines
174 B
Makefile

GO = go
CGO_ENABLED = 0
all: go2werc
go2werc:
$GO build -ldflags="-s -w" .
fmt:
gofmt -w -s .
vet:
$GO vet ./...
lint: fmt vet
-golangci-lint run
clean:
$GO clean