summaryrefslogtreecommitdiff
path: root/testGui/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-02 05:14:11 -0600
committerJeff Carr <[email protected]>2024-12-02 05:14:11 -0600
commit23deb2ab407df32e34ee978499153a97e7b07a28 (patch)
tree5920ccb906ad24df5ebaebc6a458d9d4cbcba006 /testGui/Makefile
parentbeabb1e3131ff37ca86d714c0f8da04963efa41b (diff)
don't put go binaries in go libraries. ever.
Diffstat (limited to 'testGui/Makefile')
-rw-r--r--testGui/Makefile46
1 files changed, 0 insertions, 46 deletions
diff --git a/testGui/Makefile b/testGui/Makefile
deleted file mode 100644
index 74e3039..0000000
--- a/testGui/Makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-VERSION = $(shell git describe --tags)
-GUIVERSION = $(shell git describe --tags)
-BUILDTIME = $(shell date +%Y.%m.%d)
-
-all: build list
-
-build:
- reset
- GO111MODULE=off go build \
- -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
-
-vet:
- GO111MODULE=off go vet
-
-goimports:
- goimports -w *.go
- # // to globally reset paths:
- # // gofmt -w -r '"go.wit.com/gui/gadgets" -> "go.wit.com/lib/gadgets"' *.go
-
-gocui: build
- reset
- ./testGui --gui gocui
-
-install:
- GO111MODULE=off go install \
- -ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
-
-check-git-clean:
- @git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)
-
-redomod:
- rm -f go.*
- GO111MODULE= go mod init
- GO111MODULE= go mod tidy
-
-list:
- ./testGui --no-gui --list
-
-pull: build
- ./testGui --git-pull
-
-update: build
- ./testGui --apt-update --dry-run
-
-make-install: build
- ./testGui --no-gui --make-install