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