diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/autogen.sh b/autogen.sh index 20ea5ed34..df0e774b6 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,27 +1,28 @@ #! /bin/sh # Generate config.h.in -echo "autoheader..." -autoheader - echo "touch stamp-h" touch stamp-h -# rerun libtoolize -echo "libtoolize..." -libtoolize --force - # add aclocal.m4 to current dir echo "aclocal..." aclocal +# rerun libtoolize +echo "libtoolize..." +libtoolize --force + # This generates the configure script from configure.in echo "autoconf..." autoconf +echo "autoheader..." +autoheader + # Generate Makefile.in from Makefile.am echo "automake..." -automake +automake --add-missing + # configure echo "./configure $*" |