43 lines
957 B
Makefile
43 lines
957 B
Makefile
# 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: forgeConfig.pb.go
|
|
reset
|
|
make -C forgeConfig
|
|
|
|
vet: lint
|
|
GO111MODULE=off go vet
|
|
|
|
lint:
|
|
-buf lint repo.proto
|
|
|
|
# autofixes your import headers in your golang files
|
|
goimports:
|
|
goimports -w *.go
|
|
make -C forgeConfig goimports
|
|
|
|
redomod:
|
|
rm -f go.*
|
|
GO111MODULE= go mod init
|
|
GO111MODULE= go mod tidy
|
|
go mod edit -go=1.20
|
|
|
|
clean:
|
|
rm -f *.pb.go
|
|
-rm -f go.*
|
|
make -C forgeConfig clean
|
|
|
|
install:
|
|
make -C forgeConfig install
|
|
|
|
forgeConfig.pb.go: forgeConfig.proto
|
|
# I'm using version v1.35.x from google.golang.org/protobuf/cmd/protoc-gen-go
|
|
cd ~/go/src && protoc --go_out=. --proto_path=go.wit.com/lib/protobuf/forgepb \
|
|
--go_opt=MforgeConfig.proto=go.wit.com/lib/protobuf/forgepb \
|
|
forgeConfig.proto
|
|
autogenpb --proto forgeConfig.proto --sort "ByPath,GoPath" --marshal ForgeConfigs
|