/native/external/espeak/Android.mk

http://eyes-free.googlecode.com/ · Makefile · 40 lines · 29 code · 7 blank · 4 comment · 0 complexity · e7adaceb4e4c276b576433e4db1d7a82 MD5 · raw file

  1. # Copyright 2008 Google Inc. All Rights Reserved.
  2. #
  3. # Android.mk for espeak
  4. #
  5. LOCAL_PATH:= $(call my-dir)
  6. include $(CLEAR_VARS)
  7. LOCAL_SRC_FILES:= \
  8. src/debug.cpp \
  9. src/compiledict.cpp \
  10. src/dictionary.cpp \
  11. src/event.cpp \
  12. src/fifo.cpp \
  13. src/intonation.cpp\
  14. src/numbers.cpp \
  15. src/phonemelist.cpp \
  16. src/setlengths.cpp \
  17. src/speak_lib.cpp \
  18. src/synth_mbrola.cpp \
  19. src/synthesize.cpp \
  20. src/tr_english.cpp \
  21. src/translate.cpp \
  22. src/voices.cpp \
  23. src/wavegen.cpp \
  24. src/espeak_command.cpp \
  25. src/readclause.cpp \
  26. src/synthdata.cpp \
  27. src/tr_languages.cpp \
  28. src/wave.cpp
  29. LOCAL_PRELINK_MODULE:= false
  30. LOCAL_MODULE:= libespeak
  31. LOCAL_CFLAGS+= $(TOOL_CFLAGS) -DDEBUG_ENABLED=1 # -Dwchar_t=owchar_t
  32. LOCAL_LDFLAGS:= $(TOOL_LDFLAGS) -lstdc++ -lc
  33. include $(BUILD_STATIC_LIBRARY)