diff options
| author | Jeff Carr <[email protected]> | 2022-11-05 10:19:04 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2022-11-05 10:19:04 -0500 |
| commit | 099efb6b24caf9eaad50d7386636a7ac23552bde (patch) | |
| tree | 215685d7153e6d002c921d4f7ad2fa12d52fe323 /cmds/textbox/Makefile | |
| parent | a72d0ab2d0ff58704cc28993ea428b8c6c8825d7 (diff) | |
v0.4.2 more code cleanups and improvementsv0.4.2
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
Diffstat (limited to 'cmds/textbox/Makefile')
| -rw-r--r-- | cmds/textbox/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
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 . |
