lurk/Makefile
jolheiser 478409cf70
Initial commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-03-23 20:28:06 -05:00

15 lines
135 B
Makefile

.PHONY: build
build:
go build
.PHONY: fmt
fmt:
go fmt ./...
.PHONY: test
test:
go test -race ./...
.PHONY: vet
vet:
go vet ./...