From ad7f8c26e346502fc9073ff6a4c2b9784b5419d2 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 8 Oct 2025 02:57:47 -0500 Subject: add make generate --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a4ab61b..0834153 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,20 @@ VERSION = $(shell git describe --tags) BUILDTIME = $(shell date +%Y.%m.%d_%H%M) -all: proto install +all: generate vet install @#./gus --config /etc/gus/gus.text gus --me +generate: clean + go mod init + go mod tidy + go generate + +go-generate: + rm -f *.pb.go *.patch + +vet: + gocui: build ./gus --gui gocui --config /etc/gus/gus.text >/tmp/gocui.log 2>&1 -- cgit v1.2.3