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	make_ve_grammar.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/Grammar/include \
17	$(ASR_ROOT_DIR)/srec/Session/include \
18	$(ASR_ROOT_DIR)/srec/Vocabulary/include \
19
20LOCAL_CFLAGS += \
21	$(ASR_GLOBAL_DEFINES) \
22	$(ASR_GLOBAL_CPPFLAGS) \
23
24LOCAL_SHARED_LIBRARIES := \
25	libESR_Shared \
26	libESR_Portable \
27	libSR_AcousticModels \
28	libSR_AcousticState \
29	libSR_Core \
30	libSR_EventLog \
31	libSR_G2P \
32	libSR_Grammar \
33	libSR_Nametag \
34	libSR_Recognizer \
35	libSR_Semproc \
36	libSR_Session \
37	libSR_Vocabulary \
38	
39LOCAL_MODULE:= make_ve_grammar
40
41LOCAL_32_BIT_ONLY := true
42
43include $(BUILD_HOST_EXECUTABLE)
44