diff options
| author | Steve Kemp <steve@steve.org.uk> | 2012-11-16 14:03:05 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2012-11-16 14:03:05 +0000 | 
| commit | 1060bf339b7df2e9a7283516702a771a56f00460 (patch) | |
| tree | 7e8e9d2f4355e40b8b1095340bd0111a7b5c92cb | |
| parent | dd2bb1e138d8519f7cd6f3f772f55345f56644ec (diff) | |
  Make manpages, via "make docs"
| -rw-r--r-- | Makefile | 8 | 
1 files changed, 8 insertions, 0 deletions
| @@ -8,10 +8,18 @@ default:  tidy:  	rm -rf ./debian/custodian +	rm -rf ./man  	rm -f ./debian/custodian.debhelper.log  	rm -f ./debian/custodian.substvars  	rm -f ./debian/files  	find . -name 'custodian-dequeue.log' -delete || true +docs: man/custodian-dequeue.man man/custodian-enqueue.man man/custodian-queue.man man/multi-ping.man + + +man/%.man: ./bin/% +	        [ -d man ] || mkdir man +			        RUBYLIB=./lib $<  --manual | sed -e 's/^=\+$$//' | txt2man -s 1 -t $(notdir $<) | sed -e 's/\\\\fB/\\fB/' > $@ +  test:  	t/test-suite | 
