1 # Copyright 2006 The Android Open Source Project 2 3 LOCAL_PATH:= $(call my-dir) 4 include $(CLEAR_VARS) 5 6 # common settings for all ASR builds, exports some variables for sub-makes 7 include $(ASR_MAKE_DIR)/Makefile.defs 8 9 LOCAL_SRC_FILES:= \ 10 make_g2g.c \ 11 12 LOCAL_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/clib \ 17 $(ASR_ROOT_DIR)/srec/AcousticModels/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/Semproc/include \ 22 $(ASR_ROOT_DIR)/srec/Vocabulary/include \ 23 24 LOCAL_CFLAGS += \ 25 $(ASR_GLOBAL_DEFINES) \ 26 $(ASR_GLOBAL_CPPFLAGS) \ 27 28 LOCAL_SHARED_LIBRARIES := \ 29 libESR_Shared \ 30 libESR_Portable \ 31 libSR_AcousticModels \ 32 libSR_AcousticState \ 33 libSR_Core \ 34 libSR_EventLog \ 35 libSR_G2P \ 36 libSR_Grammar \ 37 libSR_Nametag \ 38 libSR_Recognizer \ 39 libSR_Semproc \ 40 libSR_Session \ 41 libSR_Vocabulary \ 42 43 LOCAL_MODULE:= make_g2g 44 45 LOCAL_32_BIT_ONLY := true 46 47 include $(BUILD_HOST_EXECUTABLE) 48