trezor-core/embed/bootloader/protob/Makefile

11 lines
203 B
Makefile
Raw Normal View History

2017-06-14 11:40:31 -07:00
all: messages.pb.c types.pb.c
%.pb.c: %.pb %.options
2017-10-01 09:13:25 -07:00
../../../vendor/nanopb/generator/nanopb_generator.py $< -T
2017-06-14 11:40:31 -07:00
%.pb: %.proto
protoc -I/usr/include -I. $< -o $@
clean:
rm -f *.pb *.o *.pb.c *.pb.h