summaryrefslogtreecommitdiff
path: root/examples/cloudflare/Makefile
blob: 32f3f552a1676aa637fc0cd7fad495d403e21e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
run: build
	./cloudflare

build-release:
	go get -v -u -x .
	go build
	./cloudflare

build:
	GO111MODULE="off" go get -v -x .
	GO111MODULE="off" go build

update:
	GO111MODULE="off" go get -v -u -x .

log:
	reset
	tail -f /tmp/witgui.* /tmp/guilogfile

gocui: build
	./cloudflare -gui gocui >/tmp/witgui.log.stderr 2>&1

quiet:
	./cloudflare >/tmp/witgui.log.stderr 2>&1