From 099efb6b24caf9eaad50d7386636a7ac23552bde Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 5 Nov 2022 10:19:04 -0500 Subject: v0.4.2 more code cleanups and improvements Add command line argv handling using go-arg make hello world dumb stupid simple again more swtiching to common code move debugging options to support go-args more debugging output cleanup more debugging cleanups fix null pointer crash --- cmds/textbox/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 cmds/textbox/Makefile (limited to 'cmds/textbox/Makefile') diff --git a/cmds/textbox/Makefile b/cmds/textbox/Makefile new file mode 100644 index 0000000..de22345 --- /dev/null +++ b/cmds/textbox/Makefile @@ -0,0 +1,13 @@ +run: build + ./textbox --guidebug + +build-release: + go get -v -u -x . + go build + +build: + GO111MODULE="off" go get -v -x . + GO111MODULE="off" go build + +update: + GO111MODULE="off" go get -v -u -x . -- cgit v1.2.3