autogen.sh 490 B

12345678910111213141516171819202122
  1. #!/bin/sh
  2. # Run this to generate all the initial makefiles, etc.
  3. srcdir=`dirname $0`
  4. test -z "$srcdir" && srcdir=.
  5. REQUIRED_AUTOMAKE_VERSION=1.7
  6. PKG_NAME=NetworkManager-openconnect
  7. (test -f $srcdir/configure.ac) || {
  8. echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
  9. echo " top-level $PKG_NAME directory"
  10. exit 1
  11. }
  12. (cd $srcdir;
  13. autoreconf --install --symlink &&
  14. intltoolize --force &&
  15. autoreconf &&
  16. ./configure --enable-maintainer-mode $@
  17. )