Files
aptly/man/Makefile
Andrey Smirnov 7f8db9087a 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.
2017-03-24 21:07:38 +03:00

11 lines
158 B
Makefile

all: prepare generate
prepare:
gem install specific_install
gem specific_install -l smira/ronn
generate:
go run ../_man/gen.go
.PHONY: prepare generate