forgepb/Makefile

39 lines
667 B
Makefile
Raw Normal View History

2024-11-20 09:31:24 -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
2024-11-27 21:21:06 -06:00
all: forgeConfig.pb.go
2024-11-28 08:35:39 -06:00
reset
make -C forgeConfig
2024-11-20 09:31:24 -06:00
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
2024-11-20 09:31:24 -06:00
redomod:
rm -f go.*
GO111MODULE= go mod init
GO111MODULE= go mod tidy
2024-11-29 21:50:55 -06:00
go mod edit -go=1.20
2024-11-20 09:31:24 -06:00
clean:
rm -f *.pb.go
-rm -f go.*
make -C forgeConfig clean
2024-11-20 09:31:24 -06:00
2024-11-28 08:35:39 -06:00
install:
make -C forgeConfig install
forgeConfig.pb.go: forgeConfig.proto
2024-11-30 15:33:53 -06:00
autogenpb --proto forgeConfig.proto