autogen.sh (304B)
1 #!/bin/sh 2 # Run this to generate all the initial makefiles, etc. 3 4 test -n "$srcdir" || srcdir=$(dirname "$0") 5 test -n "$srcdir" || srcdir=. 6 ( 7 cd "$srcdir" && 8 touch config.rpath && 9 AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv 10 ) || exit 11 test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"