/native/external/espeak/Android.mk
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 6LOCAL_PATH:= $(call my-dir) 7include $(CLEAR_VARS) 8 9LOCAL_SRC_FILES:= \ 10 src/debug.cpp \ 11 src/compiledict.cpp \ 12 src/dictionary.cpp \ 13 src/event.cpp \ 14 src/fifo.cpp \ 15 src/intonation.cpp\ 16 src/numbers.cpp \ 17 src/phonemelist.cpp \ 18 src/setlengths.cpp \ 19 src/speak_lib.cpp \ 20 src/synth_mbrola.cpp \ 21 src/synthesize.cpp \ 22 src/tr_english.cpp \ 23 src/translate.cpp \ 24 src/voices.cpp \ 25 src/wavegen.cpp \ 26 src/espeak_command.cpp \ 27 src/readclause.cpp \ 28 src/synthdata.cpp \ 29 src/tr_languages.cpp \ 30 src/wave.cpp 31 32LOCAL_PRELINK_MODULE:= false 33 34LOCAL_MODULE:= libespeak 35 36LOCAL_CFLAGS+= $(TOOL_CFLAGS) -DDEBUG_ENABLED=1 # -Dwchar_t=owchar_t 37 38LOCAL_LDFLAGS:= $(TOOL_LDFLAGS) -lstdc++ -lc 39 40include $(BUILD_STATIC_LIBRARY)