# This Makefile is meant to be used by people that do not usually work # with Go source code. If you know what GOPATH is then you probably # don't need to bother with make. .PHONY: all test clean GOBIN = build/bin export GO111MODULE=auto all: build/env.sh go get -v ./... test: all build/env.sh go test -v ./... clean: rm -fr build/_workspace/ $(GOBIN)/*