mcstatus/Makefile
Michael 20478e3c1f minor improvements and changes
Signed-off-by: Michael <michael.lindman@gmail.com>
2021-01-08 15:55:40 +00:00

27 lines
288 B
Makefile

APP=mcstatus
run: build
./$(APP)
doc:
godoc -http=:6090 -index
build:
go build
debs:
go get ./...
update-debs:
go get -u ./...
fmt:
gofmt -l -s .
clean:
go clean
proto:
protoc --go_out=/home/michael/go/src protobuf/*.proto
.PHONY: run doc build debs update-debs fmt proto