blob: 2421175e2c814d48044973140a4453a4c5ae0367 (
plain)
1
2
3
4
5
6
7
|
all: nanopb_pb2.py plugin_pb2.py
nanopb_pb2.py: nanopb.proto
protoc --python_out=. -I /usr/include -I . nanopb.proto
plugin_pb2.py: plugin.proto
protoc --python_out=. -I /usr/include -I . plugin.proto
|