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

View File

@@ -4,10 +4,10 @@ package main
import (
log "github.com/Sirupsen/logrus"
"github.com/majestrate/srndv2/lib/config"
"github.com/majestrate/srndv2/lib/nntp"
"github.com/majestrate/srndv2/lib/store"
"net"
"nntpchan/lib/config"
"nntpchan/lib/nntp"
"nntpchan/lib/store"
)
func main() {