blob: 26cfd751ef16d49889e2bbfa398ef97868a919fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# 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
autogenpb --proto forgeConfig.proto --sort "ByPath,GoPath" --marshal ForgeConfigs
|