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