summaryrefslogtreecommitdiff
path: root/examples/console-ui-helloworld/Makefile
blob: f63c8a92115bd791be6908712071d62a55125875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
run: build
	./console-ui-helloworld
	reset
	ldd ./console-ui-helloworld

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 .