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

23 lines
242 B
Makefile

GO ?= go
GOFLAGS ?= -ldflags "-s -w"
CGO_ENABLED ?= 0
all: go2werc
go2werc:
$(GO) build $(GOFLAGS) .
fmt:
gofmt -w -s .
vet:
$(GO) vet ./...
lint: fmt vet
-golangci-lint run
clean:
$(GO) clean
.PHONY: clean lint test fmt vet help