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.

Makefile 703B

1234567891011121314151617181920212223242526272829
  1. PLATFORM=big_endian
  2. ##### standard build actions:
  3. all: espeak espeakedit espeak-data-local
  4. clean:
  5. cd src && rm -f *.o *~ && cd ..
  6. distclean: clean
  7. cd src && rm -f libespeak.a libespeak.so.* speak espeak espeakedit && cd ..
  8. cd platforms/${PLATFORM} && rm -f espeak-phoneme-data && cd ../..
  9. rm -rf espeak-data-local
  10. ##### build targets:
  11. espeak:
  12. cd src && make && cd ..
  13. espeakedit:
  14. cd src && make -f Makefile.espeakedit && cd ..
  15. espeak-phoneme-data:
  16. cd platforms/${PLATFORM} && make && cd ../..
  17. espeak-data-local: espeak-phoneme-data
  18. cp -a espeak-data espeak-data-local
  19. platforms/big_endian/espeak-phoneme-data espeak-data-local espeak-data-local platforms/${PLATFORM}/phondata-manifest