eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

autogen.sh 396B

1234567891011121314151617181920212223
  1. #!/bin/sh
  2. LIBTOOLIZE=`which libtoolize`
  3. if ! test -f "$LIBTOOLIZE" ; then
  4. # Mac OSX support ...
  5. LIBTOOLIZE=`which glibtoolize`
  6. fi
  7. mkdir -p m4
  8. touch AUTHORS
  9. touch NEWS
  10. ln -svf README.md README
  11. if [ -d .git ] ; then
  12. git submodule update --init --recursive || exit 1
  13. fi
  14. aclocal -I m4 || exit 1
  15. ${LIBTOOLIZE} || exit 1
  16. autoheader || exit 1
  17. automake --add-missing || exit 1
  18. autoconf || exit 1