11 lines
129 B
Makefile
11 lines
129 B
Makefile
|
GOPATH=$(PWD)
|
||
|
|
||
|
all: nntpchand
|
||
|
|
||
|
nntpchand:
|
||
|
go build -o nntpchand -v nntpchan/cmd/nntpchan
|
||
|
|
||
|
clean:
|
||
|
go clean -v
|
||
|
rm -f nntpchand
|