mirror of
https://github.com/tomoko-dev9/nntpchan.git
synced 2026-06-01 20:34:46 +02:00
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
|