This repository has been archived on 2021-12-17. You can view files and clone it, but cannot push or open issues/pull-requests.
falseknees/Makefile

18 lines
175 B
Makefile

GO ?= go
.PHONY: build
build:
$(GO) build ./cmd/falseknees
.PHONY: vet
vet:
$(GO) vet ./...
.PHONY: fmt
fmt:
$(GO) fmt ./...
.PHONY: test
test:
$(GO) test -race ./...