1PROTOC?=../protoc 2 3all: nanopb_pb2.py 4 5%_pb2.py: %.proto 6 $(PROTOC) --python_out=. $< 7 8.PHONY: clean 9clean: 10 rm nanopb_pb2.py 11