summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-17 05:08:46 -0500
committerJeff Carr <[email protected]>2025-03-17 05:08:46 -0500
commitb96f3ce26dc518c165f1939be1f5b7ed6f2e8701 (patch)
tree16dae8d9ca39dd94350e91f392e9caca95f1c0b0 /Makefile
parent24962f3524ab05bb990dd8f6f7c876b02c279880 (diff)
attempt to drain the sockets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1b8cb25..1caa794 100644
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,9 @@
VERSION = $(shell git describe --tags)
BUILDTIME = $(shell date +%Y.%m.%d_%H%M)
-all: proto build
+all: proto install
@#./gus --config /etc/gus/gus.text
- ./gus --me
+ gus --me
gocui: build
./gus --gui gocui --config /etc/gus/gus.text >/tmp/gocui.log 2>&1
@@ -14,7 +14,7 @@ build: goimports vet
GO111MODULE=off go build -v -x \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
-install:
+install: goimports vet
GO111MODULE=off go install -v -x \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"