bootstrap 217 B

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