This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2017-04-16 14:11:11 -04:00
|
|
|
REPO=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
|
|
|
|
|
|
all: clean build
|
|
|
|
|
|
|
|
|
|
build: nntpchand
|
|
|
|
|
|
|
|
|
|
nntpchand:
|
2017-09-24 08:18:56 -04:00
|
|
|
GOROOT=$(GOROOT) GOPATH=$(REPO) go build -v
|
|
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
GOROOT=$(GOROOT) GOPATH=$(REPO) go test ./...
|
2017-04-16 14:11:11 -04:00
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
GOPATH=$(REPO) go clean -v
|