mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-30 03:18:20 +00:00
8 lines
108 B
Makefile
8 lines
108 B
Makefile
|
all: messages.pb storage.pb types.pb
|
||
|
|
||
|
%.pb: %.proto
|
||
|
protoc -I/usr/include -I. $< -o $@
|
||
|
|
||
|
clean:
|
||
|
rm -f *.pb
|