summaryrefslogtreecommitdiff
path: root/examples/control-panel-cloudflare/Makefile
blob: c5947f9a5544b97e68f07c14f74d953ab5c45dd6 (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
25
26
27
run: build
	./control-panel-cloudflare

build-release:
	go get -v -u -x .
	go build
	./control-panel-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

debug: build
	./control-panel-cloudflare --gui-debug

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

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