summaryrefslogtreecommitdiffstats
path: root/makemanpages
blob: 0b7c54ea4dd6dcd1dcc6cd7ab88fbacda9d879b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e

for prog in nghttp nghttpd nghttpx h2load; do
    src/$prog -h | ./help2rst.py -i doc/$prog.h2r > doc/$prog.1.rst
done

cd doc
make man

for prog in nghttp nghttpd nghttpx h2load; do
    cp manual/man/$prog.1 $prog.1
done