summaryrefslogtreecommitdiff
path: root/cmds/helloworld/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/helloworld/Makefile')
-rw-r--r--cmds/helloworld/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmds/helloworld/Makefile b/cmds/helloworld/Makefile
new file mode 100644
index 0000000..f18abaf
--- /dev/null
+++ b/cmds/helloworld/Makefile
@@ -0,0 +1,14 @@
+run: build
+ ./helloworld
+
+build:
+ go get -v -u -x .
+ go build
+
+build-master:
+ GO111MODULE="off" go get -v -x .
+ GO111MODULE="off" go build
+ ./helloworld
+
+update:
+ GO111MODULE="off" go get -v -u -x .