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