summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3483f82..9ea72aa 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,17 @@ PROTOGEN= $(shell if [ -e /usr/bin/protoc-gen-go ]; then echo probably wrong pr
PROTOGENLOCAL= $(shell if [ -e ~/go/bin/protoc-gen-go ]; then echo ~/go/bin/protoc-gen-go exists ok; else echo build the right one with: make protogen && exit 0; fi)
all:
+ @echo
+ @echo the build is complicated right now because you need
+ @echo the google version of protoc-gen-go which is not the one in debian
+ @echo sid right now. until that is fixed, this is a pain in the ass
+ @echo
+ @echo also, makefiles are awesome, but only for simple shit. this shit is
+ @echo way to complicated to be here so Im rather leaning towards making
+ @echo a go binary just to build this
+ @echo
+
+build-attempt1:
@echo ${PROTOGEN}
@echo ${PROTOGENLOCAL}
@if [ ! -f ~/go/bin/protc-gen-go ]; then \