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

123456789101112131415161718
  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. ln -sf README.md README
  9. ln -sf docs/ReleaseNotes.md NEWS
  10. aclocal -I m4 || exit 1
  11. ${LIBTOOLIZE} || exit 1
  12. autoheader || exit 1
  13. automake --add-missing || exit 1
  14. autoconf || exit 1