1# Copyright 2006 The Android Open Source Project
2
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
6# common settings for all ASR builds, exports some variables for sub-makes
7include $(ASR_MAKE_DIR)/Makefile.defs
8
9LOCAL_SRC_FILES:= \
10	parseStringTest.c \
11
12LOCAL_C_INCLUDES := \
13	$(ASR_ROOT_DIR)/shared/include \
14	$(ASR_ROOT_DIR)/portable/include \
15	$(ASR_ROOT_DIR)/srec/include \
16	$(ASR_ROOT_DIR)/srec/AcousticModels/include \
17	$(ASR_ROOT_DIR)/srec/EventLog/include \
18	$(ASR_ROOT_DIR)/srec/Grammar/include \
19	$(ASR_ROOT_DIR)/srec/Nametag/include \
20	$(ASR_ROOT_DIR)/srec/Recognizer/include \
21	$(ASR_ROOT_DIR)/srec/Session/include \
22	$(ASR_ROOT_DIR)/srec/Semproc/include \
23	$(ASR_ROOT_DIR)/srec/Vocabulary/include \
24
25LOCAL_CFLAGS += \
26	$(ASR_GLOBAL_DEFINES) \
27	$(ASR_GLOBAL_CPPFLAGS) \
28
29LOCAL_SHARED_LIBRARIES := \
30	libESR_Shared \
31	libESR_Portable \
32	libSR_AcousticModels \
33	libSR_AcousticState \
34	libSR_Core \
35	libSR_EventLog \
36	libSR_G2P \
37	libSR_Grammar \
38	libSR_Nametag \
39	libSR_Semproc \
40	libSR_Session \
41	libSR_Vocabulary \
42	
43LOCAL_MODULE:= parseStringTest
44
45LOCAL_32_BIT_ONLY := true
46
47include $(BUILD_HOST_EXECUTABLE)
48