mineslash/Makefile
jolheiser 43b957d7a9
Initial commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-04-02 14:11:24 -05:00

18 lines
158 B
Makefile

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