really important change.
[citadel.git] / citadel / bootstrap
1 #!/bin/sh
2 #
3 # run me after checking Citadel out of CVS.
4 #
5 # $Id$
6 #
7 echo ... running aclocal ...
8 aclocal
9 echo ... running libtoolize ...
10 libtoolize --force
11 echo ... running autoconf ...
12 autoconf
13 echo ... running autoheader ...
14 autoheader
15
16 echo
17 echo This script has been tested with autoconf 2.52, libtool 1.4.2, and
18 echo automake 1.5. Other versions may work, but I recommend the latest
19 echo compatible versions of these.
20 echo
21 echo Some versions of libtool may have outputted, above, a spurious warning
22 echo that you have to regenerate your aclocal.m4. This is a mostly harmless bug
23 echo and can be ignored.
24 echo
25 echo Also note that autoconf, automake, and libtool should all be configured
26 echo with the same prefix.
27 echo