summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-16 16:23:33 -0500
committerJeff Carr <[email protected]>2025-08-16 21:51:46 -0500
commit9c3fff72b2192ac510666adb1988ddf2921b0e35 (patch)
tree3449fd2db4d7888134804967cfd98a7ddd9bbde4
parent1602db0d1efd101260f6614a32faddb4888d7066 (diff)
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b79f1b0..20d83af 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,10 @@ go-build: goimports
GO111MODULE=off go build \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
+verbose:
+ GO111MODULE=off go build -v -x \
+ -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
+
install: goimports
GO111MODULE=off go install \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"