Files
sensenet/proto/Makefile
2022-02-26 22:57:13 -08:00

12 lines
189 B
Makefile

all: telemetry.pb.go telemetry_pb2.py
%.pb.go: %.proto
protoc -I=. --go_out=. *.proto
%_pb2.py: %.proto
protoc -I=. --python_out=. *.proto
.PHONY: clean
clean:
rm -f *.pb.go *_pb2.py