summaryrefslogtreecommitdiff
path: root/protobuf/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-01 15:43:50 -0600
committerJeff Carr <[email protected]>2024-01-01 15:43:50 -0600
commit4e7bbd89900a733593f0848778103c1cf1a7145d (patch)
tree22cd22124dd3ecba7c2a866b882d39aaf790d670 /protobuf/Makefile
parent53ce3a8252090d5fb75d7fc1e3cd75a72c1415c6 (diff)
reorg to final resting place at go.wit.com/gui/guiv0.9.5
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'protobuf/Makefile')
-rw-r--r--protobuf/Makefile34
1 files changed, 0 insertions, 34 deletions
diff --git a/protobuf/Makefile b/protobuf/Makefile
deleted file mode 100644
index 7dd70be..0000000
--- a/protobuf/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-all:
- # You must use the current protoc-gen-go
- # protoc --version 3.6++ does not mean that protoc will generate version3 .go files
- #
- # apt remove golang-goprotobuf-dev
- # apt install protobuf-compiler
- #
- # Then:
- # go get -u github.com/golang/protobuf/protoc-gen-go
- # cd ~/go/src/github.com/golang/protobuf/protoc-gen-go
- # go install
- #
- # Then:
- protoc --version
- make widget.pb.go
-
-clean:
- rm -f *.pb.go
-
-widget.pb.go: widget.proto
- protoc --go_out=. widget.proto
-
-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
- git push