From 9d075afb1df62276dea06be4a188eaee8fc69420 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 3 Dec 2023 16:08:39 -0600 Subject: clean and rename examples fix syntax try new goreadme remove autogenerated go readme.md Signed-off-by: Jeff Carr --- examples/helloworld/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/helloworld/Makefile (limited to 'examples/helloworld/Makefile') diff --git a/examples/helloworld/Makefile b/examples/helloworld/Makefile new file mode 100644 index 0000000..961ed8c --- /dev/null +++ b/examples/helloworld/Makefile @@ -0,0 +1,14 @@ +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 . -- cgit v1.2.3