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.

.gitignore 580B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .*.swp
  2. *~
  3. # intermediate files:
  4. .deps/
  5. .libs/
  6. .dirstamp
  7. *.pyc
  8. *.o
  9. *.lo
  10. # build output:
  11. data/emoji
  12. data/ucd
  13. src/libucd.la
  14. tests/printcdata
  15. tests/printucddata
  16. tests/printucddata_cpp
  17. # test output:
  18. tests/*.expected
  19. tests/*.actual
  20. tests/*.diff
  21. # documentation output:
  22. docs/html/
  23. CHANGELOG.html
  24. README.html
  25. # autotools output:
  26. INSTALL
  27. NEWS
  28. README
  29. aclocal.m4
  30. autom4te.cache/
  31. compile
  32. config.guess
  33. config.h.in
  34. config.h
  35. config.log
  36. config.status
  37. config.sub
  38. configure
  39. depcomp
  40. install-sh
  41. libtool
  42. ltmain.sh
  43. missing
  44. Makefile
  45. Makefile.in
  46. stamp-h1
  47. m4/*
  48. !m4/ax_check_compile_flag.m4