ncdns
ncdns copied to clipboard
make clean
We understand that the ncdns repo contains just the necessary bundle to fetch the go package. However, if there are missing dependencies, then running make
pollutes the directory in a way that won't allow to rebuild after the necessary dependencies have been fetched. This requires the repository to be completely redownloaded.
Let's introduce a make clean
functionality to fix this issue.
The separate .t repository isn't used anymore. Anyone with a GOPATH setup should get ncdns by running go get -u github.com/hlandau/ncdns
.
The new Makefile relocates the downloaded source to $GOPATH/src/github.com/hlandau/ncdns
(with $GOPATH defaulting to .
).