resetting manifest requested domain to floor
[platform/upstream/libical.git] / bootstrap
1 #!/bin/sh
2 #
3 # run me after checking Citadel out of CVS.
4 #
5 # $Id: bootstrap,v 1.4 2008-01-26 15:54:42 dothebart Exp $
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 echo ... running autoreconf ...
12 autoreconf --verbose --force --install
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 ... pre-building yacc files ...
20 #       for x in src/*/*.y
21 #       do
22 #               echo Pre-building $x
23 #               ( cd `dirname $x` && yacc -o `basename $x |sed 's/y$/c/g' ` `basename $x` )
24 #       done
25 #
26 #       echo ... pre-building lex files ...
27 #       for x in src/*/*.l
28 #       do
29 #               echo Pre-building $x
30 #               ( cd `dirname $x` && lex -o`basename $x |sed 's/l$/c/g' ` `basename $x` )
31 #       done
32
33 echo
34 echo This script has been tested with autoconf 2.53 and
35 echo automake 1.5. Other versions may work, but we recommend
36 echo the latest echo compatible versions of these.
37 echo
38 echo Also note that autoconf and automake should be configured
39 echo with the same prefix.
40 echo