1#!/bin/sh 2 3# autogen.sh -- Autotools bootstrapping 4 5libtoolize --copy --force 6aclocal &&\ 7autoheader &&\ 8autoconf &&\ 9automake --add-missing --copy 10 11