Archived
1
0

add test target in main makefile

This commit is contained in:
Jeff Becker
2017-09-24 08:18:56 -04:00
parent dee8c005fd
commit 69fac43124
5 changed files with 21 additions and 7 deletions

View File

@@ -5,7 +5,10 @@ all: clean build
build: nntpchand
nntpchand:
GOPATH=$(REPO) go build -v
GOROOT=$(GOROOT) GOPATH=$(REPO) go build -v
test:
GOROOT=$(GOROOT) GOPATH=$(REPO) go test ./...
clean:
GOPATH=$(REPO) go clean -v