summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-02 16:05:17 -0500
committerJeff Carr <[email protected]>2024-11-02 16:05:17 -0500
commit1321b8566aea90b87181c923d602418f7a0d8c37 (patch)
treed86a901204fa1497fcf086cfa54d9e590eab374f
parent0f1bdad78049b726501740206d9c2434423d75ca (diff)
build doesn't work
Signed-off-by: Jeff Carr <[email protected]>
-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 \