From 1321b8566aea90b87181c923d602418f7a0d8c37 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 2 Nov 2024 16:05:17 -0500 Subject: [PATCH] build doesn't work Signed-off-by: Jeff Carr --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 \