Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/backends/nntpchand/Makefile

15 lines
246 B
Makefile
Raw Normal View History

2017-04-16 23:11:11 +05:00
REPO=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
all: clean build
build: nntpchand
nntpchand:
2017-09-24 17:18:56 +05:00
GOROOT=$(GOROOT) GOPATH=$(REPO) go build -v
test:
GOROOT=$(GOROOT) GOPATH=$(REPO) go test ./...
2017-04-16 23:11:11 +05:00
clean:
GOPATH=$(REPO) go clean -v