BUILD: add more commands to automatically build
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
665c244522
commit
ebb1d3d3c8
8
Makefile
8
Makefile
|
@ -3,17 +3,19 @@ GOVERSION = $(shell go version | cut -d' ' -f 3)
|
||||||
BUILDTIME = $(shell date -u --iso-8601=seconds)
|
BUILDTIME = $(shell date -u --iso-8601=seconds)
|
||||||
VERSION = $(shell cat resources/VERSION)
|
VERSION = $(shell cat resources/VERSION)
|
||||||
|
|
||||||
GO111MODULE=on
|
# GO111MODULE=on
|
||||||
|
|
||||||
# try go get github.com/ahmetb/govvv
|
# try go get github.com/ahmetb/govvv
|
||||||
# this will add branch info & build RFC3339 date also
|
# this will add branch info & build RFC3339 date also
|
||||||
|
|
||||||
run:
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
# shell things
|
# shell things
|
||||||
cd example-expect; go install # traditional 'expect' shell automation
|
cd example-expect; go install # traditional 'expect' shell automation
|
||||||
cd example-shell; go install # a tty wrapper
|
cd example-shell; go install # a tty wrapper
|
||||||
|
cd example-gocui-mouse; go install # mouse interaction
|
||||||
|
cd example-gocui-active; go install # ytalk
|
||||||
|
cd example-gocui-colorstrue; go install # shell colors
|
||||||
|
cd example-gocui-dynamic; go install # interactive movement
|
||||||
|
|
||||||
# GUI things
|
# GUI things
|
||||||
cd example-splash; go install # an example GUI with drop down menus, etc
|
cd example-splash; go install # an example GUI with drop down menus, etc
|
||||||
|
|
Loading…
Reference in New Issue