File: Android.mk

package info (click to toggle)
svox 1.0%2Bgit20130326-14.1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid, trixie
  • size: 62,268 kB
  • sloc: ansic: 33,732; cpp: 2,726; java: 1,529; xml: 1,328; perl: 498; sh: 438; makefile: 110
file content (22 lines) | stat: -rwxr-xr-x 510 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# SVOX Pico TTS Engine
# This makefile builds both an activity and a shared library.

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_PACKAGE_NAME := PicoTts
	
LOCAL_SRC_FILES := \
    $(call all-java-files-under, src) \
    $(call all-java-files-under, compat)

LOCAL_REQUIRED_MODULES := libttscompat libttspico
LOCAL_PROGUARD_FLAG_FILES := proguard.flags

include $(BUILD_PACKAGE)


include $(LOCAL_PATH)/compat/jni/Android.mk \
    $(LOCAL_PATH)/lib/Android.mk \
    $(LOCAL_PATH)/tts/Android.mk