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 346B

12345678910111213141516171819
  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. ln -sf ChangeLog.md NEWS
  10. ln -sf README.md README
  11. aclocal -I m4 || exit 1
  12. ${LIBTOOLIZE} --copy || exit 1
  13. autoheader || exit 1
  14. automake --add-missing --copy || exit 1
  15. autoconf || exit 1