gitpb/Makefile

48 lines
1.2 KiB
Makefile
Raw Normal View History

2024-11-26 04:34:01 -06:00
# 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: refs.pb.go godep.pb.go repos.pb.go vet
make -C scanGoSrc/
2024-11-26 04:34:01 -06:00
vet: lint
GO111MODULE=off go vet
lint:
# -buf lint refs.proto # todo: figure out where buf comes from again
# autofixes your import headers in your golang files
goimports:
goimports -w *.go
2024-11-28 08:54:47 -06:00
make -C scanGoSrc/ goimports
2024-11-26 04:34:01 -06:00
redomod:
rm -f go.*
GO111MODULE= go mod init
GO111MODULE= go mod tidy
clean:
rm -f *.pb.go
-rm -f go.*
make -C scanGoSrc clean
2024-11-26 04:34:01 -06:00
refs.pb.go: refs.proto
cd ~/go/src && protoc --go_out=. --proto_path=go.wit.com/lib/protobuf/gitpb \
--go_opt=Mrefs.proto=go.wit.com/lib/protobuf/gitpb \
refs.proto
godep.pb.go: godep.proto
cd ~/go/src && protoc --go_out=. --proto_path=go.wit.com/lib/protobuf/gitpb \
--go_opt=Mgodep.proto=go.wit.com/lib/protobuf/gitpb \
godep.proto
repos.pb.go: repos.proto
cd ~/go/src && protoc --go_out=. --proto_path=go.wit.com/lib/protobuf/gitpb \
--go_opt=Mrefs.proto=go.wit.com/lib/protobuf/gitpb \
--go_opt=Mgodep.proto=go.wit.com/lib/protobuf/gitpb \
--go_opt=Mrepos.proto=go.wit.com/lib/protobuf/gitpb \
repos.proto