source: web/old/remctl-2.14/autogen @ f6f3e91

web
Last change on this file since f6f3e91 was f6f3e91, checked in by Jessica B. Hamrick <jhamrick@…>, 15 years ago

Preserve directory hierarchy (not sure what happened to it)

  • Property mode set to 100755
File size: 809 bytes
Line 
1#!/bin/sh
2#
3# Run this shell script to bootstrap as necessary after a fresh checkout.
4
5set -e
6
7autoreconf -i --force
8rm -rf autom4te.cache
9
10# Generate manual pages.
11version=`grep '^remctl' NEWS | head -1 | cut -d' ' -f2`
12pod2man --release="$version" --center="remctl" docs/remctl.pod > docs/remctl.1
13pod2man --release="$version" --center="remctl" --section=8 docs/remctld.pod \
14    > docs/remctld.8.in
15for doc in remctl remctl_close remctl_command remctl_error remctl_new \
16           remctl_open remctl_output ; do
17    pod2man --release="$version" --center="remctl Library Reference" \
18        --section=3 --name=`echo "$doc" | tr a-z A-Z` docs/api/"$doc".pod \
19        > docs/api/"$doc".3
20done
21
22# Generate protocol documentation.
23cd docs
24xml2rfc protocol.xml protocol.html
25xml2rfc protocol.xml protocol.txt
Note: See TracBrowser for help on using the repository browser.