diff options
Diffstat (limited to 'cmds/plugin-consoleonly/Makefile')
| -rw-r--r-- | cmds/plugin-consoleonly/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cmds/plugin-consoleonly/Makefile b/cmds/plugin-consoleonly/Makefile new file mode 100644 index 0000000..a8279f6 --- /dev/null +++ b/cmds/plugin-consoleonly/Makefile @@ -0,0 +1,14 @@ +run: build + ./helloconsole + +build-release: + go get -v -u -x . + go install -v -o helloconsole + helloconsole + +build: + GO111MODULE="off" go get -v -x . + GO111MODULE="off" go build -v -o helloconsole + +update: + GO111MODULE="off" go get -v -u -x . |
