diff options
| author | Jeff Carr <[email protected]> | 2024-11-02 09:28:12 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-02 09:28:12 -0500 |
| commit | 0f1bdad78049b726501740206d9c2434423d75ca (patch) | |
| tree | 8f2a811ce095f6d5f00c72c39f56c9ab99926377 | |
| parent | 15fe83812b860cc017b01abd36a660f12997b306 (diff) | |
makefile fixes
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -13,6 +13,11 @@ PROTOGENLOCAL= $(shell if [ -e ~/go/bin/protoc-gen-go ]; then echo ~/go/bin/pro all: @echo ${PROTOGEN} @echo ${PROTOGENLOCAL} + @if [ ! -f ~/go/bin/protc-gen-go ]; then \ + echo "you have not build ~/go/bin/protoc-gen-go from google's repo"; \ + echo "run 'make protogen'" \ + exit -1; \ + fi make build ./virtigo --version @echo build worked |
