summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-10 07:53:11 -0500
committerJeff Carr <[email protected]>2025-03-10 07:53:11 -0500
commit68bf08bd6ca9ecbb3c5c846c908cd89450fbd96e (patch)
tree6364cba0031c0736b9fedc013f5982d4c671b5d1 /Makefile
parentf9515280cf8ee5dd71be3b8e749e6405c4e77ca6 (diff)
Unmarshal() droplets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9a687c0..df73d11 100644
--- a/Makefile
+++ b/Makefile
@@ -13,11 +13,11 @@ build: goimports vet
GO111MODULE=off go build \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
-verbose:
+verbose: 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}"