diff options
Diffstat (limited to 'zoopb-example/Makefile')
| -rw-r--r-- | zoopb-example/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/zoopb-example/Makefile b/zoopb-example/Makefile new file mode 100644 index 0000000..fe53a86 --- /dev/null +++ b/zoopb-example/Makefile @@ -0,0 +1,17 @@ +build: + GO111MODULE=off go build + +test: + ./zoopb-example + +goimports: + goimports -w *.go + +prep: + go get -v -t -u + +run: + go run *.go + +clean: + -rm -f zoopb-example |
