This repository has been archived on 2023-11-08. You can view files and clone it, but cannot push or open issues/pull-requests.
|
GO ?= go
|
|
|
|
.PHONY: build
|
|
build:
|
|
$(GO) build
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
$(GO) fmt ./...
|
|
|
|
.PHONY: test
|
|
test:
|
|
$(GO) test -race ./...
|
|
|
|
.PHONY: vet
|
|
vet:
|
|
$(GO) vet ./...
|
|
|
|
.PHONY: imp
|
|
imp: build
|
|
./imp -w
|