summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-16 16:23:08 -0500
committerJeff Carr <[email protected]>2025-08-16 21:50:40 -0500
commitedb3e23311b9cd667898e625b07f5dbeb43e30e3 (patch)
tree53da542d42f7b763c92b5622e7968b854ccbf7a6 /Makefile
parentde6b45ced2fec64bdd4eb1c7d90c13251d394fe8 (diff)
fixes to test plugins by os.Exec()v0.0.2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5ea91ac..65d1dc9 100644
--- a/Makefile
+++ b/Makefile
@@ -3,14 +3,16 @@ GUIVERSION = $(shell git describe --tags)
BUILDTIME = $(shell date +%Y.%m.%d)
all: verbose
- ./fixup drives
+ -fixup --gui-check-plugin ../../../toolkits/gocui/gocui.so
+ fixup --gui gocui --gui-verbose --gui-file ../../toolkits/gocui/gocui.so drives
go-build: goimports
GO111MODULE=off go build \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
verbose: goimports
- GO111MODULE=off go build -v -x \
+ -cp -a ../../../toolkits/gocui/gocui.so resources/
+ GO111MODULE=off go install -v -x \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
install: goimports