diff options
| author | Jeff Carr <[email protected]> | 2024-01-01 15:27:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-01 15:27:59 -0600 |
| commit | 5e485f20d9893034eb37d4c92608ee4cb9b57c6a (patch) | |
| tree | 72e86e072513a5e3165e11bc1d946ce86a77c36b /Makefile | |
initial commit
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c5947f9 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 |
