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 \
|
2020-06-09 15:46:52 +00:00
|
|
|
DebugLinkRecordScreen DebugLinkReseedRandom DebugLinkShowText DebugLinkEraseSdCard DebugLinkWatchLayout \
|
2020-08-03 16:13:12 +00:00
|
|
|
GetOwnershipProof OwnershipProof GetOwnershipId OwnershipId AuthorizeCoinJoin DoPreauthorized \
|
2021-03-17 20:33:15 +00:00
|
|
|
CancelAuthorization DebugLinkLayout \
|
2020-09-18 09:32:38 +00:00
|
|
|
TxAckInput TxAckOutput TxAckPrev
|
2019-09-05 15:11:22 +00:00
|
|
|
|
2019-04-27 14:15:35 +00:00
|
|
|
ifeq ($(BITCOIN_ONLY), 1)
|
2021-08-18 10:08:39 +00:00
|
|
|
SKIPPED_MESSAGES += Ethereum NEM Stellar
|
2019-04-27 14:15:35 +00:00
|
|
|
endif
|
|
|
|
|
2021-06-02 12:49:46 +00:00
|
|
|
PROTO_NAMES = messages messages-bitcoin messages-common messages-crypto messages-debug \
|
2021-08-18 10:08:39 +00:00
|
|
|
messages-ethereum messages-management messages-nem messages-stellar
|
2021-06-02 12:49:46 +00:00
|
|
|
|
|
|
|
PROTO_OPTIONS = $(PROTO_NAMES:=.options)
|
|
|
|
PROTO_COMPILED = $(PROTO_NAMES:=.pb)
|
|
|
|
PROTO_HEADERS = $(PROTO_COMPILED:=.h)
|
|
|
|
|
|
|
|
all: messages_map.h messages_map_limits.h messages.pb.h
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2017-12-18 21:48:52 +00:00
|
|
|
PYTHON ?= python
|
|
|
|
|
2021-06-02 12:49:46 +00:00
|
|
|
# produces also all of $(PROTO_HEADERS)
|
|
|
|
messages.pb.h: $(PROTO_COMPILED) $(PROTO_OPTIONS)
|
2018-06-25 19:29:18 +00:00
|
|
|
@printf " NANOPB $@\n"
|
2021-06-02 12:49:46 +00:00
|
|
|
$(Q)nanopb_generator $(PROTO_COMPILED) \
|
2018-08-27 17:06:11 +00:00
|
|
|
-L '#include "%s"' \
|
2020-07-20 13:31:21 +00:00
|
|
|
-T -D . \
|
2018-08-27 17:06:11 +00:00
|
|
|
-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
|
|
|
|
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
|