Updating Contact email
[BrunelResearch-dirac.git] / bootstrap
blob61f7c11b2edc18a64aba93bc5d2ecca1b73e9e89
1 #!/bin/sh
3 # Extremely basic script to regenerate the autoconf files etc
5 # 11th March 2004 Copyright BBC
7 # remove generated files (avoids clashes between versions of autotools)
8 rm -f depcomp missing install-sh mkinstalldirs
9 rm -f aclocal.m4 configure Makefile.in config.guess ltmain.sh config.sub
10 rm -rf autom4te.cache
12 set -x
13 aclocal -I m4
14 libtoolize --force --copy
15 automake --foreign --copy --add-missing
16 if [ $? -ne 0 ];
17 then
18 echo "automake failed"
19 exit -3
21 autoconf