1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-14 20:09:11 +00:00
trezor-firmware/firmware/protob/Makefile

19 lines
462 B
Makefile
Raw Normal View History

2017-12-18 21:16:05 +00:00
all: messages.pb.c types.pb.c messages_map.h
2014-04-29 12:26:51 +00:00
2017-12-18 21:48:52 +00:00
PYTHON ?= python
2014-04-29 12:26:51 +00:00
%.pb.c: %.pb %.options
2017-12-18 21:48:52 +00:00
$(PYTHON) ../../vendor/nanopb/generator/nanopb_generator.py $< -L '#include "%s"' -T
2014-04-29 12:26:51 +00:00
%.pb: %.proto
protoc -I/usr/include -I. $< -o $@
2017-05-29 11:46:32 +00:00
%_pb2.py: %.proto
protoc -I/usr/include -I. $< --python_out=.
messages_map.h: messages_map.py messages_pb2.py types_pb2.py
$(PYTHON) $< | grep -v MessageType_Lisk > $@
2017-05-29 11:46:32 +00:00
2014-04-29 12:26:51 +00:00
clean:
rm -f *.pb *.o *.d *.pb.c *.pb.h *_pb2.py messages_map.h