2018-06-25 19:29:18 +00:00
|
|
|
ifneq ($(V),1)
|
|
|
|
Q := @
|
|
|
|
endif
|
|
|
|
|
2020-02-05 14:43:19 +00:00
|
|
|
SKIPPED_MESSAGES := Binance Cardano DebugMonero Eos Monero Ontology Ripple SdProtect Tezos WebAuthn \
|
|
|
|
DebugLinkRecordScreen DebugLinkReseedRandom DebugLinkShowText
|
2019-09-05 15:11:22 +00:00
|
|
|
|
2019-04-27 14:15:35 +00:00
|
|
|
ifeq ($(BITCOIN_ONLY), 1)
|
2019-09-05 15:11:22 +00:00
|
|
|
SKIPPED_MESSAGES += Ethereum Lisk NEM Stellar
|
2019-04-27 14:15:35 +00:00
|
|
|
endif
|
|
|
|
|
2020-02-12 16:18:30 +00:00
|
|
|
all: messages_map.h messages_map_limits.h messages-bitcoin.pb.h messages-common.pb.h messages-crypto.pb.h messages-debug.pb.h messages-ethereum.pb.h messages-management.pb.h messages-nem.pb.h messages.pb.h messages-stellar.pb.h messages-lisk.pb.h messages_nem_pb2.py
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2017-12-18 21:48:52 +00:00
|
|
|
PYTHON ?= python
|
|
|
|
|
2020-02-12 16:18:30 +00:00
|
|
|
%.pb.h: %.pb %.options
|
2018-06-25 19:29:18 +00:00
|
|
|
@printf " NANOPB $@\n"
|
2019-12-20 14:20:34 +00:00
|
|
|
$(Q)nanopb_generator $< \
|
2018-08-27 17:06:11 +00:00
|
|
|
-L '#include "%s"' \
|
|
|
|
-T \
|
|
|
|
-s "mangle_names:M_FLATTEN"
|
2019-12-20 14:20:34 +00:00
|
|
|
@grep " CALLBACK, " $@ && echo "CALLBACK field found" && rm $@ && exit 1 || :
|
2014-04-29 12:26:51 +00:00
|
|
|
|
|
|
|
%.pb: %.proto
|
2018-06-25 19:29:18 +00:00
|
|
|
@printf " PROTOC $@\n"
|
|
|
|
$(Q)protoc -I/usr/include -I. $< -o $@
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2018-07-10 14:58:00 +00:00
|
|
|
messages_%_pb2.py: messages-%.proto
|
|
|
|
@printf " PROTOC $@\n"
|
|
|
|
$(Q)protoc -I/usr/include -I. $< --python_out=.
|
|
|
|
|
2017-05-29 11:46:32 +00:00
|
|
|
%_pb2.py: %.proto
|
2018-06-25 19:29:18 +00:00
|
|
|
@printf " PROTOC $@\n"
|
|
|
|
$(Q)protoc -I/usr/include -I. $< --python_out=.
|
2017-05-29 11:46:32 +00:00
|
|
|
|
2019-02-04 12:53:05 +00:00
|
|
|
messages_map.h messages_map_limits.h: messages_map.py messages_pb2.py
|
2019-04-27 14:15:35 +00:00
|
|
|
$(Q)$(PYTHON) $< ${SKIPPED_MESSAGES}
|
2017-05-29 11:46:32 +00:00
|
|
|
|
2014-04-29 12:26:51 +00:00
|
|
|
clean:
|
2019-02-04 12:53:05 +00:00
|
|
|
rm -f *.pb *.o *.d *.pb.c *.pb.h *_pb2.py messages_map.h messages_map_limits.h
|