This repository has been archived on 2019-09-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
research-project/tools/Makefile
Bert Peters 3cbf1a1281 Create a python script for rewriting in-place layers.
Using in-place layers makes it impossible to see the state of an
individual layer, so this script rewrites them into each having their
own output layer.
2018-03-12 13:36:33 +01:00

8 lines
111 B
Makefile

MKDIR=mkdir -p
all: generated
generated: $(wildcard proto/*.proto)
$(MKDIR) $@
protoc --python_out="$@" $^