diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 38 |
1 files changed, 6 insertions, 32 deletions
@@ -1,11 +1,8 @@ -# You must use the current protoc-gen-go -# -# go-clone --go-src google.golang.org/protobuf -# cd ~/go/src/google.golang.org/protobuf/cmd/protoc-gen-go -# go install +all: set.pb.go goimports vet + @echo This GO code passes the compile checks - -all: forgeConfig.pb.go patch.pb.go set.pb.go goimports vet +set.pb.go: set.proto + make generate generate: clean go mod init @@ -14,37 +11,14 @@ generate: clean go-generate: rm -f *.pb.go *.patch - go get go.wit.com/apps/autogenpb -forgeConfig.pb.go: forgeConfig.proto - autogenpb --proto forgeConfig.proto +goimports: + goimports -w *.go 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 *.patch -rm -f go.* go-mod-clean purge - -# patchset.pb.go: patchset.proto -# autogenpb --proto patchset.proto - -patch.pb.go: patch.proto - autogenpb --proto patch.proto - -set.pb.go: set.proto - autogenpb --proto set.proto - -protoc-test: - cd ~/go/src && protoc \ - --proto_path=. \ - --go_out=. \ - --go_opt=Mgo.wit.com/lib/protobuf/forgepb/patchset.proto=go.wit.com/lib/protobuf/forgepb \ - --go_opt=Mgo.wit.com/lib/protobuf/httppb/httpRequest.proto=go.wit.com/lib/protobuf/httppb \ - go.wit.com/lib/protobuf/forgepb/patchset.proto |
