You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
368 B
18 lines
368 B
# 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/pkg/ $(GOBIN)/*
|
|
|