12 lines
159 B
Makefile
12 lines
159 B
Makefile
|
compile:
|
||
|
protoc --go_out=. *.proto
|
||
|
|
||
|
deps:
|
||
|
apt install golang-goprotobuf-dev
|
||
|
apt install protobuf-compiler
|
||
|
|
||
|
push:
|
||
|
git pull
|
||
|
git add --all
|
||
|
git commit -a -s
|