summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3d80c78ede6ab7380cff2c240b698e297d6c8127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# You must use the current google protoc-gen-go
#
# cd ~/go/src/google.golang.org/protobuf/cmd/protoc-gen-go
# go install

all: goimports vet

vet:
	@GO111MODULE=off go vet
	@echo this go library package builds okay

# autofixes your import headers in your golang files
goimports:
	goimports -w *.go

clean:
	rm -f *.pb.go
	-rm -f go.*