Codebase list glpk-java / upstream/1.0.36 autogen.sh
upstream/1.0.36

Tree @upstream/1.0.36 (Download .tar.gz)

autogen.sh @upstream/1.0.36raw · history · blame

#!/bin/sh

test -f configure.ac || {
  echo "Please, run this script in the top level project directory."
  DIE=1
}

libtoolize --copy
aclocal -I m4
autoconf
autoheader
automake --add-missing --copy

echo "For installation instructions, please, refer to file INSTALL."