1
0
mirror of https://github.com/sstephenson/bats.git synced 2024-09-29 12:38:26 +02:00

Add makefile for man pages

This commit is contained in:
Sam Stephenson 2013-11-10 16:04:07 -06:00
parent 225440bb65
commit 26a89da1b5
2 changed files with 15 additions and 0 deletions

10
man/Makefile Normal file
View File

@ -0,0 +1,10 @@
RONN := ronn
PAGES := bats.1 bats.7
all: $(PAGES)
bats.1: bats.1.ronn
$(RONN) -r $<
bats.7: bats.7.ronn
$(RONN) -r $<

5
man/README.md Normal file
View File

@ -0,0 +1,5 @@
Bats man pages are generated with [Ronn](http://rtomayko.github.io/ronn/).
After making changes to `bats.1.ronn` or `bats.7.ronn`, run `make` in
this directory to generate `bats.1` and `bats.7`. **Do not edit the
`bats.1` or `bats.7` files directly.**