# Copyright 2006 The Android Open Source Project LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) # common settings for all ASR builds, exports some variables for sub-makes include $(ASR_MAKE_DIR)/Makefile.defs LOCAL_SRC_FILES:= \ make_g2g.c \ LOCAL_C_INCLUDES := \ $(ASR_ROOT_DIR)/shared/include \ $(ASR_ROOT_DIR)/portable/include \ $(ASR_ROOT_DIR)/srec/include \ $(ASR_ROOT_DIR)/srec/clib \ $(ASR_ROOT_DIR)/srec/AcousticModels/include \ $(ASR_ROOT_DIR)/srec/Grammar/include \ $(ASR_ROOT_DIR)/srec/Nametag/include \ $(ASR_ROOT_DIR)/srec/Recognizer/include \ $(ASR_ROOT_DIR)/srec/Semproc/include \ $(ASR_ROOT_DIR)/srec/Vocabulary/include \ LOCAL_CFLAGS += \ $(ASR_GLOBAL_DEFINES) \ $(ASR_GLOBAL_CPPFLAGS) \ LOCAL_SHARED_LIBRARIES := \ libESR_Shared \ libESR_Portable \ libSR_AcousticModels \ libSR_AcousticState \ libSR_Core \ libSR_EventLog \ libSR_G2P \ libSR_Grammar \ libSR_Nametag \ libSR_Recognizer \ libSR_Semproc \ libSR_Session \ libSR_Vocabulary \ LOCAL_MODULE:= make_g2g LOCAL_32_BIT_ONLY := true include $(BUILD_HOST_EXECUTABLE)