new url for lingering_close() description
[citadel.git] / textclient / bootstrap
1 #!/bin/sh
2 #
3 # run me after checking Citadel out of the source code repository.
4
5 # Remove any vestiges of pre-6.05 build environments
6 rm -f .libs modules *.so *.lo *.la 2>/dev/null
7
8 echo ... running aclocal ...
9 aclocal  -I m4
10
11 echo ... running autoconf ...
12 autoconf
13
14 # If your autoconf version changes, the autom4te.cache stuff will mess you up.
15 # Get rid of it.
16 echo ... removing autoheader cache files ...
17 rm -rf autom4te*.cache
18
19 echo ... running autoheader ...
20 autoheader
21
22 echo ... running mk_svn_revision.sh ...
23 ./scripts/mk_svn_revision.sh
24
25 echo
26 echo This script has been tested with autoconf 2.53 and
27 echo automake 1.5. Other versions may work, but we recommend
28 echo the latest echo compatible versions of these.
29 echo
30 echo Also note that autoconf and automake should be configured
31 echo with the same prefix.
32 echo