This repository has been archived on 2021-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
overlay/Makefile
jolheiser 86109c0f09
Initial Commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-02-16 22:57:59 -06:00

18 lines
176 B
Makefile

GO ?= go
.PHONY: vet
vet:
$(GO) vet ./...
.PHONY: fmt
fmt:
$(GO) fmt ./...
.PHONY: test
test:
$(GO) test -race ./...
.PHONY: bench
bench:
$(GO) test -benchmem -bench=.