trezor-mcu/firmware/protob/Makefile

17 lines
378 B
Makefile
Raw Normal View History

2017-05-29 04:46:32 -07:00
all: messages.pb.c storage.pb.c types.pb.c messages_map.h
2014-04-29 05:26:51 -07:00
%.pb.c: %.pb %.options
nanopb_generator.py $< -L '#include "%s"' -T
2014-04-29 05:26:51 -07:00
%.pb: %.proto
protoc -I/usr/include -I. $< -o $@
2017-05-29 04:46:32 -07:00
%_pb2.py: %.proto
protoc -I/usr/include -I. $< --python_out=.
messages_map.h: messages_map.py messages_pb2.py types_pb2.py
./$< > $@
2014-04-29 05:26:51 -07:00
clean:
2017-05-29 04:46:32 -07:00
rm -f *.pb *.o *.pb.c *.pb.h *_pb2.py messages_map.h