| 12345678910111213141516171819 |
- # protoc is required:
- # pacman -S protoc
- # apt install protoc
- .PHONY: all go python clean
- all: go python
- # protoc-gen-go is required:
- # go install github.com/golang/protobuf/protoc-gen-go@latest
- go:
- protoc --go_out=paths=source_relative:. *.proto
- python:
- protoc --python_out=. *.proto
- clean:
- -@rm *_pb2.py
- -@rm *.pb.go
|