diff options
| author | Jeff Carr <[email protected]> | 2025-09-08 20:41:51 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-08 23:14:04 -0500 |
| commit | d00e96e35405f168791c4b19f0271a0db5b2b0d2 (patch) | |
| tree | 240441ca9d3159359412cab357e0249929f9a568 /Makefile | |
| parent | 0c4a91054f49dd1ff89fd74c7972c8282f18c70f (diff) | |
cleanupsv0.0.67
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -7,8 +7,8 @@ BUILDTIME = $(shell date +%Y.%m.%d_%H%M) # REDOMOD = $(shell if [ -e go.mod ]; then echo go.mod; else echo no go mod; fi) REDOMOD = $(shell if [ -e go.sum ]; then echo go.sum exists; else GO111MODULE= go mod init; GO111MODULE= go mod tidy; fi) -all: goimports gocui-debugging - # ./zookeeper +all: build + ./zookeeper list vet: @GO111MODULE=off go vet @@ -20,6 +20,9 @@ nogui: gocui: build ./zookeeper --gui gocui +gocui-5000: build + ./zookeeper --gui gocui --port 5000 + gocui-debugging: build ./zookeeper --gui gocui --gui-file ~/go/src/go.wit.com/toolkits/gocui/gocui.so # ./zookeeper --gui gocui --gui-file ~/go/src/go.wit.com/toolkits/gocui/gocui.so >/tmp/forge.log 2>&1 |
