openafs/regen.sh
Marcus Watts a8a79fc01b rxk5-1557-20090503
LICENSE IPL10
FIXES n/a

====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================
LICENSE IPL10
FIXES n/a

The files implementing the rxk5 rx security class, notes, and simple test programs.

====================
LICENSE IPL10
FIXES n/a

The files implementing k5ssl, an implementation of just those portions of kerberos 5 (particularly principal handling and encryption) required by rxk5, and suitable for operation in a Unix kernel.

====================
LICENSE IPL10
FIXES n/a

Build directory and NTMakefile for threaded rxk5 objects on Windows.

====================
LICENSE IPL10
FIXES n/a

Indirect interface to MIT KFW libraries reorganized slightly and moved to its own directory to facilitate sharing.

====================
LICENSE IPL10
FIXES n/a

Some files missed from addition on 5/3, including

* afs_capabilities.h/c support registration and reporting on locally-supported cm features
* afs_token.xg, afs_token_protos.h, rxk5_tkt.h/c and rxkad_tkt.c  support new token interface
* afserror.et error table input
2009-05-03 20:00:06 +00:00

43 lines
866 B
Bash
Executable File

#!/bin/sh
while getopts "q" flag
do
case "$flag" in
q)
skipman=1;
;;
*)
echo "Usage ./regen.sh [-q]"
echo " -q skips man page generation"
exit
;;
esac
done
echo "Updating configuration..."
echo "Running aclocal"
aclocal -I src/cf
echo "Running autoconf"
autoconf
echo "Running autoconf for configure-libafs"
autoconf configure-libafs.in > configure-libafs
chmod +x configure-libafs
echo "Running autoheader"
autoheader
#echo "Running automake"
#automake
echo "Deleting autom4te.cache directory"
rm -r autom4te.cache
if [ $skipman ] ; then
echo "Skipping man page build"
else
# Rebuild the man pages, to not require those building from source to have
# pod2man available.
if test -e doc/man-pages/generate-man ; then
echo "Building man pages"
(cd doc/man-pages && ./generate-man)
fi
fi