summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-20 14:36:58 -0600
committerJeff Carr <[email protected]>2025-02-20 14:36:58 -0600
commit5c1489878f548d0cb330808d3d2d4288b7f53564 (patch)
tree50e71905c5a1b404e6c81161d8762682848dfe47 /Makefile
parent39aefa4e49ca7b7693c1e30522b10a72ffade99c (diff)
release management code can't handle things failing to build yetv0.0.37v0.0.36v0.0.35v0.0.34v0.0.33
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3c8811c..a505075 100644
--- a/Makefile
+++ b/Makefile
@@ -4,3 +4,17 @@ all:
clean:
rm -f go.*
go-mod-clean --purge
+
+build: goimports vet
+ GO111MODULE=off go build \
+ -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
+
+install: goimports vet
+ GO111MODULE=off go install \
+ -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
+
+vet:
+ GO111MODULE=off go vet
+
+goimports:
+ goimports -w *.go