bootstrap 249 B

1234567891011
  1. #!/bin/sh
  2. aclocal || exit 1
  3. # on Mac libtoolize is called glibtoolize
  4. LIBTOOLIZE=libtoolize
  5. if [ `uname -s` = Darwin ]; then
  6. LIBTOOLIZE=glibtoolize
  7. fi
  8. $LIBTOOLIZE --automake -c || exit 1
  9. autoconf -f || exit 1
  10. automake -a -c --foreign || exit 1