Citadel Client: move into its own directory
[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 ... running mk_module_init.sh ...
26 ./scripts/mk_module_init.sh
27
28 echo
29 echo This script has been tested with autoconf 2.53 and
30 echo automake 1.5. Other versions may work, but we recommend
31 echo the latest echo compatible versions of these.
32 echo
33 echo Also note that autoconf and automake should be configured
34 echo with the same prefix.
35 echo