1#!/bin/sh
2
3echo protobuf && ./protobufgen.sh || exit 1
4echo aclocal && aclocal -I m4 || exit 1
5echo autoheader && autoheader || exit 1
6echo libtoolize && libtoolize --copy || exit 1
7echo automake && automake --add-missing --copy --foreign || exit 1
8echo autoconf && autoconf || exit 1
9
10if test x$NOCONFIGURE = x ; then
11  echo configure
12  ./configure $*
13fi
14
15