Build w/o .po files.
[e.git] / autogen.sh
blob854a961a5e19b5fed06e5390ef9fab53abc6781e
1 #!/bin/sh
3 rm -rf autom4te.cache
4 rm -f aclocal.m4 ltmain.sh
6 touch README
7 touch ABOUT-NLS
9 echo "Running autopoint..." ; autopoint -f || :
10 echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
11 echo "Running autoconf..." ; autoconf || exit 1
12 echo "Running autoheader..." ; autoheader || exit 1
13 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
14 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
16 if [ -z "$NOCONFIGURE" ]; then
17 ./configure "$@"