diff options
Diffstat (limited to 'cmds/buttonplugin/Makefile')
| -rw-r--r-- | cmds/buttonplugin/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cmds/buttonplugin/Makefile b/cmds/buttonplugin/Makefile new file mode 100644 index 0000000..cf60369 --- /dev/null +++ b/cmds/buttonplugin/Makefile @@ -0,0 +1,14 @@ +run: build + ./buttonplugin >/tmp/buttonplugin.log 2>&1 + +build-release: + go get -v -u -x . + go build + ./buttonplugin + +build: + GO111MODULE="off" go get -v -x . + GO111MODULE="off" go build + +update: + GO111MODULE="off" go get -v -u -x . |
