Rework man generator with new go install format

With previous version, `go install` automatically picks up
package `man` and installs `gen.go` as `main` to the $GOPATH/bin which
is not what is expected. Move man page generator to separate
private folder.
This commit is contained in:
Andrey Smirnov
2017-03-24 21:07:38 +03:00
parent 92c844b8ac
commit 7f8db9087a
4 changed files with 202 additions and 5 deletions
+1 -1
View File
@@ -5,6 +5,6 @@ prepare:
gem specific_install -l smira/ronn
generate:
go run gen.go
go run ../_man/gen.go
.PHONY: prepare generate