lbry-sdk/lbrynet/schema/Makefile

10 lines
440 B
Makefile
Raw Normal View History

build:
rm proto2/* proto3/* -rf
2019-02-28 00:00:35 +01:00
cd proto2 && protoc --python_out=. -I ../../../../types/v1/proto/ ../../../../types/v1/proto/*.proto
sed -e 's/^import\ \(.*\)_pb2\ /from . import\ \1_pb2\ /g' -i proto2/*.py
touch proto2/__init__.py
2019-02-28 00:00:35 +01:00
cd proto3 && protoc --python_out=. -I ../../../../types/v2/proto/ ../../../../types/v2/proto/*.proto
sed -e 's/^import\ \(.*\)_pb2\ /from . import\ \1_pb2\ /g' -i proto3/*.py
touch proto3/__init__.py
2018-11-06 00:53:56 +01:00