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